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

:root {
    --bg-dark: #0f1a0f;
    --bg-section: #f7f5f0;
    --accent: #c8a55a;
    --accent-hover: #d4b76a;
    --text-dark: #1a1a1a;
    --text-light: #f5f0e8;
    --text-muted: #6b6b6b;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

html { scroll-behavior: auto; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-section);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════ NAV ═══════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; background: rgba(15,26,15,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--accent);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
    color: var(--text-light); text-decoration: none; font-size: 14px;
    font-weight: 500; opacity: 0.85; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta, .nav-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px;
    line-height: 1.2;
    opacity: 1 !important;
    border: 1.5px solid var(--accent);
    box-sizing: border-box;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.nav-cta {
    background: var(--accent);
    color: var(--bg-dark) !important;
}
.nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.nav-cta-secondary {
    background: transparent;
    color: var(--accent) !important;
}
.nav-cta-secondary:hover {
    background: rgba(200, 165, 90, 0.12);
    color: var(--accent) !important;
}
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text-light); border-radius: 2px; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(160deg, #1a3520 0%, #0f1a0f 30%, #2d4a35 60%, #1a3520 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat;
    opacity: 0.35;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}
.hero-content {
    position: relative; z-index: 2; padding: 120px 0 100px;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px; padding: 8px 20px; margin-bottom: 28px;
    color: var(--accent); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px); line-height: 1.15;
    color: var(--text-light); font-weight: 700; margin-bottom: 24px;
}
.hero h1 span { color: var(--accent); }

/* ─── Hero H1 — трёхуровневая иерархия ─────────────────────────── */
.hero h1.hero-h1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    line-height: 1.05;
}
.hero h1.hero-h1 .h1-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}
.hero h1.hero-h1 .h1-accent {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.2vw, 54px);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0;
}
.hero h1.hero-h1 .h1-context {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 400;
    color: rgba(245, 240, 232, 0.65);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 14px;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .hero h1.hero-h1 { gap: 4px; margin-bottom: 24px; }
    .hero h1.hero-h1 .h1-main { font-size: clamp(30px, 9vw, 44px); }
    .hero h1.hero-h1 .h1-accent { font-size: clamp(22px, 6.5vw, 32px); }
    .hero h1.hero-h1 .h1-context { font-size: 13px; letter-spacing: 1px; margin-top: 12px; }
}
.hero-sub {
    font-size: 18px; color: rgba(245,240,232,0.75);
    line-height: 1.7; margin-bottom: 40px; max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; border-radius: 50px; font-size: 15px;
    font-weight: 600; text-decoration: none; cursor: pointer; border: none;
}
.btn-primary {
    background: var(--accent); color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(200,165,90,0.35);
}
.btn-outline {
    background: transparent; color: var(--text-light);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
    display: flex; gap: 48px; margin-top: 64px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-value { font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 13px; color: rgba(245,240,232,0.55); margin-top: 4px; }

/* ═══════════════════ SECTIONS ═══════════════════ */
section { padding: 100px 0; }
.section-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
    line-height: 1.25; margin-bottom: 20px;
}
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ═══════════════════ VIDEO ═══════════════════ */
.video-section { background: var(--bg-section); padding: 80px 0; }
.video-wrap {
    max-width: 800px; margin: 0 auto;
    aspect-ratio: 16/9; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════ ABOUT ═══════════════════ */
.about { background: var(--bg-dark); color: var(--text-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
    border-radius: var(--radius); aspect-ratio: 4/3;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800&q=80') center/cover no-repeat;
    box-shadow: var(--shadow-lg);
}
.about .section-desc { color: rgba(245,240,232,0.65); }
.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-style: italic;
    color: var(--accent); line-height: 1.6;
    border-left: 3px solid var(--accent);
    padding-left: 24px; margin-top: 32px;
}

/* ═══════════════════ RESULTS ═══════════════════ */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.result-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 36px; border: 1px solid rgba(0,0,0,0.06);
}
.result-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #e8dfc5, #c8a55a);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
}
.result-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.result-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════ PROGRAM ═══════════════════ */
.program { background: var(--bg-dark); color: var(--text-light); }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--accent), rgba(200,165,90,0.15));
}
.timeline-item {
    position: relative; margin-bottom: 40px; padding: 28px 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
}
.timeline-item:hover { background: rgba(255,255,255,0.08); }
.timeline-item::before {
    content: ''; position: absolute; left: -33px; top: 32px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg-dark);
}
.timeline-day {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.timeline-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.6; }
.program-note {
    margin-top: 48px; padding: 28px 32px;
    background: linear-gradient(135deg, rgba(200,165,90,0.15), rgba(200,165,90,0.05));
    border: 1px solid rgba(200,165,90,0.25);
    border-radius: var(--radius-sm);
    font-size: 15px; color: rgba(245,240,232,0.8); line-height: 1.7;
}
.program-note strong { color: var(--accent); }

/* ═══════════════════ ORGANIZERS ═══════════════════ */
.organizers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.organizer-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 40px; border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.organizer-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, #c8a55a, #e8dfc5);
    margin: 0 auto 20px; display: flex; align-items: center;
    justify-content: center; font-size: 36px; font-weight: 700;
    color: var(--bg-dark); font-family: 'Playfair Display', serif;
}
.organizer-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.organizer-handle { font-size: 14px; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.organizer-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg); border-radius: var(--radius-sm);
    margin-bottom: 12px; border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.faq-q {
    padding: 22px 28px; font-size: 16px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; user-select: none;
}
.faq-q::after {
    content: '+'; font-size: 22px; font-weight: 300;
    color: var(--accent); transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 28px 22px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════ PRICE ═══════════════════ */
.price-section {
    background: linear-gradient(135deg, var(--bg-dark), #1a3520);
    color: var(--text-light); text-align: center;
}
.price-card {
    max-width: 520px; margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 56px 48px;
}
.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 56px; font-weight: 700; color: var(--accent); margin: 24px 0 8px;
}
.price-per { font-size: 15px; color: rgba(245,240,232,0.5); margin-bottom: 32px; }
.price-includes { text-align: left; margin-bottom: 36px; }
.price-includes li {
    list-style: none; padding: 10px 0;
    font-size: 14px; color: rgba(245,240,232,0.75);
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-includes li::before { content: '\2713'; color: var(--accent); font-weight: 700; }

/* ═══════════════════ PAY MODAL — выбор оплаты ═══════════════════ */
.pay-modal-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.pay-modal-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 10px;
}
.pay-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}
.pay-modal-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.pay-modal-sub {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.55;
}
.pay-modal-sub strong { color: var(--accent); font-weight: 700; }

.pay-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 1.5px solid #e8e0c8;
    border-radius: 16px;
    cursor: pointer;
    margin-bottom: 12px;
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}
.pay-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 165, 90, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.pay-option:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(200, 165, 90, 0.22);
}
.pay-option:hover::before { opacity: 1; }

.pay-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5ecd6 0%, #e8dfc5 50%, #c8a55a 100%);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(200, 165, 90, 0.3);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-option:hover .pay-option-icon { transform: scale(1.06) rotate(-3deg); }
.pay-option-icon svg { width: 26px; height: 26px; }

.pay-option-body { flex: 1; min-width: 0; }
.pay-option-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
}
.pay-option-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.pay-option-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-option:hover .pay-option-arrow { transform: translateX(4px); }

@media (max-width: 480px) {
    .pay-option { padding: 16px 18px; gap: 12px; }
    .pay-option-icon { width: 44px; height: 44px; border-radius: 12px; }
    .pay-option-icon svg { width: 22px; height: 22px; }
    .pay-option-title { font-size: 15px; }
    .pay-option-desc { font-size: 12px; }
}

/* ═══════════════════ PAY BUTTONS (CARD / INVOICE) ═══════════════════ */
.pay-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s ease,
                background 0.25s ease,
                color 0.25s ease;
}
.pay-btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(200, 165, 90, 0.35);
}
.pay-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(200, 165, 90, 0.55);
    background: var(--accent-hover);
}
.pay-btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 transparent;
}
.pay-btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(200, 165, 90, 0.08);
    box-shadow: 0 8px 24px rgba(200, 165, 90, 0.2);
}
.pay-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pay-btn:hover .pay-icon { transform: scale(1.08) rotate(-3deg); }

.pay-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    width: 100%;
    color: rgba(245, 240, 232, 0.55);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-bottom: 1px dashed rgba(200, 165, 90, 0.35);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.pay-call-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

@media (max-width: 480px) {
    .pay-buttons { grid-template-columns: 1fr; }
    .pay-btn { padding: 14px 22px; font-size: 14px; }
}

/* ═══════════════════ FORM ═══════════════════ */
.form-section { text-align: center; }
.form-wrap {
    max-width: 560px; margin: 0 auto;
    background: var(--card-bg); border-radius: var(--radius);
    padding: 48px; box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input {
    padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1.5px solid #e0dcd4; font-size: 15px;
    font-family: inherit; transition: border-color 0.2s;
    outline: none; background: #faf9f6;
}
.form-group input:focus { border-color: var(--accent); background: #fff; }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }

/* ═══════════════════ CONTACTS & FOOTER ═══════════════════ */
.contacts { background: var(--bg-dark); color: var(--text-light); }
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.contact-block h3 {
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.contact-block p { font-size: 15px; color: rgba(245,240,232,0.7); line-height: 1.7; }
.contact-block a { color: var(--accent); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

footer {
    background: #0a120a; color: rgba(245,240,232,0.35);
    text-align: center; padding: 32px 0; font-size: 13px;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge::before { animation: pulse 2s infinite; }

@keyframes heroFade {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroBadge {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroStats {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-content { animation: heroFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.hero-badge { animation: heroBadge 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero-stats { animation: heroStats 1s ease 1.2s both; }

/* Fade-in on scroll */
.fade-in {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delay for cards */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* Scale-in for special elements */
.fade-in.scale-in { opacity: 0; transform: translateY(30px) scale(0.95); }
.fade-in.scale-in.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Slide from left */
.slide-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

/* Timeline items stagger */
.timeline-item {
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

/* Hover micro-interactions */
.result-card { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; }
.result-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.result-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.result-card:hover .result-icon { transform: scale(1.15) rotate(-5deg); }

.organizer-card { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; }
.organizer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.organizer-avatar { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.organizer-card:hover .organizer-avatar { transform: scale(1.1); }

.btn { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(200,165,90,0.5); }

.faq-item { transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    nav.open .nav-links {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(15,26,15,0.98); padding: 24px; gap: 20px;
    }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .organizers-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .form-grid { grid-template-columns: 1fr; }
    .price-card { padding: 40px 28px; }
    .price-amount { font-size: 42px; }
}

/* ═══════════════════ MOBILE (≤600px) ═══════════════════ */
@media (max-width: 600px) {
    .container { padding: 0 16px; }

    /* Меньше воздух между секциями */
    section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(24px, 6vw, 32px); }
    .section-desc { font-size: 15px; }

    /* Навбар компактнее */
    nav { padding: 12px 0; }
    .nav-logo { font-size: 18px; }
    .nav-cta { padding: 8px 16px; font-size: 13px; }

    /* Hero компактнее */
    .hero-content { padding: 100px 0 60px; }
    .hero h1 { font-size: clamp(30px, 8vw, 42px); line-height: 1.2; margin-bottom: 18px; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-badge { padding: 6px 14px; font-size: 11px; margin-bottom: 18px; }
    .hero-stats { gap: 22px; padding-top: 24px; margin-top: 40px; }
    .hero-stat-value { font-size: 24px; }
    .hero-stat-label { font-size: 11px; }
    .btn { padding: 14px 24px; font-size: 14px; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .btn { flex: 1; min-width: 130px; justify-content: center; }

    /* About */
    .about-grid { gap: 28px; }
    .about-image { aspect-ratio: 16/10; }
    .about-quote { font-size: 18px; padding-left: 18px; margin-top: 22px; }

    /* Results — карточки чуть компактнее */
    .results-grid { gap: 16px; }
    .result-card { padding: 24px; }
    .result-card h3 { font-size: 16px; }

    /* Program timeline */
    .timeline { padding-left: 28px; }
    .timeline::before { left: 10px; }
    .timeline-item { padding: 22px 22px; margin-bottom: 24px; }
    .timeline-item::before { left: -23px; top: 26px; width: 10px; height: 10px; border-width: 2px; }
    .timeline-title { font-size: 17px; }
    .timeline-desc { font-size: 13px; }
    .program-note { padding: 22px 24px; font-size: 14px; }

    /* Organizers */
    .organizer-card { padding: 32px 24px; }
    .organizer-avatar { width: 80px; height: 80px; font-size: 30px; margin-bottom: 16px; }
    .organizer-card h3 { font-size: 18px; }

    /* FAQ */
    .faq-q { padding: 18px 22px; font-size: 15px; }
    .faq-a-inner { padding: 0 22px 18px; font-size: 14px; }

    /* Price card */
    .price-section { padding: 60px 0; }
    .price-card { padding: 32px 22px; max-width: 100%; }
    .price-amount { font-size: 36px; margin: 16px 0 6px; }
    .price-includes li { padding: 8px 0; font-size: 13px; }

    /* Form */
    .form-wrap { padding: 32px 22px; }

    /* Contacts */
    .contacts-grid { gap: 24px; }
    .contact-block h3 { font-size: 12px; }
    .contact-block p { font-size: 14px; }

    /* Footer */
    footer .container {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center;
    }

    /* Cookie banner */
    #cookieBanner {
        left: 12px !important; right: 12px !important; bottom: 12px !important;
        padding: 14px 16px !important;
        border-radius: 12px !important;
    }
    #cookieBanner > div {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }
    #cookieBanner button { width: 100%; }

    /* Платёжная модалка */
    #payModal > div {
        padding: 24px 18px !important;
        border-radius: 16px !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* «Как пройти программу» — карточки компактнее */
    .how-section { padding: 60px 0 !important; }
}

/* Очень узкие экраны (старые телефоны) */
@media (max-width: 380px) {
    .hero h1 { font-size: 26px; }
    .hero-stats { gap: 14px; }
    .hero-stat-value { font-size: 22px; }
    .hero-stat-label { font-size: 10px; }
    .container { padding: 0 14px; }
}
