/**
 * venda.css — página de venda (venda.php)
 *
 * Extraído de <style> inline (~810 linhas).
 * Página NÃO usa header.php. Sem PHP interpolado.
 */

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

        :root {
            --green: #16A34A;
            --green-dark: #15803D;
            --green-light: #DCFCE7;
            --green-mid: #BBF7D0;
            --red: #EF4444;
            --amber: #F59E0B;
            --navy: #0F172A;
            --navy-mid: #1E293B;
            --slate: #334155;
            --gray: #64748B;
            --gray-light: #94A3B8;
            --border: #E2E8F0;
            --border-light: #F1F5F9;
            --bg: #FFFFFF;
            --bg-soft: #F8FAFC;
            --bg-mid: #F1F5F9;
            --text: #0F172A;
            --font: 'Inter', system-ui, -apple-system, sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ── ANNOUNCEMENT BAR ── migrado pra Tailwind (venda_tailwind.css). */

        /* ── NAVBAR ── */
        .navbar {
            position: sticky;
            top: 0; left: 0; right: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.2s;
        }
        .navbar.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.07); }

        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-img { height: 44px; width: auto; display: block; }
        .logo-img-footer { height: 40px; width: auto; display: block; }
        /* ── V1 (branco) — navbar light ── */
        .logo-mark { width: 34px; height: 34px; background: #F8FAFC; border: 1.5px solid #E2E8F0; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
        .logo-mark svg { display: block; }
        .logo-wm { display: flex; align-items: baseline; gap: 0; line-height: 1; font-family: 'Inter', -apple-system, sans-serif; }
        .logo-wm-g   { font-size: 0.78rem; font-weight: 300; letter-spacing: 2px; color: #94A3B8; }
        .logo-wm-dot { font-size: 0.9rem;  font-weight: 900; color: #16A34A; }
        .logo-wm-c   { font-size: 1.05rem; font-weight: 900; letter-spacing: -1px; color: #0F172A; }
        /* ── V4 (slate) — footer dark ── */
        .logo-mark-dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
        .logo-wm-g-dark  { color: #475569; }
        .logo-wm-c-dark  { color: #E2E8F0; }

        .nav-links { display: flex; align-items: center; gap: 28px; }
        .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--gray); text-decoration: none; transition: color 0.15s; }
        .nav-links a:hover { color: var(--navy); }

        .nav-cta { display: flex; align-items: center; gap: 10px; }

        .btn-ghost { font-size: 0.875rem; font-weight: 500; color: var(--slate); text-decoration: none; padding: 8px 16px; border-radius: 6px; transition: background 0.15s, color 0.15s; }
        .btn-ghost:hover { background: var(--bg-mid); color: var(--navy); }

        .btn-solid { font-size: 0.875rem; font-weight: 600; color: #fff; background: var(--green); text-decoration: none; padding: 9px 20px; border-radius: 6px; transition: background 0.15s, box-shadow 0.15s; box-shadow: 0 1px 3px rgba(22,163,74,0.25); }
        .btn-solid:hover { background: var(--green-dark); box-shadow: 0 4px 12px rgba(22,163,74,0.3); }

        /* ── HERO ── migrado pra Tailwind (venda_tailwind.css).
           .btn-hero virou component class no @layer components do build novo;
           overrides em .cta-banner .btn-hero e .exit-modal .btn-hero (ainda
           neste arquivo, abaixo) continuam funcionando via especificidade. */

        .btn-pricing-secondary {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            width: 100%; padding: 13px;
            background: var(--green-light); color: var(--green-dark);
            font-size: 0.9rem; font-weight: 600;
            text-decoration: none; border-radius: 8px;
            border: 1px solid var(--green-mid);
            transition: all 0.2s;
            margin-top: 10px;
        }
        .btn-pricing-secondary:hover { background: var(--green-mid); border-color: var(--green); transform: translateY(-1px); }

        /* ── STATS ── */
        .stats { padding: 0 5% 80px; }
        .stats-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            background: var(--bg);
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }
        .stat-item { padding: 36px 32px; text-align: center; position: relative; }
        .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
        .stat-num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; color: var(--navy); line-height: 1; margin-bottom: 6px; }
        .stat-num span { color: var(--green); }
        .stat-label { font-size: 0.825rem; color: var(--gray-light); font-weight: 400; }

        /* ── SECTION COMMONS ── */
        .section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
        .section-h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
        .section-p { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 480px; }

        /* ── BEFORE/AFTER ── */
        .before-after {
            padding: 80px 5%;
            background: var(--bg-soft);
            border-top: 1px solid var(--border);
        }
        .before-after-inner { max-width: 1000px; margin: 0 auto; }
        .before-after-head { text-align: center; margin-bottom: 48px; }
        .before-after-head .section-p { margin: 0 auto; }
        .before-after-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .ba-card {
            border-radius: 14px;
            padding: 32px;
            border: 1px solid var(--border);
        }
        .ba-card.bad  { background: #fff5f5; border-color: #FECACA; }
        .ba-card.good { background: #f0fdf4; border-color: #BBF7D0; }
        .ba-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .ba-card.bad  .ba-card-header { color: #B91C1C; }
        .ba-card.good .ba-card-header { color: #15803D; }
        .ba-badge {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .ba-card.bad  .ba-badge { background: #FEE2E2; color: #991B1B; }
        .ba-card.good .ba-badge { background: #DCFCE7; color: #166534; }
        .ba-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            font-size: 0.9rem;
            line-height: 1.4;
        }
        .ba-row:last-child { border-bottom: none; }
        .ba-card.bad  .ba-row { color: #7F1D1D; }
        .ba-card.good .ba-row { color: #14532D; }
        .ba-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

        /* ── HOW IT WORKS ── */
        .how {
            padding: 88px 5%;
            border-top: 1px solid var(--border);
        }
        .how-inner { max-width: 1000px; margin: 0 auto; }
        .how-head { text-align: center; margin-bottom: 56px; }
        .how-head .section-p { margin: 0 auto; }
        .how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            position: relative;
        }
        .how-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(16.6% + 24px);
            right: calc(16.6% + 24px);
            height: 2px;
            background: linear-gradient(90deg, var(--green-mid), var(--green-mid));
            z-index: 0;
        }
        .how-step {
            text-align: center;
            padding: 28px 24px;
            position: relative;
            z-index: 1;
        }
        .how-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 1.3rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            box-shadow: 0 4px 16px rgba(22,163,74,0.3);
        }
        .how-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
        .how-desc  { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
        .how-time  { font-size: 0.75rem; font-weight: 700; color: var(--green); margin-top: 8px; text-transform: uppercase; letter-spacing: .05em; }

        /* ── FEATURES ── */
        .features { padding: 88px 5%; background: var(--bg-soft); border-top: 1px solid var(--border); }
        .features-inner { max-width: 1100px; margin: 0 auto; }
        .features-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
        .features-head-right { font-size: 0.9rem; color: var(--gray); line-height: 1.75; padding-bottom: 4px; }
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
        .feat-card { background: var(--bg); padding: 28px 24px 32px; transition: background 0.2s; }
        .feat-card:hover { background: #FAFFFE; }
        .feat-icon { width: 40px; height: 40px; border-radius: 9px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background 0.2s; }
        .feat-card:hover .feat-icon { background: var(--green-mid); }
        .feat-icon svg { width: 18px; height: 18px; stroke: var(--green); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .feat-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
        .feat-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

        /* ── FOR WHOM ── */
        .for-whom {
            padding: 80px 5%;
            border-top: 1px solid var(--border);
        }
        .for-whom-inner { max-width: 960px; margin: 0 auto; }
        .for-whom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        .for-whom-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
        .for-whom-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.925rem;
            color: var(--slate);
            padding: 12px 16px;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: border-color 0.15s;
        }
        .for-whom-list li:hover { border-color: var(--green-mid); }
        .for-whom-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
        .for-whom-check svg { width: 10px; height: 10px; stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .for-whom-right {
            background: var(--navy);
            border-radius: 16px;
            padding: 36px 32px;
            color: #fff;
        }
        .for-whom-right h3 { font-size: 1rem; font-weight: 700; color: #94A3B8; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .06em; font-size: 0.75rem; }
        .not-for-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .not-for-list li { font-size: 0.875rem; color: #64748B; display: flex; align-items: center; gap: 10px; }
        .not-for-list li::before { content: '—'; color: #475569; flex-shrink: 0; }

        /* ── WHY ── */
        .why { padding: 88px 5%; border-top: 1px solid var(--border); background: var(--bg-soft); }
        .why-inner { max-width: 1100px; margin: 0 auto; }
        .why-head { margin-bottom: 56px; }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .why-card { padding: 32px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; }
        .why-card:hover { border-color: #A7F3D0; box-shadow: 0 4px 24px rgba(22,163,74,0.07); }
        .why-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 20px; }
        .why-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; letter-spacing: -0.01em; }
        .why-text { font-size: 0.875rem; color: var(--gray); line-height: 1.75; }

        /* ── TESTIMONIALS ── */
        .testimonials { padding: 88px 5%; border-top: 1px solid var(--border); }
        .testimonials-inner { max-width: 1100px; margin: 0 auto; }
        .testimonials-head { margin-bottom: 48px; }
        .testi-rating-global {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            font-size: 0.875rem;
            color: var(--gray);
        }
        .testi-stars-global { display: flex; gap: 3px; }
        .testi-stars-global svg { width: 16px; height: 16px; fill: #FBBF24; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: box-shadow 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
        .testi-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-color: #CBD5E1; }
        .testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
        .testi-stars svg { width: 13px; height: 13px; fill: #FBBF24; }
        .testi-result {
            display: inline-block;
            background: var(--green-light);
            color: var(--green-dark);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 14px;
        }
        .testi-text { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 20px; flex: 1; }
        .testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
        .testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: var(--green-dark); flex-shrink: 0; }
        .testi-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 1px; }
        .testi-role { font-size: 0.78rem; color: var(--gray-light); }

        /* ── GUARANTEE ── */
        .guarantee {
            padding: 72px 5%;
            border-top: 1px solid var(--border);
            background: var(--navy);
        }
        .guarantee-inner {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .guarantee-icon {
            width: 72px;
            height: 72px;
            background: rgba(22,163,74,0.15);
            border: 2px solid rgba(22,163,74,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
        }
        .guarantee h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.025em; }
        .guarantee p { font-size: 1rem; color: #94A3B8; line-height: 1.75; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
        .guarantee-items {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: #86EFAC;
            font-weight: 600;
        }
        .guarantee-item svg { width: 16px; height: 16px; stroke: #86EFAC; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

        /* ── PRICING ── */
        .pricing { padding: 88px 5%; border-top: 1px solid var(--border); }
        .pricing-inner { max-width: 560px; margin: 0 auto; text-align: center; }
        .pricing-head { margin-bottom: 40px; }
        .pricing-head .section-p { margin: 0 auto; }

        .pricing-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 16px;
            padding: 44px 40px 40px;
            box-shadow: 0 4px 32px rgba(0,0,0,0.06);
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--green), #10B981);
        }

        .pricing-promo-badge {
            background: #EF4444;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em;
            padding: 5px 14px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 16px;
        }
        .pricing-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 4px 10px; border-radius: 100px; margin-bottom: 24px; }
        .pricing-badge svg { width: 10px; height: 10px; stroke: var(--green); stroke-width: 2.5; fill: none; }

        .price-orig-striked { font-size: 0.9rem; color: var(--gray-light); text-decoration: line-through; margin-bottom: 4px; }
        .pricing-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 4px; }
        .price-currency { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-top: 10px; }
        .price-amount { font-size: 4.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
        .price-cents { font-size: 1.5rem; font-weight: 700; align-self: flex-start; margin-top: 8px; color: var(--navy); }
        .price-period { font-size: 0.82rem; color: var(--gray-light); margin-bottom: 8px; }

        .pricing-economy {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #FEF9C3;
            color: #854D0E;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 6px;
            margin-bottom: 24px;
        }

        .pricing-divider { height: 1px; background: var(--border-light); margin-bottom: 24px; }

        .pricing-list { list-style: none; margin-bottom: 32px; }
        .pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--slate); padding: 7px 0; border-bottom: 1px solid var(--border-light); }
        .pricing-list li:last-child { border-bottom: none; }
        .check-icon { width: 17px; height: 17px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
        .check-icon svg { width: 9px; height: 9px; stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

        .btn-pricing {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            width: 100%; padding: 16px;
            background: var(--green); color: #fff;
            font-size: 1rem; font-weight: 700;
            text-decoration: none; border-radius: 8px;
            transition: all 0.2s;
            box-shadow: 0 4px 16px rgba(22,163,74,0.3);
        }
        .btn-pricing:hover { background: var(--green-dark); box-shadow: 0 6px 24px rgba(22,163,74,0.4); transform: translateY(-1px); }

        .pricing-micro { font-size: 0.78rem; color: var(--gray-light); margin-top: 10px; text-align: center; }
        .pricing-micro strong { color: var(--green); }

        .pricing-trust {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }
        .ptrust-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--gray-light); }
        .ptrust-item svg { width: 13px; height: 13px; stroke: var(--gray-light); stroke-width: 2; fill: none; stroke-linecap: round; }

        /* ── FAQ ── */
        .faq { padding: 80px 5%; background: var(--bg-soft); border-top: 1px solid var(--border); }
        .faq-inner { max-width: 720px; margin: 0 auto; }
        .faq-head { text-align: center; margin-bottom: 48px; }
        .faq-head .section-p { margin: 0 auto; }

        .faq-list { display: flex; flex-direction: column; gap: 8px; }
        .faq-item {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .faq-item.open { border-color: var(--green-mid); }
        .faq-q {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--navy);
            font-family: var(--font);
            transition: color 0.15s;
        }
        .faq-q:hover { color: var(--green); }
        .faq-arrow {
            width: 20px; height: 20px;
            border-radius: 50%;
            background: var(--bg-mid);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s, transform 0.25s;
        }
        .faq-arrow svg { width: 10px; height: 10px; stroke: var(--gray); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.15s; }
        .faq-item.open .faq-arrow { background: var(--green-light); transform: rotate(180deg); }
        .faq-item.open .faq-arrow svg { stroke: var(--green); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.2s;
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.75;
            padding: 0 20px;
        }
        .faq-a-inner { padding-bottom: 18px; }
        .faq-item.open .faq-a { max-height: 200px; }

        /* ── CTA BANNER ── */
        .cta-banner { padding: 88px 5%; background: linear-gradient(135deg, var(--navy) 0%, #1e3a2e 100%); text-align: center; }
        .cta-banner-inner { max-width: 620px; margin: 0 auto; }
        .cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 16px; line-height: 1.2; }
        .cta-banner p { font-size: 1rem; color: #94A3B8; margin-bottom: 36px; line-height: 1.7; }
        .cta-banner .btn-hero { font-size: 1rem; padding: 15px 36px; }
        .cta-banner-micro { font-size: 0.8rem; color: #475569; margin-top: 16px; }

        /* ── FOOTER ── */
        footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 5% 36px; }
        .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
        .footer-left { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
        .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-links a { font-size: 0.82rem; color: #64748B; text-decoration: none; transition: color 0.15s; }
        .footer-links a:hover { color: #94A3B8; }
        .footer-copy { font-size: 0.8rem; color: #475569; }

        /* ── ANIMATIONS ── */
        .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
        .fade-up.in { opacity: 1; transform: translateY(0); }
        .fade-up.d1 { transition-delay: 0.08s; }
        .fade-up.d2 { transition-delay: 0.16s; }
        .fade-up.d3 { transition-delay: 0.24s; }
        .fade-up.d4 { transition-delay: 0.32s; }

        /* ── STICKY MOBILE CTA ── */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 150;
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .sticky-cta-text { font-size: 0.8rem; color: var(--gray); line-height: 1.3; }
        .sticky-cta-text strong { color: var(--navy); font-size: 0.9rem; display: block; }
        .sticky-cta a { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 11px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; box-shadow: 0 2px 8px rgba(22,163,74,0.3); }

        /* ── EXIT INTENT MODAL ── */
        .exit-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(4px);
        }
        .exit-overlay.show { display: flex; }
        .exit-modal {
            background: #fff;
            border-radius: 20px;
            max-width: 460px;
            width: 100%;
            padding: 40px 36px;
            text-align: center;
            position: relative;
            box-shadow: 0 24px 64px rgba(0,0,0,0.2);
        }
        .exit-close { position: absolute; top: 16px; right: 16px; background: var(--bg-mid); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; color: var(--gray); display: flex; align-items: center; justify-content: center; }
        .exit-emoji { font-size: 3rem; margin-bottom: 16px; }
        .exit-modal h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.2; }
        .exit-modal p { font-size: 0.9rem; color: var(--gray); margin-bottom: 24px; line-height: 1.65; }
        .exit-modal .btn-hero { width: 100%; justify-content: center; font-size: 0.95rem; }
        .exit-modal-skip { margin-top: 12px; font-size: 0.78rem; color: var(--gray-light); cursor: pointer; text-decoration: underline; }

        /* ── WHATSAPP FAB ── */
        .whatsapp-fab {
            position: fixed; bottom: 28px; right: 28px; z-index: 140;
            width: 56px; height: 56px;
            background: #25D366; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; text-decoration: none;
            box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.12);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .whatsapp-fab svg { width: 28px; height: 28px; }
        .whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
        .whatsapp-fab-tooltip { position: absolute; right: 66px; background: #1E293B; color: #fff; font-family: var(--font); font-size: 0.78rem; font-weight: 500; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transform: translateX(6px); transition: opacity 0.2s, transform 0.2s; }
        .whatsapp-fab-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-right: none; border-left-color: #1E293B; }
        .whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; transform: translateX(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-links { display: none; }
        }
        @media (max-width: 768px) {
            .stats-inner { grid-template-columns: 1fr; max-width: 360px; }
            .stat-item:not(:last-child)::after { right: auto; top: auto; bottom: 0; left: 15%; width: 70%; height: 1px; }
            .features-head { grid-template-columns: 1fr; gap: 20px; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .why-grid { grid-template-columns: 1fr; gap: 16px; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .pricing-card { padding: 32px 24px; }
            .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
            .before-after-grid { grid-template-columns: 1fr; }
            .how-steps { grid-template-columns: 1fr; }
            .how-steps::before { display: none; }
            .for-whom-grid { grid-template-columns: 1fr; }
            .sticky-cta { display: flex; }
        }
        @media (max-width: 480px) {
            .features-grid { grid-template-columns: 1fr; }
            .nav-cta .btn-ghost { font-size: 0.8rem; padding: 7px 12px; }
            .whatsapp-fab { bottom: 80px; right: 16px; width: 50px; height: 50px; }
            .whatsapp-fab svg { width: 24px; height: 24px; }
            .whatsapp-fab-tooltip { display: none; }
        }
