/* ===========================================
   SmartNewsAI Landing Page Styles
   Dark theme, mobile-first, performance-optimized
   =========================================== */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #181825;
    --bg-elevated: #1e1e2e;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    --success: #10b981;
    --border: rgba(255,255,255,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===========================================
   CANVAS BACKGROUND
   =========================================== */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===========================================
   FLOATING NEWS PARTICLES
   =========================================== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.news-particle {
    position: absolute;
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 11px;
    color: rgba(160, 160, 176, 0.3);
    white-space: nowrap;
    animation: float-particle linear infinite;
    pointer-events: none;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

/* ===========================================
   STICKY CTA BANNER
   =========================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(20px);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
}

@media (max-width: 768px) {
    .sticky-cta__content {
        flex-direction: column;
        gap: 8px;
    }
    .sticky-cta__text {
        font-size: 13px;
        text-align: center;
    }
    .sticky-cta .btn {
        width: 100%;
    }
}

/* ===========================================
   EXIT POPUP
   =========================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup.active {
    opacity: 1;
    pointer-events: all;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.exit-popup__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: popup-slide 0.4s ease;
}

@keyframes popup-slide {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.exit-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.exit-popup__close:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.exit-popup__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.exit-popup__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.exit-popup__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-popup__note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo__icon { font-size: 28px; }

.logo__text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo__accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover { color: var(--text-primary); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn .icon { width: 18px; height: 18px; }

.btn--small { padding: 8px 16px; font-size: 13px; }
.btn--large { padding: 16px 32px; font-size: 15px; }
.btn--xlarge { padding: 18px 40px; font-size: 16px; }

.btn--primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn--telegram { background: #229ed9; color: #fff; }
.btn--telegram:hover { background: #1a8bc4; }

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
    50% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.2); }
}

.badge__pulse {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.avatar--more {
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.hero__trust-text {
    font-size: 14px;
    color: var(--text-muted);
}

.hero__trust-text strong { color: var(--text-secondary); }

/* Hero Guarantee */
.hero__guarantee {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.guarantee__item {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Phone Mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    width: 320px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 60px rgba(124, 58, 237, 0.1);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.phone-mockup__screen {
    background: var(--bg-primary);
    border-radius: 32px;
    overflow: hidden;
    padding: 16px;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
    animation: card-slide-in 0.6s ease-out forwards;
    opacity: 0;
}

.post-card:nth-child(1) { animation-delay: 0.2s; }
.post-card:nth-child(2) { animation-delay: 0.4s; }
.post-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes card-slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.post-card:hover {
    border-color: var(--accent);
    transform: translateX(-4px);
}

.post-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
}

.post-card__emoji { font-size: 16px; }
.post-card__source { color: var(--accent-light); font-weight: 600; }
.post-card__time { color: var(--text-muted); margin-left: auto; }

.post-card__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card__image {
    height: 140px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.post-card__footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.post-card__ai { color: var(--accent-light); }
.post-card__reactions { color: var(--text-muted); }

.floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-badge--1 { top: 10%; left: -20px; animation-delay: 0s; }
.floating-badge--2 { top: 40%; right: -30px; animation-delay: 1s; }
.floating-badge--3 { bottom: 20%; left: -10px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===========================================
   STATS
   =========================================== */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.stat-card__number {
    font-size: 40px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover .stat-card__glow {
    opacity: 0.1;
}

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header__tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header__title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header__desc {
    font-size: 16px;
    color: var(--text-muted);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.feature-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s;
}

.feature-card:hover .feature-card__shine {
    left: 100%;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.how__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.step__number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.5;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__desc {
    font-size: 14px;
    color: var(--text-muted);
}

.step__icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: var(--radius);
}

/* ===========================================
   REVIEWS
   =========================================== */
.reviews {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.review-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.review-card__stars {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.review-card__info {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.review-card__role {
    font-size: 12px;
    color: var(--text-muted);
}

.reviews__rating {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.reviews__rating-stars {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.reviews__rating-score {
    font-size: 28px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.reviews__rating-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===========================================
   CTA
   =========================================== */
.cta {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.cta__box {
    text-align: center;
    padding: 80px 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.cta__box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta__box .btn {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta__box .btn:hover {
    background: #f0f0f5;
    transform: translateY(-2px);
}

.cta__note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: 60px 0 100px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer__link:hover { color: var(--text-primary); }

.footer__link--text { cursor: default; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.posts-list .post-card {
    margin-bottom: 0;
    transition: var(--transition);
}

.posts-list .post-card:hover {
    border-color: var(--accent);
}

.empty-state {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ===========================================
   MOBILE
   =========================================== */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: -1; }
    .phone-mockup { width: 280px; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .step { grid-template-columns: 60px 1fr; }
    .step__visual { display: none; }
}

@media (max-width: 768px) {
    .hero__title { font-size: 36px; }
    .hero__subtitle { font-size: 16px; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .hero__guarantee { justify-content: center; }
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-secondary); border: 1px solid var(--border); border-top: none; padding: 16px; flex-direction: column; gap: 8px; }
    .nav.active { display: flex; }
    .burger { display: flex; }
    .features__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; }
    .section-header__title { font-size: 28px; }
    .cta__title { font-size: 28px; }
    .cta__box { padding: 48px 24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .step { grid-template-columns: 1fr; text-align: center; }
    .step__number { font-size: 24px; }
    .floating-badge { display: none; }
    .hero__scroll { display: none; }
    .exit-popup__content { padding: 32px 24px; }
}

/* ===========================================
   ANIMATIONS (legacy for counter)
   =========================================== */
[data-count] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-count].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   SCROLLBAR
   =========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* ===========================================
   SELECTION
   =========================================== */
::selection {
    background: rgba(124, 58, 237, 0.3);
    color: var(--text-primary);
}
