/* ============================================================
   Nimisha Lit — Main Stylesheet
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #1A2E22;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ----- COLOR TOKENS ----- */
:root {
  --green-deep:   #2A6B45;
  --green-mid:    #3A8F5E;
  --green-soft:   #6DBF8A;
  --green-pale:   #E8F5EE;
  --green-wash:   #F2FAF5;
  --text-dark:    #0E1E16;
  --text-body:    #2C3E35;
  --text-muted:   #6B8070;
  --white:        #FFFFFF;
  --border:       #D4EAD9;
  --nav-h:        72px;
  --red:          #D94F4F;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
#navbar.at-top {
  background: transparent;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: #2A6B45;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0px solid var(--border);
  box-shadow: 0 4px 32px rgba(42,107,69,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark { position: relative; width: 40px; height: 40px; }
.nav-logo-mark-bg {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(42,107,69,0.30);
}
.nav-logo-mark-bg svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo-pulse {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--green-soft); border-radius: 50%;
  border: 2px solid #fff;
  animation: nav-pulse 2.5s ease-in-out infinite;
}
@keyframes nav-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.nav-logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--green-deep);
}
.nav-logo-name span { color: var(--green-soft); }
.nav-logo-sub {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 2px;
}
#navbar.at-top .nav-logo-name { color: #fff; }
#navbar.at-top .nav-logo-name span { color: var(--green-soft); }
#navbar.at-top .nav-logo-sub { color: rgba(255,255,255,0.6); }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: 0.855rem; font-weight: 600;
  color: rgba(255,255,255,0.85); padding: 8px 15px; border-radius: 8px;
  transition: background 0.2s, color 0.2s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--green-soft); border-radius: 2px;
  transition: left 0.25s, right 0.25s;
}
.nav-links a:hover::after { left: 15px; right: 15px; }
.nav-links a:hover { color: #fff; }
#navbar.at-top .nav-links a { color: rgba(255,255,255,0.85); }
#navbar.at-top .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-cta {
  background: var(--green-mid) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  box-shadow: 0 4px 14px rgba(42,107,69,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--green-mid) !important; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,107,69,0.35) !important;
}
.nav-cta::after { display: none !important; }
#navbar.at-top .nav-cta { color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-deep); border-radius: 2px; transition: all 0.3s;
}
#navbar.at-top .hamburger span { background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
#home {
  min-height: 100vh;
  background: linear-gradient(160deg, #0E2A1A 0%, #1A4D2E 45%, #2A6B45 100%);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.hero-blob-1 { width: 500px; height: 500px; background: rgba(109,191,138,0.18); top: -100px; right: 80px; }
.hero-blob-2 { width: 360px; height: 360px; background: rgba(42,107,69,0.25); bottom: -80px; left: -60px; }
.hero-blob-3 { width: 240px; height: 240px; background: rgba(109,191,138,0.12); top: 40%; left: 38%; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  width:100%;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 0px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-soft);
  background: rgba(109,191,138,0.15);
  border: 1px solid rgba(109,191,138,0.30);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; background: var(--green-soft);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.035em; color: #fff; margin-bottom: 20px;
}
.hero-headline .hl-accent {
  background: linear-gradient(90deg, var(--green-soft) 0%, #a8e6c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 36px; max-width: 460px;
}
.hero-tagline strong { color: var(--green-soft); font-weight: 600; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--text-dark);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(109,191,138,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: #7dd4a0; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(109,191,138,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--green-soft); background: rgba(109,191,138,0.12); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.hero-stat { flex: 1; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 24px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-num { font-size: 1.7rem; font-weight: 800; color: var(--green-soft); letter-spacing: -0.03em; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- Hero Image (replaces mic animation) ---- */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: 360px; height: 420px;
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.hero-img-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(109,191,138,0.25);
  animation: ring-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-img-ring-1 {
  width: 310px; height: 310px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-delay: 0s;
}
.hero-img-ring-2 {
  width: 390px; height: 390px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-delay: 1s;
}
@keyframes ring-pulse {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%,-50%) scale(1.04); }
}
.hero-img-wrap {
  width: 350px; height: 477px;
  margin: 0 auto;
  border-radius: 90% 90% 50% 50% / 55% 55% 45% 45%;
  overflow: hidden;
  border: 3px solid rgba(109,191,138,0.40);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 6px rgba(109,191,138,0.10);
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #1A4D2E 0%, #0E2A1A 100%);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}

/* Floating badges on hero image */
.hero-img-badge {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  color: #fff;
}
.hero-img-badge-live {
  top: 28px; left: 25px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(42,107,69,0.85);
  border-color: var(--green-soft);
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5eff9e;
  box-shadow: 0 0 6px #5eff9e;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
.hero-img-badge-session {
  bottom: 60px; left: -18px;
  font-size: 0.75rem;
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 1.2s;
}
.hero-img-badge-price {
  top: 100px; right: -80px;
  font-size: 0.75rem;
  animation: badge-float 4s ease-in-out infinite;
  animation-delay: 2s;
}
.hero-img-badge strong { font-size: 1rem; font-weight: 800; display: block; line-height: 1.1; }
.hero-img-badge small { font-size: 0.65rem; color: rgba(255,255,255,0.6); }
.badge-icon { font-size: 1.2rem; flex-shrink: 0; }
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 100px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-deep); background: var(--green-pale);
  border: 1px solid var(--border); padding: 5px 13px;
  border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }
.section-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-soft));
  border-radius: 2px; margin-bottom: 16px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-desc { font-size: 1rem; color: var(--text-body); line-height: 1.82; margin: 18px 0 28px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.pill {
  font-size: 0.78rem; font-weight: 600; color: var(--green-deep);
  background: var(--green-pale); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px;
}
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-deep); color: #fff;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 13px 26px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(42,107,69,0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,107,69,0.30); }
.elig-strip { background: var(--green-pale); border: 1px solid var(--border); border-radius: 18px; padding: 22px 24px; margin-top: 36px; }
.elig-strip-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-deep); margin-bottom: 12px; }
.elig-items { display: flex; flex-wrap: wrap; gap: 14px; }
.elig-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: var(--text-body); }
.elig-dot { width: 7px; height: 7px; background: var(--green-soft); border-radius: 50%; flex-shrink: 0; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { background: var(--green-wash); border: 1px solid var(--border); border-radius: 18px; padding: 26px 22px; transition: transform 0.2s, box-shadow 0.2s; }
.about-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,107,69,0.10); }
.about-card-icon { font-size: 1.5rem; margin-bottom: 12px; }
.about-card-title { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.about-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.about-card.wide { grid-column: span 2; background: linear-gradient(135deg, var(--green-deep), #1e5235); border-color: transparent; }
.about-card.wide .about-card-title { color: #fff; font-size: 0.95rem; }
.about-card.wide .about-card-desc { color: rgba(255,255,255,0.70); }

/* ============================================================
   SERVICE SECTION
   ============================================================ */
#service { background: var(--green-wash); }
.service-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.price-badge { background: var(--green-deep); color: #fff; padding: 12px 26px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(42,107,69,0.20); }
.price-badge strong { font-size: 1.2rem; font-weight: 800; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 52px; }
.outcome-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 20px; text-align: center; transition: transform 0.22s, box-shadow 0.22s; }
.outcome-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(42,107,69,0.10); }
.outcome-icon { width: 54px; height: 54px; background: var(--green-pale); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin: 0 auto 16px; }
.outcome-title { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.outcome-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; }
.slots-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.slots-title::after { content:''; flex:1; height:1px; background:var(--border); }
.slots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.slot-group { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.slot-group-head { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--green-deep); padding-bottom: 14px; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.slot-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--green-wash); }
.slot-row:last-child { border-bottom: none; }
.slot-time { font-size: 0.855rem; font-weight: 600; color: var(--text-dark); }
.badge { font-size: 0.68rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; }
.badge.open { background: #D4F5E0; color: #1A7A46; }
.badge.booked { background: #F0F0F0; color: #9AA09A; }

/* ============================================================
   REGISTER SECTION
   ============================================================ */
#register { background: #fff; }
.register-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 68px; align-items: start; }
.reg-info-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; margin: 14px 0 26px; }
.info-tile { display: flex; align-items: flex-start; gap: 14px; background: var(--green-pale); border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 14px; }
.info-tile-icon { width: 40px; height: 40px; background: var(--green-deep); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-tile h4 { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.info-tile p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; }

/* Form card */
.form-card { background: var(--green-wash); border: 1px solid var(--border); border-radius: 24px; padding: 42px 38px; }
.form-card-title { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.form-card-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

/* Required star */
.req-star { color: var(--red); font-weight: 700; }

/* Error box (top of form) */
.form-errors {
  display: none;
  background: #fff5f5; border: 1.5px solid #f5c6c6;
  border-radius: 10px; padding: 12px 16px;
  margin-bottom: 18px; font-size: 0.8rem; color: #a83232;
  line-height: 1.7;
}
.form-errors.visible { display: block; }
.form-errors ul { padding-left: 18px; }

/* Inline field error */
.field-err {
  display: block; font-size: 0.72rem; color: var(--red);
  margin-top: 5px; min-height: 16px;
}

/* Input shake animation on error */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-5px); }
  40%,80% { transform: translateX(5px); }
}
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.10) !important;
  animation: shake 0.4s ease;
}

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
  pointer-events: none; tab-index: -1;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.fg.span2 { grid-column: span 2; }

label {
  display: block; font-size: 0.76rem; font-weight: 700;
  color: var(--text-body); margin-bottom: 7px; letter-spacing: 0.01em;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"] {
  width: 100%;
  font-family: 'Open Sans', sans-serif; font-size: 0.875rem;
  color: var(--text-dark); background: #fff;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(58,143,94,0.10);
}

/* Date input */
.date-input-wrap { position: relative; }
.date-input-icon {
  position: absolute; top: 50%; left: 14px;
  transform: translateY(-50%); display: flex;
  color: var(--green-deep); pointer-events: none;
}
.date-input-icon svg { width: 17px; height: 17px; }
#reg-date {
  width: 100%; font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600; color: var(--text-dark);
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px 11px 42px;
  outline: none; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
#reg-date:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(58,143,94,0.10); }
#reg-date::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.55;
  filter: invert(33%) sepia(28%) saturate(900%) hue-rotate(95deg) brightness(95%);
  margin-left: 8px;
}
#reg-date.has-date { border-color: var(--green-soft); background: var(--green-pale); }
.date-hint {
  font-size: 0.74rem; color: var(--text-muted);
  margin-top: 8px; display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.date-hint.confirmed { color: var(--green-deep); font-weight: 600; }

/* Dynamic time slots reveal */
.time-slot-field {
  max-height: 0; opacity: 0; overflow: hidden;
  margin-bottom: 0 !important;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease, margin 0.45s ease;
}
.time-slot-field.open { max-height: 600px; opacity: 1; margin-bottom: 16px !important; }
.slot-times-dynamic { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.slot-option {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 11px; padding: 12px 16px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative; animation: slot-in 0.4s ease backwards;
}
.slot-option:nth-child(1) { animation-delay: 0.05s; }
.slot-option:nth-child(2) { animation-delay: 0.12s; }
.slot-option:nth-child(3) { animation-delay: 0.19s; }
@keyframes slot-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.slot-option:hover { border-color: var(--green-soft); background: var(--green-pale); transform: translateX(3px); }
.slot-option.selected { border-color: var(--green-deep); background: var(--green-pale); }
.slot-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.slot-radio-dot { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.slot-option.selected .slot-radio-dot { border-color: var(--green-deep); background: var(--green-deep); }
.slot-radio-dot-inner { width: 6px; height: 6px; background: #fff; border-radius: 50%; opacity: 0; transition: opacity 0.2s; }
.slot-option.selected .slot-radio-dot-inner { opacity: 1; }
.slot-emoji { font-size: 1.1rem; flex-shrink: 0; }
.slot-info { flex: 1; }
.slot-info-time { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.slot-info-avail { font-size: 0.7rem; color: var(--green-mid); font-weight: 600; margin-top: 1px; }
.slot-check { width: 22px; height: 22px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.slot-option.selected .slot-check { opacity: 1; }
.slot-check svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; fill: none; }
.no-slots-msg { font-size: 0.8rem; color: var(--text-muted); background: var(--green-wash); border: 1px dashed var(--border); border-radius: 11px; padding: 14px 16px; text-align: center; }

/* Radio Yes/No */
/* ---- Prefer a Different Time box ---- */
.time-slot-field .prefer-time-box { margin-top: 14px; }

.prefer-time-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.prefer-time-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--green-pale);
}
.prefer-time-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.prefer-time-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 3px;
}
.prefer-time-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.prefer-time-fields {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prefer-field-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wash);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.prefer-field-row:focus-within {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(58,143,94,0.10);
  background: #fff;
}
.prefer-field-row-notes {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}
.prefer-field-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--green-deep);
}
.prefer-field-icon svg {
  width: 17px;
  height: 17px;
}
.prefer-field-row input[type="date"],
.prefer-field-row input[type="time"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  box-shadow: none;
  width: 100%;
}
.prefer-field-row input[type="date"]:focus,
.prefer-field-row input[type="time"]:focus {
  border: none;
  box-shadow: none;
}
.prefer-field-row textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 2px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  resize: none;
  line-height: 1.6;
  width: 100%;
}
.prefer-field-row textarea::placeholder,
.prefer-field-row input::placeholder {
  color: #b0b8b4;
  font-size: 0.84rem;
}

.radio-pair { display: flex; gap: 12px; }
.radio-card { flex: 1; position: relative; }
.radio-card input { position: absolute; opacity: 0; width:0; height:0; }
.radio-card label {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; margin-bottom: 0;
}
.radio-card input:checked + label { border-color: var(--green-mid); background: var(--green-pale); color: var(--green-deep); }

/* hCaptcha wrapper */
.h-captcha { margin-top: 4px; }

.submit-btn {
  width: 100%; margin-top: 10px; padding: 15px;
  background: var(--green-deep); color: #fff;
  font-family: 'Open Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(42,107,69,0.24);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.submit-btn:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,107,69,0.32); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.71rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials { background: var(--green-wash); overflow: hidden; }

.testimonials-header { margin-bottom: 48px; }

/* Carousel wrapper */
.testimonials-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

/* Track — slides sit side by side, track slides horizontally */
.tc-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Each slide takes full width of carousel */
.tc-slide {
  min-width: 100%;
  padding: 4px 2px 12px;
}

/* Card */
.tc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 44px 36px;
  box-shadow: 0 8px 40px rgba(42,107,69,0.08);
  position: relative;
  transition: box-shadow 0.3s;
}

/* Quote SVG icon */
.tc-quote-icon {
  color: var(--green-pale);
  margin-bottom: 20px;
  display: block;
}
.tc-quote-icon svg {
  width: 36px;
  height: 28px;
}

/* Testimonial text */
.tc-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 12px;
}
.tc-text-more { margin-bottom: 28px; }

/* Author row */
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.tc-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.tc-author-info { flex: 1; }
.tc-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.tc-author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.tc-stars {
  font-size: 1rem;
  color: #F5A623;
  letter-spacing: 2px;
}

/* Controls row */
.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

/* Prev / Next buttons */
.tc-btn {
  width: 44px; height: 44px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  flex-shrink: 0;
}
.tc-btn svg { width: 18px; height: 18px; stroke: var(--green-deep); }
.tc-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(42,107,69,0.22);
}
.tc-btn:hover svg { stroke: #fff; }
.tc-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

/* Dot indicators */
.tc-dots { display: flex; gap: 8px; align-items: center; }
.tc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.tc-dot.active {
  background: var(--green-deep);
  width: 26px;
  border-radius: 5px;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .tc-card { padding: 28px 22px 26px; }
  .tc-text { font-size: 0.89rem; }
}
@media (max-width: 480px) {
  .tc-card { padding: 24px 18px 22px; }
  .tc-stars { display: none; }
}

/* ============================================================
   FOOTER  — wave + dark body
   ============================================================ */
footer {
  background: #0A1A10;
  padding: 0; position: relative; overflow: hidden;
}

/* Wave: sits at very top of footer, white fill = register section bg */
.footer-wave {
  display: block;
  line-height: 0; margin: 0; padding: 0;
  background: #0A1A10;       /* behind the SVG = dark footer */
}
.footer-wave svg {
  display: block; width: 100%; height: auto;
  /* fill inside SVG is #ffffff = register section colour */
}

/* Thin gradient bar right under wave */
.footer-top-bar {
  background: linear-gradient(90deg, var(--green-deep), var(--green-mid), var(--green-soft));
  height: 3px;
}

.footer-body { padding: 60px 32px 0; position: relative; z-index: 1; }
.footer-body-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 30px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-bottom: 16px; }
.footer-brand-logo img { width: 180px; }
.footer-logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(42,107,69,0.40); }
.footer-logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.footer-logo-name { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.footer-logo-name span { color: var(--green-soft); }
.footer-logo-sub { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-top: 1px; }
.footer-brand-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.72; margin-bottom: 22px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.social-icon:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-3px); }
.social-icon svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); transition: fill 0.2s; }
.social-icon:hover svg { fill: #fff; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.footer-col h4::before { content: ''; display: block; width: 16px; height: 2px; background: var(--green-soft); border-radius: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { text-decoration: none; font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul a:hover { color: var(--green-soft); padding-left: 4px; }
.footer-newsletter p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 14px; }
.footer-newsletter-row { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; font-family: 'Open Sans', sans-serif; font-size: 0.8rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 14px; color: #fff; outline: none; transition: border-color 0.2s; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter input:focus { border-color: var(--green-soft); }
.footer-newsletter button { font-family: 'Open Sans', sans-serif; font-size: 0.78rem; font-weight: 700; background: var(--green-deep); color: #fff; border: none; border-radius: 8px; padding: 10px 16px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.footer-newsletter button:hover { background: var(--green-mid); }
.footer-bottom { padding: 22px 32px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.28); }
.footer-copy a { color: var(--green-soft); text-decoration: none; }
.footer-made { font-size: 0.77rem; color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 5px; }
.footer-made span { color: #e05a5a; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.from-left { transform: translateX(-32px) translateY(0); }
.reveal.from-right { transform: translateX(32px) translateY(0); }
.reveal.visible { opacity: 1; transform: translate(0,0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-img-frame { width: 300px; height: 360px; }
  .hero-img-wrap { width: 240px; height: 320px; }
}
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 76px 20px; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 20px 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; text-align: center; color: var(--text-body) !important; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 60px 20px; }
  .hero-tagline { margin: 0 auto 36px; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-frame { width: 260px; height: 320px; margin: 0 auto; }
  .hero-img-wrap { width: 210px; height: 280px; }
  .hero-img-badge-session { left: -10px; }
  .hero-img-badge-price { right: -10px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card.wide { grid-column: span 1; }
  .slots-grid { grid-template-columns: 1fr; }
  .register-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .fg.span2 { grid-column: span 1; }
  .form-card { padding: 28px 20px; }
  .service-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-body { padding: 48px 20px 0; }
  .footer-bottom { padding: 20px; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; }
  .radio-pair { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img-frame, .hero-img-ring, .hero-img-badge, .nav-logo-pulse { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


.nav-logo img {
    width: 175px;
}

/* ============================================================
   HERO MENTOR BADGE
   ============================================================ */
.hero-mentor-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(109,191,138,0.15);
  border: 1px solid rgba(109,191,138,0.35);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 28px;
  font-size: 0.875rem; color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hero-mentor-icon { font-size: 1.4rem; flex-shrink: 0; }
.hero-mentor-badge strong { color: var(--green-soft); }

/* ============================================================
   ABOUT – RIGHT COLUMN (stats + diff box)
   ============================================================ */
.about-right { display: flex; flex-direction: column; gap: 24px; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat-card {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,107,69,0.10); }
.stat-card-wide { grid-column: span 2; background: var(--green-deep); border-color: var(--green-deep); }
.stat-card-wide .stat-card-num,
.stat-card-wide .stat-card-label { color: rgba(255,255,255,0.9); }
.stat-card-num { font-size: 1.3rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.02em; margin-bottom: 4px; }
.stat-card-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.diff-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
}
.diff-title { font-size: 0.95rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.diff-list li { font-size: 0.875rem; color: var(--text-body); display: flex; align-items: center; gap: 8px; }

/* ============================================================
   COURSES SECTION
   ============================================================ */
#courses { background: var(--green-wash); }

.section-header-center { text-align: center; margin-bottom: 40px; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* Journey path */
.journey-path {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px;
  margin-bottom: 52px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.journey-step {
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.78rem; font-weight: 700;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid var(--border);
}
.journey-step-final {
  background: var(--green-deep);
  color: #fff; border-color: var(--green-deep);
}
.journey-arrow { color: var(--green-soft); font-size: 1.1rem; font-weight: 700; padding: 0 4px; }

/* Course cards grid */
.courses-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 40px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.course-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(42,107,69,0.12); }
.course-card-premium { border-color: #C89B3C; box-shadow: 0 4px 20px rgba(200,155,60,0.12); }

.course-card-header {
  padding: 28px 26px 22px;
  position: relative;
}
.course-header-1 { background: linear-gradient(135deg, #E8F5EE, #c8ecd6); }
.course-header-2 { background: linear-gradient(135deg, #e8f0f5, #c8dce8); }
.course-header-3 { background: linear-gradient(135deg, #fdf6e3, #f5e5b0); }

.course-step-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--green-deep); color: #fff;
  padding: 4px 11px; border-radius: 50px;
  margin-bottom: 12px;
}
.course-step-badge-gold { background: #C89B3C; }
.course-card-title { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.course-card-sub { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.course-card-tag { font-size: 0.72rem; color: var(--green-deep); font-weight: 600; background: rgba(255,255,255,0.7); display: inline-block; padding: 3px 10px; border-radius: 50px; }

.course-card-body { padding: 22px 26px 24px; flex: 1; display: flex; flex-direction: column; }

.course-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.ch {
  font-size: 0.71rem; font-weight: 600;
  color: var(--green-deep);
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 50px;
}

.course-learn-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.course-learn-list { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.course-learn-list li { font-size: 0.82rem; color: var(--text-body); padding-left: 14px; position: relative; }
.course-learn-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-soft); font-size: 0.75rem; }

.course-outcome { font-size: 0.8rem; color: var(--text-body); background: var(--green-pale); border-radius: 10px; padding: 10px 14px; margin-bottom: 10px; flex: 1; }
.course-outcome-label { font-weight: 700; color: var(--green-deep); }
.course-note { font-size: 0.72rem; color: var(--text-muted); font-style: italic; margin-bottom: 18px; line-height: 1.5; }

.course-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }
.course-price { font-size: 1.4rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.02em; }
.course-price span { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); }
.course-price-gold { color: #C89B3C; }

.course-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-deep); color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.course-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.course-btn-gold { background: #C89B3C; }
.course-btn-gold:hover { background: #b8891e; }

/* Bonus box */
.bonus-box {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 24px;
  color: #fff;
}
.bonus-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.bonus-sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.bonus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.bonus-item { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 14px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* Benefits strip */
.benefits-strip {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 32px;
}
.benefits-title { font-size: 0.95rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.benefit-item { font-size: 0.82rem; font-weight: 600; color: var(--text-body); }

/* ============================================================
   SCRIPT LIBRARY SECTION
   ============================================================ */
#script-library { background: #fff; }

.scripts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.script-category {
  background: var(--green-wash);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.script-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.script-cat-icon { font-size: 1.8rem; }
.script-cat-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.script-featured {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 18px;
}
.script-featured-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.script-meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.script-meta { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); background: var(--green-pale); border: 1px solid var(--border); padding: 4px 10px; border-radius: 50px; }
.script-diff-beginner { color: var(--green-deep); }
.script-diff-advanced { color: #C89B3C; background: #fdf6e3; border-color: #f0d880; }
.script-list-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.script-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.script-list li { font-size: 0.83rem; color: var(--text-body); }

.script-cta-box {
  background: var(--green-pale); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.script-cta-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.script-cta-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Course select field */
select {
  width: 100%;
  font-family: 'Open Sans', sans-serif; font-size: 0.875rem;
  color: var(--text-dark); background: #fff;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 36px 11px 14px; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(58,143,94,0.10); }

/* ============================================================
   RESPONSIVE – new sections
   ============================================================ */
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .scripts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-right { gap: 18px; }
  .journey-path { flex-direction: column; align-items: center; }
  .journey-arrow { transform: none; }
  .script-cta-box { flex-direction: column; text-align: center; }
  .bonus-box { padding: 24px 20px; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card-wide { grid-column: span 1; }
  .bonus-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .course-card-body { padding: 18px 18px 20px; }
}
