/* ===== TOKENS ===== */
:root {
    --bg:          #08080A;
    --bg-card:     #111114;
    --bg-elevated: #1A1A1F;
    --text:        #E8E4DD;
    --text-muted:  #7A7A8A;
    --accent:      #BFFF00;
    --accent-dim:  #8ABF00;
    --accent-glow: rgba(191, 255, 0, .15);
    --border:      #222228;
    --border-light:#2E2E36;
    --danger:      #FF5C5C;
    --warning:     #FFB84D;
    --positive:    #4ADE80;
    --radius:      12px;
    --radius-lg:   20px;
    --font-display:'Syne', sans-serif;
    --font-body:   'Onest', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select { font: inherit; }

/* ===== GRAIN ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all .2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.btn--accent {
    background: var(--accent);
    color: #0A0A0A;
}
.btn--accent:hover {
    background: #D4FF4A;
    box-shadow: 0 0 24px var(--accent-glow);
}
.btn--outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}
.btn--ghost:hover { border-color: var(--text); color: var(--text); }
.btn--xs  { padding: 6px 14px; font-size: .8rem; border-radius: 8px; }
.btn--sm  { padding: 8px 18px; font-size: .85rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8,8,10,.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #0A0A0A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .9rem;
}
.logo__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}
.nav { display: flex; gap: 32px; }
.nav__link {
    font-size: .875rem;
    color: var(--text-muted);
    transition: color .2s;
}
.nav__link:hover { color: var(--text); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 1px; transition: .2s; }
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link { font-size: 1rem; color: var(--text-muted); }
.mobile-nav__link:hover { color: var(--text); }

@media (max-width: 768px) {
    .nav, .header .btn { display: none; }
    .burger { display: flex; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}
.hero__orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .5;
}
.orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(191, 255, 0, .12);
    top: -10%;
    left: -5%;
    animation: orb-drift 20s ease-in-out infinite alternate;
}
.orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(191, 255, 0, .06);
    top: 30%;
    right: -10%;
    animation: orb-drift 25s ease-in-out infinite alternate-reverse;
}
.orb--3 {
    width: 300px;
    height: 300px;
    background: rgba(100, 180, 255, .05);
    bottom: -10%;
    left: 40%;
    animation: orb-drift 18s ease-in-out infinite alternate;
}
@keyframes orb-drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 40px); }
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content { max-width: 540px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.badge__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.accent { color: var(--accent); }

.hero__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__actions { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.hero__note { font-size: .8rem; color: var(--text-muted); }

/* Hero demo card */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.demo-card__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}
.demo-card__dots { display: flex; gap: 6px; }
.demo-card__dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}
.demo-card__dots i:first-child  { background: #FF5F57; }
.demo-card__dots i:nth-child(2) { background: #FFBD2E; }
.demo-card__dots i:last-child   { background: #28C840; }
.demo-card__title {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.demo-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.demo-review {
    background: var(--bg-elevated);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.demo-review__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars { color: #FFB84D; font-size: .85rem; letter-spacing: 1px; }
.star--dim { color: var(--border-light); }
.demo-review__platform { font-size: .7rem; color: var(--text-muted); }
.demo-review__author { font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.demo-review__text { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

.demo-arrow {
    display: flex;
    justify-content: center;
    color: var(--accent);
    opacity: .5;
}

.demo-reply {
    background: rgba(191, 255, 0, .04);
    border: 1px solid rgba(191, 255, 0, .12);
    padding: 16px;
    border-radius: var(--radius);
}
.demo-reply__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.demo-reply__badge {
    font-size: .7rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(191, 255, 0, .1);
    padding: 2px 8px;
    border-radius: 4px;
}
.demo-reply__time { font-size: .7rem; color: var(--text-muted); }
.demo-reply__text { font-size: .85rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.demo-reply__actions { display: flex; gap: 8px; }

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__content { max-width: 100%; }
    .hero { padding: 120px 0 60px; }
}

/* ===== STATS ===== */
.stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stats__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.03em;
}
.stat__unit {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}
.stat__label {
    display: block;
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
@media (max-width: 600px) {
    .stats__grid { gap: 24px; }
    .stat__divider { display: none; }
}

/* ===== PAIN POINTS ===== */
.pains {
    padding: 100px 0;
}
.pains__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -.03em;
}
.section-title--center { text-align: center; }
.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 12px;
}
.section-sub--center { text-align: center; margin-bottom: 48px; }

.pains__list { display: flex; flex-direction: column; gap: 16px; }
.pain-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s;
}
.pain-card:hover { border-color: var(--border-light); }
.pain-card__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent);
    opacity: .5;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 3px;
}
.pain-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.pain-card__text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
    .pains__layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== STEPS ===== */
.steps {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.steps__track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}
.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.step__marker {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    margin: 0 auto 16px;
}
.step__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.step__text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.step__line {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 24px;
}

@media (max-width: 768px) {
    .steps__track { flex-direction: column; gap: 24px; align-items: stretch; }
    .step { text-align: left; display: flex; gap: 16px; padding: 0; align-items: flex-start; }
    .step__marker { margin: 0; flex-shrink: 0; }
    .step__line { display: none; }
}

/* ===== FEATURES BENTO ===== */
.features {
    padding: 100px 0;
}
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.bento__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .25s, box-shadow .25s;
}
.bento__item:hover {
    border-color: rgba(191, 255, 0, .2);
    box-shadow: 0 0 40px rgba(191, 255, 0, .04);
}
.bento__item--wide { grid-column: span 2; }
.bento__icon { display: block; margin-bottom: 14px; color: var(--accent); width: 24px; height: 24px; }
.bento__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.bento__text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
    .bento { grid-template-columns: 1fr; }
    .bento__item--wide { grid-column: span 1; }
}

/* ===== EXAMPLES ===== */
.examples {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.examples__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.example-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform .25s, box-shadow .25s;
}
.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.example-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.example-card__platform { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.example-card__quote {
    font-size: .88rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    border: none;
    margin: 0;
    padding: 0;
}
.example-card__divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}
.example-card__reply {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.example-card__ai-badge {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #0A0A0A;
    font-size: .65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-top: 2px;
}
.example-card__reply p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.example-card--positive { border-top: 2px solid var(--positive); }
.example-card--neutral  { border-top: 2px solid var(--warning); }
.example-card--negative { border-top: 2px solid var(--danger); }

@media (max-width: 768px) {
    .examples__grid { grid-template-columns: 1fr; }
}

/* ===== COMPARE ===== */
.compare {
    padding: 100px 0;
}
.compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.compare__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.compare__card--old {
    border-style: dashed;
}
.compare__card--new {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}
.compare__card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.compare__card-price {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.compare__amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -.03em;
}
.compare__card--old .compare__amount {
    color: var(--danger);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}
.compare__period {
    font-size: .85rem;
    color: var(--text-muted);
}
.compare__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}
.compare__item {
    font-size: .88rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.compare__item::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}
.compare__item--bad {
    color: var(--text-muted);
}
.compare__item--bad::before {
    content: '✗';
    color: var(--danger);
}
.compare__item--good {
    color: var(--text);
}
.compare__item--good::before {
    content: '✓';
    color: var(--positive);
}
.compare__bottom {
    text-align: center;
    margin-top: 32px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    letter-spacing: -.02em;
}

@media (max-width: 768px) {
    .compare__grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    align-items: start;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: transform .25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px var(--accent-glow), inset 0 1px 0 rgba(191,255,0,.15);
    transform: scale(1.04);
    z-index: 1;
}
.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0A0A0A;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
}
.price-card__head { margin-bottom: 20px; }
.price-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.price-card__desc { font-size: .85rem; color: var(--text-muted); }
.price-card__price { margin-bottom: 24px; }
.price-card__amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -.03em;
}
.price-card__period { font-size: .9rem; color: var(--text-muted); }
.price-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.price-card__features li {
    font-size: .88rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.price-card__features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}
.price-card--featured .price-card__features li { color: var(--text); }

.pricing__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing__grid, .pricing__grid--two { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .price-card--featured { transform: none; }
    .price-card--featured:hover { transform: translateY(-4px); }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.faq__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.faq__right { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--text);
    transition: color .2s;
}
.faq-item__toggle:hover { color: var(--accent); }
.faq-item__icon {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform .3s;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); color: var(--accent); }
.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__content {
    max-height: 200px;
    padding-bottom: 20px;
}
.faq-item__content p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
}
.cta-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    overflow: hidden;
}
.cta-box__orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(191, 255, 0, .06);
    border-radius: 50%;
    filter: blur(120px);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.cta-box__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -.03em;
    margin-bottom: 12px;
    position: relative;
}
.cta-box__sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    position: relative;
    line-height: 1.6;
}

.cta-tg { position: relative; }
.cta-tg__btn {
    font-size: 1.1rem;
    padding: 18px 36px;
    gap: 12px;
}
.cta-tg__note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 14px;
}

@media (max-width: 600px) {
    .cta-box { padding: 40px 24px; }
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__left { display: flex; align-items: center; gap: 24px; }
.footer__copy { font-size: .8rem; color: var(--text-muted); }
.footer__links { display: flex; gap: 24px; }
.footer__links a {
    font-size: .85rem;
    color: var(--text-muted);
    transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__inner {
    flex-wrap: wrap;
}
.footer__center { text-align: center; }
.footer__legal { font-size: .75rem; color: var(--text-muted); opacity: .7; line-height: 1.5; }
.footer__right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
@media (max-width: 768px) {
    .footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .footer__right { align-items: center; }
}

/* ===== CONSENT CHECKBOX ===== */
.cta-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    cursor: pointer;
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.cta-form__consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: var(--bg-elevated);
    cursor: pointer;
    margin-top: 1px;
    transition: border-color .2s, background .2s;
    position: relative;
}
.cta-form__consent input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}
.cta-form__consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5.5px;
    width: 5px;
    height: 9px;
    border: solid #0A0A0A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.cta-form__consent a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cta-form__consent a:hover { text-decoration: none; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.cookie-banner__text {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner__text a:hover { text-decoration: none; }
.cookie-banner__actions { display: flex; gap: 8px; }
@media (max-width: 600px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-0 { transition-delay: 0s; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* ===== SELECTION ===== */
::selection {
    background: rgba(191, 255, 0, .2);
    color: var(--text);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
