:root {
    --blue: #1E5AE8;
    --blue-dk: #1648C7;
    --blue-lt: #EDF2FF;
    --blue-mid: #B8CAFE;
    --green: #0F9E52;
    --green-lt: #D6F5E4;
    --green-dk: #0A7A3E;
    --amber: #C96F00;
    --amber-lt: #FEF0D0;
    --indigo: #4338CA;
    --indigo-lt: #ECEEFF;
    --red: #D42020;
    --red-lt: #FEF0F0;
    --ink: #080D1A;
    --ink2: #2E3A4E;
    --ink3: #62708A;
    --paper: #FAFBFF;
    --surface: #F2F4FB;
    --surface2: #E8EBF5;
    --border: #DDE1EF;
    --border2: #CDD3E8;
    --r-sm: 7px;
    --r-md: 12px;
    --r-lg: 17px;
    --r-xl: 23px;
    --sh: 0 4px 24px rgba(10, 20, 60, .07), 0 1px 4px rgba(10, 20, 60, .04);
    --sh-lg: 0 12px 48px rgba(10, 20, 60, .10), 0 4px 12px rgba(10, 20, 60, .05);
    --sh-xl: 0 24px 72px rgba(10, 20, 60, .14), 0 8px 24px rgba(10, 20, 60, .06);
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6
}

body.lang-bn {
    font-family: 'Noto Sans Bengali', sans-serif;
}

a {
    color: inherit;
    text-decoration: none
}

img,
svg {
    display: block;
    max-width: 100%
}

button {
    font-family: inherit;
    cursor: pointer
}

/* ── TYPE ── */
.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue)
}

.h2 {
    font-size: clamp(1.65rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.025em
}

.h3 {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35
}

.body-lg {
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--ink2)
}

.body {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--ink2)
}

.c-blue {
    color: var(--blue)
}

.mono {
    font-family: var(--mono)
}

.tc {
    text-align: center
}

/* ── LAYOUT ── */
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(2px, 5vw, 5px)
}

.wrap-sm {
    max-width: 700px;
    margin: 0 auto
}

section {
    padding: clamp(15px, 7vw, 50px) 0
}

.sec-hd {
    margin-bottom: clamp(32px, 4.5vw, 48px)
}

.divider {
    border: none;
    border-top: 1px solid var(--border)
}

/* ── BTNS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    font-size: .875rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: all .16s ease;
    white-space: nowrap;
    line-height: 1
}

.btn-lg {
    padding: 14px 28px;
    font-size: .975rem
}

.btn-sm {
    padding: 8px 16px;
    font-size: .8125rem
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(37, 99, 235, .32)
}

.btn-primary:hover {
    background: var(--blue-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 99, 235, .42)
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    border-color: var(--border);
    font-size: 1rem;
}

.btn-ghost:hover {
    background: var(--surface);
    color: var(--blue-dk);
    border-color: var(--ink3)
}

.btn-white {
    background: #fff;
    color: var(--blue);
    border-color: #fff;
    font-weight: 700
}

.btn-white:hover {
    background: var(--blue-lt);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18)
}

.btn-outline-w {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4)
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

/* ── PILLS ── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 9px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.5
}

.pill-blue {
    background: var(--blue-lt);
    color: var(--blue)
}

.pill-green {
    background: var(--green-lt);
    color: var(--green-dk)
}

.pill-amber {
    background: var(--amber-lt);
    color: var(--amber)
}

.pill-indigo {
    background: var(--indigo-lt);
    color: var(--indigo)
}

.pill-red {
    background: var(--red-lt);
    color: var(--red)
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .42s ease, transform .42s ease
}

.reveal.on {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none
    }
}

/* ════════════════════════════════════
 NAV
════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 400;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(2px, 5vw, 5px);
    height: 56px;
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.02em;
    color: var(--ink);
    flex-shrink: 0
}

.nav-logo-mark {
    width: 26px;
    height: 26px;
    background: var(--blue);
    border-radius: 6px;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.nav-links {
    display: flex;
    gap: clamp(14px, 2.2vw, 24px);
    list-style: none;
    margin-left: 4px
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink2);
    transition: color .14s
}

.nav-links a:hover {
    color: var(--ink)
}

.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0
}

.lang-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 3px;
}

.btn-lang {
    font-size: clamp(.75rem, 1vw, .8rem);
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--ink3);
    cursor: pointer;
    line-height: 1.5;
    text-transform: uppercase;
}

.btn-lang.active {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
    color: var(--surface);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.btn-lang:not(.active):hover {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.07);
}

.nav-ham {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--ink)
}

.ham-open,
.ham-close {
    transition: all .18s
}

.ham-close {
    display: none
}

.nav-ham.open .ham-open {
    display: none
}

.nav-ham.open .ham-close {
    display: block
}

/* Mobile drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 399;
    overflow-y: auto;
    padding: 16px clamp(15px, 5vw, 40px) 32px;
    border-top: 1px solid var(--border)
}

.nav-drawer.open {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.nav-drawer-links {
    list-style: none
}

.nav-drawer-links a {
    display: block;
    padding: 10px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--surface2)
}

.nav-drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.nav-drawer-btns .btn {
    justify-content: center;
    width: 100%
}

@media(max-width:820px) {
    .nav-links {
        display: none
    }

    .nav-cta .btn-ghost {
        display: none
    }

    .nav-ham {
        display: flex
    }
}

/* ════════════════════════════════════
 HERO  — dark gradient bg
════════════════════════════════════ */
#hero {
    padding: clamp(5px, 8vw, 40px) 0 clamp(30px, 6vw, 30px);
    background: linear-gradient(135deg, #0A0F1E 0%, #0f1a3a 50%, #0d1635 100%);
    position: relative;
    overflow: hidden
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 70% -5%, rgba(37, 99, 235, .18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 100%, rgba(79, 70, 229, .12) 0%, transparent 55%)
}

/* subtle grid */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%)
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: 99px;
    margin-bottom: 18px;
    background: rgba(37, 99, 235, .18);
    border: 1px solid rgba(37, 99, 235, .35);
    font-size: 11px;
    font-weight: 600;
    color: #93C5FD;
    letter-spacing: .02em
}

.hero-kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60A5FA;
    animation: bp 2s infinite
}

@keyframes bp {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-display {
    font-size: clamp(1.85rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 16px
}

.hero-display em {
    font-style: normal;
    background: linear-gradient(120deg, #60A5FA, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
    line-height: 1.7;
    color: #94A3B8;
    margin-bottom: 24px
}

.hero-sub strong {
    color: #CBD5E1
}

.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.hero-video-wrap {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .08),
        0 24px 80px rgba(0, 0, 0, .55),
        0 8px 24px rgba(0, 0, 0, .35),
        0 0 60px rgba(30, 90, 232, .22)
}

.hero-video-wrap video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover
}

@media(max-width:820px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-kicker,
    .hero-cta {
        justify-content: center
    }
}

/* ════════════════════════════════════
 COMPARE
════════════════════════════════════ */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--r-md);
}

/* Pain col — right aligned */
.compare-col.pain .compare-item {
    justify-content: flex-end;
    text-align: right
}

.compare-col.pain .compare-col-hd {
    justify-content: flex-end;
    text-align: right
}

/* Gain col — left aligned */
.compare-col.gain .compare-item {
    justify-content: flex-start;
    text-align: left
}

.compare-col.gain .compare-col-hd {
    justify-content: flex-start;
    text-align: left
}

.compare-col-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.compare-item:last-child {
    border-bottom: none
}

/* Icons */
.ci-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ci-bad {
    background: rgba(212, 32, 32, .18);
    border: 1px solid rgba(212, 32, 32, .25)
}

.ci-bad svg {
    stroke: #FCA5A5
}

.ci-good {
    background: rgba(15, 158, 82, .18);
    border: 1px solid rgba(15, 158, 82, .25)
}

.ci-good svg {
    stroke: #6EE7A4
}

/* Center VS */
.compare-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative
}

.compare-center::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, .12) 20%,
            rgba(255, 255, 255, .12) 80%,
            transparent 100%)
}

.compare-vs {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--r-xl);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    color: #475569;
    letter-spacing: .08em;
    position: relative;
    z-index: 1
}

@media(max-width:820px) {
    .compare-center {
        padding: 0 16px;
    }
}

@media(max-width:480px) {
    .compare-center {
        padding: 0 12px;
    }
}


/*=═══════════════════════════════════
 HOW IT WORKS
════════════════════════════════════ */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
    position: relative;
    z-index: 1
}

.hiw-card-new {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px 26px;
    text-align: center;
    overflow: hidden;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, border-color .28s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    /* stagger on reveal */
    transition-delay: calc(var(--i) * 90ms)
}

.hiw-card-new.reveal.on {
    transition-delay: calc(var(--i) * 90ms)
}

/* Background gradient glow */
.hiw-card-bg {
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(30, 90, 232, .06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease
}

.hiw-card-new:hover .hiw-card-bg {
    opacity: 1
}

.hiw-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 90, 232, .10), 0 4px 16px rgba(0, 0, 0, .06);
    border-color: var(--blue-mid)
}

/* Number badge */
.hiw-card-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(30, 90, 232, .25);
    transition: transform .25s ease, box-shadow .25s ease
}

.hiw-card-new:hover .hiw-card-badge {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(30, 90, 232, .35)
}

/* Icon */
.hiw-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue-lt);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform .25s ease, background .25s ease, color .25s ease
}

.hiw-card-new:hover .hiw-card-icon {
    transform: scale(1.05);
    background: var(--blue);
    color: #fff
}

/* Title */
.hiw-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 6px
}

/* Text */
.hiw-card-text {
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.6
}

@media(max-width:820px) {
    .hiw-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px
    }
}

@media(max-width:480px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .hiw-card-new {
        padding: 16px 16px 14px
    }
}

/* ════════════════════════════════════
 PHONE FEATURE
════════════════════════════════════ */
#phone-feat {
    background: linear-gradient(135deg, #0A0F1E 0%, #0f1a3a 60%, #0d1635 100%);
    padding: clamp(15px, 7vw, 50px) 0;
    position: relative;
    overflow: hidden
}

#phone-feat::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(37, 99, 235, .15) 0%, transparent 65%)
}

.phone-feat-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2vw, 46px);
    align-items: center;
    position: relative;
    z-index: 1
}

.phone-feat-copy .eyebrow {
    color: #60A5FA
}

.phone-feat-copy .h2 {
    color: #fff;
    margin-top: 10px
}

.phone-feat-copy .body-lg {
    color: #94A3B8;
    margin-top: 12px
}

.phone-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px
}

.phone-step {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.phone-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .3);
    border: 1px solid rgba(37, 99, 235, .5);
    color: #93C5FD;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.phone-step-text {
    font-size: .9rem;
    color: #CBD5E1;
    line-height: 1.55
}

.phone-step-text strong {
    color: #fff
}

/* phone visual */
.phone-visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.phone-frame {
    width: clamp(180px, 28vw, 240px);
    background: #111827;
    border-radius: 36px;
    border: 6px solid #1F2937;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .07);
    position: relative;
    overflow: hidden;
    flex-shrink: 0
}

.phone-notch {
    width: 12px;
    height: 12px;
    background: #0D1117;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-cam {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3b4a63, #111827 70%);
}

.phone-speaker {
    width: 22px;
    height: 3px;
    border-radius: 99px;
    background: #0D1117
}

.phone-screen {
    background: #F7F8FC;
    min-height: 360px;
    padding: 10px 10px 14px
}

.phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
    margin-bottom: 8px
}

.phone-statusbar span {
    font-size: 9px;
    color: var(--ink3);
    font-weight: 600
}

.phone-app-hdr {
    background: var(--blue);
    border-radius: 8px 8px 0 0;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 -2px
}

.phone-app-hdr-title {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    line-height: 1
}

.phone-app-hdr-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, .7);
    margin-top: 1px
}

.phone-app-body {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 9px 8px;
    margin: 0 -2px;
    border: 1px solid var(--border);
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 7px
}

.phone-sel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 9.5px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.phone-upload-split {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1.5px dashed var(--blue-mid);
    border-radius: 7px;
    overflow: hidden
}

.phone-upload-half {
    flex: 1;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.phone-upload-half:first-child {
    border-right: 1.5px dashed var(--blue-mid)
}

.phone-upload-half span {
    font-size: 9px;
    font-weight: 600;
    color: var(--ink2);
    text-align: center
}

.phone-btn {
    background: var(--blue);
    color: #fff;
    border-radius: 5px;
    padding: 6px;
    font-size: 9px;
    font-weight: 700;
    text-align: center
}

.phone-result-card {
    background: var(--blue-lt);
    border: 1px solid var(--blue-mid);
    border-radius: 7px;
    padding: 8px
}

.phone-score {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.03em
}

.phone-score-sub {
    font-size: 7px;
    color: var(--green-dk);
    font-weight: 700;
    margin-top: 1px
}

.phone-meta {
    font-size: 8px;
    color: var(--ink3);
    font-family: var(--mono);
    margin-top: 4px
}

@media(max-width:820px) {
    .phone-feat-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .phone-feat-copy a {
        margin-left: 35px;
    }

    .phone-steps {
        margin-left: 30px;
    }

    .phone-step {
        text-align: left;
    }

    .phone-visual {
        margin-top: 8px
    }
}

/* ── Real Results ── */
#real-results {
    background: linear-gradient(180deg, #F4F6FD 0%, #FAFBFF 100%)
}

.rr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto
}

.rr-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 6px 24px rgba(0, 0, 0, .10),
        0 2px 6px rgba(0, 0, 0, .07),
        0 12px 32px rgba(0, 0, 0, .06);
    transform: perspective(900px) rotateX(2deg);
    transform-origin: top center;
    transition: transform .3s ease, box-shadow .3s ease
}

.rr-card:hover {
    transform: perspective(900px) rotateX(0deg) translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 12px 40px rgba(0, 0, 0, .13),
        0 4px 10px rgba(0, 0, 0, .08)
}

/* Excel green title bar */
.rr-excel-titlebar {
    background: #1D6F42;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.rr-excel-filename {
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
    font-family: var(--mono);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.rr-excel-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0
}

.rr-excel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

/* Excel ribbon */
.rr-excel-ribbon {
    background: #217346;
    padding: 4px 12px;
    display: flex;
    gap: 14px;
    border-bottom: 1px solid #1a5c38
}

.rr-ribbon-tab {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
    padding: 2px 0;
    cursor: default
}

.rr-ribbon-tab.active {
    color: #fff;
    border-bottom: 2px solid #fff
}

/* Formula bar */
.rr-formula-bar {
    background: #f3f3f3;
    border-bottom: 1px solid #d0d0d0;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.rr-cell-ref {
    font-size: 11px;
    font-family: var(--mono);
    color: #333;
    min-width: 32px;
    border-right: 1px solid #d0d0d0;
    padding-right: 8px
}

.rr-formula-val {
    font-size: 11px;
    font-family: var(--mono);
    color: #333
}

/* Sheet area */
.rr-sheet {
    background: #fff;
    overflow-x: auto
}

.rr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px
}

/* Row numbers column */
.rr-table .rr-rownum {
    background: #f3f3f3;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #e0e0e0;
    color: #888;
    font-size: 11px;
    text-align: center;
    padding: 3px 6px;
    width: 24px;
    font-family: var(--mono);
    user-select: none
}

.rr-table thead th {
    background: #f3f3f3;
    border-right: 1px solid #d0d0d0;
    border-bottom: 2px solid #bbb;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    text-align: center;
    letter-spacing: .03em
}

.rr-table thead th.rr-rownum {
    border-bottom: 2px solid #bbb
}

/* Header row (row 1 styled like Excel header) */
.rr-table tbody tr.rr-hdr td {
    background: #1D6F42;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    border-right: 1px solid #165a35;
    border-bottom: 1px solid #165a35;
    padding: 5px 10px
}

.rr-table tbody tr.rr-hdr .rr-rownum {
    background: #f3f3f3;
    color: #888;
    font-weight: 400
}

.rr-table tbody tr td {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 4px 10px;
    color: #222;
    font-family: var(--mono);
    font-size: 13px;
    white-space: nowrap
}

.rr-table tbody tr:nth-child(even):not(.rr-hdr):not(.rr-more) td:not(.rr-rownum) {
    background: #f7fbf9
}

.rr-table tbody tr:hover:not(.rr-hdr):not(.rr-more) td:not(.rr-rownum) {
    background: #e8f4ee
}

.rr-check {
    color: #1D6F42;
    font-weight: 700;
    text-align: center !important
}

.rr-more td {
    background: #f9f9f9 !important;
    color: #999;
    font-family: var(--font);
    font-size: 11px;
    text-align: center;
    padding: 5px;
    border-top: 1px dashed #ddd
}

/* Sheet tab bar */
.rr-sheet-tabs {
    background: #f3f3f3;
    border-top: 1px solid #d0d0d0;
    padding: 0 8px;
    display: flex;
    align-items: flex-end;
    gap: 2px
}

.rr-sheet-tab {
    font-size: 11px;
    padding: 4px 12px;
    border: 1px solid #d0d0d0;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    color: #555;
    background: #e0e0e0;
    cursor: default
}

.rr-sheet-tab.active {
    background: #fff;
    color: #1D6F42;
    font-weight: 700;
    border-color: #bbb
}

@media (max-width: 640px) {
    .rr-grid {
        grid-template-columns: 1fr
    }

    .rr-card {
        transform: none
    }
}

/* ── FAQ — EXPANDABLE LIST ── */
.faq-list {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: border-color .25s ease
}

.faq-item:first-child {
    border-top: 1px solid var(--border)
}

.faq-item.open {
    border-bottom-color: var(--blue-mid)
}

.faq-item-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 4px;
    cursor: pointer;
    user-select: none;
    transition: color .2s ease
}

.faq-item-hd:hover {
    color: var(--blue)
}

.faq-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--r-sm);
    background: var(--blue-lt);
    flex-shrink: 0
}

.faq-item-icon svg {
    stroke: var(--blue)
}

.faq-item.open .faq-item-icon {
    background: var(--blue);
}

.faq-item.open .faq-item-icon svg {
    stroke: #fff
}

.faq-item-q {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    line-height: 1.4
}

.faq-item-arrow {
    flex-shrink: 0;
    color: var(--ink3);
    transition: transform .3s ease, color .25s ease
}

.faq-item.open .faq-item-arrow {
    transform: rotate(180deg);
    color: var(--blue)
}

.faq-item.open .faq-item-body {
    grid-template-rows: 1fr
}

.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-item-body {
    max-height: 200px
}

.faq-item-a {
    font-size: 14.5px;
    color: var(--ink3);
    line-height: 1.3;
    padding: 0 4px 18px 36px
}

@media(max-width:500px) {
    .faq-list {
        max-width: 80%
    }

    .faq-item-hd {
        padding: 14px 2px;
        gap: 10px
    }

    .faq-item-q {
        font-size: 15px
    }

    .faq-item-a {
        padding-left: 36px;
        font-size: 13.5px
    }
}

/* ════════════════════════════════════
 FOOTER
════════════════════════════════════ */
footer {
    background: #060B18;
    color: #475569;
    padding: clamp(24px, 4vw, 36px) 0 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: clamp(20px, 4vw, 40px);
    padding-bottom: clamp(10px, 2vw, 16px);
    position: relative
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px)
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    font-weight: 800;
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #fff;
    letter-spacing: -.02em;
}

.footer-logo-mark {
    width: clamp(22px, 3.5vw, 26px);
    height: clamp(22px, 3.5vw, 26px);
    background: var(--blue);
    border-radius: 5px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(30, 90, 232, .45)
}

.footer-tagline {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #94A3B8;
    line-height: 1.75;
    margin: 0;
    max-width: clamp(160px, 20vw, 230px)
}

.footer-col-hd {
    font-size: clamp(.75rem, 1.3vw, .8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    margin-bottom: clamp(8px, 2vw, 10px)
}

.footer-links {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 10px);
    border: none !important;
}

.footer-links a {
    font-size: clamp(13.5px, 2vw, 14.5px);
    color: var(--border2);
    text-decoration: none;
    transition: color .14s, padding-left .14s;
    width: fit-content
}

.footer-links a:hover {
    color: var(--ink3);
    padding-left: 4px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 10px)
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: clamp(7px, 1.2vw, 9px);
    font-size: clamp(13.5px, 2vw, 14.5px);
    color: var(--border2);
    text-decoration: none;
    transition: color .14s
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--ink3);
    transition: color .14s
}

.footer-contact-item:hover {
    color: var(--ink3);
}

.footer-contact-item:hover svg {
    color: var(--blue)
}

/* ── bottom bar ── */
.footer-bottom {
    padding: clamp(10px, 2vw, 16px) 0;
    position: relative
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 10px);
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--ink3);
    flex-wrap: wrap
}

/* ── responsive ── */
@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        margin-left: clamp(15px, 25vw, 60px)
    }

    .footer-contact {
        margin-right: clamp(15px, 25vw, 60px)
    }

    .footer-tagline {
        max-width: 100%
    }
}

@media (max-width: 480px) {
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(6px, 2vw, 10px)
    }

    .footer-links {
        margin-left: clamp(12px, 4vw, 20px)
    }

    .footer-contact {
        margin-right: clamp(13px, 5vw, 25px)
    }
}

/* ── pulse for live dot ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

/* ════════════════════════════════════
 SUBTLE ENHANCEMENTS
════════════════════════════════════ */

/* ── Focus Visible (accessibility) ── */
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px
}

/* ── Card hover lift (cards only, subtle) ── */
.ben-item,
.compare-col {
    transition: transform .22s ease, box-shadow .22s ease
}

.ben-item:hover,
.compare-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

@media(hover:none) {

    .ben-item:hover,
    .compare-col:hover {
        transform: none
    }
}

/* ── Compare Stats Strip ── */
#compare-stats {
    background: linear-gradient(135deg, #060C20 0%, #0B1535 50%, #080E28 100%);
    padding: clamp(20px, 4vw, 36px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.stat-badge {
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 255, 255, .06)
}

.stat-badge:last-child {
    border-right: none
}

.s-num {
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1
}

.s-lbl {
    display: block;
    font-size: .8rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em
}

@media(max-width:600px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-badge:nth-child(2) {
        border-right: none
    }

    .stat-badge {
        padding: 8px 4px
    }
}

#how-it-works,
#real-results,
#faq {
    position: relative;
    overflow: hidden
}

#how-it-works::before,
#real-results::before,
#faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 70% at 80% 20%, rgba(30, 90, 232, .07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(67, 56, 202, .05) 0%, transparent 55%)
}

#how-it-works .wrap,
#real-results .wrap,
#faq .wrap {
    position: relative;
    z-index: 1
}


/* ════════════════════════════════════
 GLOBAL PALETTE OVERRIDES
════════════════════════════════════ */

/* ── Page background: very subtle blue-warm tint ── */
body {
    background: linear-gradient(180deg, #FAFBFF 0%, #F4F6FD 100%);
    min-height: 100vh
}

/* ── Nav: glass with blue tint ── */
nav {
    background: rgba(248, 250, 255, .94);
    border-bottom-color: var(--border)
}

/* ── USP strip: deep navy-indigo instead of pure black ── */
#usp {
    background: linear-gradient(120deg, #060C20 0%, #0B1432 50%, #080E28 100%)
}

.usp-item {
    border-right-color: rgba(255, 255, 255, .06)
}

/* ── Phone feature: richer gradient ── */
#phone-feat {
    background: linear-gradient(135deg, #060C20 0%, #0C1838 55%, #0A1430 100%)
}

/* ── Hero: richer gradient ── */
#hero {
    background: linear-gradient(135deg, #060C20 0%, #0C1838 50%, #091230 100%)
}

/* ── Compare: dark with violet lean ── */
#compare {
    background: linear-gradient(135deg, #060C20 0%, #0C1432 40%, #0E1040 100%);
    position: relative;
    overflow: hidden
}

#compare::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 65% at 10% 60%, rgba(67, 56, 202, .16) 0%, transparent 60%),
        radial-gradient(ellipse 45% 55% at 90% 20%, rgba(30, 90, 232, .12) 0%, transparent 55%)
}

#compare::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    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: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%)
}

#compare .wrap {
    position: relative;
    z-index: 1
}

/* Compare text on dark */
#compare .sec-hd .h2 {
    color: #fff
}

#compare .sec-hd .eyebrow {
    color: #7EB3FF
}

#compare .sec-hd .body-lg {
    color: #94A3B8
}

/* Compare cards: glass-like on dark */
.compare-col {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .28), 0 2px 8px rgba(0, 0, 0, .18)
}

.pain .compare-col-hd {
    background: rgba(212, 32, 32, .18);
    color: #FCA5A5;
    border-bottom-color: rgba(212, 32, 32, .25)
}

.gain .compare-col-hd {
    background: rgba(15, 158, 82, .18);
    color: #6EE7A4;
    border-bottom-color: rgba(15, 158, 82, .25)
}

.compare-item {
    background: rgba(255, 255, 255, .04);
    border-bottom-color: rgba(255, 255, 255, .07);
    color: #CBD5E1
}

/* ── Dividers: barely visible on light sections ── */
.divider {
    border-top-color: var(--border)
}

/* ── Footer: deepest shade ── */
footer {
    background: #030710;
    border-top-color: rgba(255, 255, 255, .04)
}

/* ── Buttons: richer shadow ── */
.btn-primary {
    box-shadow: 0 2px 14px rgba(30, 90, 232, .35)
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(30, 90, 232, .48)
}

/* ── Cards & panels: light sections ── */
.mockup,
.wp-panel,
.wp-panel-ui {
    background: #fff
}

/* ── Compare col on light (fallback safety) ── */
.compare-item {
    line-height: 1.6
}

/* ── How It Works: light section ── */
#how-it-works {
    background: linear-gradient(180deg, #FAFBFF 0%, #F4F6FD 100%)
}

/* ── Benefits: dark navy matching USP/phone-feat ── */
#benefits {
    background: linear-gradient(135deg, #060C20 0%, #0B1535 50%, #080E28 100%);
    position: relative;
    overflow: hidden
}

#benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 15% 50%, rgba(30, 90, 232, .14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 30%, rgba(67, 56, 202, .12) 0%, transparent 55%)
}

#benefits::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    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: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%)
}

#benefits .wrap {
    position: relative;
    z-index: 1
}

#benefits .sec-hd .h2 {
    color: #fff
}

#benefits .sec-hd .eyebrow {
    color: #7EB3FF
}

.ben-item {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .09);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .2)
}

.ben-item:hover {
    background: rgba(30, 90, 232, .18);
    border-color: rgba(30, 90, 232, .38)
}

.ben-text {
    color: #CBD5E1
}

/* ── FAQ: light section ── */
#how-it-works {
    background: linear-gradient(135deg, #EDF2FF 0%, #F0F4FF 40%, #E8EFFE 100%)
}

#real-results {
    background: linear-gradient(135deg, #F0F4FF 0%, #EDF2FF 50%, #E8EFFE 100%)
}

#faq {
    background: linear-gradient(135deg, #EDF2FF 0%, #E8EFFE 50%, #F0F4FF 100%)
}

#faq .sec-hd .h2 {
    color: var(--ink)
}

#faq .sec-hd .eyebrow {
    color: var(--blue)
}