/* ============================================
   LADEL — Фракционная мезотерапия: Интенсив
   Основные стили
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #FAF9F6;
    --color-cream: #F5F0EB;
    --color-warm-cream: #F9F7F5;
    --color-rose-bg: #F9F1EF;
    --color-accent: #B76E79;
    --color-accent-hover: #9E5A64;
    --color-blue: #5B7B8A;
    --color-gold: #D4A574;
    --color-text: #2C2C2C;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-white: #fff;
    --color-dark: #2C2C2C;
    --color-footer-text: #C8C2BC;
    --color-footer-link: #D4A574;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

/* --- Utility --- */
.required { color: var(--color-accent); }

/* --- Animation on Scroll --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    flex-shrink: 0;
}

.logo__la { color: var(--color-text); }
.logo__del { color: var(--color-accent); }

/* Nav */
.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: none;
}

.header__cta-desktop {
    flex-shrink: 0;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

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

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

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

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

.btn--cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(183, 110, 121, 0.35);
    transform: translateY(-1px);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn--block {
    width: 100%;
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, #F3E8E6 40%, var(--color-bg) 70%, #EDE7E3 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183,110,121,0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91,123,138,0.2) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.hero__circle--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212,165,116,0.2) 0%, transparent 70%);
    top: 40%;
    left: 50%;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(183, 110, 121, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero__anchors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.hero__anchor-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
    white-space: nowrap;
}

.hero__anchor-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section--light { background: var(--color-bg); }
.section--cream { background: var(--color-cream); }
.section--form { background: var(--color-rose-bg); }
.section--expert { background: var(--color-rose-bg); }

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text);
    line-height: 1.2;
}

.section__narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section__text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section__text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PROGRAM CARDS (Секция 3)
   ============================================ */
.program-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    margin-bottom: 24px;
    border-left: 4px solid transparent;
    transition: box-shadow var(--transition);
}

.program-card:hover {
    box-shadow: var(--shadow-md);
}

.program-card--morning { border-left-color: var(--color-accent); }
.program-card--break { 
    border-left-color: var(--color-blue);
    background: var(--color-warm-cream);
}
.program-card--practice { border-left-color: var(--color-gold); }

.program-card__time {
    margin-bottom: 24px;
}

.program-card__time-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-white);
}

.program-card__time-badge--morning { background: var(--color-accent); }
.program-card__time-badge--break { background: var(--color-blue); }
.program-card__time-badge--practice { background: var(--color-gold); }

.program-card__content--center {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
}

.program-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.program-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-item__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.program-item p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-light);
}

/* ============================================
   RESULTS GRID (Секция 4)
   ============================================ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-accent);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.result-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ============================================
   INCLUDES (Секция 5)
   ============================================ */
.includes {
    max-width: 800px;
    margin: 0 auto 48px;
}

.includes__list {
    list-style: none;
}

.includes__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.includes__item:last-child {
    border-bottom: none;
}

.includes__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bonuses */
.bonuses {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(183,110,121,0.06) 0%, rgba(212,165,116,0.06) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(183,110,121,0.12);
}

.bonuses__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--color-text);
}

.bonuses__icon {
    width: 28px;
    height: 28px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.bonus-item:last-child {
    margin-bottom: 0;
}

.bonus-item__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   PRICE CARD (Секция 6)
   ============================================ */
.price-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid rgba(183,110,121,0.2);
}

.price-card__amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.price-card__desc {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ============================================
   AUDIENCE (Секция 7)
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.audience-col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.audience-col__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.audience-col__title--yes { color: var(--color-accent); }
.audience-col__title--no { color: var(--color-text-muted); }

.audience-list {
    list-style: none;
}

.audience-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.audience-list__item:last-child { margin-bottom: 0; }

.audience-list__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   LOCATION (Секция 8)
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location__map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    border: none;
}

.location__address {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 17px;
}

.location__pin {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.location__info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.location__info .btn {
    margin-top: 8px;
}

/* ============================================
   EXPERT (Секция 9)
   ============================================ */
.expert-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.expert__photo {
    position: sticky;
    top: 100px;
}

.expert__photo {
    display: flex;
    justify-content: center;
}

.expert__photo-img {
    width: 260px;
    height: 320px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: top center;
    box-shadow: var(--shadow-md);
}

.expert__name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.expert__role {
    font-size: 15px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.expert__experience {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.expert__text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.expert__block {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.6);
    border-radius: var(--radius-sm);
}

.expert__block h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.expert__block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.expert__quote {
    margin-top: 24px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   GALLERY (Секция 10)
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0ebe6, #e8e0d8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.gallery-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 2001;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

/* ============================================
   REVIEWS SLIDER (Секция 11)
   ============================================ */
.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    padding: 0 16px;
}

.review-card__text {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    margin-bottom: 20px;
}

.review-card__text p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-light);
}

.review-card__author {
    padding-left: 20px;
}

.review-card__author strong {
    display: block;
    font-size: 16px;
    color: var(--color-text);
}

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

.reviews-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.reviews-slider__arrow:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.reviews-slider__arrow svg {
    width: 20px;
    height: 20px;
}

.reviews-slider__dots {
    display: flex;
    gap: 8px;
}

.reviews-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(183,110,121,0.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.reviews-slider__dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ============================================
   DATES (Секция 12)
   ============================================ */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.date-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: all var(--transition);
}

.date-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.date-card__number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.date-card__month {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.date-card__weekday {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.date-card__details {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.date-card__price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.date-card__seats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* ============================================
   FAQ (Секция 13)
   ============================================ */
.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    gap: 16px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq__item.open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.faq__answer a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ============================================
   FORM (Секция 14)
   ============================================ */
.form-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
}

.form-card__subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0dbd5;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: #b0aaa3;
}

.form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.form-input.error {
    border-color: #d94040;
}

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

.form-error {
    display: block;
    font-size: 13px;
    color: #d94040;
    margin-top: 4px;
    min-height: 18px;
}

/* Radio */
.form-radios {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.4;
}

.form-radio input {
    display: none;
}

.form-radio__custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d0cbc5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.form-radio__custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.form-radio input:checked + .form-radio__custom {
    border-color: var(--color-accent);
}

.form-radio input:checked + .form-radio__custom::after {
    transform: scale(1);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.form-checkbox input {
    display: none;
}

.form-checkbox__custom {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #d0cbc5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    margin-top: 1px;
}

.form-checkbox__custom::after {
    content: '✓';
    font-size: 13px;
    color: var(--color-white);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.form-checkbox input:checked + .form-checkbox__custom {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.form-checkbox input:checked + .form-checkbox__custom::after {
    transform: scale(1);
}

.privacy-link {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 20px 0;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.form-success p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.form-success__contacts a {
    color: var(--color-accent);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #8B5E6B, #7A4F5A, #6E4852);
    padding: 48px 0 24px;
    color: #F5E8E4;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.footer__contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.footer__link {
    color: #FFD7C9;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer__address {
    font-size: 15px;
    color: #F5E8E4;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFD7C9;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

.footer__tg-btn:hover {
    color: var(--color-white);
}

.footer__disclaimer {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(245, 232, 228, 0.55);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    color: #F5E8E4;
}

.footer__privacy-link {
    color: #FFD7C9;
    text-decoration: none;
}

.footer__privacy-link:hover {
    color: var(--color-white);
}

/* ============================================
   FLOATING TELEGRAM BUTTON
   ============================================ */
.floating-tg {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.floating-tg:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(34, 158, 217, 0.5);
}

/* ============================================
   MODAL (Privacy Policy)
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    z-index: 3001;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    transition: color var(--transition);
}

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

.modal__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal__date {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.modal__body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--color-text);
}

.modal__body h3:first-child {
    margin-top: 0;
}

.modal__body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.modal__body a {
    color: var(--color-accent);
}

/* ============================================
   RESPONSIVE — Tablet (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .nav__list { gap: 20px; }
    .nav__link { font-size: 13px; }
    
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .expert-grid { grid-template-columns: 1fr; gap: 32px; }
    .expert__photo { justify-content: center; }
    .location-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   RESPONSIVE — Mobile (< 768px)
   ============================================ */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section__title { margin-bottom: 32px; }
    
    /* Header Mobile */
    .header__inner { height: 60px; }
    .header__cta-desktop { display: none; }
    .burger { display: flex; }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1005;
    }
    
    .nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .nav__link {
        font-size: 20px;
    }
    
    .nav__cta {
        display: inline-flex;
        font-size: 18px;
        padding: 16px 48px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero__anchors {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Grids */
    .results-grid { grid-template-columns: 1fr; }
    .dates-grid { grid-template-columns: 1fr; max-width: 340px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    /* Program */
    .program-card { padding: 24px; }
    .program-item__title { font-size: 19px; }
    
    /* Price */
    .price-card { padding: 36px 28px; }
    .price-card__amount { font-size: 44px; }
    
    /* Expert */
    .expert__photo-img { width: 200px; height: 260px; }
    .expert__name { font-size: 26px; text-align: center; }
    .expert__role { text-align: center; }
    .expert__experience { text-align: center; }
    
    /* Form */
    .form-card { padding: 32px 24px; }
    
    /* Footer */
    .footer__contacts { flex-direction: column; align-items: flex-start; }
    .footer__contact-list { flex-direction: column; gap: 8px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    
    /* Floating */
    .floating-tg {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (< 375px)
   ============================================ */
@media (max-width: 375px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 28px; }
    .section__title { font-size: 24px; }
    .program-card { padding: 20px; }
    .form-card { padding: 24px 16px; }
    .btn--lg { padding: 14px 32px; font-size: 15px; }
}

/* ============================================
   PRINT — hide unnecessary for print
   ============================================ */
@media print {
    .header, .floating-tg, .footer__social, .reviews-slider__nav { display: none; }
    .section { padding: 24px 0; }
    body { font-size: 12px; }
}