:root {
            --cream:    #F5F2EA;
            --cream-2:  #ECE7D9;
            --cream-3:  #E2DCC9;
            --yellow:   #FCE000;
            --yellow-d: #F0CE00;
            --ink:      #21201F;
            --ink-2:    #2D2820;
            --ink-3:    #3A3328;
            --muted:    #6B6A66;
            --line:     #DCD6C5;
            --green:    #1B9F4B;
            --r-sm: 16px;
            --r-md: 24px;
            --r-lg: 32px;
            --shadow-sm: 0 4px 16px rgba(33,32,31,0.06);
            --shadow-md: 0 12px 36px rgba(33,32,31,0.1);
            --shadow-lg: 0 24px 60px rgba(33,32,31,0.16);
            --t-fast: cubic-bezier(.2,.7,.3,1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; min-width: 0; }
        html, body { overflow-x: clip; max-width: 100%; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        section[id] { scroll-margin-top: 80px; }
        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cream);
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-y: none;
            color: var(--ink);
            line-height: 1.5;
            font-feature-settings: "ss01" on, "cv11" on;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        button, input, select, textarea { font-family: inherit; font-size: inherit; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.05; font-weight: 900; overflow-wrap: break-word; }
        h1 { font-size: clamp(38px, 6.4vw, 80px); }
        h2 { font-size: clamp(32px, 5vw, 56px); }
        h3 { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; }
        .lc { text-transform: lowercase; }

        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            border: 0; cursor: pointer; white-space: nowrap;
            padding: 16px 28px; border-radius: 999px;
            font-weight: 800; font-size: 16px;
            transition: transform .25s var(--t-fast), background .25s var(--t-fast), color .25s, box-shadow .3s;
        }
        .btn:active { transform: translateY(1px) scale(.99); }
        .btn-primary { background: var(--yellow); color: var(--ink); }
        .btn-primary:hover { background: var(--yellow-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(252,224,0,.45); }
        .btn-dark { background: var(--ink); color: #fff; }
        .btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,32,31,.35); }
        .btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
        .btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
        .btn-lg { padding: 20px 36px; font-size: 17px; }
        .btn-green { background: var(--green); color: #fff; }
        .btn-green:hover { background: #168a3f; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(27,159,75,.35); }

        /* ===== Urgency bar ===== */
        .urgency-bar {
            background: var(--ink); color: #fff;
            text-align: center; padding: 12px 16px;
            font-size: 14px; font-weight: 700;
            position: relative; z-index: 51;
        }
        .urgency-bar .ub-pulse {
            display: inline-block; width: 8px; height: 8px;
            background: #F44; border-radius: 50%;
            margin-right: 8px; animation: ubPulse 1.5s ease-in-out infinite;
        }
        @keyframes ubPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
        .urgency-bar .ub-timer { color: var(--yellow); font-weight: 900; }
        .urgency-bar .ub-close {
            position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
            background: 0; border: 0; color: rgba(255,255,255,.5); cursor: pointer; font-size: 18px;
        }

        /* ===== Header ===== */
        .header {
            position: sticky; top: 0; z-index: 50;
            background: rgba(245,242,234,0.85);
            backdrop-filter: saturate(180%) blur(16px);
            -webkit-backdrop-filter: saturate(180%) blur(16px);
            border-bottom: 1px solid rgba(33,32,31,0.06);
        }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; letter-spacing: -0.02em; }
        .brand-mark {
            width: 36px; height: 36px; border-radius: 10px;
            object-fit: contain;
            box-shadow: 0 4px 14px rgba(252,224,0,.45);
        }
        .nav-actions { display: flex; align-items: center; gap: 10px; }

        /* ===== Hero ===== */
        .hero {
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: ""; position: absolute; top: -120px; right: -120px;
            width: 500px; height: 500px; border-radius: 50%;
            background: radial-gradient(circle, rgba(252,224,0,0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content { max-width: 760px; position: relative; z-index: 1; }
        .hero .eyebrow {
            display: inline-block;
            background: var(--ink);
            color: var(--cream);
            font-size: 12px; font-weight: 700;
            padding: 7px 14px; border-radius: 999px;
            margin-bottom: 22px;
            letter-spacing: 0.05em; text-transform: uppercase;
        }
        .hero h1 { margin-bottom: 24px; }
        .hero h1 .y {
            background: var(--yellow); padding: 0 16px; border-radius: 14px;
            display: inline-block; transform: rotate(-1deg);
        }
        .hero-lead { font-size: clamp(16px,1.6vw,19px); color: var(--muted); margin-bottom: 40px; max-width: 600px; line-height: 1.65; }
        .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

        .hero-badges {
            display: flex; gap: 16px; margin-top: 50px; flex-wrap: wrap;
        }
        .hero-badge {
            background: #fff;
            border-radius: 20px;
            padding: 20px 24px;
            display: flex; align-items: center; gap: 16px;
            box-shadow: var(--shadow-sm);
            transition: transform .35s var(--t-fast), box-shadow .35s;
        }
        .hero-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .hero-badge .ic {
            width: 52px; height: 52px; border-radius: 16px;
            background: var(--yellow);
            display: grid; place-items: center;
            flex-shrink: 0;
            box-shadow: 0 6px 18px rgba(252,224,0,.35);
        }
        .hero-badge .ic img { width: 32px; height: 32px; object-fit: contain; }
        .hero-badge .num { font-weight: 900; font-size: 22px; line-height: 1; }
        .hero-badge .lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

        /* ===== Sections ===== */
        section { padding: 80px 0; }
        .section-head { margin-bottom: 56px; max-width: 820px; }
        .section-head.center { margin: 0 auto 56px; text-align: center; }
        .section-head h2 { margin-bottom: 16px; }
        .section-head p { color: var(--muted); font-size: 17px; max-width: 640px; }
        .section-head.center p { margin-left: auto; margin-right: auto; }
        .eyebrow {
            display: inline-block;
            background: var(--ink);
            color: var(--cream);
            font-size: 12px; font-weight: 700;
            padding: 7px 14px; border-radius: 999px;
            margin-bottom: 18px;
            letter-spacing: 0.05em; text-transform: uppercase;
        }

        /* ===== Benefit cards ===== */
        .benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .benefit {
            background: #fff;
            border-radius: var(--r-md);
            padding: 36px 30px 34px;
            display: flex; flex-direction: column;
            transition: transform .35s var(--t-fast), box-shadow .35s;
            position: relative;
            overflow: hidden;
        }
        .benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .benefit-icon {
            width: 80px; height: 80px;
            background: var(--yellow);
            border-radius: 22px;
            display: grid; place-items: center;
            margin-bottom: 24px;
            transition: transform .5s var(--t-fast);
            box-shadow: 0 12px 28px rgba(252,224,0,.3);
        }
        .benefit-icon img { width: 50px; height: 50px; object-fit: contain; }
        .benefit:hover .benefit-icon { transform: rotate(-6deg) scale(1.05); }
        .benefit h3 { margin-bottom: 12px; font-size: 22px; }
        .benefit p { color: var(--muted); font-size: 15px; line-height: 1.55; }

        .trust-strip {
            margin-top: 22px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--r-md);
            padding: 22px 26px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            box-shadow: var(--shadow-sm);
        }
        .trust-item { display: flex; flex-direction: column; gap: 6px; }
        .trust-item strong { font-size: 15px; font-weight: 900; }
        .trust-item span { color: var(--muted); font-size: 13px; line-height: 1.45; }

        /* ===== How it works (steps) ===== */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            counter-reset: howc;
        }
        .how-step {
            background: #fff;
            border-radius: var(--r-md);
            padding: 32px 28px;
            position: relative;
            transition: transform .3s var(--t-fast), box-shadow .3s;
        }
        .how-step::before {
            counter-increment: howc;
            content: counter(howc, decimal-leading-zero);
            font-size: 60px; font-weight: 900; line-height: 1;
            color: var(--yellow);
            margin-bottom: 16px; display: block;
            letter-spacing: -0.04em;
        }
        .how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .how-step h3 { font-size: 20px; margin-bottom: 10px; }
        .how-step p { color: var(--muted); font-size: 14px; line-height: 1.55; }

        /* ===== Earnings showcase ===== */
        .earn-section { background: var(--ink-2); border-radius: var(--r-lg); padding: 60px; color: #fff; }
        .earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .earn-left h2 { color: #fff; margin-bottom: 20px; }
        .earn-left p { color: rgba(255,255,255,.65); font-size: 17px; margin-bottom: 32px; line-height: 1.65; }
        .earn-tiers { display: grid; gap: 14px; }
        .earn-tier {
            background: rgba(255,255,255,.08);
            border-radius: 18px;
            padding: 22px 26px;
            display: flex; justify-content: space-between; align-items: center;
            transition: background .25s, transform .25s var(--t-fast);
        }
        .earn-tier:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
        .earn-tier .tier-lbl { font-weight: 700; font-size: 16px; }
        .earn-tier .tier-sub { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 2px; }
        .earn-tier .tier-val {
            background: var(--yellow); color: var(--ink);
            padding: 10px 20px; border-radius: 999px;
            font-weight: 900; font-size: 17px;
            white-space: nowrap;
        }

        .earn-right {
            display: flex; flex-direction: column; gap: 18px;
        }
        .earn-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 22px;
            padding: 28px 30px;
            transition: transform .3s var(--t-fast), border-color .3s;
        }
        .earn-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
        .earn-card .ec-num { font-size: 36px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
        .earn-card .ec-lbl { font-size: 15px; color: rgba(255,255,255,.6); }

        /* ===== Registration form ===== */
        .reg-section { position: relative; }
        .reg-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .reg-info h2 { margin-bottom: 20px; }
        .reg-info p { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
        .reg-perks { display: grid; gap: 14px; }
        .reg-perk {
            display: flex; gap: 14px; align-items: flex-start;
            padding: 18px 20px;
            background: #fff;
            border-radius: var(--r-sm);
            transition: transform .25s var(--t-fast);
        }
        .reg-perk:hover { transform: translateX(4px); }
        .reg-perk .perk-dot {
            flex-shrink: 0;
            width: 28px; height: 28px; border-radius: 50%;
            background: var(--yellow);
            display: grid; place-items: center;
            font-weight: 900; font-size: 13px;
        }
        .reg-perk span { font-size: 15px; font-weight: 600; line-height: 1.45; padding-top: 3px; }

        .reg-form-card {
            background: #fff;
            border-radius: 28px;
            padding: 40px 36px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .reg-form-card::before {
            content: ""; position: absolute; top: -2px; left: 40px; right: 40px; height: 4px;
            background: var(--yellow); border-radius: 0 0 4px 4px;
        }
        .reg-form-card h3 { font-size: 24px; margin-bottom: 8px; text-align: center; }
        .reg-form-card .form-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }

        .form-group { margin-bottom: 16px; }
        .form-group label {
            display: block; font-weight: 700; font-size: 14px;
            margin-bottom: 8px; color: var(--ink);
        }
        .form-input {
            width: 100%; padding: 15px 18px;
            border: 2px solid var(--line);
            border-radius: 14px;
            background: #fff; font-size: 16px; color: var(--ink);
            transition: all .2s;
        }
        .form-input:focus { outline: 0; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(33,32,31,0.06); }
        .form-input::placeholder { color: #B5B1A6; }
        select.form-input { cursor: pointer; -webkit-appearance: none; appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2321201F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 18px center;
            padding-right: 44px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .form-check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0 24px; cursor: pointer; }
        .form-check input[type=checkbox] {
            width: 20px; height: 20px; border-radius: 6px;
            border: 2px solid var(--line);
            cursor: pointer; flex-shrink: 0; margin-top: 1px;
            accent-color: var(--ink);
        }
        .form-check span { font-size: 13px; color: var(--muted); line-height: 1.45; }
        .form-check a { text-decoration: underline; text-underline-offset: 2px; color: var(--ink); font-weight: 600; }

        .form-success {
            display: none;
            text-align: center;
            padding: 30px 20px;
        }
        .form-success .check-circle {
            width: 72px; height: 72px; border-radius: 50%;
            background: #E8F5E9; color: #2E7D32;
            display: grid; place-items: center;
            margin: 0 auto 18px;
            font-size: 36px;
        }
        .form-success h3 { font-size: 22px; margin-bottom: 8px; }
        .form-success p { color: var(--muted); font-size: 15px; }

        .form-error {
            display: none;
            background: #FFF3F3;
            color: #C62828;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* ===== Telegram Login Button ===== */
        .telegram-login-wrapper {
            margin-bottom: 24px;
            text-align: center;
        }
        .telegram-login-text {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 12px;
        }
        .telegram-login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #0088cc;
            color: #fff;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all .25s var(--t-fast);
            border: none;
            width: 100%;
        }
        .telegram-login-btn:hover {
            background: #0077b3;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,136,204,.3);
        }
        .telegram-login-btn:active {
            transform: translateY(0);
        }
        .tg-emoji {
            font-size: 20px;
        }

        /* ===== FAQ ===== */
        .faq { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
        .faq-item {
            background: #fff;
            border-radius: 18px;
            padding: 22px 26px;
            cursor: pointer;
            transition: background .25s, padding .25s;
            border: 1px solid transparent;
        }
        .faq-item:hover { border-color: var(--line); }
        .faq-q {
            display: flex; justify-content: space-between; align-items: center; gap: 16px;
            font-weight: 700; font-size: 16px; line-height: 1.35;
        }
        .faq-q::after {
            content: ""; flex-shrink: 0;
            width: 12px; height: 12px;
            border-right: 2.5px solid var(--ink);
            border-bottom: 2.5px solid var(--ink);
            transform: rotate(45deg) translate(-1px,-1px);
            transition: transform .3s var(--t-fast);
        }
        .faq-item.open .faq-q::after { transform: rotate(-135deg); }
        .faq-a {
            max-height: 0; overflow: hidden;
            color: var(--muted); font-size: 15px; line-height: 1.6;
            transition: max-height .4s var(--t-fast), padding .25s, opacity .3s;
            opacity: 0;
        }
        .faq-item.open .faq-a { max-height: 600px; padding-top: 14px; opacity: 1; }

        /* ===== CTA band ===== */
        .cta-band {
            background: var(--yellow);
            border-radius: var(--r-lg);
            padding: 64px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-band::before, .cta-band::after {
            content: ""; position: absolute; border-radius: 50%;
            background: rgba(33,32,31,0.06); pointer-events: none;
        }
        .cta-band::before { width: 200px; height: 200px; top: -60px; left: -60px; }
        .cta-band::after { width: 280px; height: 280px; bottom: -100px; right: -100px; }
        .cta-band h2 { margin-bottom: 16px; position: relative; }
        .cta-band p { color: rgba(33,32,31,0.7); font-size: 17px; margin-bottom: 32px; position: relative; max-width: 580px; margin-left: auto; margin-right: auto; }

        /* ===== Footer ===== */
        footer.dark {
            background: var(--ink-2);
            color: rgba(255,255,255,.78);
            padding: 64px 0 32px;
        }
        .foot-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }
        .foot-col h4 {
            font-size: 13px; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.08em;
            color: #fff; margin-bottom: 18px;
        }
        .foot-col ul { list-style: none; display: grid; gap: 10px; }
        .foot-col a {
            color: rgba(255,255,255,.65);
            font-size: 14px;
            transition: color .2s;
        }
        .foot-col a:hover { color: var(--yellow); }
        .foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
        .foot-brand .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
        .foot-brand-name { font-weight: 900; font-size: 18px; color: #fff; letter-spacing: -0.02em; }
        .foot-about {
            font-size: 13px; line-height: 1.6;
            color: rgba(255,255,255,.55);
            max-width: 320px;
        }
        .foot-socials { display: flex; gap: 10px; margin-top: 18px; }
        .foot-soc {
            width: 38px; height: 38px; border-radius: 50%;
            background: rgba(255,255,255,.08);
            display: grid; place-items: center;
            color: rgba(255,255,255,.78);
            transition: background .2s, color .2s, transform .2s;
        }
        .foot-soc:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
        .foot-soc svg { width: 18px; height: 18px; }
        .foot-contact-line {
            display: flex; align-items: center; gap: 8px;
            font-size: 14px;
        }
        .foot-bottom {
            display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
            font-size: 13px;
            padding-top: 28px;
            color: rgba(255,255,255,.5);
        }
        .foot-bottom a { transition: color .2s; color: rgba(255,255,255,.65); }
        .foot-bottom a:hover { color: var(--yellow); }
        .foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .foot-disclaimer {
            margin-top: 16px;
            padding: 14px 18px;
            background: rgba(255,255,255,.04);
            border-left: 3px solid rgba(255,255,255,.2);
            border-radius: 8px;
            font-size: 12px; line-height: 1.55;
            color: rgba(255,255,255,.5);
        }
        @media (max-width: 900px) {
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
        }
        @media (max-width: 540px) {
            .foot-grid { grid-template-columns: 1fr; gap: 28px; }
        }

        /* ===== Reveal animation ===== */
        .reveal {
            opacity: 0; transform: translateY(28px);
            transition: opacity .8s var(--t-fast), transform .8s var(--t-fast);
        }
        .reveal.in { opacity: 1; transform: none; }
        .reveal.delay-1 { transition-delay: .08s; }
        .reveal.delay-2 { transition-delay: .16s; }
        .reveal.delay-3 { transition-delay: .24s; }

        /* ===== Responsive ===== */
        @media (max-width: 1000px) {
            .benefits { grid-template-columns: 1fr 1fr; }
            .how-grid { grid-template-columns: 1fr 1fr; }
            .earn-grid { grid-template-columns: 1fr; gap: 40px; }
            .earn-section { padding: 40px 30px; }
            .reg-wrap { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            /* Spacing */
            section { padding: 48px 0; }
            .container { padding: 0 16px; }
            body { padding-bottom: 76px; } /* room for sticky CTA */

            /* Typography */
            h1 { font-size: clamp(32px, 8vw, 42px); line-height: 1.05; }
            h2 { font-size: clamp(26px, 6.5vw, 34px); }
            h3 { font-size: 20px; }
            p { font-size: 15px; }

            /* Header */
            .header { position: sticky; top: 0; z-index: 90; background: var(--cream); border-bottom: 1px solid var(--line); }
            .header-inner { height: 58px; }
            .brand { font-size: 13px; }
            .brand-mark { width: 30px; height: 30px; }
            .nav-actions .btn { display: none; }

            /* Top bars */
            .urgency-bar {
                font-size: 11px; padding: 8px 32px 8px 12px;
                line-height: 1.4;
            }
            .urgency-bar .ub-pulse { display: none; }
            .live-counter { font-size: 11px; padding: 8px 12px; }

            /* Hero */
            .hero { padding: 28px 0 44px; }
            .hero > .container > div[style*="display:flex"] {
                flex-direction: column;
                gap: 24px !important;
            }
            .hero-image {
                display: block !important;
                max-width: min(320px, 78vw) !important;
                margin: 0 auto;
                order: -1;
            }
            .hero-cta-row { flex-direction: column; gap: 10px; width: 100%; }
            .hero-cta-row .btn { width: 100%; justify-content: center; }
            .hero-badges { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
            .hero-badge { padding: 14px 16px; }
            .hero-lead { font-size: 15px; line-height: 1.55; }

            /* Buttons — touch targets */
            .btn { min-height: 48px; padding: 12px 18px; font-size: 14px; }
            .btn-lg { min-height: 54px; padding: 14px 22px; font-size: 15px; }

            /* Grids stack */
            .benefits, .how-grid, .testimonials { grid-template-columns: 1fr; gap: 16px; }
            .trust-strip { grid-template-columns: 1fr; padding: 20px 18px; }
            .earn-section { padding: 28px 16px; border-radius: 24px; }

            /* Calculator */
            .rcalc { padding: 24px 18px; border-radius: 24px; }
            .rcalc-grid { grid-template-columns: 1fr; gap: 28px; }
            .rcalc h3 { font-size: 22px; }
            .rcalc-eyebrow { margin-bottom: 12px; }
            .rcalc-desc { font-size: 14px; margin-bottom: 18px; }
            .rcalc-cities {
                grid-template-columns: 1fr 1fr; gap: 8px;
                margin-bottom: 18px;
            }
            .rcalc-city-btn {
                padding: 10px 12px; min-height: 60px;
                border-radius: 12px;
            }
            .rcalc-city-btn .ccb-name { font-size: 12px; line-height: 1.2; }
            .rcalc-city-btn .ccb-rate { font-size: 10px; }
            .rcalc-row { margin-bottom: 14px; }
            .rcalc-lbl { font-size: 12px; }
            .rcalc-lbl .rcalc-val-badge { font-size: 13px; padding: 3px 10px; }
            .rrb-lbl { font-size: 11px; }
            .rrb-amount { font-size: 38px; line-height: 1; }
            .rrb-currency { font-size: 16px; }
            .rcalc-result-big { padding: 22px 18px; border-radius: 18px; }
            .rcalc-ctas { grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }
            .rcalc-stats { margin: 14px 0; }
            .rcalc-stat { padding: 10px 12px; }
            .rcalc-stat .rs-val { font-size: 15px; }
            .rcalc-badges {
                justify-content: flex-start;
                gap: 6px 12px;
            }
            .rcalc-badge { font-size: 10px; }

            /* Forms */
            .reg-form-card { padding: 24px 18px; border-radius: 22px; }
            .form-row { grid-template-columns: 1fr; gap: 12px; }
            .form-input, .form-select { min-height: 48px; font-size: 16px; } /* 16px prevents iOS zoom */

            /* Comparison table — horizontal scroll wrapper */
            .cmp-table { font-size: 13px; }
            .cmp-table th, .cmp-table td { padding: 12px 14px; }

            /* Leaderboard */
            .leaderboard { padding: 56px 0; }
            .lb-podium { grid-template-columns: 1fr; gap: 32px; margin-bottom: 24px; }
            .lb-pod-card.first { transform: none; order: -1; }
            .lb-pod-card.first:hover { transform: translateY(-6px); }
            .lb-pod-card { padding: 22px 18px; }
            .lb-pod-name { font-size: 16px; }
            .lb-pod-stat-val { font-size: 18px; }
            .lb-list-row {
                grid-template-columns: 36px 1fr auto;
                grid-template-areas:
                    "rank info count"
                    "rank info earn";
                gap: 4px 12px; padding: 12px 14px;
                align-items: center;
            }
            .lb-list-rank {
                grid-area: rank;
                width: 32px; height: 32px; font-size: 13px;
            }
            .lb-list-info { grid-area: info; }
            .lb-list-name { font-size: 14px; }
            .lb-list-meta { font-size: 11px; }
            .lb-list-count {
                grid-area: count;
                font-size: 11px; padding: 4px 8px;
                justify-self: end;
            }
            .lb-list-earn {
                grid-area: earn;
                font-size: 13px; min-width: 0;
                text-align: right;
            }

            /* Case studies */
            .case-card { padding: 24px 18px; border-radius: 20px; }
            .case-stats { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; }
            .case-stat .cs-val { font-size: 18px; }

            /* Floats */
            .sp-toast {
                left: 12px; right: 12px; max-width: none;
                bottom: 88px; padding: 12px 36px 12px 14px;
            }
            .float-tg { width: 50px; height: 50px; bottom: 88px; right: 16px; }

            /* Sticky CTA — visible only on mobile */
            .mobile-sticky-cta {
                display: flex !important;
                padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
            }
            .mobile-sticky-cta .msc-btn { min-height: 50px; }

            /* Testimonials */
            .testi { padding: 22px 18px; border-radius: 20px; }
            .testi-text { font-size: 14px; line-height: 1.5; }
            .testi-name { font-size: 14px; }
            .testi-role { font-size: 12px; }
            .testi-earnings { font-size: 13px; padding: 8px 12px; }

            /* Misc */
            .cta-band { padding: 36px 20px; border-radius: 24px; }
            .cta-band .btn { width: 100%; }

            /* Footer */
            footer.dark {
                padding: 40px 0 calc(96px + env(safe-area-inset-bottom));
            }
            .foot-bottom {
                flex-direction: column;
                align-items: center;
                gap: 14px;
                text-align: center;
                font-size: 12px;
            }
            .foot-links {
                justify-content: center;
                gap: 16px;
            }

            /* Section heads */
            .section-head { margin-bottom: 32px; }
            .eyebrow { font-size: 11px; }

            /* Reveal animation faster on mobile */
            .reveal { transition-duration: .55s; }
        }

        /* Tiny phones */
        @media (max-width: 380px) {
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
            .rcalc-cities { grid-template-columns: 1fr; }
            .rrb-amount { font-size: 32px; }
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
            .reveal { opacity: 1; transform: none; }
        }

        /* ===== Social-proof toast ===== */
        .sp-toast {
            position: fixed; bottom: 90px; left: 20px; z-index: 100;
            background: #fff; border-radius: 18px;
            padding: 16px 20px; box-shadow: var(--shadow-lg);
            display: flex; align-items: center; gap: 14px;
            max-width: 340px;
            transform: translateX(-120%);
            transition: transform .5s var(--t-fast), opacity .4s;
            opacity: 0;
        }
        .sp-toast.show { transform: translateX(0); opacity: 1; }
        .sp-toast .sp-ava {
            width: 42px; height: 42px; border-radius: 50%;
            background: var(--yellow); display: grid; place-items: center;
            font-weight: 900; font-size: 16px; flex-shrink: 0;
        }
        .sp-toast .sp-name { font-weight: 800; font-size: 14px; }
        .sp-toast .sp-action { font-size: 13px; color: var(--muted); }
        .sp-toast .sp-time { font-size: 11px; color: var(--muted); margin-top: 2px; }

        /* ===== Floating Telegram button ===== */
        .float-tg {
            position: fixed; bottom: 20px; right: 20px; z-index: 100;
            width: 60px; height: 60px; border-radius: 50%;
            background: #2AABEE; color: #fff;
            display: grid; place-items: center;
            box-shadow: 0 8px 28px rgba(42,171,238,.45);
            cursor: pointer; border: 0;
            transition: transform .3s var(--t-fast), box-shadow .3s;
            animation: tgBounce 3s ease-in-out infinite;
        }
        .float-tg:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(42,171,238,.55); animation: none; }
        .float-tg svg { width: 28px; height: 28px; }
        .float-tg .tg-tooltip {
            position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
            background: #fff; color: var(--ink);
            padding: 10px 16px; border-radius: 12px;
            font-size: 13px; font-weight: 700;
            white-space: nowrap; box-shadow: var(--shadow-md);
            opacity: 0; pointer-events: none;
            transition: opacity .3s;
        }
        .float-tg:hover .tg-tooltip { opacity: 1; }
        @keyframes tgBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

        /* ===== Multi-step form ===== */
        .ms-progress { display: flex; gap: 6px; margin-bottom: 28px; }
        .ms-progress .ms-bar {
            flex: 1; height: 5px; border-radius: 3px;
            background: var(--cream-2);
            transition: background .3s;
        }
        .ms-progress .ms-bar.active { background: var(--yellow); }
        .ms-progress .ms-bar.done { background: var(--green); }
        .ms-step { display: none; }
        .ms-step.active { display: block; animation: fadeUp .4s var(--t-fast); }
        @keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
        .ms-step-title { font-weight: 800; font-size: 15px; color: var(--muted); margin-bottom: 18px; text-align: center; }

        /* ===== Testimonials ===== */
        .testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
        .testi {
            background: #fff; border-radius: var(--r-md); padding: 28px 26px;
            transition: transform .3s var(--t-fast), box-shadow .3s;
        }
        .testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .testi-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
        .testi-ava {
            width: 48px; height: 48px; border-radius: 50%;
            background: var(--yellow); display: grid; place-items: center;
            font-weight: 900; font-size: 18px; flex-shrink: 0;
        }
        .testi-name { font-weight: 800; font-size: 15px; }
        .testi-role { font-size: 13px; color: var(--muted); }
        .testi-stars { color: var(--yellow-d); font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }
        .testi-text { font-size: 15px; line-height: 1.55; color: var(--ink); }
        .testi-earnings { margin-top: 14px; padding: 10px 14px; background: rgba(252,224,0,.12); border-radius: 10px; font-weight: 800; font-size: 14px; }

        /* ===== Calculator ===== */
        .rcalc {
            background: var(--ink); color: #fff; border-radius: 32px;
            padding: 48px; position: relative;
            border: 2px solid rgba(252,224,0,.15);
        }
        .rcalc-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 48px; align-items: stretch;
        }
        .rcalc-left, .rcalc-right { display: flex; flex-direction: column; }

        /* Big result */
        .rcalc-result-big {
            background: var(--yellow); color: var(--ink);
            border-radius: 24px; padding: 32px;
            text-align: center; margin-bottom: 16px;
            position: relative; overflow: hidden;
        }
        .rcalc-result-big::before {
            content: ''; position: absolute;
            top: -50%; right: -20%; width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 70%);
            pointer-events: none;
        }
        .rrb-lbl { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 8px; }
        .rrb-amount { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
        .rrb-currency { font-size: 18px; font-weight: 800; margin-top: 4px; opacity: 0.7; }
        .rrb-year { font-size: 13px; font-weight: 700; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(33,32,31,.15); opacity: 0.7; }

        /* Slider marks */
        .rcalc-slider-marks {
            display: flex; justify-content: space-between;
            margin-top: 8px; font-size: 11px;
            color: rgba(255,255,255,.4); font-weight: 700;
        }
        .rcalc-eyebrow {
            display: inline-block; background: var(--yellow); color: var(--ink);
            padding: 6px 14px; border-radius: 999px;
            font-size: 11px; font-weight: 900; text-transform: uppercase;
            letter-spacing: 0.08em; margin-bottom: 16px;
        }
        .rcalc h3 {
            color: #fff; font-size: 26px; line-height: 1.1;
            margin-bottom: 8px;
        }
        .rcalc-desc { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 24px; line-height: 1.5; }

        /* City picker */
        .rcalc-cities {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 10px; margin-bottom: 24px;
        }
        .rcalc-city-btn {
            background: rgba(255,255,255,.06); color: #fff;
            border: 2px solid rgba(255,255,255,.12);
            padding: 12px 14px; border-radius: 14px;
            font-size: 13px; font-weight: 700;
            cursor: pointer;
            transition: background .35s var(--t-fast), border-color .35s var(--t-fast), color .35s var(--t-fast), transform .25s var(--t-fast);
            text-align: left; display: flex; flex-direction: column; gap: 2px;
        }
        .rcalc-city-btn:active { transform: scale(0.97); }
        .rcalc-city-btn .ccb-name { font-size: 13px; font-weight: 700; }
        .rcalc-city-btn .ccb-rate { font-size: 11px; color: var(--yellow); font-weight: 900; }
        .rcalc-city-btn:hover { border-color: rgba(252,224,0,.4); }
        .rcalc-city-btn.active {
            background: var(--yellow); color: var(--ink);
            border-color: var(--yellow);
        }
        .rcalc-city-btn.active .ccb-rate { color: var(--ink); }

        .rcalc-row { margin-bottom: 18px; }
        .rcalc-lbl {
            font-weight: 700; font-size: 13px; margin-bottom: 10px;
            display: flex; justify-content: space-between; align-items: center;
            color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 0.06em;
        }
        .rcalc-lbl .rcalc-val-badge {
            background: var(--yellow); color: var(--ink);
            padding: 4px 12px; border-radius: 999px;
            font-size: 14px; font-weight: 900; letter-spacing: 0;
            text-transform: none;
        }
        .rcalc-slider { position: relative; background: rgba(255,255,255,.08); border-radius: 999px; height: 14px; }
        .rcalc-slider .rfill {
            position: absolute; left: 0; top: 0; bottom: 0;
            background: linear-gradient(90deg, var(--yellow) 0%, #f0ce00 100%);
            border-radius: 999px;
            transition: width .35s var(--t-fast);
            box-shadow: 0 0 20px rgba(252,224,0,.5);
        }
        .rcalc-slider input[type=range] {
            position: absolute; inset: -10px;
            width: calc(100% + 20px); height: calc(100% + 20px);
            opacity: 0; cursor: grab; z-index: 2;
            -webkit-appearance: none; appearance: none;
        }
        .rcalc-slider .rinner { display: none; }

        .rcalc-stats {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 8px; margin: 18px 0;
        }
        .rcalc-stat {
            background: rgba(255,255,255,.05);
            border-radius: 12px; padding: 12px 14px;
        }
        .rcalc-stat .rs-lbl { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
        .rcalc-stat .rs-val { font-size: 16px; font-weight: 900; color: #fff; }

        .rcalc-result {
            background: var(--yellow); color: var(--ink);
            border-radius: 18px; padding: 22px 26px;
            margin-top: 16px;
        }
        .rcalc-result .rr-lbl { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
        .rcalc-result .rr-amount { display: block; font-size: clamp(28px,3.5vw,38px); letter-spacing: -0.02em; font-weight: 900; margin-top: 4px; }
        .rcalc-result .rr-year { font-size: 12px; color: rgba(33,32,31,.7); margin-top: 6px; font-weight: 700; }

        .rcalc-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
        .rcalc-ctas .btn { padding: 13px 16px; font-size: 13px; }

        .rcalc-badges {
            display: flex; gap: 8px; flex-wrap: wrap;
            margin-top: 16px; padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,.08);
        }
        .rcalc-badge {
            font-size: 11px; color: rgba(255,255,255,.7);
            display: flex; align-items: center; gap: 4px;
        }
        .rcalc-badge::before {
            content: '✓'; color: var(--yellow); font-weight: 900;
        }

        /* ===== Comparison table ===== */
        .cmp-table {
            width: 100%; border-collapse: separate; border-spacing: 0;
            background: #fff; border-radius: var(--r-md); overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .cmp-table th, .cmp-table td {
            padding: 18px 22px; text-align: left;
            border-bottom: 1px solid var(--cream-2);
            font-size: 15px;
        }
        .cmp-table th {
            font-weight: 800; font-size: 14px;
            background: var(--cream-2); color: var(--muted);
            text-transform: uppercase; letter-spacing: .04em;
        }
        .cmp-table th.hl { background: var(--yellow); color: var(--ink); }
        .cmp-table td.hl { background: rgba(252,224,0,.06); font-weight: 700; }
        .cmp-table tr:last-child td { border-bottom: 0; }
        .cmp-check { color: var(--green); font-weight: 900; font-size: 18px; }
        .cmp-x { color: #ccc; font-weight: 900; font-size: 18px; }

        /* ===== Video placeholder ===== */
        .video-card {
            background: var(--ink-2); border-radius: var(--r-lg);
            aspect-ratio: 16/9; max-width: 800px; margin: 0 auto;
            display: grid; place-items: center;
            position: relative; overflow: hidden;
            cursor: pointer; transition: transform .35s var(--t-fast);
        }
        .video-card:hover { transform: scale(1.01); }
        .video-card .play-btn {
            width: 80px; height: 80px; border-radius: 50%;
            background: var(--yellow); display: grid; place-items: center;
            box-shadow: 0 12px 36px rgba(0,0,0,.3);
            transition: transform .3s var(--t-fast);
            z-index: 1;
        }
        .video-card:hover .play-btn { transform: scale(1.1); }
        .video-card .play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
        .video-card .vc-label {
            position: absolute; bottom: 28px; left: 28px;
            color: #fff; font-weight: 800; font-size: 18px;
            z-index: 1;
        }
        .video-card .vc-sub { font-size: 14px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 4px; }

        /* ===== Exit-intent popup ===== */
        .exit-overlay {
            position: fixed; inset: 0; z-index: 300;
            background: rgba(33,32,31,.65);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .exit-overlay.open { display: flex; animation: fadeIn .3s; }
        .exit-card {
            background: #fff; border-radius: 32px;
            max-width: 480px; width: 100%;
            padding: 44px 40px; text-align: center;
            position: relative;
            animation: slideUp .4s var(--t-fast);
            box-shadow: var(--shadow-lg);
        }
        .exit-card .exit-close {
            position: absolute; top: 16px; right: 16px;
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(33,32,31,.06); border: 0;
            cursor: pointer; font-size: 18px; font-weight: 800;
            display: grid; place-items: center;
            transition: all .25s;
        }
        .exit-card .exit-close:hover { background: rgba(33,32,31,.12); transform: rotate(90deg); }
        .exit-card .exit-emoji { font-size: 56px; margin-bottom: 16px; }
        .exit-card h3 { font-size: 26px; margin-bottom: 10px; }
        .exit-card p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.55; }
        .exit-card .exit-form { display: flex; gap: 8px; }
        .exit-card .exit-form input {
            flex: 1; padding: 14px 18px;
            border: 2px solid var(--line); border-radius: 14px;
            font-size: 16px; background: #fff;
        }
        .exit-card .exit-form input:focus { outline: 0; border-color: var(--ink); }
        .exit-card .exit-ok { display: none; color: var(--green); font-weight: 800; margin-top: 12px; }

        /* ===== Live counter ===== */
        .live-counter {
            background: #fff; border-bottom: 1px solid var(--line);
            text-align: center; padding: 10px 16px;
            font-size: 14px; font-weight: 600;
            position: relative; z-index: 50;
        }
        .live-counter .lc-dot {
            display: inline-block; width: 8px; height: 8px;
            background: #1B9F4B; border-radius: 50%;
            margin-right: 8px; animation: lcPulse 2s ease-in-out infinite;
        }
        @keyframes lcPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
        .live-counter strong { color: var(--ink); font-weight: 900; }

        /* ===== Mobile sticky CTA ===== */
        .mobile-sticky-cta {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: #fff; padding: 14px 16px;
            border-top: 1px solid var(--line);
            z-index: 200; display: none;
            box-shadow: 0 -4px 20px rgba(33,32,31,.1);
            opacity: 0;
            pointer-events: none;
            transform: translateY(110%);
            transition: opacity .25s var(--t-fast), transform .25s var(--t-fast);
        }
        .mobile-sticky-cta.is-visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .mobile-sticky-cta .msc-btn {
            width: 100%; padding: 14px 20px;
            font-size: 16px; font-weight: 800;
            border-radius: 14px;
        }

        /* ===== Case studies ===== */
        .case-studies { padding: 80px 0; }
        .case-card {
            background: #fff; border-radius: 24px;
            padding: 32px; margin-bottom: 24px;
            border: 2px solid var(--line);
            transition: all .3s var(--t-fast);
        }
        .case-card:hover { border-color: var(--ink); transform: translateY(-4px); }
        .case-head {
            display: flex; gap: 16px; align-items: flex-start;
            margin-bottom: 20px;
        }
        .case-ava {
            width: 56px; height: 56px; border-radius: 50%;
            background: var(--yellow); display: grid;
            place-items: center; font-weight: 900; font-size: 20px;
            flex-shrink: 0;
        }
        .case-info h4 { font-size: 18px; margin-bottom: 4px; }
        .case-role { font-size: 14px; color: var(--muted); }
        .case-stats {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 16px; margin: 20px 0; padding: 20px;
            background: var(--cream); border-radius: 16px;
        }
        .case-stat { text-align: center; }
        .case-stat .cs-val { font-size: 24px; font-weight: 900; color: var(--ink); }
        .case-stat .cs-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
        .case-story { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
        .case-quote {
            font-style: italic; color: var(--muted);
            margin-top: 16px; padding-left: 16px;
            border-left: 3px solid var(--yellow);
        }

        /* ===== Leaderboard ===== */
        .leaderboard { padding: 80px 0; }

        /* Podium for top 3 */
        .lb-podium {
            display: grid; grid-template-columns: 1fr 1.15fr 1fr;
            gap: 20px; align-items: end; margin-bottom: 32px;
        }
        .lb-pod-card {
            background: #fff; border-radius: 24px;
            padding: 28px 24px; text-align: center;
            border: 2px solid var(--line); position: relative;
            transition: transform .4s var(--t-fast), box-shadow .4s var(--t-fast);
        }
        .lb-pod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .lb-pod-card.first {
            background: linear-gradient(180deg, #FCE000 0%, #F0CE00 100%);
            border-color: var(--yellow-d);
            transform: translateY(-12px);
        }
        .lb-pod-card.first:hover { transform: translateY(-18px); }
        .lb-pod-medal {
            position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
            width: 44px; height: 44px; border-radius: 50%;
            display: grid; place-items: center; font-size: 22px;
            background: #fff; box-shadow: var(--shadow-sm);
            border: 3px solid var(--cream);
        }
        .lb-pod-card.first .lb-pod-medal { background: var(--ink); color: var(--yellow); border-color: var(--yellow-d); }
        .lb-pod-ava {
            width: 72px; height: 72px; border-radius: 50%;
            background: var(--cream); margin: 12px auto 16px;
            display: grid; place-items: center;
            font-weight: 900; font-size: 28px; color: var(--ink);
            border: 3px solid #fff; box-shadow: var(--shadow-sm);
        }
        .lb-pod-card.first .lb-pod-ava { background: var(--ink); color: var(--yellow); }
        .lb-pod-name { font-weight: 900; font-size: 17px; margin-bottom: 4px; line-height: 1.2; }
        .lb-pod-city { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
        .lb-pod-card.first .lb-pod-city { color: rgba(33,32,31,.7); }
        .lb-pod-stats {
            display: flex; gap: 8px; justify-content: center;
            padding-top: 16px; border-top: 1px solid var(--line);
        }
        .lb-pod-card.first .lb-pod-stats { border-top-color: rgba(33,32,31,.15); }
        .lb-pod-stat { flex: 1; }
        .lb-pod-stat-val { font-size: 20px; font-weight: 900; line-height: 1.1; }
        .lb-pod-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
        .lb-pod-card.first .lb-pod-stat-lbl { color: rgba(33,32,31,.65); }

        /* List for ranks 4+ */
        .lb-list {
            background: #fff; border-radius: 24px;
            overflow: hidden; box-shadow: var(--shadow-sm);
            border: 2px solid var(--line);
        }
        .lb-list-row {
            display: grid;
            grid-template-columns: 56px 1fr auto auto;
            gap: 16px; align-items: center;
            padding: 16px 24px;
            border-bottom: 1px solid var(--line);
            transition: background .25s var(--t-fast);
        }
        .lb-list-row:last-child { border-bottom: 0; }
        .lb-list-row:hover { background: var(--cream); }
        .lb-list-rank {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--cream); display: grid; place-items: center;
            font-weight: 900; font-size: 14px; color: var(--ink);
        }
        .lb-list-info { min-width: 0; }
        .lb-list-name { font-weight: 800; font-size: 15px; }
        .lb-list-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
        .lb-list-count {
            background: var(--cream); padding: 6px 12px;
            border-radius: 999px; font-weight: 900; font-size: 13px;
            color: var(--ink);
        }
        .lb-list-earn {
            font-weight: 900; font-size: 16px; color: var(--green);
            min-width: 130px; text-align: right;
        }

        @keyframes fadeIn { from{opacity:0} to{opacity:1} }
        @keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

        /* ============================================ */
        /* ===== MOBILE OVERRIDES (must be last) ===== */
        /* ============================================ */
        @media (max-width: 768px) {
            /* Calculator — force single column */
            .rcalc { padding: 24px 18px; border-radius: 24px; }
            .rcalc-grid { grid-template-columns: 1fr; gap: 28px; }
            .rcalc h3 { font-size: 22px; }
            .rcalc-cities { grid-template-columns: 1fr 1fr; gap: 8px; }
            .rcalc-city-btn { padding: 10px 12px; min-height: 60px; border-radius: 12px; }
            .rcalc-city-btn .ccb-name { font-size: 12px; line-height: 1.2; }
            .rcalc-city-btn .ccb-rate { font-size: 10px; }
            .rcalc-stats { grid-template-columns: 1fr; gap: 8px; }
            .rcalc-ctas { grid-template-columns: 1fr; gap: 8px; }
            .rrb-amount { font-size: 38px; line-height: 1; }
            .rcalc-result-big { padding: 22px 18px; border-radius: 18px; }

            /* Leaderboard list */
            .lb-podium { grid-template-columns: 1fr; gap: 32px; }
            .lb-pod-card.first { transform: none; order: -1; }
            .lb-list-row {
                grid-template-columns: 36px 1fr auto;
                grid-template-areas:
                    "rank info count"
                    "rank info earn";
                gap: 4px 12px; padding: 12px 14px;
                align-items: center;
            }
            .lb-list-rank { grid-area: rank; width: 32px; height: 32px; font-size: 13px; }
            .lb-list-info { grid-area: info; }
            .lb-list-name { font-size: 14px; }
            .lb-list-meta { font-size: 11px; }
            .lb-list-count {
                grid-area: count; font-size: 11px;
                padding: 4px 8px; justify-self: end;
            }
            .lb-list-earn {
                grid-area: earn; font-size: 13px;
                min-width: 0; text-align: right;
            }

            /* Testimonials */
            .testimonials { grid-template-columns: 1fr; gap: 14px; }
            .testi { padding: 22px 18px; border-radius: 20px; }

            /* Case stats */
            .case-stats { grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; }
            .case-stat .cs-val { font-size: 18px; }

            /* Hero badges */
            .hero-badges { grid-template-columns: 1fr; gap: 10px; }
            .hero-image {
                display: block !important;
                max-width: min(300px, 76vw) !important;
            }

            /* Form */
            .form-row { grid-template-columns: 1fr; }

            /* Footer */
            footer.dark { padding: 40px 0 calc(96px + env(safe-area-inset-bottom)); }
            .foot-bottom {
                flex-direction: column; align-items: center;
                gap: 14px; text-align: center;
            }
            .foot-links { justify-content: center; gap: 16px; }
        }

        @media (max-width: 380px) {
            .rcalc-cities { grid-template-columns: 1fr; }
            .rrb-amount { font-size: 32px; }
        }

        /* ===== Comparison cards (mobile) ===== */
        .cmp-mobile { display: none; flex-direction: column; gap: 14px; }
        .cmp-card {
            background: #fff; border-radius: 18px;
            padding: 18px 18px 6px; box-shadow: var(--shadow-sm);
            border: 1px solid var(--cream-2);
        }
        .cmp-card-title {
            font-weight: 900; font-size: 15px;
            margin-bottom: 12px; padding-bottom: 10px;
            border-bottom: 1px solid var(--cream-2);
        }
        .cmp-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 12px; margin-bottom: 8px;
            border-radius: 10px; background: var(--cream);
        }
        .cmp-row.hl { background: rgba(252,224,0,.18); border: 1px solid rgba(252,224,0,.5); }
        .cmp-row-lbl {
            font-size: 12px; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.04em;
            color: var(--muted);
        }
        .cmp-row.hl .cmp-row-lbl { color: var(--ink); }
        .cmp-row-val { font-size: 13px; font-weight: 700; }

        @media (max-width: 768px) {
            .cmp-desktop { display: none !important; }
            .cmp-mobile { display: flex !important; }
        }

        /* Float buttons above sticky CTA on mobile */
        @media (max-width: 768px) {
            .float-tg {
                bottom: calc(96px + env(safe-area-inset-bottom)) !important;
                right: 14px !important;
                width: 52px !important; height: 52px !important;
                display: none !important;
            }
            .float-tg .tg-tooltip { display: none; }
            .sp-toast {
                left: 12px !important; right: 12px !important;
                max-width: none !important;
                bottom: calc(160px + env(safe-area-inset-bottom)) !important;
                display: none !important;
            }
        }
