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

:root {
    --green-900: #2c4a3e;
    --green-800: #3d6354;
    --green-700: #4e7d68;
    --green-600: #5e9478;
    --green-500: #7ab094;
    --green-400: #9cc5b0;
    --green-300: #bdd9ca;
    --green-200: #d9ebdd;
    --green-100: #eef5ee;
    --green-50: #f6faf6;
    --lime-300: #c8db8a;
    --lime-200: #e0eeb8;
    --cream: #faf8f4;
    --beige: #f3efe6;
    --sand: #e8e2d4;
    --sand-light: #f5f1e9;
    --text-dark: #1e2d24;
    --text-primary: #2a3a30;
    --text-secondary: #4a5e50;
    --text-muted: #7a8e80;
    --white: #ffffff;
    --border: rgba(44, 74, 62, 0.12);
    --border-hover: rgba(44, 74, 62, 0.25);
    --shadow-sm: 0 2px 8px rgba(30, 45, 36, 0.06);
    --shadow-md: 0 8px 32px rgba(30, 45, 36, 0.10);
    --shadow-lg: 0 16px 64px rgba(30, 45, 36, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-weight: 600; border-radius: var(--radius-xl);
    transition: var(--transition); white-space: nowrap;
}
.btn--hero {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white); font-size: 1.1rem; padding: 18px 40px;
    box-shadow: 0 4px 24px rgba(78,125,104,0.35);
}
.btn--hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(78,125,104,0.5); }
.btn--small { background: var(--green-700); color: var(--white); font-size: 0.875rem; padding: 10px 24px; }
.btn--small:hover { background: var(--green-600); }
.btn--full {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white); font-size: 1rem; padding: 16px 32px; width: 100%;
}
.btn--full:hover { box-shadow: 0 4px 24px rgba(78,125,104,0.45); transform: translateY(-1px); }
.btn--outline {
    background: transparent; color: var(--green-600);
    border: 2px solid var(--green-500); font-size: 1rem; padding: 14px 32px;
}
.btn--outline:hover { background: var(--green-500); color: var(--white); }
.btn--mobile { margin-top: 16px; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,248,244,0.92); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
.header.scrolled { background: rgba(250,248,244,0.97); box-shadow: var(--shadow-sm); }
.header__container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.header__logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.8rem; font-weight: 800;
}
.header__logo-text { color: var(--text-primary); }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__link { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; }
.header__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green-500); transition: var(--transition); }
.header__link:hover { color: var(--text-primary); }
.header__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.header__burger span { width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,248,244,0.98); backdrop-filter: blur(20px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav__link { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition); }
.mobile-nav__link:hover { color: var(--green-600); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 120px 0 80px; overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--sand-light) 50%, var(--green-50) 100%);
}
.hero__bg-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(78,125,104,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 70%, rgba(200,219,138,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero__container {
    position: relative; z-index: 1; display: grid;
    grid-template-columns: 1fr 340px; gap: 56px;
    align-items: center; text-align: left; max-width: 1100px;
}
.hero__text-side { display: flex; flex-direction: column; gap: 0; }
.hero__badge {
    display: inline-block; background: rgba(78,125,104,0.1);
    border: 1px solid rgba(78,125,104,0.25); color: var(--green-700);
    font-size: 0.85rem; font-weight: 600; padding: 8px 20px;
    border-radius: var(--radius-xl); margin-bottom: 20px;
    letter-spacing: 0.05em; text-transform: uppercase; width: fit-content;
}
.hero__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__date, .hero__time, .hero__city { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
.hero__separator { color: var(--green-400); font-size: 1.1rem; }
.hero__title {
    font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text-dark);
}
.hero__title-accent { color: var(--green-600); }
.hero__title-highlight {
    background: linear-gradient(135deg, var(--green-500), var(--lime-300));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-secondary); max-width: 520px; margin-bottom: 28px; line-height: 1.7; }
.hero__venue {
    display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px;
    padding: 14px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.hero__venue-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.hero__venue-item svg { color: var(--green-600); flex-shrink: 0; }
.hero__credentials {
    display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
    padding: 16px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.hero__credential { display: flex; flex-direction: row; align-items: baseline; gap: 6px; flex: 1; }
.hero__credential-num { font-size: 1.1rem; font-weight: 800; color: var(--green-600); line-height: 1; white-space: nowrap; }
.hero__credential-label { font-size: 0.72rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.hero__credential-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.hero__info { display: flex; align-items: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.hero__info-item { text-align: center; }
.hero__info-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--green-600); line-height: 1; }
.hero__info-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.hero__info-divider { width: 1px; height: 48px; background: var(--border); }

/* HERO PHOTO */
.hero__photo-side { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero__photo {
    width: 100%; aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg), 0 0 60px rgba(78,125,104,0.12);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero__speaker-meta {
    text-align: center; padding: 14px 8px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-md);
}
.hero__speaker-name { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.hero__speaker-title { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; font-weight: 500; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
    display: inline-block; background: rgba(78,125,104,0.1); border: 1px solid rgba(78,125,104,0.2);
    color: var(--green-700); font-size: 0.8rem; font-weight: 600; padding: 6px 16px;
    border-radius: var(--radius-xl); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase;
}
.section__title {
    font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700; color: var(--text-dark); line-height: 1.25;
}
.section__title-accent { color: var(--green-600); }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--sand-light); }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about__card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition);
}
.about__card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about__card-icon {
    width: 56px; height: 56px; background: rgba(78,125,104,0.1);
    border: 1px solid rgba(78,125,104,0.2); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; color: var(--green-600); margin-bottom: 20px;
}
.about__card-title { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.about__card-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   RESULTS
   ============================================ */
.results { background: var(--cream); }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.results__item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 32px; position: relative; overflow: hidden; transition: var(--transition);
}
.results__item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--lime-300)); opacity: 0; transition: var(--transition);
}
.results__item:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.results__item:hover::before { opacity: 1; }
.results__item-num { font-size: 3rem; font-weight: 800; color: rgba(78,125,104,0.12); line-height: 1; margin-bottom: 16px; }
.results__item-title { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.results__item-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   AUDIENCE
   ============================================ */
.audience { background: var(--sand-light); }
.audience__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.audience__content { display: flex; flex-direction: column; gap: 0; }
.audience__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.audience__item { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; color: var(--text-primary); font-weight: 500; }
.audience__item-icon {
    width: 24px; height: 24px; background: var(--green-500); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.audience__visual { display: flex; align-items: center; justify-content: center; }
.audience__visual-card {
    padding: 20px 32px; text-align: center; border: 1px solid var(--border);
    border-radius: var(--radius-md); background: var(--white);
}
.audience__visual-num { font-size: 2rem; font-weight: 800; color: var(--green-500); line-height: 1; }
.audience__visual-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; line-height: 1.6; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--cream); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; transition: var(--transition);
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__quote { color: var(--green-500); margin-bottom: 16px; line-height: 1; }
.review-card__text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__author-avatar {
    width: 40px; height: 40px; background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.review-card__author-name { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.review-card__author-role { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   VIDEO REVIEWS — VERTICAL
   ============================================ */
.video-reviews { background: var(--sand-light); }
.video-reviews__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 24px; }
.video-card {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition); background: var(--white);
}
.video-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-card__wrap {
    position: relative; aspect-ratio: 9 / 16;
    background: #1a1a1a; overflow: hidden; cursor: pointer;
}
.video-card__player { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card__play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 52px; height: 52px; background: rgba(0,0,0,0.55);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); pointer-events: none;
}
.video-card__play-btn::after {
    content: ''; display: block;
    width: 0; height: 0;
    border-style: solid; border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 3px;
}
.video-card:hover .video-card__play-btn { background: rgba(78,125,104,0.8); transform: translate(-50%, -50%) scale(1.1); }
.video-card__info { padding: 12px 14px; background: var(--white); }
.video-card__author { display: flex; align-items: center; gap: 10px; }
.video-card__avatar {
    width: 36px; height: 36px; background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.video-card__name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); line-height: 1.2; }
.video-card__role { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; line-height: 1.3; }
.video-reviews__hint { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--white); }
.location__content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.location__info { display: flex; flex-direction: column; gap: 24px; }
.location__address {
    display: flex; align-items: center; gap: 12px; font-size: 1.1rem; color: var(--text-primary);
    padding: 20px 24px; background: var(--sand-light); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.location__address svg { color: var(--green-600); flex-shrink: 0; }
.location__details { display: flex; flex-direction: column; gap: 12px; }
.location__detail { font-size: 0.95rem; color: var(--text-secondary); }
.location__detail strong { color: var(--text-primary); }
.location__map {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
    min-height: 300px; background: var(--sand-light);
}
.location__map iframe { filter: grayscale(0.3) brightness(1.02); }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--sand-light); }
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.pricing__single { max-width: 480px; margin: 0 auto; }
.pricing__card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: var(--transition);
}
.pricing__card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing__card--featured { border-color: var(--green-500); box-shadow: 0 0 40px rgba(78,125,104,0.12); }
.pricing__card-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white); font-size: 0.75rem; font-weight: 700;
    padding: 4px 16px; border-radius: var(--radius-xl); text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing__card-header { text-align: center; margin-bottom: 28px; }
.pricing__card-title { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.pricing__card-price { font-size: 2.5rem; font-weight: 800; color: var(--green-600); }
.pricing__card-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing__card-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pricing__card-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.pricing__card-features li::before { content: '\2713'; color: var(--green-500); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   SPONSORS
   ============================================ */
.sponsors { background: var(--white); }
.sponsors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.sponsor-card {
    display: flex; align-items: center; gap: 20px; background: var(--sand-light);
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition);
}
.sponsor-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.sponsor-card__logo-area {
    width: 120px; height: 120px; flex-shrink: 0;
    background: rgba(78,125,104,0.06); border: 1px dashed var(--border-hover);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; text-align: center; padding: 8px;
}
.sponsor-card__placeholder { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.sponsor-card__info { flex: 1; min-width: 0; }
.sponsor-card__name { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.sponsor-card__person { font-size: 0.9rem; color: var(--green-600); font-weight: 500; margin-bottom: 8px; }
.sponsor-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.sponsor-card__desc--bold { margin-top: 10px; font-weight: 600; color: var(--text-primary); }
.sponsor-card__stats { margin: 12px 0; padding-left: 0; }
.sponsor-card__stats li { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; padding-left: 16px; position: relative; margin-bottom: 4px; }
.sponsor-card__stats li::before { content: '•'; position: absolute; left: 0; color: var(--green-500); }
.sponsor-card__stats strong { color: var(--green-600); }
.sponsor-card__services { margin-top: 12px; }
.sponsor-card__services strong { display: block; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 6px; }
.sponsor-card__services ul { padding-left: 0; }
.sponsor-card__services li { font-size: 0.85rem; color: var(--text-secondary); padding-left: 14px; position: relative; margin-bottom: 3px; line-height: 1.5; }
.sponsor-card__services li::before { content: '—'; position: absolute; left: 0; color: var(--green-400); }
.sponsors__cta { text-align: center; font-size: 0.95rem; color: var(--text-muted); }
.sponsors__link { color: var(--green-600); text-decoration: underline; text-underline-offset: 4px; transition: var(--transition); }
.sponsors__link:hover { color: var(--green-500); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-100), var(--sand-light));
    position: relative; overflow: hidden;
}
.cta-final::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(78,125,104,0.06), transparent);
    pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-final__title {
    font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.3;
}
.cta-final__text { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--sand-light); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; margin-bottom: 16px; }
.footer__logo-icon {
    width: 36px; height: 36px; background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.8rem; font-weight: 800;
}
.footer__logo-text { color: var(--text-primary); }
.footer__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer__col-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer__link { display: block; font-size: 0.9rem; color: var(--text-secondary); padding: 6px 0; transition: var(--transition); }
.footer__link:hover { color: var(--green-600); }
.footer__location { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.footer__bottom {
    display: flex; align-items: center; justify-content: space-between; padding-top: 32px;
    border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted);
    flex-wrap: wrap; gap: 16px;
}
.footer__policy { color: var(--text-muted); transition: var(--transition); }
.footer__policy:hover { color: var(--green-600); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px); z-index: 2000; display: flex;
    align-items: center; justify-content: center; opacity: 0;
    visibility: hidden; transition: var(--transition); padding: 24px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--white); border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg); max-width: 480px; width: 100%;
    position: relative; transform: translateY(20px); transition: var(--transition);
    max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal__close {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    background: var(--sand-light); border: 1px solid var(--border);
    color: var(--text-secondary); transition: var(--transition); z-index: 1;
}
.modal__close:hover { border-color: var(--green-500); color: var(--green-600); }
.modal__body { padding: 40px 32px 32px; }
.modal__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.modal__subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

/* ============================================
   FORM
   ============================================ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
    width: 100%; padding: 14px 16px; background: var(--sand-light);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-primary); font-size: 1rem; transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(78,125,104,0.12); background: var(--white); }
.form-input::placeholder { color: var(--text-muted); }
.form-group--checkbox { margin-bottom: 20px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green-600); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-checkbox__text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.form-checkbox__text a { color: var(--green-600); text-decoration: underline; }
.form__note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message { display: none; text-align: center; padding: 40px 32px; }
.success-message.active { display: block; }
.success-message__icon {
    width: 64px; height: 64px; background: rgba(78,125,104,0.1);
    border: 2px solid var(--green-500); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 20px;
    color: var(--green-600); font-size: 1.5rem; font-weight: 700;
}
.success-message__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.success-message__text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .about__grid, .results__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .audience__inner { grid-template-columns: 1fr; gap: 40px; }
    .audience__visual { justify-content: flex-start; }
    .hero__container { grid-template-columns: 1fr 280px; gap: 36px; }
    .hero__credentials { flex-wrap: wrap; gap: 12px; }
    .hero__credential-divider { display: none; }
    .location__content { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .video-reviews__grid { grid-template-columns: repeat(3, 1fr); }
    .sponsors__grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .header__nav { display: none; }
    .header__actions .btn--small { display: none; }
    .header__burger { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__container { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero__text-side { align-items: center; }
    .hero__badge { margin: 0 auto 16px; }
    .hero__meta { justify-content: center; }
    .hero__credentials { margin: 0 auto 24px; justify-content: center; flex-wrap: wrap; }
    .hero__credential-divider { display: none; }
    .hero__info-divider { display: none; }
    .hero__info { gap: 20px; justify-content: center; }
    .section { padding: 64px 0; }
    .section__header { margin-bottom: 40px; }
    .about__grid, .results__grid, .reviews__grid, .pricing__grid { grid-template-columns: 1fr; }
    .pricing__single { max-width: 100%; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .modal__body { padding: 32px 24px 24px; }
    .hero__photo-side { max-width: 260px; margin: 0 auto; }
    .hero__info { justify-content: center; }
    .video-reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .video-card__info { padding: 10px 12px; }
    .video-card__avatar { width: 32px; height: 32px; font-size: 0.75rem; }
    .video-card__name { font-size: 0.8rem; }
    .video-card__role { font-size: 0.68rem; }
    .sponsors__grid { grid-template-columns: 1fr; }
    .sponsors__cta { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 50px; }
    .hero__title { font-size: 1.55rem; }
    .hero__subtitle { font-size: 0.95rem; }
    .hero__meta { gap: 8px; }
    .hero__date, .hero__time, .hero__city { font-size: 0.82rem; }
    .hero__separator { font-size: 0.9rem; }
    .btn--hero { font-size: 0.9rem; padding: 14px 24px; }
    .hero__info-num { font-size: 2rem; }
    .pricing__card { padding: 28px 24px; }
    .hero__photo { max-width: 200px; margin: 0 auto; }
    .hero__credentials { font-size: 0.85rem; }
    .hero__credential-num { font-size: 0.95rem; }
    .hero__credential-label { font-size: 0.65rem; }
    .section__title { font-size: 1.5rem; }
    .section__header { margin-bottom: 32px; }
    .about__card { padding: 28px 22px; }
    .about__card-title { font-size: 1.1rem; }
    .results__item { padding: 28px 22px; }
    .results__item-num { font-size: 2.2rem; }
    .results__item-title { font-size: 1.1rem; }
    .reviews__grid { gap: 16px; }
    .review-card { padding: 24px 20px; }
    .video-reviews__grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
    .video-card__wrap { aspect-ratio: 9 / 16; max-height: 420px; }
    .video-card__play-btn { width: 48px; height: 48px; }
    .video-card__info { padding: 12px 16px; }
    .sponsors__grid { gap: 16px; }
    .sponsor-card { flex-direction: column; text-align: center; padding: 24px 20px; }
    .sponsor-card__logo-area { width: 100px; height: 100px; }
    .cta-final { padding: 64px 0; }
    .cta-final__title { font-size: 1.4rem; }
    .cta-final__text { font-size: 0.95rem; }
    .footer { padding: 48px 0 24px; }
    .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.phone-input { text-align: left; }

/* Video card click to play */
.video-card__wrap:active .video-card__player { opacity: 0.85; }
