/* ============================================================
   ECOBE ACADEMY — REDESIGN 2025
   Dark · Sophisticated · Editorial · Emerald
   Fonts: Playfair Display (display) + Outfit (body)
   ============================================================ */

:root {
  --bg:        #f9f6f0;
  --bg-card:   #ffffff;
  --bg-2:      #f2ede5;
  --bg-3:      #e8e2d8;
  --border:    rgba(0,0,0,0.08);
  --border-em: rgba(22,163,74,0.22);

  --text:      #1a1612;
  --text-dim:  rgba(26,22,18,0.70);
  --text-muted:rgba(26,22,18,0.48);

  --emerald:   #16a34a;
  --emerald-d: #15803d;
  --emerald-bg:rgba(22,163,74,0.07);
  --gold:      #b45309;
  --gold-bg:   rgba(180,83,9,0.07);
  --platinum:  #6d28d9;
  --platinum-bg:rgba(109,40,217,0.07);

  --ff-display:'Playfair Display', Georgia, serif;
  --ff-body:   'Outfit', system-ui, sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --trans:     0.25s cubic-bezier(.4,0,.2,1);
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grain overlay — very light on light theme */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.12;
}

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

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: 28px;
  max-width: 480px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--emerald);
  padding: 20px 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s 1.5s both;
  border-radius: var(--radius);
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner p { font-size: 15px; color: var(--text-dim); }
.cookie-banner a { color: var(--emerald); }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-decline, .btn-cookie-accept {
  padding: 8px 16px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--trans);
}
.btn-cookie-decline { background: transparent; color: var(--text-dim); }
.btn-cookie-accept  { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(249,246,240,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo-text em {
  font-style: normal;
  color: var(--emerald);
  font-weight: 300;
}
.nav-links {
  position: fixed;
  top: 0;
  /* align right edge with nav-container right padding, responsive to container max-width */
  right: max(48px, calc((100vw - 1280px) / 2 + 48px));
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  transition: padding var(--trans);
  list-style: none;
}
.nav-links.scrolled {
  padding: 14px 0;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--emerald);
  transition: width var(--trans);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--text);
}
.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--emerald);
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  border-radius: var(--radius);
  transition: var(--trans) !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--emerald-d) !important; transform: translateY(-1px); }
.nav-cta-arrow { transition: transform var(--trans); }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ══════════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-sm {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 120px 0; }
.section-sm { padding: 64px 0; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--emerald);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--emerald);
}
.section-subtitle {
  font-size: 19px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 20px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: #000;
}
.btn-primary:hover {
  background: var(--emerald-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,222,128,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--border-em);
}
.btn-outline:hover {
  background: var(--emerald-bg);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.btn-ghost:hover { color: var(--text); }

/* ══════════════════════════════════════════
   HERO — HOME
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 140px 0 100px;
}

/* Animated mesh gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse, rgba(22,163,74,0.08) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(ellipse, rgba(22,163,74,0.04) 0%, transparent 70%);
  animation: pulseGlow 10s ease-in-out 2s infinite alternate-reverse;
  pointer-events: none;
}
@keyframes pulseGlow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 80px;
  align-items: start;
}
.hero-top {
  grid-column: 1;
  grid-row: 1;
}
.hero-bottom {
  grid-column: 1;
  grid-row: 2;
  padding-top: 32px;
}
.hero-img-col {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--emerald);
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.2s both;
}
.hero-h1 em {
  font-style: italic;
  color: var(--emerald);
}
.hero-h1 .line-thin {
  font-size: 0.55em;
  font-weight: 300;
  font-style: normal;
  display: block;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-top: 8px;
  font-family: var(--ff-body);
}
.hero-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.4s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeInUp 0.8s 0.5s both;
}
.hero-stat {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num sup {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--emerald);
  vertical-align: super;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Right side image */
.hero-img-col {
  position: relative;
  animation: fadeInRight 1s 0.3s both;
}
.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,13,15,0.3) 0%, transparent 50%);
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--bg-2);
  border: 1px solid var(--border-em);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--emerald-bg);
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-badge-num {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--emerald);
  font-weight: 500;
  line-height: 1;
}
.hero-badge-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hero-floating-tag {
  position: absolute;
  top: 28px;
  right: -16px;
  background: var(--emerald);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

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

/* ══════════════════════════════════════════
   LOGOS STRIP
══════════════════════════════════════════ */
.logos-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.logos-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.logos-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logos-list span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--trans);
}
.logos-list span:hover { color: var(--text-dim); }

/* ══════════════════════════════════════════
   HOW IT WORKS / PROCESS
══════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  transition: background var(--trans);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-2); }
.process-num {
  font-family: var(--ff-display);
  font-size: 56px;
  color: rgba(22,163,74,0.35);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.process-icon { margin-bottom: 16px; color: var(--emerald); }
.process-icon .material-icons { font-size: 28px; }
.process-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.process-text { font-size: 15px; color: var(--text-dim); line-height: 1.7; }

/* ══════════════════════════════════════════
   SHOWCASE BAND (full width image section)
══════════════════════════════════════════ */
.showcase-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.showcase-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-2) 100%);
}
.showcase-accent {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22,163,74,0.04));
  pointer-events: none;
}
.showcase-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.showcase-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.showcase-title em { font-style: italic; color: var(--emerald); }
.showcase-stats {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}
.showcase-stat { text-align: center; }
.showcase-stat-num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--emerald);
  line-height: 1;
}
.showcase-stat-num span { font-size: 22px; opacity: 0.6; }
.showcase-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--bg-card); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.testimonial-card {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--trans);
}
.testimonial-card:hover { background: var(--bg-3); }
.testimonial-quote {
  font-size: 28px;
  color: var(--emerald);
  opacity: 0.3;
  font-family: var(--ff-display);
  line-height: 1;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testimonial-author { margin-top: auto; }
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--emerald);
  letter-spacing: 0.04em;
}
.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  transition: color var(--trans);
}
.testimonial-linkedin:hover { color: var(--emerald); }

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section { background: var(--bg-2); }
.newsletter-box {
  border: 1px solid var(--border);
  border-top: 2px solid var(--emerald);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.newsletter-left {
  padding: 64px;
  border-right: 1px solid var(--border);
}
.newsletter-right {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-2);
  border: none;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--emerald);
  color: #000;
  border: none;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--trans);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--emerald-d); }
.newsletter-note { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-list {
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--trans), color var(--trans);
  user-select: none;
  background: var(--bg-card);
}
.faq-question:hover { background: var(--bg-2); }
.faq-item.open .faq-question { color: var(--emerald); background: var(--bg-2); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--emerald);
  transition: transform var(--trans);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 36px 28px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  background: var(--bg-2);
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 96px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--emerald); }
.page-hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   PROGRAMS PAGE
══════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--trans), transform var(--trans);
  position: relative;
}
.program-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.program-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,168,67,0.04) 100%);
}
.program-card.featured-platinum {
  border-color: var(--platinum);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(167,139,250,0.04) 100%);
}
.program-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 24px;
}
.badge-silver { background: rgba(255,255,255,0.08); color: var(--text-dim); }
.badge-gold   { background: var(--gold-bg); color: var(--gold); border: 1px solid rgba(212,168,67,0.2); }
.badge-platinum { background: var(--platinum-bg); color: var(--platinum); border: 1px solid rgba(167,139,250,0.2); }

.program-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.program-tagline {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}
.program-price {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.program-price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.program-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.program-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}
.feature-check {
  width: 18px;
  height: 18px;
  background: var(--emerald-bg);
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--emerald);
  flex-shrink: 0;
}
.feature-check .material-icons { font-size: 12px;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   GUARANTEE STRIP
══════════════════════════════════════════ */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.guarantee-item {
  padding: 40px 36px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.guarantee-item:last-child { border-right: none; }
.guarantee-icon { font-size: 28px; flex-shrink: 0; color: var(--emerald); }
.guarantee-icon .material-icons { font-size: 28px; }
.guarantee-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.guarantee-text { font-size: 15px; color: var(--text-dim); line-height: 1.6; }

/* ══════════════════════════════════════════
   MENTORS PAGE
══════════════════════════════════════════ */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.mentor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color var(--trans), transform var(--trans);
}
.mentor-card:hover {
  border-color: rgba(22,163,74,0.2);
  transform: translateY(-3px);
}
.mentor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 2px solid var(--border-em);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--emerald);
  flex-shrink: 0;
  font-weight: 400;
  overflow: hidden;
}
.mentor-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-em);
}
.mentor-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 4px;
}
.mentor-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.mentor-bio {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mentor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--emerald);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: gap var(--trans);
}
.mentor-linkedin:hover { gap: 10px; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: border-color var(--trans), transform var(--trans);
}
.team-card:hover {
  border-color: rgba(22,163,74,0.2);
  transform: translateY(-3px);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--text-dim);
  margin: 0 auto 20px;
}
.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Stats block */
.stats-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-row {
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stat-row:last-child { border-bottom: none; }
.stat-row-num {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-row-num span { color: var(--emerald); }
.stat-row-lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   SUSTAINABILITY PAGE
══════════════════════════════════════════ */
.sustainability-hero {
  padding: 160px 0 96px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sustainability-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,222,128,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promise-card {
  padding: 48px 44px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.promise-card:nth-child(even) { border-right: none; }
.promise-card:nth-child(3),
.promise-card:nth-child(4) { border-bottom: none; }
.promise-card:hover { background: var(--bg-2); }
.promise-icon { font-size: 36px; margin-bottom: 20px; color: var(--emerald); }
.promise-icon .material-icons { font-size: 36px; }
.promise-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.promise-text { font-size: 16px; color: var(--text-dim); line-height: 1.75; }

.tree-counter {
  text-align: center;
  margin-top: 72px;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-em);
  border-radius: var(--radius-lg);
}
.tree-emoji { font-size: 56px; margin-bottom: 12px; color: var(--emerald); }
.tree-emoji .material-icons { font-size: 56px; }
.tree-number {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 12px;
}
.tree-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.video-card:hover {
  border-color: rgba(22,163,74,0.2);
  transform: translateY(-3px);
}
.video-thumb {
  height: 200px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.video-play {
  width: 52px;
  height: 52px;
  background: rgba(22,163,74,0.15);
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.video-card:hover .video-play {
  background: var(--emerald);
}
.video-card:hover .video-play svg path { fill: #fff; }
.video-thumb::before { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.28); }
.video-body { padding: 28px; }
.video-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}
.video-title {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.video-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* Video testimonials grid */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Testimonial video card variant */
.video-info { padding: 20px 22px; }
.video-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.video-role { font-size: 12px; color: var(--emerald); font-weight: 500; margin-bottom: 10px; }
.video-quote { font-size: 13px; color: var(--text-dim); line-height: 1.6; font-style: italic; }
.video-play .material-icons { line-height: 1; }

/* ══════════════════════════════════════════
   RESOURCES PAGE
══════════════════════════════════════════ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--trans), transform var(--trans);
}
.resource-card:hover {
  border-color: rgba(22,163,74,0.2);
  transform: translateY(-3px);
}
.resource-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  padding: 4px 10px;
  background: var(--emerald-bg);
  border: 1px solid var(--border-em);
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}
.resource-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}
.resource-text { font-size: 15px; color: var(--text-dim); line-height: 1.7; flex: 1; }
.resource-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.04em;
  transition: gap var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.resource-link:hover { gap: 12px; }

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--trans);
}
.filter-tab:hover { border-color: var(--text-muted); color: var(--text); }
.filter-tab.active { background: var(--emerald); color: #000; border-color: var(--emerald); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}
.contact-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--emerald); }
.contact-body {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-dim);
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--emerald-bg);
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--emerald);
}
.contact-detail-icon .material-icons { font-size: 20px; }
.contact-detail a { color: var(--text-dim); transition: color var(--trans); }
.contact-detail a:hover { color: var(--emerald); }

.next-steps {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.next-steps-label {
  padding: 16px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.next-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.next-step:last-child { border-bottom: none; }
.next-step-num {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--emerald);
  opacity: 0.5;
  min-width: 28px;
  font-weight: 400;
}
.next-step-text { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* Contact form */
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--emerald);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--trans);
  resize: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--emerald);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.form-checkbox input { margin-top: 3px; accent-color: var(--emerald); }
.form-checkbox label { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(74,222,128,0.08);
  border: 1px solid var(--border-em);
  border-radius: var(--radius);
  color: var(--emerald);
  font-size: 15px;
  margin-top: 16px;
}

/* Founder section */
.founder-section {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--border-em);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 48px;
  color: var(--emerald);
  flex-shrink: 0;
}
.founder-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}
.founder-quote {
  font-family: var(--ff-display);
  font-size: 26px;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 24px;
}
.founder-text {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-sig {
  font-family: var(--ff-display);
  font-size: 32px;
  font-style: italic;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   FLOATING CHAT WIDGET
══════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  font-family: var(--ff-body);
}

/* FAB Button */
.chat-fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--emerald);
  color: #000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(74,222,128,0.4), 0 8px 40px rgba(0,0,0,0.3);
  transition: var(--trans);
  position: relative;
}
.chat-fab:hover {
  background: var(--emerald-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,222,128,0.5), 0 12px 48px rgba(0,0,0,0.4);
}
.chat-fab-icon { flex-shrink: 0; }
.chat-fab-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid var(--emerald-d);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.chat-fab.open { border-radius: 50%; padding: 16px; }
.chat-fab.open .chat-fab-label { display: none; }
.chat-fab.open .chat-open-icon { display: none !important; }
.chat-fab.open .chat-close-icon { display: block !important; }
.chat-fab.open .chat-fab-dot { display: none; }

/* Chat Panel */
.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,0,0,0.4);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 520px;
  animation: chatOpen 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
}
.chat-panel.visible {
  display: flex;
}
@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.9) translateY(10px); transform-origin: bottom right; }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-panel-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--emerald-bg), var(--bg-card));
  border: 1px solid var(--border-em);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-panel-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.chat-panel-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-online-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.chat-panel-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.chat-panel-close:hover { color: var(--text); background: var(--border); }

.chat-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-msg { display: flex; flex-direction: column; gap: 4px; }
.chat-msg-bot { align-items: flex-start; }
.chat-msg-user { align-items: flex-end; }
.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-msg-bot .chat-bubble {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble {
  background: var(--emerald);
  color: #000;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-bubble a { color: var(--emerald); text-decoration: underline; }
.chat-msg-user .chat-bubble a { color: #000; }
.chat-time {
  font-size: 11px;
  color: var(--text-muted);
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-panel-footer {
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-quick-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 14px 6px;
}
.chat-quick-btn {
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-family: var(--ff-body);
  font-size: 12px;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.chat-quick-btn:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-bg);
}
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 14px 14px;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans);
}
.chat-input:focus { border-color: var(--emerald); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send {
  width: 36px;
  height: 36px;
  background: var(--emerald);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  flex-shrink: 0;
  transition: var(--trans);
}
.chat-send:hover { background: var(--emerald-d); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--text);
}
.footer-logo span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-logo em {
  font-style: normal;
  color: var(--emerald);
  font-weight: 300;
}
.footer-tagline {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-eco {
  font-size: 14px;
  color: var(--emerald);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-bg);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 15px;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--emerald); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════════ */
.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.08) 0%, transparent 70%);
}

/* ══════════════════════════════════════════
   VIMEO FEATURE SECTION
══════════════════════════════════════════ */
.vimeo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vimeo-player-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
}
.vimeo-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vimeo-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vimeo-thumb:hover img { transform: scale(1.03); }
.vimeo-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.vimeo-thumb:hover .vimeo-play-btn {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}
.vimeo-play-btn svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .container-sm { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; grid-template-rows: auto; gap: 32px; }
  .hero-top, .hero-bottom, .hero-img-col { grid-column: 1; grid-row: auto; align-self: auto; padding-top: 0; }
  .hero-img-col { display: block; }
  .hero-img { height: 320px; }
  .hero-badge { left: 0; }
  .hero-floating-tag { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .mentors-grid { grid-template-columns: 1fr; }
  .guarantee-strip { grid-template-columns: 1fr; }
  .guarantee-item { border-right: none; border-bottom: 1px solid var(--border); }
  .guarantee-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-content { grid-template-columns: 1fr; gap: 40px; }
  .showcase-stats { justify-content: flex-start; }
  .newsletter-box { grid-template-columns: 1fr; }
  .newsletter-left { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .newsletter-right { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { border-right: none !important; }
  .video-cards { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-avatar { display: none; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 24px; }

  /* Right-side drawer — scrollbar stays visible on left */
  .nav-links.scrolled { padding: 88px 40px 48px; }
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    margin-left: 0;
    padding: 88px 40px 48px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 56px rgba(0,0,0,0.12);
    z-index: 1003;
    /* hidden off-screen */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.38s cubic-bezier(0.4,0,0.2,1),
      opacity   0.30s ease,
      visibility 0s linear 0.38s;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform 0.38s cubic-bezier(0.4,0,0.2,1),
      opacity   0.30s ease,
      visibility 0s linear 0s;
  }
  /* Backdrop behind drawer */
  .nav-links::before {
    content: '';
    position: fixed;
    inset: 0;
    right: min(300px, 85vw);
    background: rgba(26,22,18,0.32);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open::before { opacity: 1; }

  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; z-index: 1004; }
  .hero { padding: 120px 0 80px; }
  .hero-container { padding: 0 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:last-child { grid-column: 1/-1; }
  .section { padding: 80px 0; }
  .container, .container-sm { padding: 0 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .chat-widget { bottom: 20px; right: 20px; }
  .chat-panel { width: calc(100vw - 40px); right: 0; }
  .chat-fab-label { display: none; }
  .chat-fab { padding: 14px; border-radius: 50%; }
  .chat-fab.open { padding: 14px; }
  .programs-grid { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat:last-child { grid-column: auto; }
  /* Vimeo section: stack, video on top */
  .vimeo-section { grid-template-columns: 1fr; gap: 32px; }
  .vimeo-player-wrap { order: -1; }
  .video-testimonials-grid { grid-template-columns: 1fr; }
  .mentor-card { flex-direction: column; }
  .mentor-avatar { width: 80px; height: 80px; font-size: 32px; }
  .newsletter-left, .newsletter-right { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; border: none; gap: 8px; }
  .newsletter-form input { border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 16px; }
  .newsletter-form button { border-radius: var(--radius); padding: 13px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { grid-column: 1/-1; }
  .showcase-stats { flex-direction: column; gap: 24px; }
  .footer-nav { grid-template-columns: 1fr; }
}
