/* ===== VARIABLES ===== */
:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A07D2E;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --slate: #3A3A3A;
    --ivory: #F5F0E8;
    --ivory-warm: #FAF6EE;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-light: #E8E4DC;
    --text-muted: rgba(245, 240, 232, 0.55);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--ivory-warm);
    overflow-x: hidden;
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 99999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== GRAIN OVERLAY for light sections ===== */
.benefits::after,
.for-whom::after,
.faq::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
.benefits, .for-whom, .faq { position: relative; }

/* ===== DIAMOND DIVIDER ===== */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
    position: relative;
}
.diamond-divider::before,
.diamond-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.diamond-divider .diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ===== DIAGONAL SECTION DIVIDERS ===== */
.section-divider-down {
    position: relative;
}
.section-divider-down::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 3;
}

/* ===== STICKY NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 40px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
    padding: 8px 24px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

/* Burger menu */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated gradient mesh in hero */
.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background:
        radial-gradient(ellipse 40% 50% at 75% 30%, rgba(201, 168, 76, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 30% 40% at 25% 70%, rgba(201, 168, 76, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(232, 212, 139, 0.15) 0%, transparent 50%);
    animation: meshFloat 12s ease-in-out infinite alternate;
}
@keyframes meshFloat {
    0% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.05) translate(2%, -1%); }
    66% { transform: scale(0.98) translate(-1%, 2%); }
    100% { transform: scale(1.03) translate(1%, -1%); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.hero-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}
.hero-corner--tl { top: 40px; left: 40px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); opacity: 0.3; }
.hero-corner--br { bottom: 40px; right: 40px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); opacity: 0.3; }

/* Hero two-column layout */
.hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 120px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: stretch;
}
.hero-photo-col {
    position: relative;
}
.hero-speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(201, 168, 76, 0.15);
}
.hero-photo-col::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Stats row under CTA */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-inline {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-family: 'DM Mono', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-txt {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 240, 232, 0.4);
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 40px;
}
.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ivory);
    margin-bottom: 24px;
    max-width: 800px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.hero-title span {
    color: var(--gold);
    display: inline;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}
@keyframes goldShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.65;
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
}
.hero-meta-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}
.hero-meta-icon:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: scale(1.1);
}
.hero-meta-icon svg { width: 18px; height: 18px; }
.hero-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    display: block;
    margin-bottom: 2px;
}
.hero-meta-value { font-weight: 600; font-size: 16px; }

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-1px);
}

/* (hero-deco removed — replaced by hero-stats-row) */

/* ===== SECTION SHARED ===== */
.section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.section-desc {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 48px;
}

/* ===== BENEFITS ===== */
.benefits { background: var(--ivory); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit-card {
    background: var(--ivory-warm);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-card:hover::before { height: 100%; }
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.07);
    border-color: rgba(201, 168, 76, 0.15);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-dark);
    transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon {
    background: rgba(201, 168, 76, 0.18);
    transform: scale(1.08) rotate(-3deg);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.benefit-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== ABOUT HOST ===== */
.about-host {
    background: var(--charcoal);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}
.about-host::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
    pointer-events: none;
}
.about-host::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.04);
    border-radius: 50%;
    pointer-events: none;
}
.about-host .section-label { color: var(--gold); }
.about-host .section-title { color: var(--ivory); margin-bottom: 48px; }

.about-host-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}
.about-host-photo-wrap {
    position: relative;
}
.about-host-photo-wrap::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}
.about-host-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    display: block;
    position: relative;
    z-index: 2;
}
.about-host-content .section-desc {
    color: var(--text-muted);
    max-width: 100%;
}
.about-host-quote {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    margin-bottom: 48px;
}

.about-host-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.about-highlight-item { padding: 16px 0; }
.about-highlight-number {
    font-family: 'DM Mono', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 6px;
}
.about-highlight-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== SPEAKERS ===== */
.speakers { background: var(--ivory); }

/* Carousel */
.speakers-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -40px;
    padding: 0 40px 16px;
}
.speakers-carousel::-webkit-scrollbar { display: none; }
.speakers-track {
    display: flex;
    gap: 20px;
}
.speaker-card-h {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--ivory-warm);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 28px;
    min-width: calc(50% - 10px);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.speaker-card-h:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: rgba(201, 168, 76, 0.2);
}
.speaker-photo-h {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}
.speaker-photo-placeholder-h {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--charcoal-light), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.speaker-photo-placeholder-h .speaker-initials {
    font-size: 28px;
}
.speaker-info-h {
    flex: 1;
    min-width: 0;
}
.speaker-bio-h {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.speaker-bio-h li {
    padding-left: 14px;
    position: relative;
}
.speaker-bio-h li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}
.speaker-photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.08), transparent 60%);
}
.speaker-initials {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
    position: relative;
    z-index: 2;
}
.speaker-info { padding: 28px 32px; }
.speaker-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.speaker-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.speaker-role {
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.speaker-topic {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.speaker-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.speaker-bio li {
    margin-bottom: 4px;
    list-style: none;
    position: relative;
    padding-left: 16px;
}
.speaker-bio li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    background: var(--charcoal);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2520 50%, var(--charcoal) 100%);
}
.pull-quote--compact {
    padding: 48px 40px;
}
.pull-quote--compact blockquote {
    font-size: clamp(18px, 2.5vw, 28px) !important;
    margin-bottom: 8px !important;
}
.pull-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
    pointer-events: none;
    z-index: 1;
}
.pull-quote::before {
    content: '\201C';
    font-family: 'Montserrat', sans-serif;
    font-size: 300px;
    color: rgba(201, 168, 76, 0.04);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}
.pull-quote blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: var(--ivory);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}
.pull-quote cite {
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* ===== PROGRAM ===== */
.program { background: var(--ivory-warm); }
.timeline { position: relative; margin-top: 48px; }
.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    position: relative;
}
.timeline-item + .timeline-item {
    border-top: 1px solid rgba(0,0,0,0.06);
}
.timeline-time {
    flex-shrink: 0;
    width: 72px;
    position: relative;
}
.timeline-time-text {
    font-family: 'DM Mono', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-dark);
    white-space: nowrap;
    line-height: 1;
    padding-top: 6px;
}
.timeline-line {
    flex-shrink: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.15));
    border-radius: 2px;
    align-self: stretch;
    position: relative;
}
.timeline-line::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--ivory-warm);
}
.timeline-content {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 32px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-content:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateX(4px);
}
.timeline-speaker {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}
.timeline-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}
.timeline-avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--charcoal-light);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.timeline-role {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}
.timeline-topic {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== FOR WHOM ===== */
.for-whom { background: var(--ivory); }
.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.for-whom-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--ivory-warm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.for-whom-card:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.for-whom-marker {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-top: 2px;
    transition: all 0.3s ease;
}
.for-whom-card:hover .for-whom-marker {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.1);
}
.for-whom-marker svg { width: 14px; height: 14px; }
.for-whom-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.for-whom-text strong { color: var(--charcoal); }

/* ===== PRICING ===== */
.pricing {
    background: var(--charcoal);
    color: var(--ivory);
    overflow: hidden;
}
.pricing .section-inner { text-align: center; }
.pricing .section-desc { margin-left: auto; margin-right: auto; }
.pricing .section-label { color: var(--gold); }
.pricing .section-title { color: var(--ivory); }
.pricing .section-desc { color: var(--text-muted); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    max-width: 840px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--charcoal-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { border-color: rgba(201, 168, 76, 0.2); }
.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--charcoal-light), rgba(201, 168, 76, 0.05));
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
}
.pricing-card.featured::before {
    content: 'Рекомендуем';
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-price {
    font-family: 'DM Mono', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}
.pricing-price small {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}
.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 16px;
    line-height: 1.7;
    padding: 8px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(245, 240, 232, 0.7);
}
.pricing-features li .check-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pricing-features li .check-icon svg { width: 14px; height: 14px; }
.pricing-features li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}
.pricing-features li.disabled .check-icon { color: rgba(245, 240, 232, 0.3); }
.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; justify-content: center; white-space: nowrap; }

/* ===== FAQ ===== */
.faq { background: var(--ivory-warm); }
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.faq-list { }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.faq-icon svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-item[aria-expanded="true"] .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
}
.faq-item[aria-expanded="true"] .faq-icon svg {
    transform: rotate(45deg);
    color: var(--charcoal);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}
.faq-answer p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== INLINE CTA ===== */
.inline-cta {
    text-align: center;
    padding: 32px 40px;
    background: var(--ivory);
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    background: linear-gradient(135deg, var(--charcoal), var(--slate));
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.footer-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.footer-cta .section-title {
    color: var(--ivory);
    margin-bottom: 16px;
}
.footer-cta-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}
.footer-cta .btn-primary {
    font-size: 17px;
    padding: 18px 48px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ivory-warm);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 56px 40px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 48px;
    padding-bottom: 40px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-entity {
    font-size: 11px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.5;
}
.footer-details {
    font-size: 10px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.footer-link {
    font-size: 11px;
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}
.footer-link:hover {
    color: var(--gold);
}
.footer-contact {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.5;
}
.footer-contact a {
    color: var(--gold-dark);
    text-decoration: none;
}
.footer-contact a:hover { color: var(--gold); }
.footer-license {
    font-size: 10px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 10px;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-photo-col { animation: fadeInUp 0.8s ease-out; }
.hero-badge { animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero-title { animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero-subtitle { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-cta-group { animation: fadeInUp 0.8s ease-out 0.4s both; }
.hero-stats-row { animation: fadeInUp 0.8s ease-out 0.5s both; }

/* ===== SALEBOT POPUP (per TZ) ===== */

/* Overlay — блюр фона */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Модалка */
.modal {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}
.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

/* Крестик */
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.125rem;
    color: #78776e;
    transition: all 0.2s;
}
.modal__close:hover {
    background: rgba(0,0,0,0.06);
    color: var(--charcoal);
}

/* Ширина формы внутри модалки */
.modal .form_integration_block {
    width: 90%;
    margin: 0 auto;
}

/* Инпуты */
.modal .form_integration_block input[type="text"],
.modal .form_integration_block input[type="email"],
.modal .form_integration_block input[type="tel"],
.modal .form_integration_block input,
.modal .form_integration_block select {
    width: 100% !important;
    background: #fafaf9 !important;
    border: 1.5px solid rgba(0,0,0,0.07) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}
.modal .form_integration_block input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25) !important;
}

/* Лейблы */
.modal .form_integration_block label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.35rem !important;
    color: var(--text-secondary) !important;
}
.modal .form_integration_block a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    border-bottom: 1px dashed #ccc !important;
}

/* Кнопка отправки */
.modal .form_integration_block button[type="submit"],
.modal .form_integration_block button {
    width: 100% !important;
    padding: 0.875rem !important;
    background: var(--charcoal) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}
.modal .form_integration_block button:hover {
    background: var(--slate) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
}

/* Чекбоксы — toggle switch */
.modal .form_integration_block input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 44px !important;
    height: 24px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    background: #d4d4d0 !important;
    background-image: none !important;
    border-radius: 12px !important;
    border: none !important;
    position: relative !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.modal .form_integration_block input[type="checkbox"]::after {
    content: '' !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    width: 20px !important;
    height: 20px !important;
    background: #fff !important;
    border-radius: 50% !important;
    transition: transform 0.25s !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important;
    border: none !important;
}
.modal .form_integration_block input[type="checkbox"]:checked {
    background: var(--gold) !important;
    background-image: none !important;
}
.modal .form_integration_block input[type="checkbox"]::before {
    display: none !important;
}
.modal .form_integration_block input[type="checkbox"]:checked::after {
    transform: translateX(20px) !important;
}

/* Выравнивание чекбокс + текст */
.modal .form_integration_block div:has(> input[type="checkbox"]) {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
}
.modal .form_integration_block div:has(> input[type="checkbox"]) a,
.modal .form_integration_block div:has(> input[type="checkbox"]) span {
    flex: 1 !important;
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-host-layout { grid-template-columns: 280px 1fr; gap: 40px; }
    .speaker-card.featured { grid-template-columns: 320px 1fr; }
    .speakers-carousel { margin: 0 -20px; padding: 0 20px 16px; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero-corner { display: none; }
    .hero-layout { grid-template-columns: 1fr; gap: 24px; padding: 100px 20px 48px; align-items: start; }
    .hero-photo-col { max-width: 200px; order: -1; }
    .hero-speaker-photo { height: auto !important; aspect-ratio: 3/4; }
    .hero-title { font-size: clamp(28px, 8vw, 42px); }
    .hero-subtitle { font-size: 15px; }
    .section-title { font-size: clamp(22px, 6vw, 32px); }
    .section-label { font-size: 12px; }
    .speakers-carousel { margin: 0 -20px; padding: 0 20px 16px; }
    .pull-quote--compact { padding: 36px 20px; }
    .pull-quote--compact blockquote { font-size: 18px !important; }
    .hero-stats-row { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }
    .section { padding: 64px 20px; overflow: hidden; }
    .hero-meta { gap: 20px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-host-layout { grid-template-columns: 1fr; }
    .about-host-photo-wrap { max-width: 280px; }
    .speaker-card-h { min-width: 280px; }
    .inline-cta { padding: 24px 20px; }
    .for-whom-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card.featured { transform: none; }
    .btn-primary, .btn-secondary { white-space: normal; font-size: 14px; padding: 14px 24px; }
    .pricing-card .btn-primary,
    .pricing-card .btn-secondary { white-space: nowrap; }
    .timeline-item { flex-wrap: wrap; gap: 8px 16px; }
    .timeline-line { display: none; }
    .timeline-time { width: auto; }
    .timeline-content { padding: 20px; }
    .footer-cta { padding: 60px 20px; }
    .pull-quote { padding: 60px 20px; }
    .nav { padding: 12px 20px; }
    footer { padding: 40px 20px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }

    /* Bottom sheet modal on mobile */
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .modal {
        padding: 1rem 1rem calc(env(safe-area-inset-bottom) + 1rem);
        border-radius: 20px 20px 0 0;
        max-height: 92dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 6px;
        width: calc(100% - 12px);
        max-width: 100%;
        transform: translateY(100%);
    }
    .modal-overlay.active .modal {
        transform: translateY(0);
    }
    .modal .form_integration_block {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }
    .for-whom-card { flex-direction: column; }
    .about-host-highlight { grid-template-columns: 1fr 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero-mesh { animation: none; }
    .hero-title span { animation: none; -webkit-text-fill-color: var(--gold); }
}
