/* ========================================
   БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
======================================== */

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

:root {
    --dark-1: #0A0F2C;
    --dark-2: #0D1B4B;
    --dark-3: #1A237E;
    --accent-blue: #2196F3;
    --accent-orange: #FF6B35;
    --accent-gold: #FFB74D;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray: #F5F5F5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-1);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: inherit;
}

/* ========================================
   CTA КНОПКИ С ПУЛЬСИРУЮЩЕЙ АНИМАЦИЕЙ
======================================== */

.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #FF8C42);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 26px 52px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.5);
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   БЛОК 1: HERO (ПРЕМИУМ ДИЗАЙН)
======================================== */

.hero {
    background: var(--off-white);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

/* Декоративные элементы */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    top: -200px;
    right: -100px;
}

.hero::after {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    bottom: -150px;
    left: -100px;
    animation-delay: 3s;
}

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

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content-centered {
    text-align: center;
}

/* Live badge */
.hero-content-centered::before {
    content: '🔴 БЕСПЛАТНО • 4 МАСТЕР-КЛАССА • МАРТ-АПРЕЛЬ 2026';
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--accent-orange);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 40px;
    line-height: 1.1;
    color: var(--dark-2);
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 28px;
    line-height: 1.4;
    color: var(--dark-1);
    font-weight: 600;
}

.highlight-number {
    color: var(--accent-orange);
    font-weight: 900;
    font-size: 1.1em;
}

.hero-dates {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.date-badge {
    padding: 10px 22px;
    border: 2px solid var(--accent-orange);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.08);
    transition: var(--transition);
    display: inline-block;
}

.date-badge:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.hero-duration {
    font-size: 17px;
    margin-bottom: 45px;
    color: var(--dark-3);
    font-weight: 600;
    text-align: center;
}

.hero-benefits {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-left: 5px solid #10b981;
    border-radius: 16px;
    padding: 36px 44px;
    margin-bottom: 45px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.hero-benefits h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--dark-2);
}

.hero-benefits ul {
    list-style: none;
    padding: 0;
}

.hero-benefits li {
    font-size: 19px;
    line-height: 2;
    color: var(--dark-1);
    font-weight: 500;
}

.cta-hero {
    width: 100%;
    max-width: 650px;
    font-size: 22px;
    padding: 30px 60px;
    display: inline-block;
    margin-bottom: 35px;
}

.urgency-compact {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 16px;
    color: var(--dark-1);
    flex-wrap: wrap;
}

.urgency-item strong {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 800;
}

/* ========================================
   БЛОК 2: 6 СИМПТОМОВ (АСИММЕТРИЯ)
======================================== */

.symptoms-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    margin-top: -80px;
}

.symptoms-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.symptom-check-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.symptom-check-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.symptom-check-item:nth-child(1) { transition-delay: 0s; }
.symptom-check-item:nth-child(2) { transition-delay: 0.1s; }
.symptom-check-item:nth-child(3) { transition-delay: 0.2s; }
.symptom-check-item:nth-child(4) { transition-delay: 0.3s; }
.symptom-check-item:nth-child(5) { transition-delay: 0.4s; }
.symptom-check-item:nth-child(6) { transition-delay: 0.5s; }

.symptom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.symptom-label {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 28px 28px 70px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid #EF4444;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.symptom-label:hover {
    background: #F8F9FA;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Custom checkbox */
.symptom-label::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 32px;
    width: 24px;
    height: 24px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Checkmark */
.symptom-label::after {
    content: '✓';
    position: absolute;
    left: 32px;
    top: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

/* Checked state */
.symptom-checkbox:checked + .symptom-label {
    border-left-color: #10B981;
    background: #F0FDF4;
}

.symptom-checkbox:checked + .symptom-label::before {
    background: #10B981;
    border-color: #10B981;
}

.symptom-checkbox:checked + .symptom-label::after {
    opacity: 1;
    transform: scale(1);
}

.symptom-check-content {
    flex: 1;
}

.symptom-check-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-1);
    margin-bottom: 10px;
    line-height: 1.3;
}

.symptom-check-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.symptoms-conclusion {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-1);
    max-width: 850px;
    margin: 0 auto;
    padding: 38px;
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    border-radius: 16px;
    border: 2px solid var(--accent-blue);
}

.symptoms-conclusion strong {
    color: var(--accent-orange);
    font-weight: 800;
}

/* ========================================
   БЛОК 3: ПРОГРАММА (ТЁМНЫЙ GLASSMORPHISM)
======================================== */

.program-section {
    padding: 120px 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

/* Точечный паттерн */
.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.program-section .container {
    position: relative;
    z-index: 1;
}

.program-section .section-title {
    color: var(--white);
}

.program-format {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.format-item {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.format-item strong {
    color: var(--accent-orange);
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.webinars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

/* Первая карточка - горизонтальная на всю ширину */
.webinar-card:first-child {
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    gap: 32px;
    align-items: center;
}

/* Остальные карточки */
.webinars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.webinar-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.webinar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-gold));
    transition: height 0.4s ease;
}

.webinar-card:hover::before {
    height: 100%;
}

.webinar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255,255,255,0.12);
}

.webinar-number {
    display: inline-flex;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.webinar-date {
    font-size: 17px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.webinar-title {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--white);
}

.webinar-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 22px;
}

.webinar-list {
    list-style: none;
    margin-bottom: 22px;
}

.webinar-list li {
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.webinar-bonus {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.15));
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* ========================================
   БЛОК 4: ДЛЯ КОГО (БЕЛЫЙ С АКЦЕНТАМИ)
======================================== */

.audience-section {
    padding: 120px 0;
    background: var(--white);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    margin-top: -60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 60px;
}

.audience-col {
    text-align: center;
    padding: 40px 32px;
    background: var(--off-white);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.audience-col:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.2);
}

.audience-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.audience-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--dark-2);
}

.audience-col p {
    margin-bottom: 16px;
    font-weight: 600;
}

.audience-col ul {
    text-align: left;
    list-style: none;
    font-size: 16px;
    line-height: 2;
}

.not-for {
    text-align: center;
    padding: 28px;
    background: #FFF3E0;
    border-radius: 12px;
    font-size: 17px;
    color: var(--dark-1);
    margin-top: 50px;
}

/* ========================================
   БЛОК 5: РЕЗУЛЬТАТЫ (ОЧЕНЬ ТЁМНЫЙ ФОН)
======================================== */

.results-section {
    padding: 120px 0;
    background: var(--dark-1);
    color: var(--white);
    position: relative;
}

.results-section .section-title {
    color: var(--white);
}

.results-list-new {
    max-width: 950px;
    margin: 0 auto;
}

.result-item-new {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border-left: 5px solid var(--accent-blue);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.result-item-new:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.result-item-new.highlight {
    border-left: 5px solid var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.1));
}

.result-arrow {
    font-size: 40px;
    color: var(--accent-blue);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.result-item-new.highlight .result-arrow {
    color: var(--accent-orange);
}

.result-content-new h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--white);
    font-weight: 700;
}

.result-content-new p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.result-content-new strong {
    color: var(--accent-gold);
    font-weight: 800;
}

/* ========================================
   БЛОК 7: ЭКСПЕРТ (БЕЛЫЙ С АКЦЕНТАМИ)
======================================== */

.expert-section {
    padding: 120px 0;
    background: var(--white);
}

.expert-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.expert-photo img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.expert-name {
    font-size: 38px;
    color: var(--dark-2);
    margin-bottom: 12px;
}

.expert-role {
    font-size: 20px;
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.expert-exp {
    font-size: 17px;
    color: #666;
    margin-bottom: 28px;
}

.expert-quote {
    background: linear-gradient(135deg, #E8EAF6, #F3E5F5);
    padding: 24px;
    border-left: 5px solid var(--accent-blue);
    border-radius: 12px;
    font-style: italic;
    margin-bottom: 28px;
    font-size: 17px;
}

.expert-achievements {
    list-style: none;
    font-size: 17px;
    line-height: 2;
}

/* ========================================
   БЛОК 8: ПАРТНЁРЫ (СВЕТЛЫЙ)
======================================== */

.partners-section {
    padding: 120px 0;
    background: var(--off-white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-size: 58px;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.stat-text {
    font-size: 17px;
    color: #666;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partners-logos img {
    max-width: 130px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* ========================================
   БЛОК 6: FAQ (СВЕТЛО-СЕРЫЙ)
======================================== */

.faq-section {
    padding: 120px 0;
    background: var(--gray);
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #E0E0E0;
    padding: 28px 0;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-2);
}

.faq-toggle {
    font-size: 36px;
    font-weight: 300;
    color: var(--accent-blue);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-top: 20px;
}

/* ========================================
   БЛОК 9: ФИНАЛЬНЫЙ CTA (ОРАНЖЕВЫЙ)
======================================== */

.final-cta {
    background: linear-gradient(135deg, var(--accent-orange), #FF8C42);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.final-title {
    font-size: 52px;
    margin-bottom: 28px;
}

.final-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-final {
    background: var(--white);
    color: var(--accent-orange);
    font-size: 24px;
    padding: 32px 64px;
}

.cta-final:hover {
    background: var(--off-white);
}

.final-urgency {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 19px;
    flex-wrap: wrap;
}

.footer {
    margin-top: 70px;
    padding-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.footer a {
    color: var(--white);
    text-decoration: underline;
}

/* ========================================
   ЛИПКАЯ CTA (МОБАЙЛ)
======================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 18px 20px;
    z-index: 1000;
    display: none;
}

.sticky-cta .cta-button {
    width: 100%;
    font-size: 17px;
    padding: 20px 28px;
}

/* ========================================
   АДАПТИВ: ПЛАНШЕТ (768px)
======================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .date-badge {
        font-size: 14px;
        padding: 9px 18px;
    }

    .hero-duration {
        font-size: 16px;
    }

    .hero-benefits {
        padding: 28px 32px;
    }

    .hero-benefits h3 {
        font-size: 22px;
    }

    .hero-benefits li {
        font-size: 17px;
    }

    .symptom-label {
        padding: 24px 24px 24px 60px;
    }

    .symptom-label::before {
        left: 24px;
        top: 28px;
        width: 20px;
        height: 20px;
    }

    .symptom-label::after {
        left: 27px;
        top: 26px;
        font-size: 16px;
    }

    .symptom-check-content h3 {
        font-size: 18px;
    }

    .symptom-check-content p {
        font-size: 15px;
    }

    .symptoms-conclusion {
        font-size: 18px;
        padding: 28px;
    }

    .webinar-card:first-child {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .result-item-new {
        padding: 28px;
    }

    .result-arrow {
        font-size: 32px;
    }

    .result-content-new h3 {
        font-size: 22px;
    }

    .result-content-new p {
        font-size: 17px;
    }

    .expert-card {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .final-title {
        font-size: 38px;
    }
}

/* ========================================
   АДАПТИВ: МОБАЙЛ (480px)
======================================== */

@media (max-width: 480px) {
    .section-title {
        font-size: 30px;
    }

    .hero {
        padding: 70px 0 100px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .date-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-duration {
        font-size: 15px;
    }

    .hero-benefits {
        padding: 24px 28px;
    }

    .hero-benefits h3 {
        font-size: 20px;
    }

    .hero-benefits li {
        font-size: 16px;
        line-height: 1.8;
    }

    .cta-button {
        font-size: 17px;
        padding: 20px 36px;
    }

    .symptoms-grid {
        gap: 20px;
    }

    .symptom-item {
        padding: 22px;
    }

    .symptom-icon {
        font-size: 22px;
    }

    .symptom-content h3 {
        font-size: 17px;
    }

    .symptom-content p {
        font-size: 15px;
    }

    .symptoms-conclusion {
        font-size: 17px;
        padding: 24px;
    }

    .webinar-card {
        padding: 28px;
    }

    .webinar-title {
        font-size: 21px;
    }

    .result-item-new {
        flex-direction: column;
        gap: 18px;
        padding: 24px;
        margin-bottom: 26px;
    }

    .result-arrow {
        font-size: 28px;
    }

    .result-content-new h3 {
        font-size: 20px;
    }

    .result-content-new p {
        font-size: 16px;
    }

    .final-title {
        font-size: 30px;
    }

    .final-urgency {
        flex-direction: column;
        gap: 18px;
    }

    .sticky-cta {
        display: block;
    }

    body {
        margin-bottom: 90px;
    }
}