

:root {
    --bg: #f3f4f5;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #f0f0f5;
    --text-secondary: #bdbdd0;
    --text-muted: #828299;
    --text-primary: #111;
    --accent: #7266FF;
    --accent-light: #DF81F5;
    --accent-glow: rgba(114, 102, 255, 0.3);
    --green: #34d399;
    --green-bg: rgba(52, 211, 153, 0.12);
    --yellow: #fbbf24;
    --orange: #fb923c;
    --pink: #f472b6;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --motion-fast: 0.2s ease;
    --focus-ring: 0 0 0 2px var(--accent-glow);
    --social-link-pad: 4px 6px;
    --social-link-margin: 0 -6px;

    /* Typography — families */
    --font-sans: 'Fustat', -apple-system, sans-serif;
    --font-icon: 'remixicon';

    /* Typography — weights (compact: regular / medium / semibold / bold) */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 800;

    /* Typography — fluid sizes */
    --fs-fluid-sm: clamp(15px, 2vw, 18px);
    --fs-fluid-body-lg: clamp(16px, 1.6vw, 20px);
    --fs-fluid-subtitle: clamp(22px, 3vw, 28px);
    --fs-fluid-title: clamp(24px, 3vw, 36px);
    --fs-fluid-title-lg: clamp(28px, 3.5vw, 38px);
    --fs-fluid-hero: clamp(32px, 4.5vw, 54px);
    --fs-fluid-display: clamp(32px, 5vw, 48px);

    /* Typography — fixed sizes (compact scale) */
    --fs-2xs: 10px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 28px;
    --fs-4xl: 32px;
    --fs-display: 48px;
    --fs-mega: 120px;
    --fs-watermark: 600px;
}


/* Fustat font is loaded via <link> in HTML */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    background: #000;
}

body {
    background: #000;
    font-family: 'Fustat', sans-serif;
}

.safari-tint {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    /* important: needs enough height */
    background: #ffffff;
    /* your desired toolbar color */
    z-index: -1;
    /* keep it behind content */
    padding-top: env(safe-area-inset-top);
    height: calc(120px + env(safe-area-inset-top));
}

a {
    text-decoration: none;
}

#landing-page {
    background: var(--bg);
}

#section-proof {
    background: var(--bg);
    padding-top: 40px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.35;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Utility ── */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    background: #7266FF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-green {
    color: var(--green);
}

.text-sm {
    font-size: var(--fs-xs);
}

.text-xs {
    font-size: var(--fs-xs);
}

.text-2xl {
    font-size: var(--fs-2xl);
}

.fw-600 {
    font-weight: var(--font-weight-semibold);
}

/* Spacing Utilities */
.mt-xs {
    margin-top: 6px;
}

.mt-sm {
    margin-top: 12px;
}

.mt-md {
    margin-top: 16px;
}

.mb-md {
    margin-bottom: 16px;
}

.mb-lg {
    margin-bottom: 24px;
}

.pt-0 {
    padding-top: 0;
}

.gap-sm {
    gap: 10px;
}

/* Flex Utilities */
.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-end {
    justify-content: flex-end;
}

.w-full {
    width: 100%;
}

/* ── Top Bar ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.75);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-right: 60px;
}

.topbar-nav a {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-signin-link {
    display: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: var(--fs-2xl);
    cursor: pointer;
    z-index: 1100;
}

.topbar-signin-mobile {
    display: none;
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    line-height: 1;
}

.topbar-nav a:hover,
.topbar-nav a.topbar-nav-active {
    color: var(--text);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-badge {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: var(--font-weight-medium);
    font-size: var(--fs-sm);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px 20px;
    transition: var(--transition);
}

.btn-primary {
    background: #7266FF;
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #5B52CC, #4941A3);
    box-shadow: 0 6px 32px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.btn-ghost {
    background: transparent;
    color: white;
    font-weight: var(--font-weight-regular);

}

.btn-ghost:hover {
    color: var(--text);
}

.btn-large {
    padding: 16px 32px;
    font-size: var(--fs-md);
    border-radius: var(--radius);
}

.btn:has(.btn-sub) {
    flex-direction: column;
    gap: 2px;
}

.btn-sub {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-regular);
    opacity: 0.75;
}

.btn-sm {
    padding: 6px 14px;
    font-size: var(--fs-xs);
}

.btn-secondary:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.btn-google {
    background: #fff;
    color: #333;
    font-weight: var(--font-weight-semibold);
}

.btn-apple {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.btn-tiktok {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.btn-green {
    background: var(--green);
    color: #000;
    font-weight: var(--font-weight-semibold);
}

/* ── Hero ── */
.hero {
    display: flex;
    min-height: 100vh;
    background: url('assets/bg.jpg') center center / cover no-repeat, linear-gradient(94.92deg, #211856 11.02%, #A32F58 99.17%);
    flex-direction: column;
    overflow: hidden;
    position: relative;



    top: -60px;
    justify-content: space-between;
}

.hero-spacer {
    height: 80px;
}

.hero-bg {

    text-align: center;
    position: relative;

}

.hero-bg .container {
    max-width: 1000px !important;
}

h2 {
    font-size: var(--fs-fluid-title);
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
}

.hero h1 {
    font-size: var(--fs-fluid-hero);
    font-weight: var(--font-weight-regular);

    line-height: 1.35;
    max-width: 1000px;
    margin: 0 auto 12px;
    color: #fff;
}

.hero .hero-accent {
    font-weight: var(--font-weight-bold);
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero .subtitle {
    font-size: var(--fs-fluid-body-lg);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0 auto 36px;
    padding: 0 12px;
    line-height: 1.6;
    max-width: 800px;
    font-weight: var(--font-weight-regular);
}

/* ── URL Input (hero redesign) ── */
.url-input-wrap {
    display: flex;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.url-input-wrap:focus-within {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

.url-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    color: #222;
    padding: 18px 22px;
    font-size: var(--fs-lg);
    height: 54px;
    font-family: inherit;
    outline: none;
}

.url-input-wrap input::placeholder {
    color: #999;
}



.url-input-error, #pricing-url-error {
    max-width: 720px;
    margin: 20px auto 0;
    padding: 4px 12px;
    font-size: var(--fs-sm);
    position: relative;
    width: fit-content;
    color: #ff7190;
    border: 1px solid #ff7190;
    /* background:rgba(0,0,0,0.2); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 22px;
    line-height: 1.2;
    text-align: center;
}
#pricing-url-error{
    color: #db4465;
    border: 1px solid #db4465;
}
.btn-hero-cta {
    white-space: nowrap;
    font-size: var(--fs-lg);
    border-radius: 0;
    height: 54px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-weight: var(--font-weight-medium);
    background: #1d1d27;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none !important;

    transition: var(--transition);
}

.btn-hero-cta:hover {
    background: #333;
    text-decoration: none;
}

/* ── Landing URL Modal ── */
.landing-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.landing-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(6px);
}

.landing-modal__content {
    position: relative;
    width: min(760px, 100%);
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.landing-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f5;
    color: #111;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
}

.landing-modal__title {
    font-size: var(--fs-2xl);
    font-weight: var(--font-weight-semibold);
    color: #111;
    margin-bottom: 8px;
}

.landing-modal__subtitle {
    font-size: var(--fs-sm);
    color: #666;
    margin-bottom: 16px;
}

.landing-modal__url-wrap {
    max-width: 100%;
    margin: 0;
}

.landing-modal .url-input-error {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    max-width: none;
    padding: 0;
}

@media (max-width: 760px) {
    .landing-modal__content {
        padding: 20px 16px 16px;
        border-radius: 16px;
    }

    .landing-modal__title {
        font-size: var(--fs-xl);
        padding-right: 28px;
    }
}

/* ── Social Proof Strip (light section below hero bg) ── */
.proof-strip-section {

    padding: 32px 0;
}

.proof-strip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    gap:12px;
}
.proof-strip .methodology-divider {
    width: 100%;
    height: 1px;
    flex:1;
    margin-top:6px;
    background: rgba(255, 255, 255, 0.3);
    margin-right:32px;
}
.methodology-divider span{
    flex:1;
}

.proof-strip .stat {
    flex: 1 1 0;
    min-width: 140px;
    text-align: center;
    padding: 8px 24px;


    position: relative;
}

.proof-strip .stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16%;
    bottom: 16%;
    width: 1px;
    background: transparent;
    opacity: 0.4;
}

.proof-strip .stat-value {
    font-size: var(--fs-fluid-title-lg);
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.8px;
    color: #fff;
    line-height: 1.15;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.stat-label {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-regular);
    color: #ffffff7f;
    margin-top: 4px;
    line-height: 1;
}

.stat-label.proof-strip {
    text-align: left;
    margin-bottom: 6px;
    justify-content: start;
    padding-left: 44px;

}

/* ── Section ── */
.section {
    padding: 80px 0;
}

.section-title {
    max-width: 900px;
    margin: 0 auto;
    font-size: var(--fs-fluid-title);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    letter-spacing: -0.9px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: var(--fs-fluid-sm);
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    max-width: 740px;
    margin: 0 auto 48px;
}

.landing-cta-row {
    display: flex;
    justify-content: center;
    margin: 40px 0 8px;
}

.faq-cta-row {
    margin-top: 32px;
}

/* ── Proof Section Header ── */
.proof-section {
    background: #f8f9fb;
    padding: 100px 0;
}

.proof-header-block {
    margin-bottom: 32px;
}

.proof-main-title {

    color: #111;

    line-height: 1.25;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof-sub-title-gradient {

    background: #7266FF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.proof-sub-info {
    font-size: var(--fs-lg);
    color: #222;
    line-height: 1.6;

    font-weight: var(--font-weight-medium);
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* ── Proof Layout (Sidebar + Content) ── */
.proof-layout {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
    align-items: flex-start;
}

.proof-sidebar {
    width: 220px;
    height: 312px;
    margin-top: 60px;
    /* (56px + 8px gap) * 5 - 8px gap */
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    overflow: hidden;
    /* Only allow programmatic scrolling */
    padding: 128px 12px;
    /* (56 + 8) * 2 to keep first/last centered when active */
    scrollbar-width: none;
    /* Hide scrollbar Hide scrollbar firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scroll-behavior: smooth;
    mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
}

.proof-sidebar::-webkit-scrollbar {
    display: none;
}

.app-pill {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    min-height: 56px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    flex-shrink: 0;
    transform: scale(0.9);
    overflow: hidden;
    box-sizing: border-box;
}

.app-pill-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    flex: 1;
    min-height: 0;
}

.app-pill-progress-track {
    height: 3px;
    width: 100%;
    background: rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.app-pill-progress-fill {
    height: 100%;
    width: 100%;
    background: #7266FF;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.app-pill-countdown {
    margin-left: auto;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-bold);
    color: #7266FF;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    line-height: 1;
}

.app-pill.active {
    opacity: 1;
    transform: scale(1.08);
    /* Highlight center pill */
    border-color: #7266FF;
    box-shadow: 0 10px 30px rgba(114, 102, 255, 0.12);
    background: #fff;
    z-index: 2;
}

.app-pill.active .app-pill-name {
    color: #7266FF;
    font-weight: var(--font-weight-bold);
}

.app-pill .app-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.app-pill .app-pill-name {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-semibold);
    color: #777;
    transition: all 0.3s ease;
}

/* Active State for Pill */
.app-pill.active {
    opacity: 1;
    background: #fff;
    border-color: #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.app-pill.active .app-pill-icon {
    filter: grayscale(0);
}

.app-pill.active .app-pill-name {
    color: #111;
}

.app-pill:hover:not(.active) {
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.5);
}

/* ── CTA Row ── */
.btn-cta-proof {
    background: #7266FF;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: var(--fs-lg);
    border-radius: 12px;
}

.btn-cta-proof:hover {
    background: #5B52CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(114, 102, 255, 0.3);
}


.proof-content {
    width: 100%;
    flex: 1;
    max-width: 680px;
}

@media (max-width: 900px) {


    .proof-sidebar {
        width: 100%;


        scrollbar-width: none;
    }

    .proof-sidebar::-webkit-scrollbar {
        display: none;
    }

    .app-pill {
        flex: 0 0 auto;
        width: 50px;
        min-height: 0;
        justify-content: center;
    }

    .app-pill-body {
        padding: 8px;
        justify-content: center;
        gap: 0;
    }

    .app-pill-countdown {
        display: none;
    }

    .app-pill-name {
        display: none;
    }

    .proof-sidebar {
        width: 72px;
    }

    .proof-layout {
        width: calc(100vw - 12px);
        gap: 12px;
        margin: 0 -20px;
        margin-bottom: 24px;
    }

    .proof-content {
        width: calc(100vw - 120px);

    }

    .section-how-it-works {
        padding: 20px 0 !important;
    }

    .proof-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .how-header {
        display: block !important;
        top: 32px !important;
        padding-bottom: 12px !important;
    }

    .how-footer-spacer {
        display: none !important;
    }

    .how-step {
        margin-bottom: 0 !important
    }

    .proof-videos {
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        scrollbar-width: none;
        /* Firefox */
    }

    .proof-videos::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .mini-vid-wrap {
        flex: 0 0 240px;
        /* Fixed width for better horizontal feel */
        scroll-snap-align: start;
    }

    /* Hero Mobile Redesign */
    .url-input-wrap {
        flex-direction: column;
        background: none;
        box-shadow: none;
        gap: 12px;
        overflow: visible;
    }

    .url-input-wrap input {
        background: #fff;
        border-radius: 6px;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn-hero-cta {
        width: 100%;
        border-radius: 6px !important;
        padding: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .topbar-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.96);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
        z-index: 1000;
    }

    .topbar-nav.active {
        display: flex;
    }

    .mobile-signin-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        color: #fff !important;
        background: #7266FF;
        font-weight: var(--font-weight-semibold);
    }

    .burger-menu {
        display: block;
    }

    .topbar-signin-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 10px;
    }

    .topbar-right {
        display: none;
    }
}

/* ── Proof Card ── */
/* ── Proof Card ── */
.proof-card {
    position: relative;
    flex: 0 0 460px;
    background: #fff;
    border: none;
    border-radius: 32px;
    padding: 32px;
    padding-bottom: 24px;
    opacity: 0.35;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    color: #111;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.proof-card.proof-card--active {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.proof-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.proof-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.proof-title-wrap {
    flex: 1;
}

.proof-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.proof-name {
    font-weight: var(--font-weight-bold);
    font-size: var(--fs-2xl);
    color: #111;
}

.proof-cat {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.proof-desc {
    font-size: var(--fs-md);
    color: #555;
    line-height: 1.4;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.proof-ext {
    font-size: var(--fs-xl);
    color: #ccc;
    transition: var(--transition);
}

.proof-ext:hover {
    color: var(--accent);
}

.proof-videos {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.mini-vid-wrap {
    flex: 1;
}

.mini-vid {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #f5f5f7;
    transition: var(--transition);
}
#app-url-error[hidden]{
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    
}

.mini-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--fs-xl);
    opacity: 0.9;
    padding-left: 2px;
    cursor: pointer;
    z-index: 3;
}

.mini-vid-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    margin-top: -16px;
    margin-left: -16px;
    transform: rotate(0deg);
    animation: spin 0.85s linear infinite;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mini-vid--loading .mini-vid-loader {
    opacity: 1;
}

.mini-vid--loading .mini-play {
    opacity: 0.35;
}



.mini-vid-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
}

.mini-vid-icon {
    display: flex;
    align-items: center;
}

.mini-vid-icon .platform-svg {
    width: 18px;
    height: 18px;
}

.proof-metrics {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.proof-metric {
    text-align: center;
}

.proof-metric-val {
    font-size: var(--fs-3xl);
    font-weight: var(--font-weight-medium);
    color: #111;
    line-height: 1;
}

.proof-metric-label {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-medium);
    color: #a855f7;
    margin-top: 4px;
}

.mini-vid:hover .mini-play {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.mini-vid.playing .mini-play {
    opacity: 0;
}

.mini-vid.playing:hover .mini-play {
    opacity: 0;
}

.mini-play:hover {
    transform: translate(-50%, -50%) scale(1.2) !important;
    transition: all 0.3s ease-in-out;
}


.mini-video-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    pointer-events: none;
    z-index: 0;
}

.mini-views {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
    text-align: center;
}

.mini-revenue {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    flex: 1;
    color: var(--green);
    text-align: center;
}

/* Shared social link primitives */
.mini-video-link,
.sac-row-link {
    text-decoration: none;
}

.sac-row-link {
    padding: var(--social-link-pad);
    margin: var(--social-link-margin);
    border-radius: var(--radius-xs);
}

.sac-platform,
.mini-link-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sac-platform {
    width: 16px;
    height: 16px;
}

.mini-link-platform {
    width: 13px;
    height: 13px;
}

.platform-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sac-handle {
    font-weight: var(--font-weight-medium);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-video-link {
    position: relative;
    top:8px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    transition: background-color var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast);
}

.mini-video-link:hover {
    color: var(--accent-light);
    background: var(--bg-glass);
    border-color: var(--border);
}

.mini-video-link:focus-visible {
    outline: none;
    color: var(--accent-light);
    border-color: var(--accent);
    box-shadow: var(--focus-ring);
}

@media (max-width: 700px) {
    .proof-card {
        flex: 0 0 100%;
        min-width: 0;
        padding: 16px;
    }

    .proof-name-row {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2px;
    }

    .steps-vertical {
        gap: 48px;
    }

    .proof-ext {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .mini-vid-wrap {
        min-width: 220px;
    }

    .step-block {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 28px 20px 24px;
        border-radius: 18px;
    }

    .step-block h3 {
        font-size: var(--fs-xl);
        margin-bottom: 20px;
    }

    .step-content {
        flex-direction: column;
        gap: 20px;
    }

    .step-block .step-visual {
        flex: none;
        max-width: 200px;
    }

    .step-bullets li {
        font-size: var(--fs-sm);
    }

    .step-arrow {
        display: none;
    }
}

/* ── Steps Vertical Zigzag ── */
.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Step block: card ── */
.step-block {
    text-align: left;
    background: rgba(14, 14, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 64px 56px 60px;
    position: relative;
    overflow: visible;
    width: 78%;
}

.step-block.step-right {
    margin-left: auto;
}

.step-block.step-left {
    margin-right: auto;
}

/* ── Step label ── */
.step-label {
    text-transform: uppercase;
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.step-block h3 {
    font-size: var(--fs-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}

/* ── Step content: bullets + image ── */
.step-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.step-bullets {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.step-bullets li:last-child {
    margin-bottom: 0;
}

.step-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.step-block .step-visual {
    flex: 0 0 220px;
    overflow: hidden;
}

.step-block .step-visual img {
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
}

/* ── Arrows between steps ── */
.step-arrow {
    position: absolute;
    pointer-events: none;
}

.step-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* LTR: exits right side at vertical middle, goes to center of right block above */
.step-arrow-ltr {
    top: 50%;
    left: 100%;
    width: 23%;
    height: calc(50% + 76px);
}

/* RTL: exits left side at vertical middle, goes to center of left block above */
.step-arrow-rtl {
    top: 50%;
    right: 100%;
    width: 23%;
    height: calc(50% + 76px);
}

/* Starting dot */
.step-arrow::before {
    content: "";
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9B5DE5;
}

.step-arrow-ltr::before {
    left: -5px;
}

.step-arrow-rtl::before {
    right: -5px;
}

/* Arrowhead triangle */
.step-arrow::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #9B5DE5;
}

.step-arrow-ltr::after {
    right: -7px;
}

.step-arrow-rtl::after {
    left: -7px;
}



@media (max-width: 980px) {
    .hero h1 {
        max-width: 860px;
    }

    .hero .hero-title-line {
        display: inline;
        white-space: normal;
    }

    .hero .subtitle {
        max-width: 620px;
    }

    .hero .subtitle-line {
        display: inline;
        white-space: normal;
    }

    .hero .subtitle br {
        display: none;
    }

    .proof-strip {
        gap: 10px;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-label.proof-strip {
        justify-content: center;
        padding-left: 0;
        display: flex !important;
    }
    .proof-strip .methodology-divider{
margin-right:0 !important;
    }

    .proof-strip .stat {
        min-width: 120px;
        flex: 1 1 calc(50% - 10px);
        padding: 14px 12px 12px;
    }

    .proof-strip .stat-value {
        font-size: var(--fs-2xl);
    }

}

@media (max-width: 600px) {
    .proof-card {
        opacity: 1;
        filter: blur(0);
    }

    .container {
        padding: 0 16px;
    }

    .landing-pricing-grid {
        gap: 24px;
        margin: 20px auto;
    }

    .comparison-table tr td {
        padding-right: 8px;
        padding-left: 8px;
    }

    .comparison-table tr td:first-child {
        padding-left: 0;
    }

    .section-subtitle {
        margin: 0 auto 16px;
    }

}

/* ── Comparison Section ── */
.section-comparison {
    background: #f3f4f5;
    padding: 90px 0;
}

.comp-header-block {
    margin-bottom: 32px;
}

.comp-main-title {

    margin-bottom: 12px;
}

.comp-sub-title {
    font-size: var(--fs-xl);
    color: #444;
    font-weight: var(--font-weight-medium);
}

.comparison-grid {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 120px;

    align-items: center;
}

.comp-column {
    display: flex;
    flex-direction: column;
}

.comp-row {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: var(--fs-md);
    font-weight: var(--font-weight-medium);
    color: #333;
    border-bottom: 1px solid #eaedf0;
}




.comp-row svg {
    margin-right: 16px;
    flex-shrink: 0;
}

.comp-column.titles .comp-row {
    color: #888;
    padding-left: 0;
    border-bottom: 1px solid transparent;
}

.comp-column.titles .comp-row:not(.header-spacer) {
    border-bottom: 1px solid #eaedf0;
}

.comp-header {
    height: 60px;
    border-bottom: none !important;
    justify-content: center;
}

.header-spacer {
    height: 60px;
    border-bottom: none !important;
}

.comp-header h3 {
    font-size: var(--fs-xl);
    margin-top: 12px;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.text-pink {
    color: #ff4d94;
}

.inspairy-card {
    background: #fff;
    border: 2px solid #7266FF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(114, 102, 255, 0.08);
    position: relative;
    z-index: 2;
}

.inspairy-card .comp-row {
    border-bottom-color: #f1f3f5;
    padding: 0 20px;
}

.inspairy-card .comp-row:last-child {
    border-bottom: none;
}



.green-icon {
    color: #22c55e;
    font-size: var(--fs-xl);
    margin-right: 12px;
    font-weight: var(--font-weight-bold);
}

.pink-icon {
    color: #ff4d94;
    font-size: var(--fs-xl);
    margin-right: 12px;
    font-weight: var(--font-weight-bold);
}

.comp-cta {
    margin-top: 32px;
}

@media (max-width: 800px) {
    .comparison-grid {

        gap: 0px;
        padding: 0;
        margin-left: -12px;
        margin-right: -12px;
    }

    .comp-header h3 {
        font-size: var(--fs-sm);
    }

    .comp-row {
        padding: 0 12px !important;
        font-size: var(--fs-xs) !important;

    }

    .pink-icon {
        margin-right: 6px;
        display: none;
    }

    .comp-row svg {
        margin-right: 8px;
    }

    /* .comp-column.titles {
        display: none;
    }

    .inspairy-card {
        transform: none;
    } */

    /* .comp-row {
        height: auto;
        padding: 16px 20px;
    } */
}

/* ── Who Is Built For ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.audience-card {
    text-align: center;
}

.audience-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.12);
    box-shadow: 0 0 24px rgba(114, 102, 255, 0.2);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-3xl);
    margin: 0 auto 20px;
}

.audience-card h3 {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
}

.audience-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.audience-grid+.landing-cta-row {
    margin-top: 64px;
}

/* ── Billing Toggle ── */
.toggle-wrapper {
    background: #e5e7eb;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    position: relative;
    user-select: none;
    --track-width: 0px;
    --track-left: 0px;
}

.billing-toggle-row {
    display: flex;
    align-items: center;

    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.billing-toggle-label {
    position: relative;
    z-index: 2;
    padding: 8px 16px;
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 40px;
}

.billing-toggle-label.active {
    color: #111;
    background: #fff;

}

.billing-toggle-switch {
    display: none;
}

.billing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-toggle-track {
    position: absolute;
    top: 3px;
    left: 0;
    width: var(--track-width);
    height: calc(100% - 6px);
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(var(--track-left));
    z-index: 1;
}

/* Logic handled via JS for dynamic widths */

.billing-toggle-switch input:checked+.billing-toggle-track {
    background: var(--accent);
    border-color: var(--accent);
}

.billing-toggle-switch input:checked+.billing-toggle-track::after {
    transform: translateX(20px);
}

.billing-save-badge {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--green);
    background: var(--green-bg);
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 4px;
}

/* ── How It Works Section ── */
.section-how-it-works {
    background: #fff;
    padding: 100px 0;
}

.how-header {
   


    z-index: 10;
    /* Optional slight background if text overlaps, but left transparent for now as steps stick below it */
}

.how-pre-title {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-semibold);
    color: #111;
    margin-bottom: 8px;
}

.how-main-title {
    font-size: var(--fs-fluid-display);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    background: linear-gradient(135deg, #7266FF, #DF81F5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-steps {
    max-width: 1100px;
    margin: 70px auto 0;
    position: relative;
    display: flex;
    z-index: 10;
    flex-direction: column;
    /* No gap here, using margin-bottom on steps for sticky space */
}

/* Connecting Line */
/* .how-steps::before {
    content: '';
    position: absolute;
    left: 160px;
    top: 50px;
    bottom: 30vh;
    width: 2px;
    background: linear-gradient(to bottom, #7266FF, #7266FF 90%, transparent);
    opacity: 0.15;
} */

.how-step {
   
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 60vh;
   flex-direction: row;
    /* Slightly more space */
    z-index: 2;

}


.how-visual-box img{
    margin-top:5px;
}

.how-step.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    filter: blur(0);
}



@media (max-width: 900px) {
    .how-step {
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
        top: auto !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        margin-bottom: 64px !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        text-align: center;
        gap: 16px !important;
    }

    .how-step-visual {}

    #section-proof {
        padding-top: 0;
    }

    .how-step-visual {
        width: 100% !important;
        height: 180px !important;
    }

    .how-visual-box {
        width: 180px !important;
        height: 180px !important;
        margin: 0 auto;
    }

    .how-visual-box img {
        width: 100px !important;
        height: 100px !important;
    }

    .how-steps::before {
        display: none !important;
    }

    .how-step-content {
        padding: 0;
    }

    .how-step-title {
        
        font-size: var(--fs-fluid-subtitle) !important;
        font-weight: var(--font-weight-regular) !important;
        margin-bottom: 24px !important;

    }

    .how-header {
        position: relative !important;
        z-index: auto !important;
    }
}

.how-step-visual {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    justify-content: center;
}

.how-visual-box {
    width: 320px;
    height: 320px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.how-visual-box i {
    font-size: var(--fs-mega);
    color: #fff;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.gradient-1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-2 {
    background: linear-gradient(135deg, #ec4899, #d946ef);
}

.gradient-3 {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.gradient-4 {
    background: linear-gradient(135deg, #111, #333);
}

.gradient-5 {
    background: linear-gradient(135deg, #2f643a, #567a29);
}

/* Grain Texture Placeholder */
.how-visual-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.15"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.how-step-content {
    flex: 1;
    padding-top: 12px;
    padding-bottom: 12px;

}

.how-step-label {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top:8px;
}
.how-header{
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.how-header .how-step{
    filter: blur(0px);
    pointer-events: auto;
    visibility: visible;
    position: absolute;
    opacity: 1;
    top:calc(10vh - 2px);
    z-index: 1;
    width:100%;
    transform: scale(1);
    
}
.how-header .how-step .how-step-content{
    display: flex;
    flex-direction: column;
}
.how-header .how-step .how-step-content > *{
    align-self: start;
    text-align: left;
}

.how-step-title {
    font-size: var(--fs-display);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
    background: #fff;
    max-width: 540px;

    max-height: 105px;
    overflow: hidden;
}

.how-step-title strong {
    font-weight: var(--font-weight-bold);
}

.how-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.how-sub-item {
    background: var(--bg);
    padding: 24px;
    border-radius: 12px;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}

.how-sub-item p {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-regular);
    color: #111;
    line-height: 1.25;
    margin: 0;
}


.btn-cta-purple {
    background: #7266FF;
    color: #fff;
    padding: 20px 48px;
    font-size: var(--fs-xl);
    font-weight: var(--font-weight-semibold);
    border-radius: 14px;
}

.btn-cta-purple:hover {
    background: #5B52CC;
    transform: scale(1.02);
}

/* ── Who Inspairy Is Built For Section ── */
.section-who {
    background: #fff;
    padding: 120px 0;
}

.who-title {

    margin-bottom: 32px;
    color: #111;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    background: #f3f4f5;
    padding: 48px 40px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}



.who-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.who-icon-wrap i {
    font-size: var(--fs-4xl);
    color: #7266FF;
}

.who-card-title {
    font-size: var(--fs-fluid-subtitle);

    font-weight: var(--font-weight-bold);
    color: #111;
    margin-bottom: 16px;
    max-width:240px;
    line-height: 1.25;
}

.who-card-text {
    font-size: var(--fs-md);
    color: #555;
    line-height: 1.5;
    flex:1;
    margin-bottom: 32px;
    font-weight: var(--font-weight-medium);
}

.who-link {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-semibold);
    background: none;
    cursor: pointer;
    color: #7266FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.who-link i {
    position: relative;
    top: -1px;
}

.who-link:hover {
    text-decoration: none;
    gap: 12px;
}

@media (max-width: 1024px) {
    .how-step {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .how-steps::before {
        display: none;
    }

    .how-sub-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .how-sub-item {
        padding: 16px;
        min-height: auto;
        text-align: left;
    }

    .how-step-content {
        padding-top: 0;
    }

    .how-cta {
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .how-step-visual,
    .how-visual-box {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Landing Pricing ── */
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 20px auto;
}

.landing-pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.landing-pricing-card.highlighted {
    position: relative;
    border-color: var(--accent);
    box-shadow: 0 0 28px var(--accent-glow);
    padding-top: 36px;
}

.landing-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: #fff;
    background: var(--accent);
    padding: 5px 16px;
    border-radius: 20px;
}

.landing-pricing-name {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-pricing-price {
    font-size: var(--fs-display);
    font-weight: var(--font-weight-medium);
    margin-bottom: 16px;
    height: 52px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.landing-pricing-price.contact-price {
    font-size: var(--fs-xl);
    align-items: center;
}

.landing-pricing-price span {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
}

.landing-pricing-trial {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--green);
    margin-top: -12px;
    margin-bottom: 16px;
    height: 16px;
}

.landing-pricing-features {
    text-align: left;
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    margin-bottom: 12px;
}

.landing-pricing-features li {
    font-size: var(--fs-sm);
    color: #4b5563;
    padding: 5px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.landing-pricing-features li::before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3725 4.46721L5.87248 11.9672C5.80656 12.033 5.71721 12.07 5.62404 12.07C5.53088 12.07 5.44152 12.033 5.37561 11.9672L2.09436 8.68596C2.03226 8.61931 1.99845 8.53117 2.00005 8.44009C2.00166 8.34901 2.03856 8.26211 2.10297 8.1977C2.16738 8.13329 2.25428 8.09639 2.34536 8.09478C2.43644 8.09318 2.52459 8.12698 2.59123 8.18908L5.62404 11.2213L12.8756 3.97033C12.9423 3.90823 13.0304 3.87442 13.1215 3.87603C13.2126 3.87764 13.2995 3.91453 13.3639 3.97895C13.4283 4.04336 13.4652 4.13026 13.4668 4.22134C13.4684 4.31242 13.4346 4.40056 13.3725 4.46721Z' fill='%231EC23F' stroke='%231EC23F' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.landing-pricing-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: all 0.24s ease;
}

.landing-pricing-btn.secondary {
    background-color: #111;
    box-shadow: none;
}

.landing-pricing-btn:hover {
    transform: translateY(-1px);
    background-color: #5B52CC;

    text-decoration: none;
    color: #fff;
}
.landing-pricing-btn:active {
    transform: translateY(0);
}

@media (max-width: 960px) {
    .landing-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .landing-pricing-card {
        padding: 24px 20px;
    }
}

/* ── Pricing standalone page ── */
.pricing-hero {

    display: flex;
    background-color: #f3f4f5;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
    position: relative;
}


.pricing-hero-title {

    color: var(--text-primary);
    margin: 0 auto 8px;
}

.pricing-hero-subtitle {
    font-size: var(--fs-lg);
    color: #4b5563;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-page-grid {
    max-width: 1100px;
    margin: 24px auto;
}

/* ── FAQ Section ── */
#section-faq {
    background: #f3f4f5;
    padding: 100px 0;
    color: #111;
}

.faq-title {
    font-size: var(--fs-display);
    font-weight: var(--font-weight-bold);
    margin-bottom: 60px;
    color: #111;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 0 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #7266FF33;
    box-shadow: 0 4px 12px rgba(114, 102, 255, 0.05);
}

.faq-item.open {
    border-color: #7266FF;
    box-shadow: 0 10px 30px rgba(114, 102, 255, 0.08);
}

.faq-q {
    padding: 24px 0;
    font-weight: var(--font-weight-regular);
    font-size: var(--fs-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    width: 100%;
    text-align: left;
    color: #111;
}

.faq-q::after {
    content: '\ea12';
    /* ri-add-line placeholder */
    font-family: var(--font-icon);
    font-size: var(--fs-2xl);
    color: #cbd5e0;
    font-weight: var(--font-weight-regular);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
    color: #7266FF;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding-bottom: 24px;
    font-size: var(--fs-sm);
    color: #555;
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

.faq-cta-row {
    margin-top: 60px;
}

/* ── Footer ── */
.footer {
    background: #111;
    color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Background "in" watermark */
.footer-watermark {
    position: absolute;
    bottom: -130px;
    right: -10px;
    font-size: var(--fs-watermark);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    color: rgba(114, 102, 255, 0.15);
    user-select: none;
    pointer-events: none;

}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 32px;
}

.footer-social {
    display: flex;
    gap: 32px;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted)
}



.footer-social a {
    color: #fff;
    font-size: var(--fs-2xl);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    max-width: 700px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-address-col {
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: #888;
    font-weight: var(--font-weight-medium);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    color: #555;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: row;
        gap: 32px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ── Desktop Collapsed Sidebar ── */
@media (min-width: 901px) {
    .dashboard.sidebar-collapsed .sidebar {
        width: 86px;
    }

    .dashboard.sidebar-collapsed .sidebar-header {
        padding: 0;
        justify-content: center;
    }

    .dashboard.sidebar-collapsed .sidebar-header .logo img {
        display: none;
    }

    .dashboard.sidebar-collapsed .sidebar-nav,
    .dashboard.sidebar-collapsed .sidebar-nav-bottom {
        padding-left: 8px;
        padding-right: 8px;
    }

    .dashboard.sidebar-collapsed .nav-item {
        justify-content: center;
        padding: 12px 10px;
    }

    .dashboard.sidebar-collapsed .nav-item>span:not(.nav-icon) {
        display: none;
    }

    .dashboard.sidebar-collapsed .nav-icon {
        width: auto;
    }

    .dashboard.sidebar-collapsed .sidebar-footer {
        padding: 12px 8px;
    }

    .dashboard.sidebar-collapsed .account-btn {
        justify-content: center;
        padding: 10px 0;
        gap: 0;
    }

    .dashboard.sidebar-collapsed .account-info,
    .dashboard.sidebar-collapsed .account-arrow {
        display: none;
    }

    .dashboard.sidebar-collapsed .account-popover {
        left: calc(100% + 8px);
        right: auto;
        bottom: 10px;
        width: 240px;
    }

    /* Tooltip on nav items when collapsed */
    .dashboard.sidebar-collapsed .nav-item {
        position: relative;
    }

    .dashboard.sidebar-collapsed .nav-item::after {
        content: attr(data-tooltip);
        position: absolute;
        left: calc(100% + 12px);
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg-elevated);
        color: var(--text);
        font-size: var(--fs-xs);
        font-weight: var(--font-weight-semibold);
        padding: 6px 12px;
        border-radius: 8px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.15s ease;
        z-index: 200;
        border: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .dashboard.sidebar-collapsed .nav-item:hover::after {
        opacity: 1;
    }

    /* Tooltip on account button when collapsed */
    .dashboard.sidebar-collapsed .account-btn {
        position: relative;
    }

    .dashboard.sidebar-collapsed .account-btn::after {
        content: attr(data-tooltip);
        position: absolute;
        left: calc(100% + 12px);
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg-elevated);
        color: var(--text);
        font-size: var(--fs-xs);
        font-weight: var(--font-weight-semibold);
        padding: 6px 12px;
        border-radius: 8px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.15s ease;
        z-index: 200;
        border: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .dashboard.sidebar-collapsed .account-btn:hover::after {
        opacity: 1;
    }
}

/* ── Views Container ── */
.view-section {
    display: none;
    padding-bottom: 80px;
    animation: fadeIn 0.3s ease;
}

.view-section.active {
    display: block;
}

/* ── Settings View ── */
.settings-container {
    max-width: 800px;
    padding: 32px;
}

.settings-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
}

.settings-title {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-row {
    display: flex;
    gap: 10px;
}

.settings-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tiktok-account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tiktok-info-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tiktok-avatar {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tiktok-user-info div:first-child {
    font-weight: var(--font-weight-semibold);
}

.tiktok-user-info div:last-child {
    font-size: var(--fs-xs);
    color: var(--green);
}

.connect-btn-wrap {
    position: relative;
    flex-shrink: 0;
}

/* ── App Description Generation States ── */
.app-desc-generating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
    border: 1px dashed rgba(114, 102, 255, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(114, 102, 255, 0.06);
    cursor: pointer;
}

#similar-apps-generating {
    margin-top: 16px;
    max-width: 680px;
}

.app-desc-spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.app-desc-generating-text {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.app-desc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

/* ── Dash Banners (unified) ── */
/* ── Daily Post Banner ── */
.daily-post-banner {
    margin: 16px 24px 0;
    padding: 20px 24px;
    background: rgba(124, 92, 255, 0.12);
    border: 1px solid rgba(124, 92, 255, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dpb-text {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-medium);
    max-width: 600px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.dpb-btn-wrap {
    position: relative;
    flex-shrink: 0;
}

.dpb-btn {
    background: var(--accent);
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.dpb-btn-trial {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    transition: background var(--motion-fast);
}

.dpb-btn:hover {
    background: #4941A3;
}

@media (max-width: 700px) {
    .daily-post-banner {
        flex-direction: column-reverse;
        align-items: flex-start;
        margin: 12px 16px 0;
    }

    .dpb-btn-wrap {
        width: 100%;
    }

    .dpb-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── Shared View Callout ── */
.view-callout {
    margin: 0 20px;
    padding: 16px 20px;
    /* max-width: 680px; */
    background: rgba(114, 102, 255, 0.06);
    border: 1px solid rgba(114, 102, 255, 0.15);
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.view-callout-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(114, 102, 255, 0.12);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
}

.view-callout p {
    margin: 0;
}

.view-callout ul {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style: disc;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

@media (min-width: 900px) {
    .view-callout ul {
        grid-template-columns: 1fr 1fr;
        gap: 8px 24px;
    }

   
}

/* ── Video Formats List View ── */
.video-formats-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 24px 32px;
}

.vf-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--motion-fast);
}

.vf-row:hover {
    border-color: var(--border-hover);
}

.vf-top {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
    /* max-height: 340px; */
}

.vf-preview-wrap {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-self: stretch;
}

.vf-preview-label {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.vf-preview {
    position: relative;
    flex: 0 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #0b0b14;
    cursor: pointer;
}

.vf-preview-video {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.vf-preview-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #6340e0);
    box-shadow: 0 6px 16px var(--accent-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    opacity: 0.92;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.vf-preview:hover .vf-preview-play {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
    box-shadow: 0 10px 24px rgba(114, 102, 255, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.vf-preview.playing .vf-preview-play {
    opacity: 0;
}

.vf-preview.playing:hover .vf-preview-play {
    opacity: 0;
}

/* ── Format Carousel Preview ── */
.vf-preview-wrap--carousel {
    flex: 0 0 35%;
}

.vf-carousel {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #0b0b14;
}

.vf-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vf-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.vf-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

.vf-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: var(--fs-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.vf-carousel:hover .vf-carousel-arrow {
    opacity: 1;
}

.vf-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.vf-carousel-prev {
    left: 6px;
}

.vf-carousel-next {
    right: 6px;
}

.vf-carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}

.vf-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vf-carousel-dot.active {
    background: #fff;
    transform: scale(1.25);
}

.vf-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.vf-info {
    flex: 0 0 calc(65% - 20px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vf-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vf-name-top {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vf-number {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-light);
}

.vf-label {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
}

.vf-lock-spacer {
    height: 38px;
    /* match .vf-lock-badge height */
}

/* Inline lock badge (right of format name, same height as name block) */
.vf-lock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    /* flex: 1 1 100%; */
    padding: 8px 10px 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(114, 102, 255, 0.35);
    background: rgba(114, 102, 255, 0.08);
    white-space: nowrap;
}

.vf-lock-text {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    color: #b8a5ff;
}

.vf-lock-badge .btn {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
    font-weight: var(--font-weight-semibold);
    flex-shrink: 0;
}

.vf-lock-badge .btn:hover {
    background: #8b6fff;
    box-shadow: 0 4px 14px rgba(114, 102, 255, 0.3);
    transform: translateY(-1px);
}

.vf-desc-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vf-desc-heading {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.vf-desc {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.vf-desc b {
    color: var(--text);
    font-weight: var(--font-weight-semibold);
}

.vf-examples {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.vf-examples-title {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0;
}

/* Format selection controls (reused in vf-row) */
.format-details-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.format-details-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    cursor: pointer;
}

.format-details-select input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.format-details-check {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.format-details-check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) scale(0.7);
    opacity: 0;
    transition: var(--transition);
}

.format-details-select input:checked+.format-details-check {
    background: var(--accent);
    border-color: var(--accent);
}

.format-details-select input:checked+.format-details-check::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.format-details-select input:disabled+.format-details-check {
    opacity: 0.4;
}

/* (old .format-details-lock-state removed — replaced by inline .vf-lock-badge) */

/* ── Format Examples Table ── */
.fex-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.fex-table thead th {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0 6px 5px;
    border-bottom: 1px solid var(--border);
    text-align: right;
    white-space: nowrap;
}

.fex-th-platform {
    width: 28px;
    text-align: center !important;
}

.fex-th-link {
    width: 36px;
    text-align: center !important;
}

.fex-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.fex-hidden-row.hidden {
    display: none;
}

.fex-table td {
    padding: 5px 6px;
    white-space: nowrap;
}

.fex-td-platform {
    width: 28px;
    text-align: center;
}

.fex-platform {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fex-td-stat {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    text-align: right;
}

.fex-td-revenue {
    color: var(--green);
    font-weight: var(--font-weight-semibold);
}

.fex-td-link {
    width: 36px;
    text-align: center;
}

.fex-ext-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--motion-fast);
}

.fex-ext-link:hover {
    color: var(--accent-light);
}

/* Load more examples button */
.fex-load-more {
    background: none;
    border: none;
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    margin: 0 auto;
    color: var(--accent-light);
    cursor: pointer;
    padding: 6px 0 0;
    text-align: left;
    transition: color var(--motion-fast);
}

.fex-load-more:hover {
    color: var(--accent);
}

/* Video Formats responsive */
@media (max-width: 1200px) {
    .video-formats-list {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .vf-row {
        flex-direction: column;
    }

    /* .vf-top { */
    /* flex-direction: column; */
    /* max-height: none; */
    /* } */

    .vf-lock-spacer {
        display: none;
    }

    .vf-preview-wrap {
        flex: 0 0 auto;
        flex: 1;
    }

    .vf-preview {
        flex: 1;
    }

    .vf-examples {
        flex: 1 1 100%;
    }
}

/* ── Publication Calendar ── */
.video-calendar {
    padding: 20px 24px 0;
    overflow: hidden;
}

/* Week navigation */
.cal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: var(--fs-xl);
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.cal-nav-btn:disabled:hover {
    background: transparent;
}

.cal-nav-label {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    min-width: 180px;
    text-align: center;
}

.cal-nav-today {
    margin-left: auto;
    padding: 6px 14px;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
}

/* Day-of-week header */
.cal-dow-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.cal-dow-header span {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Single week grid */
.cal-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.cal-day {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 70px;
    overflow: hidden;
}

.cal-date {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-muted);
    margin-bottom: 6px;
    text-align: center;
    height: 26px;
    line-height: 26px;
}

.cal-date-dow {
    display: none;
}

.cal-day.is-today .cal-date {
    color: #fff;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: var(--font-weight-semibold);
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Placeholder cell — future day beyond generation window */
.cal-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 8px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.cal-placeholder-icon {
    font-size: var(--fs-xl);
    opacity: 0.4;
}

.cal-placeholder-text {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pro badge on future placeholder */
.cal-placeholder-pro-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    padding: 3px 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity var(--transition), transform var(--transition);
    margin-top: 2px;
}

.cal-placeholder-pro-badge:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Empty past cell */
.cal-placeholder-empty {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
}

.cal-placeholder-empty .cal-placeholder-text {
    opacity: 0.4;
}

/* ── Video Card ── */
.dash-video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

/* Thumb / Video Player */
.dash-video-card .thumb {
    aspect-ratio: 9/16;
    background: #0a0a14;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dash-video-card .thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.35s ease, filter 0.25s ease;
}

.dash-video-card .thumb-play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    font-size: var(--fs-md);
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #6340e0);
    box-shadow: 0 6px 16px var(--accent-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    opacity: 0.92;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dash-video-card .thumb:hover {
    box-shadow: none;
}

.dash-video-card .thumb:hover::after {
    opacity: 0.5;
}

.dash-video-card .thumb:hover .card-video {
    filter: saturate(1.1);
}

.dash-video-card .thumb:hover .thumb-play-icon {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 10px 24px rgba(114, 102, 255, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.dash-video-card.playing .thumb-play-icon {
    opacity: 0;
}

.dash-video-card.playing .thumb:hover .thumb-play-icon {
    opacity: 0;
}

.dash-video-card.playing .card-video {
    z-index: 1;
}

.status-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.thumb-spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    z-index: 3;
}

.status-not_published {
    background: rgba(251, 191, 36, 0.2);
    color: var(--yellow);
}

.status-published {
    background: rgba(52, 211, 153, 0.2);
    color: var(--green);
}

.status-generating {
    background: rgba(162, 114, 244, 0.2);
    color: var(--accent-light);
}

/* Card Body */
.card-body {
    padding: 8px 10px 0;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

/* Format section — grouped container */
.video-card-format-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0px;
}

.format-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    text-align: left;
}

.format-link-btn i {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    transition: var(--transition);
}

.format-link-btn:hover {
    color: var(--accent-light);
}

.format-link-btn:hover i {
    color: var(--accent-light);
}

.video-card-format-heading {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    line-height: 1;
}

.video-card-format-name {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    line-height: 1.3;
}

.video-card-format-proof {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 2px;
}

.format-proof-item {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    line-height: 1;
    white-space: nowrap;
}

.format-proof-val {
    font-weight: var(--font-weight-semibold);
    color: var(--green);
}

.format-proof-sep {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    opacity: 0.4;
    line-height: 1;
}

/* Date rows */
.video-card-date-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
    min-width: 0;
}

.video-card-dates {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-label {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.date-value {
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vcdr-published .date-value {
    color: #c4b5fd;
}

.vcdr-scheduled .date-value {
    color: #fdba74;
}


/* Actions */
.dash-video-card .actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 10px 8px;
    margin-top: auto;
}

.action-btn-wrap {
    position: relative;
}

.action-btn-wrap .btn {
    width: 100%;
}

.dash-video-card .actions .btn {
    padding: 6px 4px;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-video-card .actions .btn.btn-primary {
    box-shadow: none;
}

.dash-video-card .actions .btn.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(114, 102, 255, 0.25);
}

.action-pro-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 1px 4px;
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--accent);
    border-radius: 3px;
    line-height: 1.3;
    z-index: 2;
    pointer-events: none;
}

/* ── Toggle ── */
.toggle {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle input {
    display: none;
}

.toggle .slider {
    position: absolute;
    inset: 0;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.toggle .slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
}

.toggle input:checked+.slider {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle input:checked+.slider::before {
    transform: translateX(20px);
    background: #fff;
}

.toggle input:disabled+.slider {
    opacity: 0.55;
    cursor: not-allowed;
}


@media (max-width: 820px) {
    .cal-dow-header {
        display: none;
    }

    .cal-week {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    .cal-date-dow {
        display: inline;
    }

    .cal-day.is-today .cal-date {
        width: auto;
        border-radius: 20px;
        padding: 0 10px;
    }

    .cal-day.is-past {
        display: none;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .topbar-nav {
        display: none;
    }

    .dashboard {
        flex-direction: column;
        display: block;
    }

    .sidebar {
        position: fixed;
        left: -270px;
        height: 100%;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar.open {
        transform: translateX(270px);
    }

    .sidebar-toggle-inside {
        display: none;
    }

    .sidebar-toggle-mobile {
        display: inline-flex;
    }

    .main-content {
        width: 100%;
        height: auto;
    }

    .dash-header {
        padding: 16px 20px;
        height: 64px;
    }

    .dash-title {
        font-size: var(--fs-lg);
    }

    .video-calendar {
        margin: 0 12px;
    }

    .cal-nav-label {
        font-size: var(--fs-xs);
        min-width: 140px;
    }



    .settings-container {
        padding: 20px;
    }

    .similar-apps-container {
        padding: 20px;
    }

    .similar-apps-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Overlay when sidebar open */
    .sidebar.open::after {
        content: '';
        position: fixed;
        inset: 0;
        left: 260px;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 760px) {
    .url-input-wrap {
        flex-direction: column;
        max-width: 100%;
    }
    .url-input-wrap input{
        font-size: 14px;
    }

    .url-input-wrap .btn {
        width: 100%;
        border-radius: 0 0 var(--radius) var(--radius);
        justify-content: center;
    }

    .url-input-wrap input {
        padding: 14px 16px;
    }

    .auth-flow-page {
        padding: 28px 14px;
    }

    .auth-flow-card {
        padding: 26px 20px;
    }

    .auth-flow-brand img {
        height: 26px;
    }

    .format-details-controls {
        gap: 8px;
    }
}

@media (max-width: 600px) {

    .hero {
        background-position-x: 0px;
    }

    .video-calendar {
        padding: 14px 12px 0;
    }

    .cal-week {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cal-day {
        min-height: 70px;
    }

    .cal-nav {
        gap: 8px;
    }

    .cal-nav-label {
        font-size: var(--fs-xs);
        min-width: 110px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Similar Apps Section ── */
.similar-apps-container {
    padding: 28px 32px;
}

.similar-apps-header {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
}

.similar-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* ── Similar App Card ── */
.sac-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.sac-card:hover {
    border-color: var(--border-hover);
}

.sac-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.sac-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    flex-shrink: 0;
}

.sac-info {
    flex: 1;
    min-width: 0;
}

.sac-name {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.sac-cat {
    display: inline-block;
    font-size: var(--fs-2xs);
    font-weight: var(--font-weight-semibold);
    padding: 2px 8px;
    border-radius: 10px;
}

.sac-desc {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Metrics row */
.sac-metrics {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.sac-metric {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.sac-metric-val {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-bold);
    color: var(--accent-light);
    line-height: 1.2;
}

.sac-metric-views {
    color: var(--text);
}

.sac-metric-label {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    margin-top: 2px;
}

/* Social accounts list */
.sac-accounts-label {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sac-accounts-label-modal {
    margin-top: 16px;
}

.sac-accounts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sac-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
}

.sac-row-link {
    transition: var(--transition);
}

.sac-row-link:hover {
    background: var(--bg-glass);
}

.sac-row-link:hover .sac-handle {
    color: var(--accent-light);
}

.sac-row-link:hover .sac-platform {
    transform: scale(1.06);
}

.sac-platform {
    transition: transform var(--motion-fast);
}

.sac-handle {
    flex: 1;
    color: var(--text-secondary);
}

.sac-views {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--green);
    flex-shrink: 0;
}

/* Expand button */
.sac-expand-btn {
    margin-top: 8px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--accent-light);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.sac-expand-btn:hover {
    color: var(--accent);
}

/* Social Accounts Modal */
.modal.modal-accounts {
    max-width: 400px;
}

.sac-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.sac-modal-app-icon {
    font-size: var(--fs-4xl);
}

.sac-modal-name {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.sac-modal-list {
    max-height: 400px;
    overflow-y: auto;
    gap: 8px;
}

.sac-modal-list .sac-row {
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.sac-modal-list .sac-row:last-child {
    border-bottom: none;
}

/* ── Pricing Modal ── */
.modal-pricing {
    max-width: 900px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pricing-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: border-color var(--motion-fast);
}

.pricing-card.current {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.15);
}

.pricing-card.highlighted {
    position: relative;
    border-color: var(--accent);
    box-shadow: 0 0 28px var(--accent-glow);
    padding-top: 32px;
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #6340e0);
    padding: 4px 12px;
    border-radius: 20px;
}

.pricing-card.enterprise {
    border-color: var(--accent);
    background: rgba(114, 102, 255, 0.06);
}

.pricing-card-name {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.pricing-card-price {
    font-size: var(--fs-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
}

.pricing-card-trial {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--green);
    margin-top: -12px;
    margin-bottom: 16px;
}

.pricing-card-price span {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
}

.pricing-card-features {
    text-align: left;
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-card-features li {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-card-features li::before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3725 4.46721L5.87248 11.9672C5.80656 12.033 5.71721 12.07 5.62404 12.07C5.53088 12.07 5.44152 12.033 5.37561 11.9672L2.09436 8.68596C2.03226 8.61931 1.99845 8.53117 2.00005 8.44009C2.00166 8.34901 2.03856 8.26211 2.10297 8.1977C2.16738 8.13329 2.25428 8.09639 2.34536 8.09478C2.43644 8.09318 2.52459 8.12698 2.59123 8.18908L5.62404 11.2213L12.8756 3.97033C12.9423 3.90823 13.0304 3.87442 13.1215 3.87603C13.2126 3.87764 13.2995 3.91453 13.3639 3.97895C13.4283 4.04336 13.4652 4.13026 13.4668 4.22134C13.4684 4.31242 13.4346 4.40056 13.3725 4.46721Z' fill='%231EC23F' stroke='%231EC23F' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-card-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: background var(--motion-fast);
}

.pricing-card-btn.btn-plan-upgrade {
    background: linear-gradient(135deg, var(--accent), #6340e0);
    color: #fff;
}

.pricing-card-btn.btn-plan-upgrade:hover {
    background: var(--accent-light);
}

.pricing-card-btn.btn-plan-current {
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: default;
    border: 1px solid var(--border);
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-pricing {
        max-width: 560px;
    }
}

@media (max-width: 600px) {

    .faq-item{
        padding: 0 16px !important;
    }
    .faq-q{
        padding: 16px 0 !important;
    }

    .how-header .how-step .how-step-content > *{
        align-self: center !important;
        text-align: center !important;
        /* margin:0 auto !important; */
    }


    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 16px;
    }

    .pricing-card-price {
        margin-bottom: 10px;
    }

    .pricing-card-features {
        margin-bottom: 16px;
    }

    .modal-pricing {
        max-width: 100%;
        padding: 24px 16px;
    }
}

@media (max-width: 600px) {
    .similar-apps-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 12px;
    }

    .who-card {
        padding: 32px 24px;
    }

    .topbar-nav a {
        text-align: center;
        font-size: var(--fs-md);
        padding: 16px;
        width: 100%;
    }
}

button {
    border: none;
}