/*
 | MoneyMaker Fx — Landing page
 | Dark navy + cyan identity, extracted from the inline <style> in home.blade.php
 | so the view stays markup-only.
*/

/* ============================================================
   1. Tokens
   ============================================================ */
:root {
    --bg-color: #050a18;
    --primary-blue: #0a192f;
    --secondary-blue: #112240;
    --accent-cyan: #64ffda;
    --accent-cyan-soft: rgba(100, 255, 218, .12);
    --accent-cyan-line: rgba(100, 255, 218, .28);
    --text-white: #e6f1ff;
    --text-gray: #8892b0;
    --text-dim: #64748b;
    --card-bg: rgba(17, 34, 64, .68);
    --card-bg-2: rgba(19, 41, 61, .85);
    --bg-color-nav: rgba(5, 10, 24, .72);
    --line: rgba(255, 255, 255, .08);
    --radius: 18px;
    --shadow-lift: 0 24px 60px rgba(0, 0, 0, .45);
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    background: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Ambient depth — two soft cyan glows + a faint grid, fixed behind everything */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 600px at 85% -10%, rgba(100, 255, 218, .10), transparent 60%),
        radial-gradient(700px 500px at 5% 20%, rgba(56, 189, 248, .07), transparent 60%),
        radial-gradient(600px 600px at 50% 110%, rgba(100, 255, 218, .05), transparent 60%);
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
    pointer-events: none;
}

.text-cyan { color: var(--accent-cyan); }
.text-muted { color: var(--text-gray) !important; }

/* ---------- Icons in chips ----------
   FA7 gives every icon `width: var(--fa-width, 1.25em)` plus `text-align:center`,
   so the glyph is centred inside a 1.25em box which is then centred by the chip's
   flex/grid. That is two nested centring steps, and the outer one depends on how
   a browser resolves a fixed width on a flex item.
   Collapsing it to one step via FA's own hook (`--fa-width: auto`) makes the <i>
   shrink-wrap its glyph, so flex/grid centres the glyph directly — nothing left
   for a browser to disagree about. Set on the chip so it inherits to the <i>. */
.stat-ico,
.method-ico,
.plan-ico {
    --fa-width: auto;
}

::selection { background: rgba(100, 255, 218, .28); color: #fff; }

/* Keyboard focus — visible on the dark background */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ============================================================
   2. Section rhythm
   ============================================================ */
.section { padding: 96px 20px; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.is-left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent-cyan-line);
}

.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
}
.section-sub {
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Gradient headline accent */
.grad-text {
    background: linear-gradient(100deg, #64ffda 0%, #7ee8fa 48%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================================
   3. Scroll reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   4. Buttons
   ============================================================ */
.btn-primary,
.btn-outline-light,
.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease),
                background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, #64ffda, #34d3c4);
    color: #04212a;
    border: 1px solid transparent;
    padding: 13px 26px;
    box-shadow: 0 12px 34px rgba(100, 255, 218, .22);
}
.btn-primary i { color: #04212a; font-size: 1.05rem; }
.btn-primary:hover {
    background: linear-gradient(135deg, #7dffe3, #48e3d3);
    color: #04212a;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(100, 255, 218, .34);
}
.btn-primary:hover i { color: #04212a; }

.btn-outline-light {
    background: rgba(255, 255, 255, .03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 12px 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light i { color: var(--text-white); font-size: 1.05rem; transition: color .25s var(--ease); }
.btn-outline-light:hover {
    background: rgba(100, 255, 218, .08);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan-line);
    transform: translateY(-2px);
}
.btn-outline-light:hover i { color: var(--accent-cyan); }

.btn-outline-primary {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan-line);
    padding: 12px 24px;
}
.btn-outline-primary:hover {
    background: var(--accent-cyan);
    color: #04212a;
    border-color: var(--accent-cyan);
}

.btn-sm-soft {
    padding: 9px 18px;
    font-size: .9rem;
    border-radius: 10px;
}

/* ============================================================
   5. Navbar
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1050;
    background: var(--bg-color-nav);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.is-scrolled {
    background: rgba(5, 10, 24, .92);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .38);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white) !important;
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none !important;
    padding: 16px 0;
}
.navbar-brand span { color: var(--accent-cyan); }
.navbar-brand:hover { color: var(--accent-cyan) !important; }
.logo-icon { color: var(--accent-cyan); font-size: 1.5rem; }

.site-nav .nav-link {
    position: relative;
    color: var(--text-white) !important;
    font-size: .96rem;
    font-weight: 500;
    text-decoration: none !important;
    padding: 8px 2px;
    transition: color .25s var(--ease);
}
.site-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.site-nav .nav-link:hover { color: var(--accent-cyan) !important; }
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .nav-link.active { color: var(--accent-cyan) !important; }

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 7px 11px;
    color: var(--text-white);
    background: rgba(255, 255, 255, .04);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e6f1ff' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-welcome {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 12px;
    border: 1px solid var(--accent-cyan-line);
    background: var(--accent-cyan-soft);
    color: var(--accent-cyan);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none !important;
}
.nav-welcome:hover { background: rgba(100, 255, 218, .18); color: #fff; }

/* Collapsed mobile panel */
@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(9, 17, 36, .97);
        box-shadow: var(--shadow-lift);
    }
    .site-nav .navbar-nav { flex-direction: column; align-items: stretch; gap: 4px; }
    .site-nav .nav-link { padding: 11px 12px; border-radius: 10px; }
    .site-nav .nav-link:hover { background: rgba(100, 255, 218, .07); }
    .site-nav .nav-link::after { display: none; }
    .nav-cta-mobile {
        display: flex;
        gap: 10px;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }
    .nav-cta-mobile .btn { flex: 1; }
}

/* ============================================================
   6. Hero
   ============================================================ */
.hero {
    position: relative;
    padding: 150px 20px 90px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    background: var(--accent-cyan-soft);
    border: 1px solid var(--accent-cyan-line);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    letter-spacing: .02em;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
    margin: 22px 0 0;
}
.hero-lede {
    max-width: 560px;
    margin-top: 20px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-gray);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Trust row under the CTAs */
.trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-gray);
}
.trust-item i { color: var(--accent-cyan); font-size: 1rem; }
.trust-item b { color: var(--text-white); font-weight: 600; }

/* Chart card */
.chart-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 22px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.chart-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(100, 255, 218, .4), transparent 42%, rgba(100, 255, 218, .12));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}
.chart-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #4ade80;
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .3);
}
.live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
    50%      { opacity: .55; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.chart-divider { height: 1px; background: var(--line); margin: 14px 0 10px; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    border-radius: 8px;
    font-size: .74rem;
    color: var(--text-gray);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
}
.legend-swatch { width: 9px; height: 9px; border-radius: 2px; }

/* ============================================================
   7. Stats
   ============================================================ */
.stats-band {
    padding: 26px 20px;
    background: linear-gradient(180deg, rgba(10, 25, 47, .9), rgba(10, 25, 47, .55));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat-card {
    height: 100%;
    padding: 22px 18px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, .02);
    border: 1px solid transparent;
    transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan-line);
    background: rgba(100, 255, 218, .05);
}
.stat-ico {
    /* grid, not inline-flex: an inline-level chip sits on a line box, which adds
       phantom descender space under it and pulls it off the baseline */
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    /* auto side margins: a block-level chip is no longer centred by the card's
       text-align, so it has to centre itself */
    margin: 0 auto 12px;
    border-radius: 12px;
    color: var(--accent-cyan);
    background: var(--accent-cyan-soft);
    border: 1px solid var(--accent-cyan-line);
    font-size: 1.05rem;
}
.stat-value {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--accent-cyan);
    line-height: 1.1;
}
.stat-label { margin-top: 6px; font-size: .88rem; color: var(--text-gray); }

/* ============================================================
   8. Method
   ============================================================ */
.method-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--card-bg-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent-cyan);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.method-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px;
    margin: 0 -6px;
    border-radius: 14px;
    transition: background .28s var(--ease), transform .28s var(--ease);
}
.method-item + .method-item { margin-top: 4px; }
.method-item:hover { background: rgba(100, 255, 218, .05); transform: translateX(4px); }
.method-ico {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 12px;
    color: var(--accent-cyan);
    background: var(--accent-cyan-soft);
    border: 1px solid var(--accent-cyan-line);
    /* Was .9rem (14.4px) in a 36px chip — too small for detailed glyphs, which
       read as smudges rather than symbols. ~17px in a 40px chip is legible. */
    font-size: 1.05rem;
}
/* Explicit classes, not `.method-item span`: the icon chip is itself a <span>
   inside .method-item, so a descendant selector on span (0,1,1) outranked
   .method-ico (0,1,0) and forced display:block onto the chip — which killed its
   flex centring and pushed the glyph into the top-left corner. */
.method-title { display: block; color: var(--text-white); font-weight: 600; margin-bottom: 3px; }
.method-desc { display: block; color: var(--text-gray); font-size: .94rem; line-height: 1.6; }

/* ============================================================
   9. Pricing
   ============================================================ */
.plan-grid { align-items: stretch; }

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--card-bg-2);
    border: 1px solid rgba(100, 255, 218, .1);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan-line);
    box-shadow: 0 26px 60px rgba(100, 255, 218, .1);
}
.plan.is-popular {
    border-color: var(--accent-cyan);
    background: linear-gradient(180deg, rgba(100, 255, 218, .08), var(--card-bg-2) 34%);
    box-shadow: 0 0 48px rgba(100, 255, 218, .16);
}

/* Clean pill badge — replaces the clipped 45deg ribbon */
.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    white-space: nowrap;
    color: #04212a;
    background: linear-gradient(135deg, #64ffda, #34d3c4);
    box-shadow: 0 8px 22px rgba(100, 255, 218, .34);
}

.plan-head { display: flex; align-items: center; gap: 12px; }
.plan-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--accent-cyan);
    background: var(--accent-cyan-soft);
    border: 1px solid var(--accent-cyan-line);
    /* Explicit, so the chip does not inherit whatever the body size happens to be */
    font-size: 1.05rem;
}
.plan-name { font-size: 1.06rem; font-weight: 700; color: #fff; margin: 0; }
.plan-type { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

.plan-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 4px;
}
.plan-price .amount {
    font-size: clamp(1.8rem, 3.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1.1;
}
.plan-price .amount.is-free { color: var(--accent-cyan); }
.plan-price .per { font-size: .92rem; color: var(--text-gray); }
.plan-note { font-size: .82rem; color: var(--text-dim); }

.plan-features { list-style: none; padding: 0; margin: 24px 0; }
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 12px;
    font-size: .94rem;
    line-height: 1.5;
    color: var(--text-gray);
}
.plan-features li i {
    flex-shrink: 0;
    font-size: .82rem;
    color: var(--accent-cyan);
    /* The row is align-items:flex-start, and FA gives the glyph a 1-high line
       box, so it would sit above the text's optical centre. Matching the text's
       first line box (.94rem × 1.5 = 1.41rem) aligns them without a hand-tuned
       margin-top nudge. */
    line-height: 1.41rem;
}
.plan-features li.is-off { color: #4b5675; }
.plan-features li.is-off i { color: #4b5675; }

/* Pins every CTA to the same baseline regardless of feature-list length */
.plan-cta { margin-top: auto; width: 100%; }

/* ============================================================
   10. FAQ  (native <details> — no JS)
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item[open] { border-color: var(--accent-cyan-line); background: rgba(100, 255, 218, .04); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078'; /* fa chevron-down */
    font-family: 'Font Awesome 6 Free', 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: .78rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
    padding: 0 22px 20px;
    color: var(--text-gray);
    font-size: .95rem;
    line-height: 1.75;
}

/* ============================================================
   11. Final CTA
   ============================================================ */
.cta-panel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 54px 40px;
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(100, 255, 218, .14), transparent 65%),
        var(--card-bg-2);
    border: 1px solid var(--accent-cyan-line);
    box-shadow: var(--shadow-lift);
    overflow: hidden;
}
.cta-panel h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
}
.cta-panel p { margin: 14px auto 0; max-width: 520px; color: var(--text-gray); line-height: 1.7; }
.cta-panel .hero-cta { justify-content: center; }

/* ============================================================
   12. Footer
   ============================================================ */
.site-footer {
    padding: 56px 20px 28px;
    border-top: 1px solid var(--line);
    background: rgba(5, 10, 24, .6);
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.24rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--text-white);
    text-decoration: none !important;
}
.footer-brand span { color: var(--accent-cyan); }
.footer-tag { margin-top: 12px; max-width: 320px; color: var(--text-gray); font-size: .92rem; line-height: 1.7; }
.footer-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-gray);
    text-decoration: none !important;
    font-size: .93rem;
    transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer-links a:hover { color: var(--accent-cyan); padding-left: 4px; }
.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.footer-bottom p { margin: 0; font-size: .88rem; color: var(--text-dim); }
.footer-disclaimer {
    margin-top: 14px;
    font-size: .8rem;
    line-height: 1.7;
    color: #55617a;
}

/* ============================================================
   13. Floating WhatsApp
   ============================================================ */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .93rem;
    color: #04241a;
    text-decoration: none !important;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 14px 38px rgba(34, 197, 94, .34);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float i { font-size: 1.2rem; }
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(34, 197, 94, .46);
    color: #04241a;
}

/* ============================================================
   14. Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .hero { padding: 128px 20px 70px; }
    .chart-card { max-width: 100%; margin-top: 44px; }
    .method-card { max-width: 100%; }
}

@media (max-width: 767.98px) {
    .section { padding: 68px 16px; }
    .section-head { margin-bottom: 40px; }
    .hero { padding: 112px 16px 56px; }
    .hero-lede { font-size: .98rem; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { flex: 1 1 100%; }
    .trust-row { gap: 12px 18px; margin-top: 28px; padding-top: 20px; }
    .trust-item { font-size: .84rem; }
    .plan { padding: 26px 22px; }
    .cta-panel { padding: 38px 22px; }
    .wa-float { right: 16px; bottom: 16px; padding: 12px 16px; font-size: .86rem; }
    .faq-item summary { padding: 16px 18px; font-size: .94rem; }
    .faq-body { padding: 0 18px 18px; font-size: .9rem; }
}

@media (max-width: 575.98px) {
    .hero-badge { font-size: .76rem; padding: 7px 14px; }
    .stat-card { padding: 18px 12px; }
    .stat-ico { width: 36px; height: 36px; margin: 0 auto 9px; }
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
}

/* ============================================================
   15. Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .live-dot { animation: none; }
    *, *::before, *::after { transition-duration: .01ms !important; }
    .plan:hover, .stat-card:hover, .btn-primary:hover,
    .btn-outline-light:hover, .method-item:hover, .wa-float:hover { transform: none; }
}
