/* ============================================================
   BNS — Beyond Normal Scores
   Styles — Updated for tabs, founder cards, credentials
============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #1a2e4a;
  --navy-light: #243d5e;
  --gold:       #C8A96E;
  --gold-light: #e8c98e;
  --sky:        #4A90D9;
  --sky-light:  #7ab4f0;
  --ivory:      #F8F5EE;
  --cream:      #EDE8DD;
  --white:      #ffffff;
  --text-dark:  #0f1f38;
  --text-mid:   #3a4d6b;
  --text-light: #7a8fa6;
  --border:     #ddd8cc;
  --success:    #2d6a4f;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }

/* ─── Typography ─────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(200,169,110,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10,22,40,0.2);
}
.btn-ghost:hover { background: rgba(10,22,40,0.05); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ============================================================
   TAB SYSTEM (shared across About, Services, Credentials)
============================================================ */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 5px;
  margin-bottom: 2.5rem;
  width: fit-content;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--navy); background: rgba(10,22,40,0.05); }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Tab panels — hidden by default, shown when active */
.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(248,245,238,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(10,22,40,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-light) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.12; }
.shape-1 { width: 600px; height: 600px; background: var(--sky); top: -150px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--gold); bottom: 100px; left: -80px; }
.shape-3 { width: 300px; height: 300px; background: var(--navy); top: 40%; right: 30%; }

.hero-content { flex: 1; max-width: 580px; animation: fadeSlideUp 0.9s ease both; }
.hero-badge {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Credential pills replace fake hero stats */
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-cred-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

/* Hero Visual */
.hero-visual { flex: 0 0 380px; position: relative; height: 420px; animation: fadeSlideUp 1.1s 0.2s ease both; }
.score-card {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 50px;
  text-align: center;
  border: 1px solid var(--border);
}
.score-badge { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.score-word {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.score-label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; margin-bottom: 0.75rem; }
.score-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

.floating-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.chip-1 { top: 0; left: -20px; animation-delay: 0s; }
.chip-2 { top: 30px; right: -30px; animation-delay: 0.8s; }
.chip-3 { bottom: 100px; left: -40px; animation-delay: 1.4s; }
.chip-4 { bottom: 60px; right: -10px; animation-delay: 0.4s; }

/* ============================================================
   BENEFITS STRIP
============================================================ */
.benefits-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); }
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.benefit:last-child { border-right: none; }
.benefit:hover { background: var(--navy-mid); }
.benefit-icon { font-size: 1.8rem; flex-shrink: 0; }
.benefit strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.benefit p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ============================================================
   ABOUT SECTION — Founders + Story tabs
============================================================ */
.about { background: var(--ivory); }

/* Founders grid — 1 column, stacked vertically (full-width cards) */
.founders-grid { display: flex; flex-direction: column; gap: 28px; }

.founder-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}
.founder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Photo placeholder */
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 2px dashed var(--border);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.photo-inner { text-align: center; color: var(--text-light); }
.photo-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.photo-inner p { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.2rem; }
.photo-inner small { font-size: 0.72rem; color: var(--text-light); }

/* When you add a real image, style it like this: */
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.founder-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.founder-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.founder-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-initials {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

/* Resume sections within founder card */
.founder-resume { display: flex; flex-direction: column; gap: 1.25rem; }
.resume-section {}
.resume-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.resume-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.resume-tag {
  background: rgba(10,22,40,0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(10,22,40,0.1);
}
.resume-list { padding-left: 1rem; }
.resume-list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
  list-style: disc;
}
.resume-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* Our Story tab */
.story-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.story-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.story-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-text em { font-style: italic; color: var(--gold); }

.story-values { display: flex; flex-direction: column; gap: 16px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ============================================================
   SERVICES SECTION
============================================================ */
.services { background: var(--cream); }

.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-detail-left h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-detail-left p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.service-detail-right { display: flex; flex-direction: column; gap: 16px; }
.service-highlight {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
}
.sh-icon { font-size: 1.3rem; margin-bottom: 0.4rem; }
.service-highlight h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-highlight p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* Subjects section below service tabs */
.subjects-section { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.subjects-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.subjects-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.subject-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  cursor: default;
}
.subject-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CREDENTIALS SECTION
============================================================ */
.credentials { background: var(--ivory); }

.cred-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.cred-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.cred-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
/* When you have a real photo: */
.cred-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; }

.cred-name-block { text-align: center; }
.cred-name-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.cred-name-block p { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

/* Credential detail blocks */
.cred-details { display: flex; flex-direction: column; gap: 2rem; }
.cred-block {}
.cred-block h4 {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.cred-list { display: flex; flex-direction: column; gap: 6px; }
.cred-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.cred-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.cred-scores { display: flex; flex-direction: column; gap: 8px; }
.cred-score-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cred-subject { font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.cred-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,169,110,0.12);
  padding: 3px 10px;
  border-radius: 20px;
}
.cred-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--navy); padding: 100px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-perks { display: flex; flex-direction: column; gap: 0.75rem; }
.perk { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--navy); width: 15px; height: 15px; padding: 0; border: none; background: none; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: -0.5rem; }

.form-success { background: var(--white); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-mid); font-size: 0.95rem; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #060e1a; padding: 60px 0 32px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.footer-brand .nav-logo { margin-bottom: 0.5rem; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-align: center; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-visual { flex: 0 0 300px; }
  .founder-card { grid-template-columns: 180px 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .story-values { flex-direction: row; flex-wrap: wrap; }
  .value-card { flex: 1; min-width: 200px; }
  .service-detail { grid-template-columns: 1fr; }
  .cred-layout { grid-template-columns: 180px 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(248,245,238,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li a { font-size: 1.05rem; }

  /* Hero */
  .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; }
  .hero-actions { justify-content: center; }
  .hero-creds { justify-content: center; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 2.5rem; }

  /* Tabs */
  .tab-nav { width: 100%; justify-content: flex-start; overflow-x: auto; }

  /* Benefits */
  .benefits-strip { grid-template-columns: 1fr 1fr; }

  /* Founders */
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo-placeholder { width: 140px; height: 140px; }

  /* Credentials */
  .cred-layout { grid-template-columns: 1fr; }
  .cred-photo-wrap { flex-direction: row; align-items: center; gap: 1.5rem; }
  .cred-name-block { text-align: left; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 480px) {
  .benefits-strip { grid-template-columns: 1fr; }
  .tab-btn { font-size: 0.82rem; padding: 8px 16px; }
  .service-detail { padding: 24px; }
  .cred-layout { padding: 24px; }
  .float-cta { bottom: 16px; right: 16px; font-size: 0.82rem; padding: 12px 18px; }
  .cta-form-btn { font-size: 0.95rem; padding: 16px 24px; }
}

/* ============================================================
   MID-PAGE CTA BANNER
============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-banner-text h2 em { font-style: italic; color: var(--gold); }
.cta-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.cta-perks { display: flex; flex-direction: column; gap: 6px; }
.cta-perks li { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.cta-banner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.cta-form-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(200,169,110,0.4);
  transition: var(--transition);
  white-space: nowrap;
}
.cta-form-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,169,110,0.5);
}
.cta-arrow { font-size: 1.3rem; transition: transform var(--transition); }
.cta-form-btn:hover .cta-arrow { transform: translate(3px, -3px); }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; }

.cta-avatars { display: flex; align-items: center; margin-top: 0.25rem; }
.cta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  margin-right: -8px;
  flex-shrink: 0;
}
.cta-avatar-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-left: 20px; white-space: nowrap; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner-action { align-items: flex-start; }
}

/* ============================================================
   BOTTOM CTA STRIP
============================================================ */
.bottom-cta {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bottom-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.bottom-cta-inner p { font-size: 0.95rem; color: var(--text-mid); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

@media (max-width: 640px) {
  .bottom-cta-inner { flex-direction: column; align-items: flex-start; }
  .bottom-cta-inner .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FLOATING CTA BUBBLE
============================================================ */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 24px rgba(200,169,110,0.5);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.float-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 32px rgba(200,169,110,0.6);
  transform: translateY(-2px);
}

/* ============================================================
   ANNOUNCEMENT BANNER
============================================================ */
.announcement-banner {
  background: var(--navy);
  padding: 10px 24px;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}
.announcement-tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.announcement-cta {
  background: transparent;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(200,169,110,0.5);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.announcement-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Push navbar down by banner height */
.navbar { top: 40px; }

@media (max-width: 768px) {
  .announcement-inner { gap: 8px; }
  .announcement-inner p { font-size: 0.78rem; }
  .navbar { top: 52px; }
}
@media (max-width: 480px) {
  .announcement-cta { display: none; }
  .navbar { top: 60px; }
}

/* ============================================================
   HERO BOOTCAMP CALLOUT
============================================================ */
.hero-bootcamp-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 12px 18px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-md);
}
.hbc-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  flex-shrink: 0;
}
.hbc-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.hbc-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hbc-text a:hover { color: var(--navy); }

@media (max-width: 768px) {
  .hero-bootcamp-callout { justify-content: center; text-align: center; }
}

/* ============================================================
   TAB FREE BADGE (inside tab button)
============================================================ */
.tab-free-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1.6;
}
.tab-btn.active .tab-free-badge {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   BOOTCAMP FREE BANNER (inside Services tab panel)
============================================================ */
.bootcamp-free-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(200,169,110,0.25);
}
.bcfb-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  flex-shrink: 0;
}
.bootcamp-free-banner > div {
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  min-width: 200px;
}
.bootcamp-free-banner > div strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.bcfb-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.bcfb-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Free tag inside service h3 */
.service-free-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-left: 10px;
  vertical-align: middle;
  line-height: 1.8;
}

/* ============================================================
   FREE BOOTCAMP PROMO SECTION
============================================================ */
.bootcamp-promo {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.bootcamp-promo::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.bp-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: center;
}

.bp-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.bp-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.bp-title em { font-style: italic; color: var(--gold); }
.bp-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
}

.bp-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2rem; }
.bp-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bp-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.bp-detail-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.bp-detail-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

.bp-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.bp-cta-btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(200,169,110,0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bp-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,169,110,0.5);
}

/* Promo aside card */
.bp-aside { display: flex; justify-content: center; }
.bp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  width: 100%;
  max-width: 280px;
}
.bp-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.bp-card-date {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.bp-card-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.bp-card-divider {
  height: 1px;
  background: rgba(200,169,110,0.2);
  margin-bottom: 1.25rem;
}
.bp-card-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.bp-card-subjects span {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.bp-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.bp-price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-weight: 500;
}
.bp-price-free {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .bp-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bp-aside { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .bootcamp-promo { padding: 72px 0; }
  .bootcamp-free-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .bp-card { padding: 24px 20px; }
}
