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

    :root {
        --bg: #0C0E1D;
        --surface: #12162B;
        --card: #181D35;
        --card2: #1E2440;
        --accent: #F26A0A;
        --mint: #F26A0A;
        --purple: #5B3FD4;
        --purple-light: #7B62E8;
        --green: #2ECC71;
        --text: #F0F2FF;
        --muted: #7A82A6;
        --border: rgba(255,255,255,0.07);
        --font-body: 'Inter', Arial, sans-serif;
        --font-display: 'Manrope', Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-body);
        overflow-x: hidden;
        -webkit-font-smoothing: auto;
        text-rendering: optimizeLegibility;
    }

    /* ─── NAV ─── */
    nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        height: 64px;
        background: rgba(12,14,29,0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }
    .nav-logo {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--text);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
    }
    .nav-links a {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .nav-login {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }
    .nav-login:hover { color: var(--text); }
    .btn-nav {
        background: var(--accent);
        color: #fff;
        font-family: var(--font-display);
        font-size: 13px;
        font-weight: 700;
        padding: 9px 22px;
        border-radius: 8px;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: background 0.2s, transform 0.15s;
    }
    .btn-nav:hover { background: #d95e00; transform: translateY(-1px); color: #fff; }

    @media (max-width: 768px) {
        nav { padding: 0 20px; }
        .nav-links { display: none; }
    }

    /* ─── HERO ─── */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 24px 80px;
        position: relative;
        overflow: hidden;
    }
    .hero-glow-1 {
        position: absolute;
        top: -100px; left: 50%;
        transform: translateX(-50%);
        width: 900px; height: 700px;
        background: radial-gradient(ellipse at center, rgba(91,63,212,0.18) 0%, transparent 65%);
        pointer-events: none;
    }
    .hero-glow-2 {
        position: absolute;
        bottom: 0; right: -200px;
        width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(242,106,10,0.07) 0%, transparent 70%);
        pointer-events: none;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(91,63,212,0.15);
        border: 1px solid rgba(91,63,212,0.35);
        color: #A78BFA;
        padding: 6px 18px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 32px;
        animation: fadeDown 0.6s ease both;
    }
    .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 5vw, 4.35rem);
        font-weight: 800;
        line-height: 1.08;
        max-width: 980px;
        margin-bottom: 28px;
        animation: fadeUp 0.7s ease 0.1s both;
        letter-spacing: -1.6px;
        text-wrap: balance;
    }
    .hero h1 em {
        color: var(--accent);
        font-style: normal;
    }
    .hero-sub {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--muted);
        max-width: 560px;
        line-height: 1.8;
        margin-bottom: 48px;
        animation: fadeUp 0.7s ease 0.2s both;
        font-weight: 400;
    }
    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        animation: fadeUp 0.7s ease 0.3s both;
        margin-bottom: 64px;
    }
    .btn-primary {
        background: var(--mint);
        color: #fff;
        padding: 16px 36px;
        border-radius: 12px;
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 16px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s;
        letter-spacing: 0.2px;
    }
    .btn-primary:hover {
        background: #d95e00;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(242,106,10,0.35);
        color: #fff;
        text-decoration: none;
    }
    .btn-outline {
        background: transparent;
        color: var(--text);
        padding: 16px 36px;
        border-radius: 12px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        border: 1.5px solid rgba(255,255,255,0.15);
        transition: all 0.2s;
    }
    .btn-outline:hover {
        border-color: rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.05);
        color: var(--text);
        text-decoration: none;
    }
    .hero-social-proof {
        display: flex;
        align-items: center;
        gap: 12px;
        animation: fadeUp 0.7s ease 0.4s both;
    }
    .proof-avatars {
        display: flex;
    }
    .proof-avatars span {
        width: 32px; height: 32px;
        border-radius: 50%;
        border: 2px solid var(--bg);
        margin-left: -8px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--card2);
    }
    .proof-avatars span:first-child { margin-left: 0; }
    .proof-text {
        font-size: 13px;
        color: var(--muted);
    }
    .proof-text strong { color: var(--text); font-weight: 700; }


    /* ─── PRODUCT PREVIEW ─── */
    .hero-product {
        width: min(1100px, 100%);
        margin-top: 8px;
        animation: fadeUp 0.8s ease 0.4s both;
        position: relative;
        z-index: 2;
    }
    .product-shell {
        background: #111528;
        border: 1px solid rgba(255,255,255,0.11);
        border-radius: 22px;
        padding: 12px;
        box-shadow: 0 35px 90px rgba(0,0,0,.52), 0 0 0 1px rgba(242,106,10,.06);
        transform: perspective(1400px) rotateX(2deg);
    }
    .product-window {
        overflow: hidden;
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,.07);
        background: #0d1020;
        text-align: left;
    }
    .product-topbar {
        height: 42px;
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 0 16px;
        background: #171b31;
        border-bottom: 1px solid var(--border);
    }
    .window-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
    .product-body { display: grid; grid-template-columns: 190px 1fr; min-height: 430px; }
    .product-sidebar { padding: 22px 14px; background: #111528; border-right: 1px solid var(--border); }
    .product-brand { font-family: var(--font-display); font-weight: 800; font-size: 13px; margin: 0 8px 24px; }
    .side-item { padding: 10px 12px; margin-bottom: 5px; border-radius: 9px; color: var(--muted); font-size: 12px; font-weight: 700; }
    .side-item.active { background: rgba(242,106,10,.14); color: var(--accent); }
    .product-content { padding: 24px; }
    .product-heading { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-bottom:20px; }
    .product-heading h3 { font-family:var(--font-display); font-size:1.2rem; }
    .product-heading span { color:var(--muted); font-size:12px; }
    .mock-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:14px; }
    .mock-card { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:16px; }
    .mock-card-label { color:var(--muted); font-size:11px; margin-bottom:8px; }
    .mock-card-value { font-family:var(--font-display); font-size:1.45rem; font-weight:800; }
    .mock-card-value.orange { color:var(--accent); }
    .mock-main { display:grid; grid-template-columns:1.35fr .65fr; gap:14px; }
    .mock-chart { height:180px; display:flex; align-items:flex-end; gap:9px; padding-top:22px; }
    .mock-chart span { flex:1; min-width:8px; background:linear-gradient(180deg,var(--accent),rgba(242,106,10,.22)); border-radius:6px 6px 2px 2px; }
    .mock-list { display:flex; flex-direction:column; gap:10px; margin-top:12px; }
    .mock-list-row { background:var(--card2); padding:10px; border-radius:9px; font-size:11px; color:var(--muted); display:flex; justify-content:space-between; gap:8px; }
    .hero-trust { display:flex; justify-content:center; flex-wrap:wrap; gap:18px; color:var(--muted); font-size:12px; margin-top:22px; }
    .hero-trust span { display:flex; align-items:center; gap:6px; }
    @media (max-width:760px) {
        .product-shell { transform:none; padding:7px; }
        .product-body { grid-template-columns:1fr; min-height:0; }
        .product-sidebar { display:none; }
        .product-content { padding:14px; }
        .mock-grid { grid-template-columns:1fr; }
        .mock-main { grid-template-columns:1fr; }
        .mock-main .mock-card:last-child { display:none; }
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 36px 24px;
    }
    .stats-inner {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        gap: 32px;
        flex-wrap: wrap;
    }
    .stat {
        text-align: center;
    }
    .stat-num {
        font-family: var(--font-display);
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 6px;
    }
    .stat-label {
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
    }

    /* ─── SECTION COMMONS ─── */
    .section-tag {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
    }
    .section-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 3.4vw, 2.85rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 18px;
        letter-spacing: -0.9px;
        text-wrap: balance;
    }
    .section-sub {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.8;
        font-weight: 400;
        max-width: 540px;
    }

    /* ─── TRANSFORM / FEATURES ─── */
    .features-section {
        padding: 100px 24px;
        max-width: 1140px;
        margin: 0 auto;
    }
    .features-header {
        text-align: center;
        margin-bottom: 64px;
    }
    .features-header .section-sub { margin: 0 auto; }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .feat-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }
    .feat-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--mint), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }
    .feat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(242,106,10,0.12);
        box-shadow: 0 20px 48px rgba(0,0,0,0.35);
    }
    .feat-card:hover::after { opacity: 1; }
    .feat-icon {
        width: 52px; height: 52px;
        background: rgba(242,106,10,0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 22px;
    }
    .feat-card h3 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--text);
    }
    .feat-card p {
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.8;
    }
    @media (max-width: 900px) {
        .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
        .features-grid { grid-template-columns: 1fr; }
    }

    /* ─── AUDIENCE ─── */
    .audience-section {
        background: var(--surface);
        padding: 100px 24px;
    }
    .audience-inner {
        max-width: 1140px;
        margin: 0 auto;
    }
    .audience-header {
        text-align: center;
        margin-bottom: 56px;
    }
    .audience-header .section-sub { margin: 0 auto; }
    .audience-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .audience-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
    }
    .audience-card:hover {
        border-color: rgba(242,106,10,0.15);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }
    .audience-emoji {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 16px;
    }
    .audience-card h3 {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .audience-card p {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.7;
    }
    @media (max-width: 900px) {
        .audience-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
        .audience-grid { grid-template-columns: 1fr; }
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
        padding: 100px 24px;
        max-width: 1140px;
        margin: 0 auto;
    }
    .how-header {
        text-align: center;
        margin-bottom: 16px;
    }
    .how-section-sub {
        text-align: center;
        color: var(--muted);
        font-size: 1rem;
        margin-bottom: 72px;
        line-height: 1.7;
    }
    .steps-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .step-row {
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        align-items: center;
        gap: 0;
        padding: 48px 0;
        border-bottom: 1px solid var(--border);
    }
    .step-row:last-child { border-bottom: none; }
    .step-row.reverse .step-text { order: 3; text-align: right; }
    .step-row.reverse .step-center { order: 2; }
    .step-row.reverse .step-visual { order: 1; }
    .step-text { padding: 0 32px; }
    .step-row.reverse .step-text { padding: 0 32px; }
    .step-num-badge {
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
        display: block;
    }
    .step-text h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    .step-text p {
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.8;
    }
    .step-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        position: relative;
    }
    .step-dot {
        width: 48px; height: 48px;
        background: var(--mint);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.1rem;
        color: #fff;
        flex-shrink: 0;
        z-index: 1;
        position: relative;
    }
    .step-visual {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120px;
    }
    .step-visual-inner {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .step-mock-bar {
        height: 10px;
        border-radius: 100px;
        background: var(--card2);
        overflow: hidden;
    }
    .step-mock-bar-fill {
        height: 100%;
        border-radius: 100px;
        background: linear-gradient(90deg, var(--accent), var(--purple-light));
    }
    .step-mock-pill {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 100px;
        font-size: 11px;
        font-weight: 700;
        background: rgba(242,106,10,0.12);
        color: var(--accent);
        border: 1px solid rgba(242,106,10,0.3);
    }
    .step-mock-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        background: var(--card2);
        border-radius: 8px;
        font-size: 12px;
        color: var(--muted);
    }
    .step-mock-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: var(--mint);
        flex-shrink: 0;
    }
    @media (max-width: 768px) {
        .step-row { grid-template-columns: 1fr; gap: 24px; }
        .step-row.reverse .step-text,
        .step-row.reverse .step-center,
        .step-row.reverse .step-visual { order: unset; text-align: left; }
        .step-center { flex-direction: row; }
        .step-text { padding: 0; }
        .step-row.reverse .step-text { padding: 0; }
    }

    /* ─── PRICING ─── */
    .pricing-section {
        background: var(--surface);
        padding: 100px 24px;
        position: relative;
        overflow: hidden;
    }
    .pricing-section::before {
        content: '';
        position: absolute;
        top: -200px; left: 50%;
        transform: translateX(-50%);
        width: 1000px; height: 800px;
        background: radial-gradient(ellipse, rgba(91,63,212,0.12) 0%, transparent 65%);
        pointer-events: none;
    }
    .pricing-inner {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }
    .pricing-eyebrow {
        text-align: center;
        font-family: var(--font-display);
        font-style: italic;
        font-size: 1rem;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 12px;
    }
    .pricing-title {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        font-weight: 800;
        text-align: center;
        line-height: 1.15;
        margin-bottom: 56px;
        letter-spacing: -0.3px;
    }
    .pricing-title span { color: var(--accent); }

    /* SPLIT CARD */
    .plan-split {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        border-radius: 24px;
        overflow: hidden;
        border: 1.5px solid var(--accent);
        box-shadow: 0 0 0 1px rgba(242,106,10,0.2), 0 40px 100px rgba(0,0,0,0.5);
        position: relative;
    }
    .plan-ribbon {
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        color: #fff;
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 7px 28px;
        border-radius: 0 0 14px 14px;
        white-space: nowrap;
        z-index: 2;
    }
    .plan-left {
        background: var(--purple);
        padding: 60px 36px 44px;
        position: relative;
    }
    .plan-left::after {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 1px;
        background: rgba(255,255,255,0.1);
    }
    .plan-left-headline {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.4;
        margin-bottom: 32px;
    }
    .plan-left-headline em {
        color: var(--accent);
        font-style: italic;
    }
    .plan-feat-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        list-style: none;
    }
    .plan-feat-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.5;
        font-weight: 500;
    }
    .pf-check {
        width: 18px; height: 18px;
        border-radius: 50%;
        background: rgba(242,106,10,0.12);
        border: 1.5px solid rgba(242,106,10,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }
    .pf-check::after {
        content: '';
        width: 5px; height: 3.5px;
        border-left: 1.5px solid var(--mint);
        border-bottom: 1.5px solid var(--mint);
        transform: rotate(-45deg) translateY(-1px);
        display: block;
    }
    .plan-right {
        background: #0B0D1F;
        padding: 60px 32px 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .pr-tag {
        background: rgba(242,106,10,0.15);
        color: var(--accent);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: 6px;
        border: 1px solid rgba(242,106,10,0.3);
        margin-bottom: 14px;
        font-family: var(--font-body);
    }
    .pr-name {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 6px;
    }
    .pr-original {
        font-size: 0.9rem;
        color: var(--muted);
        text-decoration: line-through;
        margin-bottom: 18px;
    }
    .pr-inst-label {
        font-size: 0.78rem;
        color: var(--muted);
        font-weight: 600;
        margin-bottom: 4px;
        font-family: var(--font-body);
    }
    .pr-price {
        font-family: var(--font-display);
        font-size: 3.6rem;
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 12px;
    }
    .pr-price small { font-size: 1.6rem; }
    .pr-avista {
        font-size: 0.95rem;
        color: var(--text);
        margin-bottom: 12px;
        font-style: italic;
    }
    .pr-avista strong {
        font-family: var(--font-display);
        font-weight: 800;
        font-style: italic;
        color: var(--accent);
    }
    .pr-monthly {
        background: rgba(242,106,10,0.1);
        border: 1px solid rgba(242,106,10,0.25);
        border-radius: 8px;
        padding: 6px 16px;
        font-size: 0.76rem;
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 10px;
    }
    .pr-savings {
        font-size: 0.78rem;
        color: var(--green);
        font-weight: 700;
        margin-bottom: 24px;
    }
    .btn-assinar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px;
        background: var(--mint);
        color: #fff;
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 800;
        border: none;
        border-radius: 14px;
        cursor: pointer;
        transition: all 0.2s;
        letter-spacing: 0.2px;
        text-decoration: none;
    }
    .btn-assinar:hover {
        background: #d95e00;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(242,106,10,0.35);
        color: #fff;
        text-decoration: none;
    }
    .guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 36px;
        color: var(--muted);
        font-size: 0.83rem;
    }
    @media (max-width: 720px) {
        .plan-split { grid-template-columns: 1fr; }
        .plan-feat-list { grid-template-columns: 1fr; }
        .plan-left, .plan-right { padding: 52px 24px 36px; }
        .plan-left::after { display: none; }
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
        padding: 100px 24px;
        max-width: 1140px;
        margin: 0 auto;
    }
    .testimonials-header {
        text-align: center;
        margin-bottom: 56px;
    }
    .testimonials-header .section-sub { margin: 0 auto; }
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .testimonial-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px;
        transition: all 0.3s;
    }
    .testimonial-card:hover {
        border-color: rgba(242,106,10,0.12);
        transform: translateY(-3px);
    }
    .stars {
        color: #FFB547;
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    .testimonial-card blockquote {
        font-size: 0.9rem;
        color: rgba(240,242,255,0.85);
        line-height: 1.8;
        margin-bottom: 20px;
        font-style: italic;
    }
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .author-avatar {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 13px;
        color: #fff;
        flex-shrink: 0;
    }
    .author-info .name {
        font-weight: 700;
        font-size: 0.88rem;
        color: var(--text);
    }
    .author-info .role {
        font-size: 0.78rem;
        color: var(--muted);
        margin-top: 2px;
    }
    @media (max-width: 900px) {
        .testimonials-grid { grid-template-columns: 1fr; }
    }

    /* ─── CTA ─── */
    .cta-section {
        background: var(--surface);
        padding: 100px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 700px; height: 500px;
        background: radial-gradient(ellipse, rgba(242,106,10,0.07) 0%, transparent 65%);
        pointer-events: none;
    }
    .cta-box {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
    }
    .cta-box h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4.5vw, 3rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -0.3px;
    }
    .cta-box h2 span { color: var(--mint); }
    .cta-box p {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 44px;
    }
    .cta-quote {
        background: var(--card);
        border-left: 3px solid var(--mint);
        padding: 20px 24px;
        border-radius: 0 14px 14px 0;
        margin: 0 auto 44px;
        max-width: 520px;
        text-align: left;
    }
    .cta-quote p {
        color: var(--text);
        font-style: italic;
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.7;
    }
    .cta-quote span {
        color: var(--muted);
        font-size: 0.82rem;
        display: block;
        margin-top: 8px;
    }

    /* ─── FOOTER ─── */
    footer {
        background: #080A18;
        border-top: 1px solid var(--border);
        padding: 40px 24px;
    }
    .footer-inner {
        max-width: 1140px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-logo {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
        text-decoration: none;
    }
    .footer-links {
        display: flex;
        gap: 24px;
        list-style: none;
    }
    .footer-links a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }
    .footer-copy {
        font-size: 13px;
        color: var(--muted);
        text-align: center;
    }

    /* ─── ANIMATIONS ─── */
    @@keyframes fadeUp {
        from { opacity: 0; transform: translateY(24px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @@keyframes fadeDown {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ─── MODAL ─── */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(5,7,18,0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
    .modal-box {
        background: #fff;
        border-radius: 22px;
        padding: 44px 40px 36px;
        width: 100%;
        max-width: 460px;
        position: relative;
        transform: translateY(20px) scale(0.97);
        transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
        box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    }
    .modal-overlay.open .modal-box {
        transform: translateY(0) scale(1);
    }
    .modal-close {
        position: absolute;
        top: 14px; right: 16px;
        background: none; border: none;
        font-size: 1rem; color: #aaa;
        cursor: pointer;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        transition: background 0.15s, color 0.15s;
    }
    .modal-close:hover { background: #f0f0f0; color: #333; }
    .modal-header { text-align: center; margin-bottom: 28px; }
    .modal-icon { font-size: 2.2rem; margin-bottom: 12px; }
    .modal-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1d2e;
        line-height: 1.3;
    }
    .modal-badge {
        display: inline-block;
        background: rgba(242,106,10,0.1);
        color: var(--accent);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 4px 14px;
        border-radius: 100px;
        border: 1px solid rgba(242,106,10,0.25);
        margin-top: 10px;
    }
    .mf-group { margin-bottom: 16px; }
    .mf-label {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        color: #3a3f44;
        margin-bottom: 6px;
        font-family: var(--font-body);
    }
    .mf-req { color: #e74c3c; }
    .mf-input {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #dde0e8;
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 0.92rem;
        color: #1a1d2e;
        background: #f8f9fc;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .mf-input:focus {
        border-color: var(--accent);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(242,106,10,0.12);
    }
    .mf-input::placeholder { color: #c0c4d0; }
    .modal-submit {
        width: 100%;
        padding: 15px;
        background: var(--accent);
        color: #fff;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 800;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        margin-top: 8px;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        box-shadow: 0 4px 18px rgba(242,106,10,0.35);
    }
    .modal-submit:hover {
        background: #d95e00;
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(242,106,10,0.5);
    }
    .modal-legal {
        text-align: center;
        font-size: 0.72rem;
        color: #aaa;
        margin-top: 14px;
        line-height: 1.6;
        font-family: var(--font-body);
    }
    .modal-legal a { color: #888; text-decoration: underline; }
    .modal-legal a:hover { color: var(--accent); }
    @media (max-width: 500px) {
        .modal-box { padding: 36px 22px 28px; }
        .modal-title { font-size: 1.25rem; }
    }

/* ─── DASHBOARD PREVIEW ─── */
.dashboard-preview {
    position: relative;
    padding: 0 24px 80px;
    background: var(--bg);
}
.dashboard-preview .hero-product {
    margin: 0 auto 56px;
}
.hero-intro {
    min-height: auto;
    padding-bottom: 56px;
}

/* ─── FAQ ─── */
.faq-section {
    padding: 100px 24px;
    background: var(--surface);
}
.faq-header {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}
.faq-list {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 56px 20px 22px;
    position: relative;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 24px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.75;
}
