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

:root {
  --coral: #e8503a;
  --coral-dark: #c73f2a;
  --coral-light: #f7ded9;
  --cream: #fdf8f4;
  --warm-dark: #1c1410;
  --warm-mid: #4a3728;
  --warm-muted: #8a6f62;
  --border: #e8ddd7;
  --white: #ffffff;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(28, 20, 16, 0.08);
  --shadow-lg: 0 8px 40px rgba(28, 20, 16, 0.13);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--warm-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.section-tag {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 80, 58, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--warm-dark);
  color: var(--white);
  border-color: var(--warm-dark);
}
.btn-dark:hover {
  background: var(--warm-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(253, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--warm-dark);
  letter-spacing: -0.03em;
}
.logo span { color: var(--coral); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-link {
  color: var(--warm-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-link:hover { color: var(--coral); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1410 0%, #3d2418 55%, #5c3020 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.25;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 80, 58, 0.2);
  color: #f9aa98;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 80, 58, 0.3);
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: #f9aa98; }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-dark {
  background: var(--warm-dark);
  color: var(--white);
}
.section-mid {
  background: #2a1a10;
  color: var(--white);
}
.section-light {
  background: var(--white);
}
.section-tinted {
  background: #fdf0ea;
}

/* ===== FORMAT STRIP ===== */
.format-strip {
  padding: 28px 0;
  background: var(--coral);
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.strip-item svg { width: 20px; height: 20px; opacity: 0.85; }

/* ===== FOR WHOM ===== */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.whom-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition);
}
.whom-card:hover { background: rgba(255,255,255,0.1); }
.whom-icon {
  width: 44px; height: 44px;
  background: rgba(232, 80, 58, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.whom-icon svg { width: 22px; height: 22px; color: #f9aa98; }
.whom-card h3 { color: var(--white); margin-bottom: 8px; }
.whom-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* ===== PROGRAM ===== */
.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.program-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.program-img img { width: 100%; height: 340px; object-fit: cover; }
.program-list { display: flex; flex-direction: column; gap: 16px; }
.program-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.program-item:hover { box-shadow: var(--shadow); }
.program-num {
  width: 36px; height: 36px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.program-item h3 { font-size: 1rem; margin-bottom: 4px; }
.program-item p { font-size: 0.87rem; color: var(--warm-muted); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}
.step { position: relative; text-align: center; padding-top: 16px; }
.step-circle {
  width: 48px; height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--cream);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--warm-muted); }

/* ===== ABOUT / FORMAT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge svg { color: var(--coral); width: 20px; height: 20px; }
.about-badge span { font-size: 0.85rem; font-weight: 600; color: var(--warm-dark); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--warm-muted); margin-bottom: 24px; }
.benefits-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}
.benefit-check {
  width: 22px; height: 22px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-check svg { width: 12px; height: 12px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}
.faq-q:hover { color: #f9aa98; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-a-inner { padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===== LEAD FORM ===== */
.lead-section {
  background: linear-gradient(135deg, var(--coral) 0%, #c73f2a 100%);
}
.lead-inner {
  text-align: center;
}
.lead-inner h2 { color: var(--white); margin-bottom: 16px; }
.lead-inner .lead-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form input, .lead-form select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.97rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.6); }
.lead-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
.lead-form select {
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}
.lead-form select option { background: var(--coral-dark); color: var(--white); }
.form-submit {
  background: var(--white);
  color: var(--coral);
  border: none;
  font-weight: 700;
}
.form-submit:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lead-privacy {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.lead-privacy a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: #110c08;
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.65;
}
.footer-col h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-legal {
  color: rgba(255,255,255,0.28);
  font-size: 0.77rem;
  line-height: 1.7;
  max-width: 600px;
}
.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 0.77rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 640px;
  background: var(--warm-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { flex: 1; }
.cookie-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cookie-text a { color: #f9aa98; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all var(--transition);
}
.cookie-accept {
  background: var(--coral);
  color: var(--white);
}
.cookie-accept:hover { background: var(--coral-dark); }
.cookie-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.cookie-decline:hover { background: rgba(255,255,255,0.14); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-card {
  max-width: 520px;
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--coral-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.success-icon svg { width: 38px; height: 38px; color: var(--coral); }
.success-card h1 { font-size: 2rem; margin-bottom: 16px; }
.success-card p { color: var(--warm-muted); margin-bottom: 32px; }
.success-back { color: var(--coral); font-weight: 600; text-decoration: underline; }
.success-back:hover { color: var(--coral-dark); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--warm-dark);
  padding: 100px 0 56px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.6rem); }
.legal-hero p { color: rgba(255,255,255,0.5); margin-top: 10px; font-size: 0.9rem; }
.legal-body { padding: 64px 0; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  color: var(--warm-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--warm-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}
.legal-content ul { margin: 12px 0 12px 20px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; }

/* ===== ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .program-layout,
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .program-img { order: -1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof { gap: 24px; }
  .steps-grid::before { display: none; }
  .cookie-banner {
    flex-direction: column;
    bottom: 16px; left: 16px; right: 16px;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .header-link { display: none; }
}
@media (max-width: 480px) {
  .strip-inner { gap: 24px; flex-wrap: nowrap; overflow-x: auto; }
  .strip-inner::-webkit-scrollbar { display: none; }
  .whom-grid { grid-template-columns: 1fr; }
}
