/* =============================================
   AAA Scout — Dark Landing
   ============================================= */

/* ---- Variables ---- */
:root {
    --bg-body: #08080d;
    --bg-section: #0c0c14;
    --bg-card: #13131f;
    --bg-elevated: #1a1a2a;
    --text: #eeeef5;
    --text-2: #8c8ca6;
    --text-3: #55556e;
    --accent: #ef4444;
    --accent-dark: #dc2626;
    --accent-glow: rgba(239, 68, 68, 0.14);
    --border: rgba(255, 255, 255, 0.06);
    --border-h: rgba(255, 255, 255, 0.12);
    --font-d: 'Unbounded', sans-serif;
    --font-b: 'Golos Text', sans-serif;
    --max-w: 1100px;
    --r: 16px;
    --r-sm: 10px;
    --r-lg: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-b);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-body);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 4px; }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Section labels & titles ---- */
.label {
    display: block;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}
.title {
    font-family: var(--font-d);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
    color: var(--text);
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--r);
    border: 2px solid var(--border-h);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
    line-height: 1.2;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }

.btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-glow), 0 4px 15px rgba(0,0,0,.3);
}
.btn--primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 0 50px rgba(239,68,68,.25), 0 6px 20px rgba(0,0,0,.4);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border-color: var(--border-h);
    color: var(--text);
}
.btn--outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 18px 44px; font-size: 17px; }

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Navigation
   ============================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 13, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; gap: 28px; }
.nav__logo {
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}
.nav__links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { flex-shrink: 0; }
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
    display: block; width: 100%; height: 2px;
    background: var(--text); border-radius: 1px;
    transition: transform .3s, opacity .3s;
}
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   Hero
   ============================================= */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero__glow {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(239,68,68,.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero__inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.hero__content {
    flex: 1;
    max-width: 560px;
    padding-top: 20px;
}
.hero__title {
    font-family: var(--font-d);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 36px;
}
.hero__note {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 14px;
}
.hero__proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}
.hero__avatars { display: flex; }
.hero__av {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-body);
    margin-left: -8px;
}
.hero__av:first-child { margin-left: 0; }
.hero__av--more {
    background: var(--bg-elevated);
    color: var(--text-2);
    font-size: 10px;
    width: 40px;
}
.hero__proof-text {
    font-size: 14px;
    color: var(--text-2);
}

/* Hero visual */
.hero__visual {
    flex-shrink: 0;
    width: 400px;
    position: relative;
}

/* Noise (unread) cards */
.hero__noise {
    position: relative;
    height: 130px;
    margin-bottom: 16px;
}
.hero__noise-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    width: 290px;
    opacity: .55;
    transition: opacity .3s;
}
.hero__noise-card--1 { top: 0; left: 10px; transform: rotate(-2deg); animation: noiseFloat 4s ease-in-out infinite; }
.hero__noise-card--2 { top: 40px; left: 50px; transform: rotate(1.5deg); animation: noiseFloat 4s ease-in-out 1s infinite; }
.hero__noise-card--3 { top: 80px; left: 25px; transform: rotate(-1deg); animation: noiseFloat 4s ease-in-out 2s infinite; }
@keyframes noiseFloat {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-4px) rotate(var(--r, 0deg)); }
}
.hero__noise-card--1 { --r: -2deg; }
.hero__noise-card--2 { --r: 1.5deg; }
.hero__noise-card--3 { --r: -1deg; }
.hero__noise-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero__noise-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}
.hero__noise-line {
    display: block;
    font-size: 11px;
    color: var(--text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.hero__noise-badge {
    position: absolute;
    top: -10px;
    right: 40px;
    width: 36px; height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(239,68,68,.4);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(239,68,68,.4); }
    50% { box-shadow: 0 0 35px rgba(239,68,68,.6); }
}

/* Digest card (hero) */
.hero__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-h);
    border-radius: var(--r-lg);
    padding: 20px;
    box-shadow:
        0 0 60px rgba(239,68,68,.06),
        0 20px 60px rgba(0,0,0,.35);
    overflow: hidden;
}
.hero__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.hero__card-av {
    width: 36px; height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.hero__card-name { font-weight: 600; font-size: 14px; }
.hero__card-tag {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #5ba0d0;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
}
.hero__card-time {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-3);
}
.hero__card-body { font-size: 13px; line-height: 1.6; }
.hero__card-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text);
}
.hero__card-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 10px;
    margin-bottom: 14px;
    background: rgba(239,68,68,.06);
    border-radius: var(--r-sm);
}
.hero__card-topic {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 13px;
}
.hero__card-cnt {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-3);
    background: var(--bg-elevated);
    padding: 1px 8px;
    border-radius: 8px;
}
.hero__card-item {
    font-size: 12px;
    color: var(--text-2);
    padding-left: 4px;
    margin-bottom: 4px;
}
.hero__card-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--bg-card));
    pointer-events: none;
}

/* =============================================
   Pain Points
   ============================================= */
.pain {
    padding: 80px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pain__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain__card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: border-color .3s, box-shadow .3s;
}
.pain__card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}
.pain__icon { font-size: 36px; margin-bottom: 16px; }
.pain__text { font-size: 16px; line-height: 1.6; color: var(--text-2); }
.pain__text strong { color: var(--text); }

/* =============================================
   How it Works
   ============================================= */
.how {
    padding: 100px 0;
}
.how__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.how__step {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
}
.how__num {
    width: 52px; height: 52px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-d);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}
.how__step-title {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.how__step-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}
.how__line {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    margin-top: 56px;
    border-radius: 1px;
}
.how__cta {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   Digest Example
   ============================================= */
.digest {
    padding: 100px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.digest__wrap {
    max-width: 640px;
    margin: 0 auto;
}
.digest__msg {
    background: var(--bg-card);
    border: 1px solid var(--border-h);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: 0 0 40px rgba(239,68,68,.04), 0 10px 40px rgba(0,0,0,.2);
}
.digest__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.digest__av {
    width: 40px; height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.digest__info { display: flex; align-items: center; gap: 8px; flex: 1; }
.digest__name { font-weight: 600; font-size: 16px; }
.digest__tag {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #5ba0d0;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.digest__time { font-size: 13px; color: var(--text-3); flex-shrink: 0; }

.digest__body {
    background: var(--bg-elevated);
    border-radius: var(--r);
    padding: 20px;
}
.digest__title-line { font-size: 17px; margin-bottom: 8px; }
.digest__summary { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.digest__value {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 14px;
    margin-bottom: 24px;
    background: rgba(239,68,68,.06);
    border-radius: var(--r-sm);
}
.digest__topic {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.digest__topic:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.digest__topic-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.digest__topic-name { font-weight: 600; font-size: 15px; flex: 1; }
.digest__topic-cnt {
    font-size: 12px;
    color: var(--text-3);
    background: var(--bg-card);
    padding: 2px 10px;
    border-radius: 12px;
    flex-shrink: 0;
}
.digest__topic-list { padding: 0; }
.digest__topic-list li {
    font-size: 14px;
    line-height: 1.55;
    padding: 6px 0 6px 16px;
    position: relative;
    color: var(--text-2);
}
.digest__topic-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

/* =============================================
   Stats
   ============================================= */
.stats {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.stats__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.stats__item { padding: 20px; }
.stats__number {
    font-family: var(--font-d);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    display: inline;
}
.stats__plus {
    font-family: var(--font-d);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
}
.stats__label {
    display: block;
    font-size: 15px;
    color: var(--text-2);
    margin-top: 8px;
}

/* =============================================
   Reviews (Testimonials)
   ============================================= */
.reviews {
    padding: 100px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.reviews__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color .3s;
}
.reviews__card:hover { border-color: var(--border-h); }
.reviews__quote {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
    flex: 1;
}
.reviews__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews__av {
    width: 38px; height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.reviews__name { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.reviews__role { display: block; font-size: 13px; color: var(--text-3); }

/* =============================================
   Pricing
   ============================================= */
.pricing {
    padding: 100px 0;
}
.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: border-color .3s, box-shadow .3s;
}
.pricing__card:hover { border-color: var(--border-h); }
.pricing__card--pop {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: scale(1.03);
}
.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing__head { margin-bottom: 28px; }
.pricing__plan {
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pricing__price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.pricing__amount { font-size: 38px; font-weight: 700; }
.pricing__period { font-size: 15px; color: var(--text-2); }
.pricing__hint {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-top: 6px;
}
.pricing__card--pop .pricing__hint { color: var(--accent); font-weight: 500; }

.pricing__features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    text-align: left;
}
.pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: var(--accent);
}
.pricing__card .btn { width: 100%; }

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.faq__list {
    max-width: 720px;
    margin: 0 auto;
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--text-3);
    flex-shrink: 0;
    transition: transform .3s;
}
.faq__item[open] .faq__q::after { content: '\2212'; color: var(--accent); }
.faq__a {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-2);
    padding: 0 0 20px;
}

/* =============================================
   CTA Bottom
   ============================================= */
.cta-final {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(239,68,68,.08) 0%, transparent 65%);
    pointer-events: none;
}
.cta-final__title {
    font-family: var(--font-d);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
}
.cta-final__sub {
    font-size: 18px;
    color: var(--text-2);
    margin-bottom: 36px;
    position: relative;
}
.cta-final .btn { position: relative; }
.cta-final__note {
    font-size: 14px;
    color: var(--text-3);
    margin-top: 16px;
    position: relative;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 60px 0 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__logo {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer__legal { font-size: 14px; color: var(--text-2); margin-bottom: 4px; }
.footer__details { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.footer__heading {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer__link {
    display: block;
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 10px;
    transition: color .2s;
}
.footer__link:hover { color: var(--accent); }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
}

/* =============================================
   Mobile Sticky CTA
   ============================================= */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: rgba(8,8,13,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 90;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.mobile-cta--show { transform: translateY(0); }
.mobile-cta__btn { width: 100%; font-size: 15px; padding: 14px; }

/* =============================================
   Cookie Banner
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform .35s ease;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner__text { font-size: 14px; color: var(--text-2); }
.cookie-banner__link { text-decoration: underline; color: var(--text-2); transition: color .2s; }
.cookie-banner__link:hover { color: var(--text); }
.cookie-banner__btn {
    background: var(--text);
    color: var(--bg-body);
    border-color: var(--text);
    flex-shrink: 0;
}
.cookie-banner__btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* =============================================
   Responsive: 1024px
   ============================================= */
@media (max-width: 1024px) {
    .container { max-width: 100%; }

    .hero__title { font-size: 34px; }
    .hero__inner { gap: 40px; }
    .hero__visual { width: 340px; }
    .hero__noise-card { width: 250px; }

    .title { font-size: 30px; }

    .how__steps { gap: 0; }
    .how__line { width: 40px; }

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

/* =============================================
   Responsive: 768px
   ============================================= */
@media (max-width: 768px) {
    body { padding-bottom: 64px; }
    .mobile-cta { display: block; }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(8,8,13,.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 16px 24px;
        border-top: 1px solid var(--border);
    }
    .nav__links--open { display: flex; }
    .nav__links a { padding: 12px 0; font-size: 16px; width: 100%; border-bottom: 1px solid var(--border); }
    .nav__links a:last-child { border-bottom: none; }
    .nav__burger { display: flex; }

    .hero { padding: 64px 0 56px; }
    .hero__inner { flex-direction: column; gap: 48px; }
    .hero__content { max-width: 100%; text-align: center; padding-top: 0; }
    .hero__title { font-size: 30px; }
    .hero__sub { font-size: 16px; }
    .hero__proof { justify-content: center; }

    .hero__visual { width: 100%; max-width: 380px; margin: 0 auto; }
    .hero__noise { height: 120px; }
    .hero__noise-card { width: 240px; }

    .title { font-size: 26px; margin-bottom: 36px; }
    .label { text-align: center; }
    .title { text-align: center; }

    .pain { padding: 64px 0; }
    .pain__cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 16px; }

    .how { padding: 64px 0; }
    .how__steps { flex-direction: column; align-items: center; }
    .how__step { max-width: 400px; }
    .how__line { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, var(--border), var(--accent), var(--border)); }

    .digest { padding: 64px 0; }
    .digest__msg { padding: 16px; }
    .digest__body { padding: 16px; }

    .stats__row { grid-template-columns: 1fr; gap: 12px; }
    .stats__number, .stats__plus { font-size: 36px; }

    .reviews { padding: 64px 0; }
    .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .pricing { padding: 64px 0; }
    .pricing__cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 20px; }
    .pricing__card--pop { transform: none; }

    .faq { padding: 64px 0; }

    .cta-final { padding: 64px 0; }
    .cta-final__title { font-size: 28px; }

    .footer__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}

/* =============================================
   Responsive: 480px
   ============================================= */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 48px 0 40px; }
    .hero__title { font-size: 24px; }
    .hero__sub { font-size: 15px; margin-bottom: 28px; }
    .hero__noise { display: none; }
    .hero__visual { max-width: 320px; }

    .btn { padding: 12px 24px; font-size: 14px; }
    .btn--lg { padding: 16px 28px; font-size: 15px; width: 100%; }
    .btn--sm { padding: 8px 18px; font-size: 12px; }

    .title { font-size: 22px; margin-bottom: 28px; }
    .label { font-size: 11px; }

    .stats__number, .stats__plus { font-size: 30px; }

    .pricing__card { padding: 28px 20px; }
    .pricing__amount { font-size: 32px; }

    .cta-final__title { font-size: 22px; }
    .cta-final__sub { font-size: 15px; }

    .cookie-banner__inner { flex-direction: column; text-align: center; gap: 12px; }
    .cookie-banner__btn { width: 100%; }

    .footer__bottom { font-size: 12px; }
}
