/* ═══════════════════════════════════════════════════════════
   CORE WELLNESS ACADEMY — core.css
   Shared styles for all pages
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:   #161412;
  --dark:    #1e1c18;
  --mid:     #6b6560;
  --muted:   #9a9490;
  --border:  #e2ddd8;
  --light:   #f0ebe4;
  --off:     #f7f4f0;
  --white:   #faf8f5;
  --accent:  #1c1a17;
  --gold:    #1c1a17;
  --green:   #22c55e;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1200px;
  --pad:   48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(250,248,245,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  text-decoration: none; color: var(--black);
  display: flex; flex-direction: column; line-height: 1;
}
.logo-mark {
  font-family: var(--font-body);
  font-size: 20px; font-weight: 700; letter-spacing: 4px;
}
.logo-sub {
  font-size: 7px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.5; margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--mid); text-decoration: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--black); border-color: var(--border); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  border-color: var(--black) !important;
}
.nav-cta:hover { opacity: 0.85 !important; }

.nav-back {
  display: none; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--mid);
  text-decoration: none; cursor: pointer;
  background: none; border: none; font-family: inherit;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--black); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--black);
  display: block; border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--black);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 16px 32px; border: 2px solid var(--white); border-radius: 4px;
  cursor: pointer; transition: all 0.25s ease;
  text-decoration: none; letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(250,248,245,0.15);
}
.btn-primary:hover {
  background: transparent; color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(250,248,245,0.2);
}
.btn-primary.full {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--black); color: var(--white);
  border-color: var(--black); box-shadow: none;
}
.btn-primary.full:hover {
  background: var(--dark); color: var(--white);
  border-color: var(--dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,20,18,0.2);
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(250,248,245,0.85);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 16px 32px;
  border: 1.5px solid rgba(250,248,245,0.4);
  border-radius: 4px; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-ghost:hover {
  background: rgba(250,248,245,0.1);
  border-color: rgba(250,248,245,0.8);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-ghost-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(250,248,245,0.6);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 0; border: none; cursor: pointer;
  transition: color 0.2s; text-decoration: none; letter-spacing: 0.2px;
}
.btn-ghost-sm:hover { color: rgba(250,248,245,0.95); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--muted);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 4px; cursor: pointer;
  transition: all 0.2s; text-decoration: none; width: 100%;
}
.btn-ghost-dark:hover { color: var(--black); border-color: var(--black); }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; background: #25d366; color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 28px; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none; width: 100%;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.9; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(250,248,245,0.45); }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.5px; color: var(--black);
  margin-bottom: 20px;
}
.section-h2 em { font-style: italic; font-weight: 300; }
.section-h2.light { color: var(--white); }

.section-intro {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  max-width: 560px;
}

/* ── LAYOUT ── */
.section-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
}

.section-header {
  padding: 80px 0 52px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 60px;
  align-items: start;
}
.section-header .eyebrow { grid-column: 1 / -1; }
.section-header.centered { text-align: center; display: block; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered .section-intro { margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}

.hero-grain {
  position: absolute; 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,248,245,0.04) 0%, transparent 70%);
  top: 10%; right: -100px;
  border-radius: 50%;
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad);
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(250,248,245,0.6);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: rgba(250,248,245,0.25); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -1px; color: var(--white);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 300;
  color: rgba(250,248,245,0.6); line-height: 1.8;
  max-width: 580px; margin-bottom: 44px;
}

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px;
}

.hero-locations {
  display: flex; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(250,248,245,0.1);
  padding-top: 28px;
}
.hero-locations span {
  font-size: 12px; font-weight: 500;
  color: rgba(250,248,245,0.75); letter-spacing: 0.3px;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(250,248,245,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.hero-scroll-hint span {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(250,248,245,0.3);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black);
  border-top: 1px solid rgba(250,248,245,0.08);
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center;
}
.trust-item {
  flex: 1; padding: 28px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--white);
  line-height: 1;
}
.trust-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(250,248,245,0.4);
}
.trust-div {
  width: 1px; height: 40px;
  background: rgba(250,248,245,0.1);
}

/* ── DISCIPLINES ── */
.disciplines-section {
  background: var(--white);
  padding-bottom: 80px;
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.disc-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.disc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22,20,18,0.12);
  border-color: var(--black);
}

.disc-card-inner {
  padding: 28px 22px 24px;
  display: flex; flex-direction: column; height: 100%;
}

.disc-live {
  background: var(--black);
  border-color: var(--black);
}
.disc-live .disc-num { color: rgba(250,248,245,0.25); }
.disc-live .disc-name { color: var(--white); }
.disc-live .disc-desc { color: rgba(250,248,245,0.5); }
.disc-live .disc-meta span { color: rgba(250,248,245,0.4); border-color: rgba(250,248,245,0.12); }
.disc-live .disc-cta { color: var(--white); }

.disc-num {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--muted); margin-bottom: 20px;
  text-transform: uppercase;
}

.disc-badge {
  display: inline-block; align-self: flex-start;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 14px;
}
.disc-badge.live { background: rgba(34,197,94,0.15); color: var(--green); }
.disc-badge.soon { background: var(--light); color: var(--muted); }

.disc-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--black); margin-bottom: 10px; line-height: 1.1;
}

.disc-desc {
  font-size: 12px; color: var(--mid); line-height: 1.7;
  flex: 1; margin-bottom: 20px;
}

.disc-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.disc-meta span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--muted); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
}

.disc-cta {
  font-size: 12px; font-weight: 600; color: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(250,248,245,0.1);
  padding-top: 14px; margin-top: auto;
  transition: gap 0.2s;
}
.disc-soon .disc-cta { border-color: var(--border); }
.disc-card:hover .disc-cta span { margin-left: 4px; }

/* ── REVIEWS ── */
.reviews-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding-bottom: 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22,20,18,0.08);
}

.review-stars {
  color: #f59e0b; font-size: 14px; letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px; color: var(--mid); line-height: 1.75;
  margin-bottom: 20px;
}

.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}

.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.review-name { font-size: 13px; font-weight: 600; color: var(--black); }
.review-date { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── CONTACT ── */
.contact-section {
  background: var(--black);
}

.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.contact-body {
  font-size: 15px; color: rgba(250,248,245,0.55);
  line-height: 1.75; margin-bottom: 32px;
}

.contact-links {
  display: flex; flex-direction: column; gap: 14px;
}

.contact-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(250,248,245,0.1);
}
.contact-link:hover { border-color: rgba(250,248,245,0.25); transform: translateX(4px); }
.contact-link.wa { color: #25d366; }
.contact-link.email { color: rgba(250,248,245,0.6); }

.contact-cta-box {
  background: rgba(250,248,245,0.05);
  border: 1px solid rgba(250,248,245,0.1);
  border-radius: 16px;
  padding: 40px;
}
.contact-cta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(250,248,245,0.5); margin-bottom: 12px;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400; color: var(--white);
  line-height: 1.3; margin-bottom: 28px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(250,248,245,0.06);
  padding: 56px var(--pad) 32px;
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,248,245,0.08);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex; flex-direction: column; line-height: 1;
  margin-bottom: 12px;
}
.footer-logo .logo-mark { font-size: 18px; color: var(--white); }
.footer-logo .logo-sub { color: rgba(250,248,245,0.35); }

.footer-tag {
  font-size: 13px; color: rgba(250,248,245,0.35); line-height: 1.65;
}
.footer-tag a { color: rgba(250,248,245,0.6); text-decoration: none; }

.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(250,248,245,0.3);
  margin-bottom: 16px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li.muted { color: rgba(250,248,245,0.25); font-size: 13px; }
footer ul a {
  font-size: 13px; color: rgba(250,248,245,0.5);
  text-decoration: none; transition: color 0.2s;
}
footer ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 11px; color: rgba(250,248,245,0.25); }
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(250,248,245,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-social a:hover { color: rgba(250,248,245,0.7); }

/* ══════════════════════════════════════════════
   OVERLAY / MODAL
   ══════════════════════════════════════════════ */
.overlay-bg {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(14,12,10,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.overlay-bg.open {
  opacity: 1; pointer-events: all;
}

.overlay-box {
  background: #1a1814;
  border: 1px solid rgba(250,248,245,0.1);
  border-radius: 16px;
  width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: overlayIn 0.3s ease;
}
@keyframes overlayIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.overlay-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(250,248,245,0.35); font-size: 18px;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.overlay-close:hover { color: var(--white); }

.overlay-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}

.overlay-title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
}

.overlay-sub {
  font-size: 14px; color: rgba(250,248,245,0.5);
  line-height: 1.7; margin-bottom: 28px;
}

/* FORM */
.form-field {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.form-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(250,248,245,0.45);
  margin-bottom: 8px;
}
.form-input, .form-select {
  background: rgba(250,248,245,0.06);
  border: 1.5px solid rgba(250,248,245,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(250,248,245,0.2); }
.form-input:focus, .form-select:focus { border-color: rgba(250,248,245,0.4); }
.form-select {
  cursor: pointer;
  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='rgba(250,248,245,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: #1a1814; color: var(--white); }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.form-note {
  font-size: 11px; color: rgba(250,248,245,0.3);
  text-align: center; margin-top: 12px; line-height: 1.6;
}

/* SUCCESS */
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
  margin: 0 auto 24px;
}

/* ══════════════════════════════════════════════
   LAGREE PAGE — HERO
   ══════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--black);
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 72px var(--pad) 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -1px; color: var(--white);
}
.page-h1 em { font-style: italic; color: rgba(250,248,245,0.4); }
.page-hero-right {}
.page-hero-summary {
  font-size: 15px; color: rgba(250,248,245,0.55);
  line-height: 1.8; margin-bottom: 28px;
}
.page-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.page-pill {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(250,248,245,0.5);
  border: 1px solid rgba(250,248,245,0.14); padding: 6px 14px;
  border-radius: 20px;
}

/* CERT SECTION */
.cert-section {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--border);
}
.cert-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; margin-top: 48px;
}
.cert-body {
  font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 16px;
}
.cert-reqs { list-style: none; border-top: 1px solid var(--border); }
.cert-req {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.req-num { font-size: 11px; font-weight: 800; color: var(--muted); width: 24px; flex-shrink: 0; padding-top: 1px; }
.req-title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.req-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* PRICING */
.pricing-section {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px; align-items: start;
}
.price-card {
  padding: 36px 28px; border: 1px solid var(--border);
  border-radius: 12px; display: flex; flex-direction: column;
  background: var(--white); transition: all 0.22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(22,20,18,0.1); }
.price-card.featured {
  background: var(--black); border-color: transparent;
  box-shadow: 0 4px 20px rgba(22,20,18,0.2); transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-badge-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--white); color: var(--black);
  padding: 4px 10px; display: inline-block; margin-bottom: 16px; border-radius: 2px;
}
.price-level { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.price-card.featured .price-level { color: rgba(250,248,245,0.35); }
.price-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.price-card.featured .price-name { color: var(--white); }
.price-desc { font-size: 12px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.price-card.featured .price-desc { color: rgba(250,248,245,0.45); }
.price-num { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--black); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-num { color: var(--white); }
.price-cur { font-size: 16px; vertical-align: super; margin-right: 3px; }
.price-note { font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.price-card.featured .price-note { color: rgba(250,248,245,0.35); }
.price-features { list-style: none; border-top: 1px solid var(--border); flex: 1; margin-bottom: 20px; }
.price-card.featured .price-features { border-color: rgba(250,248,245,0.1); }
.price-feat {
  font-size: 12px; color: var(--mid); padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.price-card.featured .price-feat { color: rgba(250,248,245,0.55); border-color: rgba(250,248,245,0.08); }
.price-feat::before { content: '—'; font-size: 10px; color: var(--border); flex-shrink: 0; }
.price-card.featured .price-feat::before { color: rgba(250,248,245,0.2); }
.price-cta-btn {
  display: block; width: 100%; padding: 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2px; text-align: left; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: transparent; color: var(--black); transition: all 0.2s;
  display: flex; align-items: center; justify-content: space-between;
}
.price-cta-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.price-card.featured .price-cta-btn { background: var(--white); color: var(--black); border-color: var(--white); }
.price-card.featured .price-cta-btn:hover { background: var(--light); }

/* SCHEDULE */
.schedule-section {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--pad) 100px;
}
.sched-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 48px;
}
.sched-desc { font-size: 14px; color: var(--mid); line-height: 1.75; }

.country-tabs-wrap {
  border: 1px solid var(--border); border-bottom: none; overflow-x: auto; scrollbar-width: none;
}
.country-tabs-wrap::-webkit-scrollbar { display: none; }
.country-tabs { display: flex; white-space: nowrap; }
.ctab {
  flex-shrink: 0; font-family: inherit;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--muted); background: var(--off);
  border: none; border-right: 1px solid var(--border);
  padding: 13px 20px; cursor: pointer; transition: all 0.15s;
  position: relative;
}
.ctab:last-child { border-right: none; }
.ctab:hover { color: var(--black); background: var(--light); }
.ctab.active { background: var(--white); color: var(--black); font-weight: 700; }
.ctab.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--black); }
.ctab-flag { font-size: 16px; margin-right: 4px; }

.country-panel { display: none; }
.country-panel.active { display: block; }

.sched-location-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; background: var(--off);
  border: 1px solid var(--border); border-bottom: none;
  font-size: 13px;
}
.sched-location-flag { font-size: 18px; }
.sched-location-name { font-weight: 700; color: var(--black); }
.sched-location-city { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-left: auto; }

.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.sched-card { background: var(--off); padding: 28px 24px; position: relative; }
.sched-card.open { background: var(--white); outline: 2px solid var(--black); outline-offset: -1px; z-index: 2; }
.sched-card.coming .sched-month,
.sched-card.coming .sched-dates { opacity: 0.3; }
.sched-card.sold .sched-month,
.sched-card.sold .sched-dates { opacity: 0.45; }

.sched-status { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 7px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sched-level { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; margin-bottom: 8px; border: 1px solid var(--border); color: var(--muted); background: var(--off); }
.sched-level.lvl1 { color: #1c1a17; border-color: #1c1a17; background: rgba(28,26,23,0.06); }
.sched-level.lvl2 { color: #1e2628; border-color: #9fb8a8; background: rgba(159,184,168,0.1); }
.sched-level.lvl3 { color: #201e24; border-color: #b8a8c8; background: rgba(184,168,200,0.1); }
.sched-month { font-size: 24px; font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 4px; }
.sched-dates { font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 16px; }
.sched-days { display: flex; gap: 4px; margin-bottom: 16px; }
.sched-day { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--mid); background: var(--light); padding: 3px 7px; }
.sched-card.open .sched-day { background: var(--black); color: var(--white); }
.sched-details { list-style: none; border-top: 1px solid var(--border); margin-bottom: 18px; }
.sched-detail { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sched-detail-label { font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.sched-detail-val { font-size: 12px; font-weight: 500; color: var(--black); }
.spots-taken { color: #f97316; font-weight: 700; }
.spots-bar { height: 3px; background: var(--border); border-radius: 2px; margin: 8px 0 12px; overflow: hidden; }
.spots-bar-fill { height: 100%; background: #f97316; border-radius: 2px; }
.waitlist-note { font-size: 10px; color: var(--muted); font-style: italic; margin-bottom: 10px; }

.sched-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; font-family: inherit; font-size: 13px; font-weight: 700; padding: 13px 18px; border-radius: 8px; border: 1.5px solid; cursor: pointer; transition: all 0.18s; }
.sched-btn-open { background: var(--black); border-color: var(--black); color: var(--white); }
.sched-btn-open:hover { opacity: 0.88; }
.sched-btn-waitlist { background: transparent; border-color: var(--border); color: var(--black); }
.sched-btn-waitlist:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.sched-btn-interest { background: transparent; border-color: var(--border); color: var(--mid); cursor: default; opacity: 0.6; }

/* ── PATHWAY INFOGRAPHIC ── */
.infographic { display: flex; flex-direction: column; }
.ig-step { display: flex; gap: 0; position: relative; }
.ig-left { display: flex; flex-direction: column; align-items: center; width: 48px; flex-shrink: 0; }
.ig-bubble { width: 40px; height: 40px; border-radius: 50%; background: var(--off); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; position: relative; z-index: 2; }
.ig-bubble-fill { background: var(--black); border-color: var(--black); color: var(--white); }
.ig-bubble-gold { background: #fef3c7; border-color: #d4a017; color: #92670a; }
.ig-line { width: 1.5px; flex: 1; min-height: 20px; background: var(--border); margin: 4px 0; }
.ig-step-last .ig-line { display: none; }
.ig-right { padding: 0 0 28px 18px; flex: 1; padding-top: 8px; }
.ig-step-num { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ig-step-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.ig-step-desc { font-size: 12px; color: var(--mid); line-height: 1.65; margin-bottom: 8px; }
.ig-chip { display: inline-flex; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); background: var(--off); border: 1px solid var(--border); padding: 3px 10px; }
.ig-chip-gold { background: #fef9e7; border-color: #d4a017; color: #92670a; }
.ig-step-highlight .ig-right { background: var(--off); border: 1px solid var(--border); padding: 16px 18px; margin-bottom: 28px; border-radius: 2px; }
.ig-day-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 10px 0 8px; }
.ig-day-card { background: var(--white); border: 1px solid var(--border); padding: 10px; text-align: center; }
.ig-day-card-dark { background: var(--black); border-color: var(--black); }
.ig-day-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ig-day-content { font-size: 11px; font-weight: 600; color: var(--black); line-height: 1.3; }

/* TRAINER */
.trainer-section { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trainer-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px var(--pad); display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.trainer-img-wrap { position: sticky; top: 88px; }
.trainer-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.trainer-img-fallback { width: 100%; aspect-ratio: 3/4; background: var(--black); display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 800; color: rgba(250,248,245,0.2); letter-spacing: 4px; font-family: var(--font-body); }
.trainer-full-name { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.trainer-credential { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.trainer-bio { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.trainer-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; background: var(--white); }

/* FLOW OVERLAY (booking) */
#flowOverlay { position: fixed; inset: 0; z-index: 2000; background: rgba(14,12,10,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px; }
#flowOverlay.open { opacity: 1; pointer-events: all; }
.flow-box { background: #1e1c18; border: 1px solid #2e2b24; border-radius: 16px; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; padding: 36px 40px; position: relative; }
.flow-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: rgba(250,248,245,0.3); font-size: 22px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.flow-close:hover { color: var(--white); }
.flow-context { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,248,245,0.4); margin-bottom: 6px; }
.flow-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 28px; line-height: 1.2; }
.flow-steps { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.flow-step { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(250,248,245,0.3); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.flow-step.active { color: var(--white); }
.flow-step.done { color: var(--green); }
.flow-step-dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #333; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #444; }
.flow-step.active .flow-step-dot { border-color: #fff; color: var(--white); }
.flow-step.done .flow-step-dot { border-color: var(--green); background: var(--green); color: #fff; }
.flow-step-line { flex: 1; height: 1px; background: #222; }
.level-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.level-card { border: 1.5px solid #2a2a2a; border-radius: 12px; padding: 18px 20px; cursor: pointer; transition: border-color .2s, background .2s; display: flex; align-items: center; gap: 16px; }
.level-card:hover { border-color: #555; background: #1a1a1a; }
.level-card.selected { border-color: #fff; background: #1a1a1a; }
.level-radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #444; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.level-card.selected .level-radio { border-color: #fff; background: #fff; }
.level-card.selected .level-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #111; }
.level-info { flex: 1; }
.level-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.level-meta { font-size: 12px; color: #666; }
.level-price { font-size: 16px; font-weight: 800; color: #fff; }
.level-badge { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; background: #fff; color: #111; padding: 3px 8px; border-radius: 20px; font-weight: 700; }
.pay-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pay-card { border: 1.5px solid #2a2a2a; border-radius: 12px; padding: 20px 22px; cursor: pointer; transition: border-color .2s, background .2s; }
.pay-card:hover { border-color: #555; }
.pay-card.selected { border-color: #fff; background: #1a1a1a; }
.pay-card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.pay-card-title { font-size: 15px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.pay-badge-discount { font-size: 10px; letter-spacing: .5px; text-transform: uppercase; background: var(--green); color: #fff; padding: 3px 8px; border-radius: 20px; font-weight: 700; }
.pay-badge-free { font-size: 10px; letter-spacing: .5px; text-transform: uppercase; background: #3b82f6; color: #fff; padding: 3px 8px; border-radius: 20px; font-weight: 700; }
.pay-badge-deposit { font-size: 10px; letter-spacing: .5px; text-transform: uppercase; background: #c8a882; color: #1c1a17; padding: 3px 8px; border-radius: 20px; font-weight: 700; }
.pay-price { font-size: 20px; font-weight: 800; color: #fff; }
.pay-price-orig { font-size: 13px; color: #555; text-decoration: line-through; margin-left: 6px; }
.pay-desc { font-size: 12px; color: #666; line-height: 1.5; }
.pay-radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #444; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.pay-card.selected .pay-radio { border-color: #fff; background: #fff; }
.pay-card.selected .pay-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #111; }
.pay-summary { background: #0a0a0a; border: 1px solid #222; border-radius: 10px; padding: 16px 18px; margin-bottom: 20px; font-size: 13px; color: #888; display: flex; flex-direction: column; gap: 6px; }
.pay-summary-row { display: flex; justify-content: space-between; }
.pay-summary-row.total { color: #fff; font-weight: 700; font-size: 15px; border-top: 1px solid #222; padding-top: 10px; margin-top: 4px; }
.flow-btn { width: 100%; padding: 16px; border-radius: 10px; border: none; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 700; letter-spacing: .5px; transition: opacity .2s; }
.flow-btn-primary { background: #fff; color: #111; }
.flow-btn-primary:hover { opacity: .9; }
.flow-btn-secondary { background: transparent; border: 1.5px solid #333; color: #888; margin-top: 10px; }
.flow-btn-secondary:hover { border-color: #666; color: #ccc; }
.w-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.w-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,248,245,0.45); margin-bottom: 8px; }
.w-hint { display: block; font-size: 11px; color: #444; line-height: 1.5; margin-top: 6px; }
.w-input, .w-select { display: block; width: 100%; background: #141210; border: 1.5px solid #2e2b25; border-radius: 10px; padding: 14px 16px; color: var(--white); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.18s; -webkit-appearance: none; appearance: none; }
.w-input::placeholder { color: #3d3830; }
.w-input:focus, .w-select:focus { border-color: #5a5550; }
.w-select { cursor: pointer; 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='%235a5550' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.w-select option { background: #1a1a1a; color: var(--white); }
.w-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flow-success { text-align: center; padding: 20px 0 10px; }
.flow-success-icon { font-size: 48px; margin-bottom: 16px; }
.flow-success-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.flow-success-sub { font-size: 14px; color: #888; line-height: 1.6; }

/* WAITLIST + INTEREST OVERLAYS */
#waitlistOverlay, #interestOverlay { position: fixed; inset: 0; z-index: 2100; background: rgba(14,12,10,0.97); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px; }
.waitlist-form { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .disc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 0; z-index: 199; }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0 !important; font-size: 14px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; border-radius: 6px !important; }
  .hamburger { display: flex; }

  .hero-inner { padding: 60px 20px; }
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; padding: 20px 0; }
  .trust-div { display: none; }

  .disc-grid { grid-template-columns: 1fr; gap: 12px; }

  .section-header { grid-template-columns: 1fr; gap: 0; }

  .reviews-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .cert-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .sched-grid { grid-template-columns: 1fr; }
  .sched-header { grid-template-columns: 1fr; }
  .trainer-inner { grid-template-columns: 1fr; gap: 40px; }
  .trainer-img-wrap { position: static; max-width: 260px; }

  .form-row { grid-template-columns: 1fr; }
  .overlay-box { padding: 28px 22px; }
  .flow-box { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .disc-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 0 0 100%; }
}

/* ── NAV DROPDOWN ── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-btn {
  font-family: inherit; font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; color: var(--mid);
  background: none; border: 1px solid transparent;
  border-radius: 4px; padding: 8px 16px; cursor: pointer;
  transition: all 0.2s;
}
.nav-dropdown-btn:hover { color: var(--black); border-color: var(--border); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(22,20,18,0.12);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 300;
}
.nav-dropdown.open { opacity: 1; pointer-events: all; transform: none; }
.nav-dropdown a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--black);
  text-decoration: none; transition: background 0.15s;
  border: none !important;
}
.nav-dropdown a:hover { background: var(--off); }
.nav-dd-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; background: rgba(34,197,94,0.12);
  color: #22c55e; padding: 2px 8px; border-radius: 20px;
}
