/* CSS Variables Based on Brandbook */
:root {
    /* Colors */
    --sherpa-blue: #2B8CE5;
    --sherpa-dark: #1A365D;
    --sherpa-light: #E8F4FD;
    
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --neutral-gray: #6B7280;
    
    --white: #FFFFFF;
    --input-border: #E5E7EB;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--sherpa-blue), var(--sherpa-dark));
    --gradient-accent: linear-gradient(180deg, var(--sherpa-light), var(--white));

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-alt: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--sherpa-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400; /* Regular */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--sherpa-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* up to 48px */
    font-weight: 700; /* Bold */
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem); /* up to 36px */
    font-weight: 700; /* Bold */
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600; /* Semibold */
    line-height: 1.4;
}

a {
    color: var(--sherpa-blue);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

.ph {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--sherpa-blue), #4facfe, var(--sherpa-blue));
    background-size: 200% auto;
    color: var(--white);
    position: relative;
    border: none;
    transition: transform 0.2s ease, background-position 0.5s ease, box-shadow 0.2s ease;
}

/* Анимации удалены для оптимизации производительности */

.btn-primary:hover {
    background-position: right center;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(43, 140, 229, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--sherpa-blue);
}

.btn-white:hover {
    background-color: var(--sherpa-light);
    color: var(--sherpa-dark);
    text-decoration: none;
}

.btn-block {
    width: 100%;
}

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

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--sherpa-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: var(--sherpa-dark);
}

.logo-icon {
    color: var(--sherpa-blue);
    font-size: 28px;
    display: flex;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--sherpa-dark);
    font-weight: 500;
    text-decoration: none;
}

.nav a:hover {
    color: var(--sherpa-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    font-weight: 700; /* Bold as in screenshot */
    font-size: 18px;
    color: var(--sherpa-dark);
}

.header-phone:hover {
    text-decoration: none;
    color: var(--sherpa-blue);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--gradient-accent);
    text-align: center;
}

.hero-title {
    max-width: 1000px;
    margin: 0 auto 20px;
}

.hero-title-nowrap {
    white-space: nowrap;
}

.text-nowrap {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neutral-gray);
    margin-bottom: 48px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start; /* Changed from center to prevent weird stretching */
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--input-border);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

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

.pain-list {
    list-style: none;
    margin-top: 24px;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--sherpa-dark);
    line-height: 1.5;
}

.pain-list .ph {
    color: #e53e3e; /* red cross to emphasize pain */
    font-size: 24px;
    flex-shrink: 0;
    margin-top: -2px;
}

.pain-cta {
    background: #f8fbff;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--sherpa-blue);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.pain-cta-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--neutral-gray);
    font-size: 16px;
    line-height: 1.5;
}

.pain-cta-list li::before {
    content: "•";
    color: var(--sherpa-blue);
    font-weight: 700;
    flex: 0 0 auto;
}

.pain-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pain-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(26, 54, 93, 0.08);
}

/* Scroll Animation Utilities */
.animate-on-scroll {
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-effects-enabled .animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
}

.scroll-effects-enabled .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.promo-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--sherpa-blue);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    display: block;
    background-color: var(--sherpa-dark);
}

.video-description {
    margin-top: 12px;
    color: var(--neutral-gray);
    font-size: 14px;
}

.timecode-card {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(43, 142, 232, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    text-align: left;
    box-shadow: 0 10px 24px rgba(26, 54, 93, 0.06);
}

.timecode-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: var(--sherpa-dark);
}

.timecode-card-header span {
    font-size: 15px;
    font-weight: 700;
}

.timecode-card-header strong {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--sherpa-blue);
    color: var(--white);
    font-size: 13px;
}

.timecode-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.timecode-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--neutral-gray);
    font-size: 13px;
    line-height: 1.4;
}

.timecode-list b {
    color: var(--sherpa-blue);
    font-size: 13px;
    font-weight: 800;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fafbfc; /* Очень легкий фон для контраста с белыми карточками */
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--input-border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Задержки для поочередного появления */
.scroll-effects-enabled .is-visible .feature-card {
    animation: fadeInUp 0.6s ease-out both;
}

.scroll-effects-enabled .is-visible .feature-card:nth-child(1) { animation-delay: 0.1s; }
.scroll-effects-enabled .is-visible .feature-card:nth-child(2) { animation-delay: 0.3s; }
.scroll-effects-enabled .is-visible .feature-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Цветная полоска сверху при наведении */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 40px;
    color: var(--sherpa-blue);
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    background: var(--sherpa-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--sherpa-blue);
    color: var(--white);
}

.feature-title {
    margin-bottom: 16px;
    font-size: 20px;
}

.feature-text {
    color: var(--neutral-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--gradient-main);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Свечение на фоне */
.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(26, 54, 93, 0.25);
}

.stat-icon {
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, background 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    /* Градиентный текст для премиальности */
    background: linear-gradient(135deg, #ffffff 0%, #d4e8fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.stat-text {
    font-size: 16px;
    color: var(--sherpa-light);
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
}

/* Bottom Section */
.bottom-section {
    padding: 80px 0;
    background: var(--sherpa-light);
}

.bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bottom-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(26, 54, 93, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.bottom-bonus-card {
    background: linear-gradient(135deg, var(--sherpa-blue), #4facfe);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    box-shadow: 0 12px 24px rgba(43, 140, 229, 0.25);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(43, 140, 229, 0.35);
}

.bottom-bonus-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.bottom-bonus-card .bonus-icon {
    font-size: 44px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.bottom-bonus-card .bonus-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.bottom-bonus-card .bonus-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.4;
}

.lead-form .form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #F0F7FF;
    border: 1px solid #D6E8FB;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--sherpa-dark);
    transition: all 0.2s ease;
}

input::placeholder, textarea::placeholder {
    color: var(--neutral-gray);
}

input:focus, textarea:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: var(--sherpa-blue);
    box-shadow: 0 0 0 3px rgba(43, 140, 229, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 12px;
    color: var(--neutral-gray);
    line-height: 1.4;
}

.hero-agenda-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.speaker-section-title {
    margin-bottom: 24px;
}

.case-summary-card {
    width: 100%;
    max-width: 520px;
    margin-bottom: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(43, 142, 232, 0.18);
    border-left: 4px solid var(--sherpa-blue);
    border-radius: 12px;
    background: rgba(248, 251, 255, 0.92);
    text-align: left;
    box-shadow: 0 10px 24px rgba(26, 54, 93, 0.06);
}

.case-summary-kicker {
    margin-bottom: 6px;
    color: var(--sherpa-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.case-summary-title {
    margin-bottom: 8px;
    color: var(--sherpa-dark);
    font-size: 22px;
    line-height: 1.25;
}

.case-summary-text {
    margin-bottom: 14px;
    color: var(--neutral-gray);
    font-size: 14px;
    line-height: 1.5;
}

.case-summary-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.case-summary-metrics span {
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--white);
    color: var(--sherpa-dark);
    font-size: 13px;
    line-height: 1.35;
}

.case-summary-metrics b {
    display: block;
    color: var(--sherpa-blue);
    font-size: 18px;
    line-height: 1.2;
}

.speaker-topics {
    list-style: none;
    /* margin-bottom: 32px; */
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.speaker-topics li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.4;
}

.animated-checkbox {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: -2px;
    cursor: pointer;
}

.checkbox-svg {
    width: 100%;
    height: 100%;
    transform: scale(1);
}

.checkbox-box {
    fill: #10B981;
    transition: fill 0.2s ease;
}

.animated-checkbox:hover .checkbox-box {
    fill: #0d9668; /* darker green on hover */
}

.checkbox-tick {
    fill: none;
    stroke: var(--white);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 22;
    stroke-dashoffset: 0;
}

.scroll-effects-enabled .checkbox-svg {
    transform: scale(0);
}

.scroll-effects-enabled .checkbox-tick {
    stroke-dashoffset: 22;
}

/* Animations triggered when parent is visible */
.scroll-effects-enabled .is-visible .checkbox-svg {
    animation: popInCheckbox 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.scroll-effects-enabled .is-visible .checkbox-tick {
    animation: drawTick 0.5s ease forwards;
}

/* Staggered animation delays for the list items */
.scroll-effects-enabled .is-visible li:nth-child(1) .checkbox-svg { animation-delay: 0.1s; }
.scroll-effects-enabled .is-visible li:nth-child(2) .checkbox-svg { animation-delay: 0.2s; }
.scroll-effects-enabled .is-visible li:nth-child(3) .checkbox-svg { animation-delay: 0.3s; }
.scroll-effects-enabled .is-visible li:nth-child(4) .checkbox-svg { animation-delay: 0.4s; }

.scroll-effects-enabled .is-visible li:nth-child(1) .checkbox-tick { animation-delay: 0.3s; }
.scroll-effects-enabled .is-visible li:nth-child(2) .checkbox-tick { animation-delay: 0.4s; }
.scroll-effects-enabled .is-visible li:nth-child(3) .checkbox-tick { animation-delay: 0.5s; }
.scroll-effects-enabled .is-visible li:nth-child(4) .checkbox-tick { animation-delay: 0.6s; }

@keyframes popInCheckbox {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes drawTick {
    to { stroke-dashoffset: 0; }
}

.bonus-block {
    margin-top: 32px;
    padding: 20px;
    background: rgba(43, 140, 229, 0.05);
    border-left: 4px solid var(--sherpa-blue);
    border-radius: 0 12px 12px 0;
}

.bonus-title {
    color: var(--sherpa-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.bonus-text {
    color: var(--neutral-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--input-border);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--neutral-gray);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--sherpa-blue);
}

.copyright {
    color: var(--neutral-gray);
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 54, 93, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sherpa-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--sherpa-dark);
    transition: background 0.2s;
}

.modal-close:hover {
    background: #d4e8fa;
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--input-border);
}

.modal-header p {
    color: var(--neutral-gray);
    margin-top: 8px;
    font-size: 14px;
}

.modal-badges {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.badge {
    background: var(--sherpa-light);
    color: var(--sherpa-blue);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.modal-body {
    padding: 24px 32px 32px;
}

.modal-subtitle {
    color: var(--neutral-gray);
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.modal-form label {
    display: block;
    font-weight: 500; /* Inter Medium */
    font-size: 14px;
    color: var(--sherpa-dark);
    margin-bottom: 6px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .btn {
    width: 100%;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .bottom-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
        text-align: center;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .header-actions .btn {
        width: 100%;
    }
    
    /* Sections Padding */
    .hero, .pain-section, .features, .stats, .bottom-section {
        padding: 40px 0;
    }

    /* Hero */
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    /* Cards & Blocks */
    .feature-card, .stat-card {
        padding: 24px;
    }
    .pain-grid, .hero-content {
        gap: 32px;
    }
    .case-summary-card {
        padding: 16px;
    }
    .case-summary-metrics {
        grid-template-columns: 1fr;
    }
    .timecode-card {
        padding: 14px;
    }
    .timecode-list li {
        grid-template-columns: 42px 1fr;
        font-size: 12px;
    }
    
    /* Bottom Form */
    .bottom-form-wrapper {
        padding: 24px 16px;
    }
    .bottom-form-wrapper h3 {
        font-size: 24px !important;
    }
    .bottom-bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    .bottom-bonus-card .bonus-icon {
        margin: 0 auto;
    }

    /* Modals & Forms */
    .modal-header, .modal-body {
        padding: 20px;
    }
    .modal-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .form-row, .modal-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-nav {
        justify-content: center;
        gap: 12px;
    }
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    width: 380px;
    max-width: calc(100vw - 48px);
    z-index: 2000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid var(--success-green);
}

.notification-toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 28px;
    color: var(--success-green);
    flex-shrink: 0;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--sherpa-dark);
    margin-bottom: 6px;
}

.toast-message {
    font-size: 14px;
    color: var(--neutral-gray);
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: var(--neutral-gray);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--sherpa-dark);
}
