:root {
    --purple: #6B2FA0;
    --purple-dark: #5a2888;
    --purple-light: #8B5DC0;
    --purple-bg: #f6f0fc;
    --purple-bg-subtle: #faf7fe;
    --orange: #FF6B35;
    --orange-light: #FF8A5C;
    --green: #22c55e;
    --green-bg: #f0fdf4;
    --green-dark: #16a34a;
    --red: #ef4444;
    --red-bg: #fef2f2;
    --red-light: #fca5a5;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-section: #f5f3f8;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --border: #e8e4f0;
    --border-light: #f0ecf4;
    --shadow-sm: 0 1px 3px rgba(107,47,160,0.06);
    --shadow-md: 0 4px 20px rgba(107,47,160,0.08);
    --shadow-lg: 0 12px 40px rgba(107,47,160,0.12);
    --shadow-card: 0 2px 12px rgba(107,47,160,0.06);
    --font: 'DM Sans', -apple-system, sans-serif;
    --max-width: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; display: block; }
.section-title { font-size: clamp(32px, 5vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 18px; letter-spacing: -1.5px; color: var(--text-dark); }
.section-subtitle { font-size: 18px; color: var(--text-body); max-width: 620px; line-height: 1.7; }
.section-subtitle p { font-size: inherit; color: inherit; line-height: inherit; margin: 0; }
.highlight-purple { color: var(--purple); }
.highlight-red { color: var(--red); }

/* ============= NAV ============= */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: var(--bg-white); border-bottom: 1px solid var(--border-light);
}
.nav-banner {
    background: var(--purple); color: #fff; text-align: center;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
}
.nav-banner strong { color: var(--orange-light); }
.nav-bar { padding: 12px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); }
.nav-bar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin-bottom: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-body); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--purple); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple); color: #fff !important;
    padding: 15px 24px; border-radius: 50px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    transition: all 0.3s; box-shadow: 0 4px 16px rgba(107,47,160,0.25);
    border: none; cursor: pointer;
}
.nav-cta:hover {
    background: var(--purple-dark); color: #fff !important;
    transform: translateY(-1px); box-shadow: 0 6px 24px rgba(107,47,160,0.3);
}

/* ============= MOBILE BOTTOM NAV ============= */
.mobile-bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}
.mobile-bottom-nav-inner { display: flex; align-items: center; justify-content: space-around; gap: 4px; }
.mobile-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    text-decoration: none; color: var(--text-muted);
    font-size: 10px; font-weight: 600; padding: 6px 12px;
    border-radius: 10px; transition: all 0.2s; flex: 1; text-align: center;
}
.mobile-nav-item:hover, .mobile-nav-item:active { color: var(--purple); background: var(--purple-bg); }
.mobile-nav-item svg {
    width: 20px; height: 20px; stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.mobile-nav-item.cta-item {
    background: var(--purple); color: #fff !important;
    border-radius: 50px; padding: 10px 16px;
    flex-direction: row; gap: 6px; font-size: 12px;
    box-shadow: 0 4px 16px rgba(107,47,160,0.25);
    border: none; cursor: pointer;
}
.mobile-nav-item.cta-item:hover, .mobile-nav-item.cta-item:active { background: var(--purple-dark); color: #fff !important; }
.mobile-nav-item.cta-item svg { width: 16px; height: 16px; stroke: #fff; }

/* ============= PLAN CARDS ============= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 48px auto 0;
    text-align: left;
}
.plan-card {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #dbdbdb;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: #b0b0b0;
}
.badge-ribbon {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    border-top-right-radius: 12px;
}
.badge-ribbon span {
    position: absolute;
    top: 22px;
    right: -50px;
    width: 180px;
    display: block;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.badge-popular span  { background: #8b2be2; color: #fff; }
.badge-best span     { background: #2d8b3e; color: #fff; }
.badge-flat span     { background: #e07b00; color: #fff; }
.plan-card .card-header { margin-bottom: 15px; }
.plan-card .card-header h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.plan-card .card-pricing { border-bottom: 1px solid #f1f1f1; margin-bottom: 15px; padding-bottom: 0; }
.plan-card .price-row { display: flex; align-items: flex-end; gap: 3px; }
.plan-card .price-amount { font-size: 2.6rem; font-weight: 700; line-height: 1; }
.plan-card .price-period { font-size: 0.85rem; color: #555; margin-bottom: 6px; }
.plan-card .price-rev { font-size: 0.8rem; color: #afafaf; padding-bottom: 15px; margin-top: 3px; }
.plan-card .annual-checkbox { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 0.85rem; color: #333; }
.plan-card .annual-checkbox input[type="checkbox"] { width: 14px; height: 14px; accent-color: #1a1a1a; cursor: pointer; }
.plan-card .feature-list { list-style: none; padding: 0; margin: 0; }
.plan-card .feature-list li { display: flex; align-items: flex-start; gap: 10px; padding: 3px 0; font-size: 0.85rem; font-weight: 600; line-height: 1.35; }
.plan-card .feature-list li .icon { flex-shrink: 0; margin-top: 1px; }
.plan-card .icon svg { display: block; width: 18px; height: 18px; }
.plan-card .icon-check { color: #008c5a; }
.plan-card .icon-x { color: #e53e3e; }

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============= PRICING CTAs ============= */
.pricing-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============= BUTTONS ============= */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--purple); color: #fff !important;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 700; font-size: 15px; line-height: 1.4; text-decoration: none;
    transition: all 0.3s; border: 2px solid var(--purple); cursor: pointer;
    box-shadow: 0 6px 24px rgba(107,47,160,0.25);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--purple-dark); border-color: var(--purple-dark); color: #fff !important;
    transform: translateY(-2px); box-shadow: 0 10px 36px rgba(107,47,160,0.3);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--purple) !important; padding: 14px 32px; border-radius: 50px;
    font-weight: 700; font-size: 15px; line-height: 1.4; text-decoration: none;
    transition: all 0.3s; border: 2px solid var(--border); background: var(--bg-white);
    cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    border-color: var(--purple); background: var(--purple-bg);
    color: var(--purple-dark) !important; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,47,160,0.12);
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============= HERO ============= */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--purple-bg-subtle) 0%, var(--bg-white) 100%);
    position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -100px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(107,47,160,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-inner .icon-sm { stroke: #FFFFFF; }
.hero-content { max-width: 580px; position: relative; text-align: left; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red-bg); border: 1px solid var(--red-light);
    padding: 8px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--red);
    margin-bottom: 28px; animation: fadeInUp 0.6s ease;
}
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: blink 2s ease infinite; }
.hero h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 800; line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero p { font-size: 19px; color: var(--text-body); max-width: 520px; line-height: 1.7; margin-bottom: 36px; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-trust { display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 28px; animation: fadeInUp 0.6s ease 0.4s both; }
.hero-trust-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.hero-trust-stars { display: flex; gap: 2px; }
.hero-trust-stars svg { width: 14px; height: 14px; }

/* Hero visual: before/after card */
.hero-visual { animation: fadeInUp 0.6s ease 0.2s both; }
.hero-ba-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.hero-ba-header {
    display: grid; grid-template-columns: 1fr 1fr;
}
.hero-ba-col {
    padding: 20px 24px;
    text-align: left;
}
.hero-ba-col.before { border-right: 1px solid var(--border-light); background: var(--red-bg); }
.hero-ba-col.after { background: var(--green-bg); }
.hero-ba-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.hero-ba-col.before .hero-ba-label { color: var(--red); }
.hero-ba-col.after .hero-ba-label { color: var(--green-dark); }
.hero-ba-price-big { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.hero-ba-col.before .hero-ba-price-big { color: var(--text-dark); text-decoration: line-through; opacity: 0.5; }
.hero-ba-price-full { text-decoration: none !important; opacity: 1 !important; }
.hero-ba-col.after .hero-ba-price-big { color: var(--green-dark); }
.hero-ba-price-after { display: flex; align-items: baseline; gap: 8px; }
.hero-ba-price-strike { font-size: 20px; font-weight: 600; color: var(--text-muted); text-decoration: line-through; line-height: 1; }
.hero-ba-code { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.hero-ba-col.after .hero-ba-code { color: var(--green-dark); font-weight: 600; }
.hero-ba-badge {
    margin: 16px 24px;
    background: var(--purple);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-ba-note {
    padding: 12px 24px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
.hero-compat {
    display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 8px; margin-top: 20px; animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-compat-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-white); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 600; color: var(--text-body);
}
.hero-compat-badge::before { content: '\2713'; color: var(--purple); font-weight: 800; font-size: 11px; }

/* ============= HOW IT WORKS ============= */
.how-it-works { background: var(--bg-section); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.how-steps::before {
    content: ''; position: absolute;
    top: 36px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
    height: 2px; background: linear-gradient(90deg, var(--purple), var(--purple-light));
    opacity: 0.3;
}
.how-step { text-align: center; padding: 36px 24px; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.how-step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--purple); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(107,47,160,0.25);
}
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.how-step p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.how-step-icon { font-size: 28px; margin-bottom: 12px; }

/* ============= PROBLEM / REVENUE LEAK ============= */
.leak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
.funnel-step { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border-light); margin-bottom: 2px; box-shadow: var(--shadow-sm); }
.funnel-step .step-label { display: flex; justify-content: center; align-items: center; gap: 5px; font-weight: 500; font-size: 14px; color: var(--text-dark); }
.funnel-step .step-price { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.funnel-step .step-visitors { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.funnel-step.danger { border-color: rgba(239,68,68,0.3); background: var(--red-bg); }
.funnel-step.danger .step-price { color: var(--red); }
.funnel-step.success { border-color: rgba(34,197,94,0.3); background: var(--green-bg); }
.funnel-step.success .step-price { color: var(--green-dark); }
.funnel-drop { text-align: center; padding: 6px; color: var(--red); font-size: 12px; font-weight: 600; }
.leak-stats { display: flex; flex-direction: column; gap: 24px; }
.leak-stat { padding: 28px; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.leak-stat-number { font-size: 48px; font-weight: 800; letter-spacing: -2px; color: var(--red); line-height: 1; margin-bottom: 6px; }
.leak-stat-label { font-size: 15px; color: var(--text-body); line-height: 1.5; }

/* ============= BEFORE / AFTER ============= */
.before-after { background: var(--bg-section); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.ba-container { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.ba-panel { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-white); box-shadow: var(--shadow-md); }
.ba-panel-header { padding: 18px 28px; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.ba-panel.before .ba-panel-header { background: var(--red-bg); color: var(--red); border-bottom: 2px solid rgba(239,68,68,0.15); }
.ba-panel.after .ba-panel-header { background: var(--green-bg); color: var(--green-dark); border-bottom: 2px solid rgba(34,197,94,0.15); }
.ba-panel-body { padding: 24px; }
.ba-product { display: flex; gap: 16px; padding: 16px; background: var(--bg-light); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border-light); }
.ba-product-img { width: 70px; height: 70px; border-radius: 10px; background: var(--purple-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 28px; }
.ba-product-info { flex: 1; }
.ba-product-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; color: var(--text-dark); }
.ba-product-price { font-size: 17px; font-weight: 700; }
.ba-product-price .original { text-decoration: line-through; color: var(--text-muted); font-size: 14px; margin-right: 6px; }
.ba-product-price .sale { color: var(--purple); }
.ba-product-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; background: var(--purple-bg); color: var(--purple); margin-top: 5px; }
.ba-code-applied { font-size: 11px; font-weight: 600; color: var(--green-dark); margin-top: 4px; letter-spacing: 0.2px; }
.ba-savings-bar { margin-top: 14px; padding: 14px 20px; background: var(--green-bg); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; color: var(--green-dark); }
.ba-savings-bar > span:first-child { display: flex; gap: 5px; }
.ba-savings-bar > span .icon-sm { stroke: var(--green-dark); }
.ba-no-savings { margin-top: 14px; padding: 14px 20px; background: var(--red-bg); border: 1px dashed rgba(239,68,68,0.25); border-radius: var(--radius); font-size: 13px; color: var(--red); text-align: center; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.ba-no-savings > span { padding-top: 3px; }

/* ============= USE CASES ============= */
.use-cases { background: var(--bg-white); }
.use-cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.use-case-card {
    padding: 28px 24px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
}
.use-case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-light); background: var(--purple-bg-subtle); }
.use-case-icon { font-size: 36px; margin-bottom: 14px; }
.use-case-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.use-case-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ============= FEATURES ============= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.feature-card { padding: 32px; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s; box-shadow: var(--shadow-sm); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-light); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; background: var(--purple-bg); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============= PROOF ============= */
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; margin-bottom: 48px; }
.proof-stat { text-align: center; padding: 36px 20px; background: var(--purple-bg); border-radius: var(--radius-lg); border: 1px solid rgba(107,47,160,0.1); }
.proof-stat-value { font-size: 44px; font-weight: 800; letter-spacing: -2px; color: var(--purple); line-height: 1; margin-bottom: 8px; }
.proof-stat-desc { font-size: 14px; color: var(--text-body); font-weight: 500; }
.proof-case-study { padding: 48px; background: var(--bg-white); border-radius: var(--radius-lg); border: 2px solid var(--purple); position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.proof-case-study::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), var(--orange)); }
.case-study-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 24px; }
.case-study-numbers { display: flex; align-items: center; gap: 40px; margin-bottom: 16px; flex-wrap: wrap; }
.case-number { font-size: 56px; font-weight: 800; letter-spacing: -3px; line-height: 1; }
.case-number.before-num { color: var(--text-muted); }
.case-number.after-num { color: var(--purple); }
.case-arrow { font-size: 28px; color: var(--orange); }
.case-increase { display: inline-flex; align-items: center; gap: 8px; background: var(--green-bg); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 18px; color: var(--green-dark); border: 1px solid rgba(34,197,94,0.2); }
.case-context { font-size: 16px; color: var(--text-body); margin-top: 16px; line-height: 1.7; }

/* ============= COMPATIBILITY ============= */
.compat-section { background: var(--bg-white); }
.compat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.compat-card {
    padding: 28px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex; gap: 16px; align-items: flex-start;
}
.compat-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow-md); }
.compat-icon { font-size: 28px; flex-shrink: 0; display: flex; }
.compat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.compat-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ============= PERFORMANCE ============= */
.perf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.perf-card { padding: 32px 28px; text-align: center; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.perf-icon { font-size: 36px; margin-bottom: 16px; }
.perf-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.perf-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* ============= TESTIMONIALS ============= */
.tst-section { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.tst-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.tst-badge { display: inline-flex; align-items: center; gap: 8px; background: #FFF; border: 1px solid #E8E8E8; border-radius: 100px; padding: 6px 16px; font-size: 13px; color: #7e7f88; margin-bottom: 16px; }
.tst-badge img { width: 18px; height: 20px; object-fit: contain; }
.tst-title { font-size: 36px; font-weight: 700; color: #03003d; margin: 0; line-height: 1.2; }
.tst-score { font-size: 42px; font-weight: 700; color: #03003d; line-height: 1; text-align: right; }
.tst-count { font-size: 13px; color: #7e7f88; margin-top: 4px; text-align: right; }
.tst-stars { display: flex; gap: 2px; }
.tst-stars svg { width: 16px; height: 16px; }
.tst-grid-top { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.tst-featured { background: linear-gradient(135deg, #180325 0%, #2a0a40 50%, #180325 100%); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; justify-content: space-between; min-height: 360px; }
.tst-featured-tag { display: flex; width: fit-content; align-items: center; gap: 5px; background: #5b0a91; color: #FFF; font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.tst-featured-tag span { padding-top: 3px; }
.tst-featured-text { font-size: 20px; line-height: 1.6; color: #FFF; margin: 0; font-weight: 400; }
.tst-featured-author { display: flex; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 24px; }
.tst-featured-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(91,10,145,0.4); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: #c084fc; }
.tst-featured-name { font-size: 15px; font-weight: 600; color: #FFF; }
.tst-featured-meta { font-size: 13px; color: rgba(255,255,255,0.5); }
.tst-right-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 12px; }
.tst-card { background: #FFF; border-radius: 16px; padding: 20px 24px; border: 1px solid #EFEFEF; display: flex; flex-direction: column; justify-content: center; gap: 8px; transition: box-shadow 0.2s; }
.tst-card:hover { box-shadow: 0 4px 20px rgba(91,10,145,0.08); }
.tst-card-header { display: flex; justify-content: space-between; align-items: center; }
.tst-card-author { display: flex; align-items: center; gap: 8px; }
.tst-card-avatar { width: 32px; height: 32px; border-radius: 50%; background: #f3e8ff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #5b0a91; }
.tst-card-name { font-size: 13px; font-weight: 600; color: #03003d; }
.tst-card-meta { font-size: 11px; color: #7e7f88; }
.tst-card-text { font-size: 13.5px; line-height: 1.55; color: #7e7f88; margin: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.tst-grid-bottom { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.tst-card-bottom { background: #FFF; border-radius: 16px; padding: 24px; border: 1px solid #EFEFEF; display: flex; flex-direction: column; gap: 12px; transition: box-shadow 0.2s; }
.tst-card-bottom:hover { box-shadow: 0 4px 20px rgba(91,10,145,0.08); }
.tst-card-bottom .tst-card-text { font-size: 14px; line-height: 1.6; -webkit-line-clamp: unset; }

/* ============= PRICING ============= */
.pricing-note { max-width: 680px; margin: 20px auto 0; text-align: center; }
.pricing-note p { font-size: 16px; color: var(--text-body); line-height: 1.7; }
.pricing-highlight {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    flex-wrap: wrap; margin-top: 48px;
}
.pricing-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); background: var(--bg-light);
    font-size: 15px; font-weight: 600; color: var(--text-dark);
    flex: 1;
}
.pricing-badge.featured {
    background: var(--purple); color: #fff; border-color: transparent;
    box-shadow: 0 6px 24px rgba(107,47,160,0.25);
}
.pricing-badge span { font-size: 24px; }
.pricing-badge > span { align-self: start; margin-top: -6px; }

/* ============= TRUST SIGNALS ============= */
.trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap; margin-top: 56px;
}
.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center;
}
.trust-icon { font-size: 32px; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--text-body); }

/* ============= SUPPORT/FOUNDER ============= */
.founder-card {
    background: linear-gradient(135deg, var(--purple-bg) 0%, var(--bg-white) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex; gap: 40px; align-items: center;
    margin-top: 56px; box-shadow: var(--shadow-md);
}
.founder-avatar {
    width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
    background: var(--purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: #fff;
    box-shadow: 0 4px 16px rgba(107,47,160,0.25);
}
.founder-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.founder-text p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.founder-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-bg); border: 1px solid rgba(34,197,94,0.2);
    padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; color: var(--green-dark);
    margin-top: 12px;
}
.founder-badge::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: blink 2s ease infinite; }

/* ============= OBJECTIONS / FAQ ============= */
.objections { background: var(--bg-section); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.objections-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; max-width: 800px; }
.objection { background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.objection:hover { border-color: var(--purple-light); box-shadow: var(--shadow-md); }
.objection-q { padding: 22px 28px; font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: space-between; color: var(--text-dark); }
.objection-q .toggle { font-size: 24px; color: var(--purple); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; font-weight: 300; }
.objection.open .objection-q .toggle { transform: rotate(45deg); }
.objection.open { border-color: var(--purple-light); }
.objection-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.objection.open .objection-a { max-height: 300px; }
.objection-a-inner { padding: 0 28px 24px; font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ============= FINAL CTA ============= */
.final-cta { text-align: center; padding: 120px 0; background: linear-gradient(180deg, var(--bg-white) 0%, var(--purple-bg) 100%); }
.final-cta .section-title { max-width: 680px; margin: 0 auto 18px; }
.final-cta .section-subtitle { margin: 0 auto 44px; text-align: center; }
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.final-guarantee { margin-top: 28px; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.final-guarantee span { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.final-guarantee span::before { content: '\2713'; color: var(--purple); font-weight: 700; }

/* ============= FOOTER ============= */
.footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; background: var(--bg-white); }
.footer p { font-size: 14px; color: var(--text-muted); }
.footer a { color: var(--text-body); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--purple); }

/* ====================================================================
   MODAL FORM
   ==================================================================== */
.modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center; align-items: center;
    padding: 20px;
    animation: overlayIn 0.25s ease;
}
.modal-overlay.active { display: flex; }

@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal-box {
    background: var(--bg-white);
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(107, 47, 160, 0.2), 0 0 0 1px rgba(107, 47, 160, 0.08);
    animation: modalIn 0.35s ease;
    position: relative;
}
.modal-header { padding: 32px 32px 0; position: relative; }
.modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--bg-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; color: var(--text-muted);
    font-size: 18px; line-height: 1;
}
.modal-close:hover { background: var(--red-bg); border-color: var(--red-light); color: var(--red); }
.modal-header h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-dark); margin-bottom: 6px; padding-right: 40px; }
.modal-header p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }
.form-progress { display: flex; align-items: center; gap: 4px; padding: 20px 32px 0; }
.form-progress-bar { flex: 1; height: 4px; border-radius: 4px; background: var(--border-light); overflow: hidden; }
.form-progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--purple), var(--purple-light)); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); width: 0%; }
.form-progress-text { font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap; min-width: 56px; text-align: right; }
.form-steps { padding: 24px 32px 32px; }
.form-step { display: none; animation: fadeInUp 0.3s ease; }
.form-step.active { display: block; }
.form-step-label { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.4; }
.form-input { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: 14px; font-family: var(--font); font-size: 15px; color: var(--text-dark); background: var(--bg-light); transition: all 0.2s; outline: none; }
.form-input:focus { border-color: var(--purple); background: var(--bg-white); box-shadow: 0 0 0 4px rgba(107, 47, 160, 0.08); }
.form-input::placeholder { color: var(--text-muted); }
.form-input.error { border-color: var(--red); background: var(--red-bg); }
.form-options { display: flex; flex-direction: column; gap: 8px; }
.form-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid var(--border); border-radius: 14px; cursor: pointer; transition: all 0.2s; background: var(--bg-light); font-size: 14px; font-weight: 500; color: var(--text-body); }
.form-option:hover { border-color: var(--purple-light); background: var(--purple-bg-subtle); }
.form-option.selected { border-color: var(--purple); background: var(--purple-bg); color: var(--purple-dark); font-weight: 600; }
.form-option-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.form-option.selected .form-option-radio { border-color: var(--purple); background: var(--purple); }
.form-option.selected .form-option-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.form-option-check { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 12px; color: #fff; }
.form-option.selected .form-option-check { border-color: var(--purple); background: var(--purple); }
.form-option.selected .form-option-check::after { content: '\2713'; font-weight: 700; }
.form-error-msg { font-size: 13px; color: var(--red); margin-top: 8px; display: none; font-weight: 500; }
.form-error-msg.visible { display: block; }
.form-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 12px; }
.form-btn { padding: 12px 28px; border-radius: 50px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; }
.form-btn-back { background: none; color: var(--text-muted); padding: 12px 16px; }
.form-btn-back:hover { color: var(--text-dark); }
.form-btn-next { background: var(--purple); color: #fff; box-shadow: 0 4px 16px rgba(107, 47, 160, 0.25); margin-left: auto; }
.form-btn-next:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(107, 47, 160, 0.3); }
.form-btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-btn-submit { background: linear-gradient(135deg, var(--purple) 0%, #8B5DC0 100%); color: #fff; padding: 14px 32px; box-shadow: 0 6px 24px rgba(107, 47, 160, 0.3); font-size: 15px; margin-left: auto; }
.form-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(107, 47, 160, 0.35); }
.priority-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 12px; }
.priority-hot { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.priority-warm { background: #fff7ed; color: #ea580c; border: 1px solid #fdba74; }
.priority-cold { background: #f0f9ff; color: #0284c7; border: 1px solid #7dd3fc; }
.form-success { display: none; text-align: center; padding: 48px 32px; }
.form-success.active { display: block; }
.form-success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green-bg); border: 2px solid rgba(34, 197, 94, 0.2); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.form-success p { font-size: 15px; color: var(--text-body); line-height: 1.6; margin-bottom: 24px; }

/* ============= CASE STUDY HEADER & METRICS ============= */
.case-study-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.case-study-header .case-study-label { margin-bottom: 0; }
.case-study-logo { height: 40px; width: auto; object-fit: contain; border-radius: 8px; }
.case-study-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.case-metric { padding: 20px 24px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-light); }
.case-metric-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.case-metric-values { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.case-metric-note { font-size: 13px; font-weight: 600; color: var(--green-dark); margin-top: 4px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-stats { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .compat-grid { grid-template-columns: 1fr 1fr; }
    .perf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .hero { padding: 140px 0 72px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .nav-banner { font-size: 12px; padding: 8px 12px; }
    .leak-grid { grid-template-columns: 1fr; gap: 40px; }
    .ba-container { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .proof-stats { grid-template-columns: 1fr 1fr; }
    .case-study-numbers { gap: 20px; }
    .case-number { font-size: 40px; }
    .proof-case-study { padding: 28px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-content { text-align: center; }
    .hero-eyebrow { margin-left: auto; margin-right: auto; visibility: hidden; }
    .hero-trust { justify-content: center; flex-direction: column; align-items: center; }
    .hero-compat { justify-content: center; }
    .feature-card { text-align: center; }
    .feature-icon { margin: 0 auto 16px auto; }
    .pricing-badge { flex: none; width: 100%; max-width: 100%; }
    .section-title .highlight-purple { display: block; }
    .tst-grid-top { grid-template-columns: 1fr; }
    .tst-grid-bottom { grid-template-columns: 1fr; }
    .tst-header { flex-direction: column; align-items: center; text-align: center; }
    .tst-title { font-size: 28px; }
    .tst-score { font-size: 32px; text-align: center; }
    .tst-count { text-align: center; }
    .tst-featured { min-height: auto; }
    .tst-featured-text { font-size: 17px; }
    .mobile-bottom-nav { display: block; }
    .nav-cta { display: none; }
    [aria-label="Open live chat"] { bottom: calc(90px + env(safe-area-inset-bottom)) !important; }
    body { padding-bottom: 80px; }
    .final-cta { padding-bottom: 140px; }
    .final-guarantee { flex-direction: column; align-items: center; }
    .modal-box { border-radius: 20px; max-height: 85vh; }
    .modal-header { padding: 24px 24px 0; }
    .modal-header h2 { font-size: 20px; }
    .form-progress { padding: 16px 24px 0; }
    .form-steps { padding: 20px 24px 24px; }
    .how-steps { grid-template-columns: 1fr; }
    .how-steps::before { display: none; }
    .use-cases-grid { grid-template-columns: 1fr 1fr; }
    .compat-grid { grid-template-columns: 1fr; }
    .perf-grid { grid-template-columns: 1fr; }
    .founder-card { flex-direction: column; padding: 32px 24px; }
    .case-study-metrics { grid-template-columns: 1fr; gap: 10px; }
    .case-study-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .case-study-logo { height: 32px; }
    .pricing-highlight { flex-direction: column; gap: 12px; }
    .pricing-ctas { display: flex; flex-direction: column; align-items: center; gap: 12px; }
}
@media (max-width: 480px) {
    .proof-stats { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: 1fr; }
    [aria-label="Open live chat"] { bottom: calc(90px + env(safe-area-inset-bottom)) !important; }
}

/* ============= NAV DROPDOWN ============= */
.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 8px;
    padding-top: 16px;
    z-index: 200;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
    background: var(--purple-bg);
    color: var(--purple);
}

/* ============= HAMBURGER & MOBILE MENU ============= */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
    position: absolute;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    padding: 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.mobile-menu-header .nav-logo-img { height: 28px; }
.mobile-menu-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-muted);
    transition: all 0.2s;
    line-height: 1; padding: 0; padding-bottom: 2px;
}
.mobile-menu-close:hover { background: var(--red-bg); color: var(--red); }
.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-links li { border-bottom: 1px solid var(--border-light); }
.mobile-menu-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--purple); }

@media (max-width: 991px) {
    .nav-hamburger { display: flex; }
}
