@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* НОВАЯ ПАЛИТРА - 6 ЦВЕТА */
    --primary: #336699;        /* новый яркий синий */
    --primary-dark: #1E3A5F;   /* старый синий для тёмных фонов (форма) */
    --accent: #F59E0B;         /* янтарный (как у Fresh Adventures) */
    --text: #374151;           /* темно-серый для текста */
    --surface: #F9FAFB;        /* очень светлый серый для фонов */
    --white: #FFFFFF;
    
    /* ТИПОГРАФИКА - СТРОГАЯ СИСТЕМА */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 4rem;      /* 64px - для огромных заголовков */
    
    /* ОТСТУПЫ - СИСТЕМА 8px */
    --space-1: 0.5rem;   /* 8px */
    --space-2: 1rem;     /* 16px */
    --space-3: 1.5rem;   /* 24px */
    --space-4: 2rem;     /* 32px */
    --space-5: 2.5rem;   /* 40px */
    --space-6: 3rem;     /* 48px */
    --space-8: 4rem;     /* 64px */
    --space-10: 5rem;    /* 80px */
    --space-12: 6rem;    /* 96px */
    
    /* ТЕНИ */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* === ГЛОБАЛЬНЫЕ СТИЛИ === */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* === ТИПОГРАФИКА === */
.title-primary { color: var(--primary); }
.title-accent { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* === СИСТЕМА КНОПОК === */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* ДЛЯ ТЁМНЫХ ФОНОВ: Жёлтая → Белая */
.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ДЛЯ ТЁМНЫХ ФОНОВ: Прозрачная → Белая */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

/* ДЛЯ СВЕТЛЫХ ФОНОВ: Жёлтая → Тёмная */
.btn-light-bg {
    background: var(--accent);
    color: var(--white);
}

.btn-light-bg:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ДЛЯ ЖЁЛТЫХ ФОНОВ: Белая → Тёмная */
.btn-white {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--surface);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* === HEADER === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-3) 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    z-index: 1001;
    transition: color 0.3s ease;
}

.main-header.scrolled .logo {
    color: var(--primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: var(--space-4);
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-header.scrolled .main-nav a {
    color: var(--text);
}

.main-nav a:hover {
    color: var(--accent);
}

/* === БУРГЕР-МЕНЮ === */
.burger-menu {
    display: none;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.main-header.scrolled .burger-menu span {
    background-color: var(--primary);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .mobile-nav-links a {
    display: block;
    color: var(--white);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-decoration: none;
    margin: var(--space-4) 0;
    text-align: center;
}

/* === HERO SECTION - ИСПРАВЛЕННАЯ ВЕРСИЯ === */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #1E3A5F; /* запасной синий фон */
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* фон - самый нижний слой */
}

.hero-video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 95, 0.4), rgba(30, 58, 95, 0.3));
    z-index: 1; /* затемнение поверх видео */
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 10; /* текст поверх всего */
    max-width: 800px;
    padding: 0 var(--space-4);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: var(--space-6);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.hero-price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-price-note {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.hero-buttons .btn {
    min-width: 200px;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* === ОБЩИЕ СТИЛИ СЕКЦИЙ === */
.section-title {
    text-align: center;
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-10);
    color: var(--primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: calc(-1 * var(--space-8)) auto var(--space-8);
    color: var(--text);
    font-size: var(--text-lg);
    opacity: 0.8;
}

/* === СЕКЦИИ === */
.why-section {
    padding: var(--space-12) 0;
    background: var(--surface);
}

.pricing-details {
    background: var(--white);
    padding: var(--space-12) 0;
}

.calculator-section {
    padding: var(--space-12) 0;
    background: var(--surface);
}

.program-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.reviews-section {
    padding: var(--space-12) 0;
    background: var(--surface);
}

.faq-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.form-section {
    padding: var(--space-12) 0;
    background: var(--primary);
    color: var(--white);
}

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

/* === SOLUTION SECTION === */
.solution-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto var(--space-6);
    text-align: center;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text);
}

.solution-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: var(--space-8) auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.solution-section h3.section-subtitle {
    color: var(--primary);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-8);
	margin-top: var(--space-8);
}

.solution-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.solution-column {
    background: var(--surface);
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.solution-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.solution-column h4 {
    color: var(--primary);
    margin-bottom: var(--space-4);
    font-size: var(--text-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.solution-column ul {
    list-style: none;
    padding: 0;
}

.solution-column li {
    margin-bottom: var(--space-3);
    padding-left: var(--space-4);
    line-height: 1.6;
    position: relative;
}

.solution-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: var(--text-lg);
}


/* === PHOTO GRID (WHY SRI LANKA) === */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.photo-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent);
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.photo-container {
    position: relative;
    overflow: hidden;
}

.photo-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.photo-card:hover .photo-image {
    transform: scale(1.05);
}

.photo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-3);
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
    z-index: 2;
}

.photo-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.photo-text {
    padding: var(--space-4);
    color: var(--text);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
}

/* === PRICING === */
.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.included-excluded {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.included, .excluded {
    background: var(--surface);
    padding: var(--space-6);
    border-radius: 12px;
}

.included {
    border-left: 4px solid var(--accent);
}

.excluded {
    border-left: 4px solid var(--text);
}

.included h4, .excluded h4 {
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--primary);
}

.included ul, .excluded ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.included li, .excluded li {
    padding: var(--space-1) 0;
    position: relative;
    padding-left: var(--space-4);
}

.included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.excluded li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--text);
    font-weight: 600;
}

/* === КАЛЬКУЛЯТОР === */
.special-offer {
    background: var(--accent);
    color: var(--text);
    text-align: center;
    padding: var(--space-3);
    border-radius: 8px;
    margin: calc(-1 * var(--space-6)) auto var(--space-8) auto;
    max-width: 800px;
    box-shadow: var(--shadow-md);
}

.calculator-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.calculator-wrapper h3 {
    margin-top: 0;
    margin-bottom: var(--space-4);
    text-align: center;
    color: var(--primary);
    font-weight: 600;
}

.calculator-note {
    text-align: center;
    color: var(--text);
    margin-top: calc(-1 * var(--space-2));
    margin-bottom: var(--space-4);
    font-style: italic;
    opacity: 0.7;
}

.month-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.month-tab {
    padding: var(--space-2) var(--space-4);
    background: var(--surface);
    border: 2px solid transparent;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.month-tab:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.month-tab.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.month-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.date-item-new {
    background-color: var(--surface);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: var(--space-3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.date-item-new:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.date-item-new.selected {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.date-range {
    font-weight: 600;
    font-size: var(--text-lg);
    display: block;
    margin-bottom: var(--space-2);
    color: var(--primary);
}

.date-status-open {
    color: var(--accent);
    font-weight: 600;
    font-size: var(--text-sm);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.unit-card {
    background-color: var(--surface);
    border: 2px solid transparent;
    padding: var(--space-4);
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
}

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

.unit-card.selected {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.total-summary {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent);
}

.summary-details p {
    margin: 0 0 var(--space-2) 0;
    color: var(--text);
}

.price-details {
    text-align: right;
}

.currency-switcher {
    display: flex;
    gap: var(--space-1);
    justify-content: flex-end;
    margin-bottom: var(--space-2);
}

.currency-btn {
    padding: var(--space-1) var(--space-3);
    border: 2px solid var(--surface);
    background-color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: 600;
}

.currency-btn:hover {
    border-color: var(--accent);
}

.currency-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: var(--space-2);
}

.old-price {
    font-size: var(--text-xl);
    color: var(--text);
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
}

.summary-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-4);
    border-top: 2px solid var(--surface);
    padding-top: var(--space-6);
}

.summary-actions .btn {
    flex-grow: 1;
}

.custom-offer-banner {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-4);
    background: rgba(249, 158, 11, 0.1);
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.custom-offer-banner a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.custom-offer-banner a:hover {
    color: var(--accent);
}

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

/* === ПРОГРАММА === */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.tab-btn {
    padding: var(--space-3) var(--space-5);
    background: var(--surface);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.tab-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.tab-btn.active {
    background: var(--accent);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.highlight-card {
    background: var(--surface);
    padding: var(--space-6);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent);
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.highlight-card h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.program-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    background: var(--surface);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(var(--space-2));
}

.timeline-day {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.timeline-content h4 {
    margin-top: 0;
    color: var(--primary);
    font-weight: 600;
}

/* === ОТЗЫВЫ === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-stars {
    color: var(--accent);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.review-text {
    font-style: italic;
    margin-bottom: var(--space-4);
    color: var(--text);
    line-height: 1.6;
}

.review-author strong {
    color: var(--primary);
    display: block;
    margin-bottom: var(--space-1);
}

.review-author span {
    color: var(--text);
    font-size: var(--text-sm);
    opacity: 0.7;
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--surface);
    border-radius: 10px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    padding: var(--space-4) var(--space-8) var(--space-4) var(--space-4);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--primary);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--surface);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-xl);
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--space-4);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-4) var(--space-4) var(--space-4);
}

.faq-answer p {
    margin: var(--space-2) 0;
    color: var(--text);
    line-height: 1.6;
}

/* === ФОРМА === */
.form-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
}

.main-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: var(--text-base);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.main-form .btn {
    width: 100%;
    margin-top: var(--space-2);
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.main-form .btn:hover {
    background: var(--accent);
    color: var(--white);
}

.form-policy {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* === ЛИПКАЯ КНОПКА === */
.sticky-cta {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* === МОБИЛЬНАЯ АДАПТАЦИЯ === */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-3);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
        margin-bottom: var(--space-4);
    }

    .hero-price {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-2);
    }

    .hero-price-note {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
        margin-top: var(--space-4);
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
    }

    .section-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-8);
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .included-excluded {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .total-summary {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .price-details {
        text-align: left;
    }

    .currency-switcher {
        justify-content: flex-start;
    }

    .price-value {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .summary-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }

    .program-tabs {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .timeline-day {
        align-self: center;
        width: 80px;
        height: 80px;
    }

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

    .faq-question {
        padding: var(--space-3) var(--space-6) var(--space-3) var(--space-3);
        font-size: var(--text-base);
    }

    .faq-question::after {
        right: var(--space-3);
        font-size: var(--text-lg);
    }

    .sticky-cta {
        bottom: var(--space-2);
        right: var(--space-2);
    }

    .sticky-cta .btn {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }

    /* Адаптация для Solution Section */
    .solution-columns {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .solution-section h3.section-subtitle {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-6);
    }

    .solution-column {
        padding: var(--space-4);
    }

    .solution-column h4 {
        font-size: var(--text-xl);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 var(--space-3);
    }

    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-price {
        font-size: var(--text-2xl);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .calculator-wrapper {
        padding: var(--space-4);
    }

    .month-dates {
        grid-template-columns: 1fr;
    }

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

    .main-form {
        padding: var(--space-4);
        margin: 0 var(--space-2);
    }

    .timeline-day {
        width: 60px;
        height: 60px;
        font-size: var(--text-xs);
    }

    .photo-grid {
        gap: var(--space-4);
    }
}