/* =========================================
   1. ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ
   ========================================= */
:root {
    --bg-main: #f0f2f5;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --text-main: #1c1e21;
    --text-muted: #65676b;
    --accent: #00aff0;
    --accent-hover: #008fca;
    --border: #dee2e6;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: clip; 
    max-width: 100vw;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =========================================
   2. ШАПКА И НАВИГАЦИЯ
   ========================================= */
.header {
    height: 70px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-wrapper { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--text-main); text-transform: uppercase; }
.logo span { color: var(--accent); }
.nav-list { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.nav-list a { color: var(--text-main); text-decoration: none; font-size: 15px; font-weight: 600; transition: color 0.2s; }
.nav-list a:hover { color: var(--accent); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1100; }
.burger span { width: 25px; height: 3px; background: var(--accent); border-radius: 2px; transition: all 0.3s ease; }

.lang-switcher { display: flex; gap: 4px; background: #e4e6eb; padding: 3px; border-radius: 8px; }
.lang-btn { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; transition: all 0.2s; }
.lang-btn.active { background: #ffffff; color: var(--accent); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.mobile-langs { display: none; }

/* =========================================
   3. КНОПКИ
   ========================================= */
.btn { padding: 14px 30px; border-radius: 30px; cursor: pointer; font-weight: 700; font-size: 16px; transition: all 0.2s; border: none; display: inline-block; text-decoration: none; text-align: center; }
.btn-primary { background: var(--accent); color: #ffffff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: #ffffff; border: 1px solid var(--accent); color: var(--accent); margin-left: 10px; }
.btn-outline:hover { background: #f0faff; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    padding: 140px 0 200px;
    text-align: center;
    position: relative;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/ooooooo.png'); background-size: 130%; background-position: center top; background-repeat: no-repeat; z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.55); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-title { font-size: 44px; font-weight: 800; line-height: 1.2; max-width: 500px; margin: 0 auto 20px; color: var(--text-main); }
.hero-subtitle { font-size: 20px; color: midnightblue; max-width: 700px; margin: 0 auto 40px; font-weight: 700; }
.hero-actions { display: flex; justify-content: center; gap: 15px; }

/* =========================================
   5. CAROUSEL UI (Для Process и Pricing)
   ========================================= */
.ui-carousel-wrapper { position: relative; width: 100%; display: flex; align-items: center; }
.slider-track { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; width: 100%; scrollbar-width: none; padding: 20px 0; }
.slider-track::-webkit-scrollbar { display: none; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 45px; height: 45px; border-radius: 50%; background: var(--accent); color: #fff;
    border: none; font-size: 24px; font-weight: bold; cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 175, 240, 0.3); transition: background 0.3s;
}
.slider-arrow:hover { background: var(--accent-hover); }
.slider-arrow.prev { left: -20px; }
.slider-arrow.next { right: -20px; }
.price-arrow { display: none; } /* Показываем только на мобайле */

/* =========================================
   6. СЕКЦИЯ PROCESS (HOW WE SCALE)
   ========================================= */
.process-section { padding: 120px 0; background-color: var(--bg-card); width: 100%; overflow: hidden;}
.section-title { text-align: center; font-size: 42px; font-weight: 800; margin-bottom: 10px; color: var(--text-main); }
.section-title span { color: var(--accent); }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 18px; margin-bottom: 60px; font-weight: 500; }

.process-card { flex: 0 0 calc(33.333% - 20px); scroll-snap-align: start; background: var(--bg-main); padding: 40px 30px; border-radius: 24px; border: 1px solid var(--border); transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.process-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 175, 240, 0.08); border-color: rgba(0, 175, 240, 0.3); }
.step-number { font-size: 80px; font-weight: 900; color: transparent; -webkit-text-stroke: 1px var(--accent); opacity: 0.15; position: absolute; top: 10px; right: 20px; line-height: 1; transition: all 0.3s ease; z-index: 0; }
.process-card:hover .step-number { opacity: 0.5; transform: scale(1.1); }
.step-title { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: var(--text-main); position: relative; z-index: 1; }
.step-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; position: relative; z-index: 1; margin: 0; }
.highlight-card { background: linear-gradient(145deg, #ffffff 0%, #f0faff 100%); border-color: var(--accent); }

/* =========================================
   7. СЕКЦИЯ PRICING
   ========================================= */
.pricing-section { padding: 120px 0; background-color: var(--bg-main); overflow: hidden; width: 100%; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; }
.pricing-card { background: var(--bg-card); border-radius: 24px; padding: 50px 40px; border: 1px solid var(--border); text-align: center; position: relative; transition: all 0.3s ease; width: 100%; }
.pricing-card:hover { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); }
.pricing-card.popular { border: 2px solid var(--accent); transform: scale(1.05); box-shadow: 0 20px 40px rgba(0, 175, 240, 0.1); z-index: 1; }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: var(--text-main); }
.plan-volume { font-size: 16px; color: var(--accent); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-price { font-size: 35px; font-weight: 800; color: var(--text-main); margin-bottom: 30px; line-height: 1; }
.plan-price span { font-size: 18px; color: var(--text-muted); font-weight: 600; }
.plan-features { list-style: none; padding: 0; margin: 0 0 40px 0; text-align: left; }
.plan-features li { font-size: 15px; color: var(--text-muted); margin-bottom: 15px; padding-left: 30px; position: relative; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; font-size: 16px; }
.pricing-card .btn { width: 100%; display: block; margin-left: 0; }

/* =========================================
   8. PAY PER SUBSCRIBER
   ========================================= */
.pps-section { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 100px 0; text-align: center; color: #ffffff; width: 100%; overflow: hidden;}
.pps-title { font-size: 46px; font-weight: 800; margin-top: 0; margin-bottom: 50px; color: #ffffff; }
.pps-title span { color: var(--accent); }
.pps-content { max-width: 600px; margin: 0 auto; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 50px; backdrop-filter: blur(10px); }
.pps-list-negative { list-style: none; padding: 0; margin: 0 auto 40px auto; text-align: left; display: flex; flex-direction: column; gap: 20px; width: fit-content; }
.pps-list-negative li { font-size: 24px; color: #94a3b8; display: flex; align-items: center; gap: 15px; text-decoration: line-through; opacity: 0.7; font-weight: 500; }
.pps-highlight { font-size: 28px; font-weight: 800; color: #ffffff; display: flex; align-items: center; justify-content: center; gap: 15px; background: rgba(0, 175, 240, 0.15); padding: 25px; border-radius: 16px; border-left: 5px solid var(--accent); }

/* =========================================
   9. ОСТАЛЬНЫЕ СЕКЦИИ (Видео, Инсайт, Workflow, Аудитория, FAQ)
   ========================================= */
.content-showcase-section { padding: 100px 0; background: var(--bg-main); overflow: hidden; width: 100%;}
.content-tags { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 50px; }
.content-tags span { background: var(--bg-card); border: 1px solid var(--border); padding: 10px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; color: var(--text-main); }
.carousel-wrapper { width: 100%; overflow: hidden; position: relative; }
.carousel-wrapper::before, .carousel-wrapper::after { content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; }
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%); }
.carousel-track { display: flex; gap: 20px; width: max-content; animation: scrollCarousel 40s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
.video-card { width: 280px; height: 500px; background: #000; border-radius: 20px; overflow: hidden; flex-shrink: 0; border: 4px solid var(--bg-card); position: relative; display: flex; align-items: center; justify-content: center;}
.video-card video { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; object-fit: cover; object-position: center; border-radius: 16px; pointer-events: none; }
@keyframes scrollCarousel { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 10px)); } }

.insight-section { padding: 80px 0; background: var(--bg-card); width: 100%; overflow: hidden;}
.insight-box { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-radius: 30px; padding: 60px; text-align: center; color: #fff; width: 100%;}
.insight-box h2 { font-size: 36px; margin-bottom: 40px; color: #fff; }
.insight-box h2 span { color: var(--accent); }
.insight-compare { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.compare-item { padding: 20px 30px; border-radius: 16px; font-size: 20px; font-weight: 800; }
.compare-item.bad { background: rgba(255,255,255,0.05); color: #94a3b8; text-decoration: line-through; }
.compare-item.good { background: rgba(0, 175, 240, 0.2); border: 2px solid var(--accent); color: #fff; transform: scale(1.05); }
.insight-text { font-size: 24px; font-weight: 700; margin: 0; color: #e2e8f0; }

.workflow-section { padding: 100px 0; background: var(--bg-main); width: 100%; overflow: hidden; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.flow-step { background: var(--bg-card); border: 1px solid var(--border); padding: 20px 30px; border-radius: 16px; display: flex; align-items: center; gap: 15px; width: 100%; }
.flow-step span { background: var(--accent); color: #fff; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; flex-shrink: 0; }
.flow-step h4 { margin: 0; font-size: 16px; color: var(--text-main); }
.flow-step.highlight { border-color: var(--accent); box-shadow: 0 10px 20px rgba(0,175,240,0.1); }

.audience-compliance-section { padding: 80px 0 120px; background: var(--bg-main); width: 100%; overflow: hidden;}
.double-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; }
.audience-box, .compliance-box { background: var(--bg-card); border: 1px solid var(--border); padding: 50px; border-radius: 24px; width: 100%;}
.audience-box h3, .compliance-box h3 { font-size: 28px; margin-top: 0; margin-bottom: 30px; color: var(--text-main); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { font-size: 18px; margin-bottom: 15px; display: flex; gap: 10px; color: var(--text-muted); font-weight: 600; }
.check-list li::before { content: "👉"; }
.shield-icon { font-size: 50px; margin-bottom: 10px; }
.safe-highlight { font-size: 20px; font-weight: 800; color: #ef4444; margin-bottom: 25px; }
.safe-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); padding-top: 25px; }
.safe-list li { font-size: 16px; margin-bottom: 12px; display: flex; gap: 10px; color: var(--text-muted); }
.safe-list li::before { content: "✅"; }

/* FAQ */
.faq-section { background-color: var(--bg-card); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s ease; }
.faq-question h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--text-main); padding-right: 20px; }
.faq-icon { font-size: 24px; color: var(--accent); font-weight: 400; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer-content { padding-bottom: 25px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 500px; }

/* =========================================
   10. ПОДВАЛ И МОДАЛКИ
   ========================================= */
.footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-size: 28px; font-weight: 900; color: #ffffff; letter-spacing: 1px; margin-bottom: 15px; }
.footer-logo span { font-weight: 400; color: var(--accent); }
.footer-about { line-height: 1.6; margin-bottom: 25px; max-width: 300px; }
.footer-badges { display: flex; flex-direction: column; gap: 10px; }
.footer-badges span { display: inline-block; background: rgba(0, 175, 240, 0.1); color: var(--accent); padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 700; width: fit-content; }
.footer-col h4 { color: #ffffff; font-size: 18px; margin-top: 0; margin-bottom: 25px; font-weight: 700; }
.footer-nav, .footer-contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-contacts a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover, .footer-contacts a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; transition: all 0.3s; }
.footer-socials a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-disclaimer { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 25px; border-radius: 12px; font-size: 13px; line-height: 1.6; margin-bottom: 30px; }
.footer-disclaimer strong { color: #ef4444; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; text-align: center; font-size: 14px; }

.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--accent); color: #fff; border: none; border-radius: 50%; font-size: 24px; font-weight: bold; cursor: pointer; box-shadow: 0 5px 15px rgba(0, 175, 240, 0.4); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--accent-hover); transform: translateY(-5px); }

/* Модалки */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-card); padding: 40px; border-radius: 24px; width: 100%; max-width: 400px; position: relative; transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 28px; background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: var(--accent); }
.modal-content h3 { font-size: 24px; margin-top: 0; margin-bottom: 10px; color: var(--text-main); }
.modal-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 15px; line-height: 1.5; }
.modal-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { width: 100%; margin-bottom: 0;}
.form-group input { width: 100%; padding: 15px 20px; border-radius: 12px; border: 1px solid var(--border); background: #f8f9fa; color: var(--text-main); font-size: 16px; font-family: inherit; box-sizing: border-box; transition: border-color 0.2s ease; }
.form-group input:focus { outline: none; border-color: var(--accent); }
.modal-form .btn { width: 100%; margin-top: 10px; padding: 18px; }

/* Legal Modal */
.legal-modal-box { max-width: 800px; max-height: 85vh; overflow-y: auto; text-align: left; }
.policy-block { display: none; }
.policy-block.active { display: block; }
.legal-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-top: 20px; }
.legal-text h4 { color: var(--text-main); margin: 25px 0 10px 0; font-size: 18px; }

/* =========================================
   11. ЕДИНЫЙ АДАПТИВ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ========================================= */
@media (max-width: 768px) {
    /* Header & Nav */
    .burger { display: flex; }
    .desktop-langs { display: none; }
    .main-nav { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--bg-header); flex-direction: column; padding-top: 40px; transition: 0.3s ease-in-out; }
    .main-nav.active { left: 0; }
    .nav-list { flex-direction: column; align-items: center; gap: 30px; margin-bottom: 40px; }
    .nav-list a { font-size: 20px; }
    .mobile-langs { display: flex; justify-content: center; }
    .lang-switcher.top-langs { margin-left: auto; margin-right: 15px; }
    .lang-btn { padding: 4px 6px; font-size: 11px; }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* Hero */
    .hero { height: auto; min-height: 92vh; display: flex; align-items: center; justify-content: center; padding: 70px 0 0 0; border-bottom: 1px solid var(--border); }
    .hero::before { background-image: url('img/ooooooo.jpg'); -webkit-mask-image: none; mask-image: none; background-size: cover; background-position: center; }
    .hero .container { padding: 0 20px; width: 100%; }
    .hero-title { font-size: 32px; margin-top: 0; }
    .hero-actions { flex-direction: column; gap: 15px; width: 100%; max-width: 320px; margin: 0 auto; }
    .btn-outline { margin-left: 0; }
    .section-title { font-size: 32px; margin-top: 0; }
    .section-subtitle { font-size: 16px; margin-bottom: 40px; }

    /* Carousels & Grid Fixes */
    /* ================= СЛАЙДЕРЫ НА МОБАЙЛЕ ================= */
    .ui-carousel-wrapper {
        padding-bottom: 70px; /* Даем место снизу, чтобы стрелки не налезли на карточки */
        position: relative;
    }

    .slider-arrow { 
        display: flex !important; /* Принудительно показываем все стрелки */
        align-items: center;
        justify-content: center;
        
        /* Опускаем стрелки вниз под карточки */
        position: absolute !important;
        bottom: 0 !important; 
        top: auto !important;
        transform: none !important;
        
        /* ЖЕЛЕЗОБЕТОННАЯ ЗАЩИТА ОТ ОВАЛОВ */
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important; 
        min-height: 48px !important;
        flex-shrink: 0 !important; /* Запрещаем браузеру сжимать кнопку */
        border-radius: 50% !important; /* Делаем идеальный круг */
        
        margin: 0 !important;
        padding: 0 !important;
        font-size: 26px !important;
    }

    /* Ставим стрелочки по центру рядышком */
    .slider-arrow.prev {
        left: calc(50% - 60px) !important; 
    }

    .slider-arrow.next {
        right: calc(50% - 60px) !important; 
        left: auto !important;
    }
    .process-card { flex: 0 0 85%; }
    .pricing-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
    .pricing-card { flex: 0 0 100%; scroll-snap-align: center; padding: 40px 20px; margin: 0 auto; }
    .pricing-card.popular { transform: scale(1); }

    .workflow-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .flow-step { padding: 20px; width: 100% !important; box-sizing: border-box; }
    .double-grid { grid-template-columns: 1fr !important; gap: 20px !important; width: 100% !important; box-sizing: border-box; }
    .audience-box, .compliance-box { padding: 30px 25px; width: 100% !important; box-sizing: border-box; }

    /* PPS & Insight & Video */
    .pps-section { padding: 60px 0; }
    .pps-title { font-size: 34px; margin-bottom: 30px; }
    .pps-content { padding: 30px 20px; border-radius: 20px; }
    .pps-list-negative li { font-size: 20px; gap: 10px; }
    .pps-highlight { font-size: 22px; padding: 20px; text-align: left; }
    .carousel-wrapper::before, .carousel-wrapper::after { width: 40px; }
    .video-card { width: 220px; height: 400px; }
    .insight-box { padding: 40px 20px; }
    .insight-compare { flex-direction: column; }
    .compare-item.good { transform: scale(1); }
    .insight-text { font-size: 18px; }

    /* Footer & Modals */
    .footer { padding: 60px 0 30px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-about { margin: 0 auto 25px auto; }
    .footer-badges { align-items: center; }
    .footer-socials { justify-content: center; }
    .footer-disclaimer { text-align: left; }
    .scroll-top-btn { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 20px; }
    .modal-content { padding: 30px 20px; width: 90%; }
}