/* ═══════════════════════════════════════════════════════════════
   CALFLOWS — PREMIUM LANDING PAGE (COMBINED BEST VERSION)
   Style: Clean warm-dark gradient  |  Content: Full new sections
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core palette — warm dark like the original */
    --bg: #0a0a0f;
    --primary: #ff5f1f;
    --primary2: #ff9d4d;
    --secondary: #7c3aed;
    --blue: #3b82f6;
    --green: #10b981;
    --pink: #ec4899;

    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #f1f5f9;
    --muted: #94a3b8;

    --r: 20px;
    --r-lg: 28px;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Syne', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* ─── BACKGROUND GRADIENT (THE SIGNATURE WARM LOOK) ─────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(180, 40, 0, 0.38) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(80, 20, 140, 0.30) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0, 20, 60, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ─── UTILITY ─────────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
}

.section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--primary);
    background: rgba(255, 95, 31, 0.12);
    border: 1px solid rgba(255, 95, 31, 0.28);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 14px;
}

.section-p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 56px;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes marqueeX {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 31, .4)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 95, 31, 0)
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    100% {
        transform: translateY(100%);
        opacity: 0
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Scroll reveal classes */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.pop-in {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s ease, transform .9s ease;
}

.fade-up.visible,
.fade-in.visible,
.reveal.visible {
    opacity: 1;
    transform: none;
}

.pop-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero elements visible immediately */
.hero .fade-up,
.hero .fade-in,
.hero .pop-in {
    opacity: 0;
}

body.hero-loaded .hero .fade-up,
body.hero-loaded .hero .fade-in,
body.hero-loaded .hero .pop-in {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
}

.delay-1 {
    transition-delay: .08s
}

.delay-2 {
    transition-delay: .16s
}

.delay-3 {
    transition-delay: .24s
}

.delay-4 {
    transition-delay: .32s
}

.delay-5 {
    transition-delay: .40s
}

.delay-6 {
    transition-delay: .48s
}

.delay-7 {
    transition-delay: .56s
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 15, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    letter-spacing: -.02em;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin-right: 2px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
    white-space: nowrap;
}

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

.btn-nav {
    background: #fff;
    color: #111;
    font-size: .88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    flex-shrink: 0;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-nav:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 95, 31, .4);
}

/* ─── LANGUAGE SWITCHER ──────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 4px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    padding: 5px 10px;
    border-radius: 100px;
    transition: background .2s, color .2s;
    white-space: nowrap;
    font-family: var(--font);
    letter-spacing: .02em;
}

.lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .08);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 24px 80px;
    z-index: 2;
    overflow: hidden;
}

/* We don't need .hero-bg orbs — body::before handles the gradient */
.hero-bg {
    display: none;
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: clamp(.98rem, 1.2vw, 1.15rem);
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 34px;
    line-height: 1.72;
}

.hero-sub strong {
    color: var(--text);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 100px;
    transition: transform .2s, box-shadow .2s;
    animation: pulse 3s ease-in-out infinite;
    width: fit-content;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(255, 95, 31, .5);
}

.btn-xl {
    font-size: 1.1rem;
    padding: 20px 42px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-rating>span {
    font-size: .88rem;
    color: var(--muted);
}

.hero-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars-stack {
    display: flex;
}

.avatars-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .15);
    margin-right: -10px;
    object-fit: cover;
}

.hero-avatars>span {
    font-size: .82rem;
    color: var(--muted);
    margin-left: 18px;
}

/* ─── PHONE VISUAL ─────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: relative;
    z-index: 2;
}

.phone-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .55));
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255, 95, 31, .2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stat-float {
    position: absolute;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 9px 16px;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.stat-1 {
    top: 12%;
    right: -8%;
}

.stat-2 {
    bottom: 28%;
    left: -12%;
}

.stat-3 {
    bottom: 12%;
    right: 2%;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: .45;
}

.scroll-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ─── SEEN ON ─────────────────────────────────────────────────── */
.seen-on-wrap {
    padding: 32px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.seen-on-label {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--muted);
    margin-bottom: 18px;
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marqueeX 22s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .18);
    letter-spacing: -.02em;
    flex-shrink: 0;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
    max-width: 960px;
    margin: 60px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--glass-border);
    align-self: stretch;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feat-card {
    padding: 28px;
    transition: transform .3s, box-shadow .3s;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-icon svg {
    width: 22px;
    height: 22px;
}

.feat-icon.blue {
    background: rgba(59, 130, 246, .14);
    color: var(--blue);
}

.feat-icon.orange {
    background: rgba(255, 95, 31, .14);
    color: var(--primary);
}

.feat-icon.purple {
    background: rgba(124, 58, 237, .14);
    color: var(--secondary);
}

.feat-icon.green {
    background: rgba(16, 185, 129, .14);
    color: var(--green);
}

.feat-icon.pink {
    background: rgba(236, 72, 153, .14);
    color: var(--pink);
}

.feat-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 9px;
}

.feat-card p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.62;
}

.feat-cta-card {
    background: linear-gradient(135deg, rgba(255, 95, 31, .14), rgba(124, 58, 237, .14));
    border-color: rgba(255, 95, 31, .28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.feat-cta-card h3 {
    font-size: 1.2rem;
}

.btn-feat {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .92rem;
    width: fit-content;
    transition: transform .2s, box-shadow .2s;
}

.btn-feat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 95, 31, .4);
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how {
    padding: 90px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, .04), transparent);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 52px;
    margin-top: 52px;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.step.reverse {
    direction: rtl;
}

.step.reverse>* {
    direction: ltr;
}

.step-photo {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
    transition: transform .4s;
}

.step-photo:hover {
    transform: scale(1.02);
}

.step-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.78);
    transition: transform .8s;
}

.step-photo:hover img {
    transform: scale(1.06);
}

.step-photo-overlay {
    position: absolute;
    inset: 0;
    opacity: .45;
    mix-blend-mode: overlay;
}

.blue-tint {
    background: linear-gradient(135deg, rgba(59, 130, 246, .6), transparent);
}

.orange-tint {
    background: linear-gradient(135deg, rgba(255, 95, 31, .6), transparent);
}

.purple-tint {
    background: linear-gradient(135deg, rgba(124, 58, 237, .6), transparent);
}

.step-num-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 900;
    color: white;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 5px 14px;
}

.step-text h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.78;
}

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews {
    padding: 90px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.reviews-marquee {
    overflow: hidden;
    margin: 0 -24px;
}

.reviews-track {
    display: flex;
    gap: 18px;
    animation: marqueeX 44s linear infinite;
    padding: 10px 0;
}

.rev-card {
    min-width: 350px;
    max-width: 350px;
    padding: 26px;
    flex-shrink: 0;
    position: relative;
    transition: transform .3s;
}

.rev-card:hover {
    transform: translateY(-4px);
}

.rev-highlight {
    border-color: rgba(255, 95, 31, .38);
    background: linear-gradient(135deg, rgba(255, 95, 31, .09), rgba(124, 58, 237, .09));
}

.rev-badge {
    position: absolute;
    top: -11px;
    left: 18px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rev-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.rev-top strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
}

.stars-sm {
    color: #fbbf24;
    font-size: .76rem;
    letter-spacing: 1px;
}

.store-badge {
    margin-left: auto;
    font-size: .65rem;
    color: var(--muted);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3px 10px;
    border-radius: 100px;
}

.rev-card>p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.68;
    font-style: italic;
}

/* ─── COMPARISON ─────────────────────────────────────────────── */
.comparison {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.cmp-table {
    margin-top: 48px;
    overflow: hidden;
}

.cmp-header,
.cmp-row {
    display: grid;
    grid-template-columns: 1fr 150px 150px;
    gap: 0;
}

.cmp-header {
    padding: 18px 26px;
    border-bottom: 1px solid var(--glass-border);
}

.cmp-brand {
    font-weight: 700;
    font-size: .88rem;
    text-align: center;
}

.calflows-brand {
    color: var(--primary);
}

.cmp-row {
    padding: 16px 26px;
    font-size: .88rem;
    color: var(--muted);
    transition: background .2s;
}

.cmp-row:hover {
    background: var(--glass);
}

.cmp-row+.cmp-row {
    border-top: 1px solid var(--glass-border);
}

.cmp-yes {
    text-align: center;
    color: var(--green);
    font-weight: 700;
}

.cmp-no {
    text-align: center;
    color: var(--muted);
    opacity: .5;
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.cta-orb1 {
    width: 560px;
    height: 560px;
    background: rgba(255, 95, 31, .13);
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb2 {
    width: 380px;
    height: 380px;
    background: rgba(124, 58, 237, .11);
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.cta-inner p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: .82rem;
    margin-top: 18px;
}

.cta-guarantee svg {
    color: var(--green);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 56px 24px 0;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 36px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .88rem;
    margin-top: 8px;
}

.logo-sm {
    font-size: 1.15rem;
}

.logo-icon-sm {
    width: 26px;
    height: 26px;
    font-size: .82rem;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    font-size: .86rem;
    color: var(--muted);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links svg {
    display: block;
}

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid var(--glass-border);
    font-size: .78rem;
    color: var(--muted);
}

/* ─── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 10px 16px;
    background: rgba(10, 10, 15, .95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: .93rem;
    padding: 15px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 8px 26px rgba(255, 95, 31, .4);
    transition: transform .2s;
}

.btn-sticky:active {
    transform: scale(.97);
}

/* ─── MAGNETIC (just cursor offset — no glow pollution) ─────── */
.magnetic {
    transition: transform .2s ease;
}

/* Hide particle canvas — not needed for this aesthetic */
#particleCanvas,
.cursor-glow {
    display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-divider:nth-child(4) {
        display: none;
    }
}

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

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

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-sub {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        align-items: center;
    }

    .hero-avatars {
        justify-content: center;
    }

    .hero-avatars>span {
        margin-left: 8px;
        font-size: .78rem;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-divider {
        display: none;
    }

    .step,
    .step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .step-photo {
        height: 260px;
    }

    .cmp-header,
    .cmp-row {
        grid-template-columns: 1fr 90px 90px;
        font-size: .8rem;
    }

    .footer-inner {
        flex-direction: column;
    }

    .sticky-cta {
        display: block;
    }

    .section-p {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 56px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        border-radius: var(--r);
    }

    .stat-item {
        padding: 22px;
    }

    .rev-card {
        min-width: 290px;
        max-width: 290px;
    }
}