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

:root {
  --teal:       #3EA297;
  --teal-dark:  #499189;
  --mint:       #DAFBEB;
  --blush:      #FFF0EC;
  --black:      #1A1A1A;
  --white:      #FFFFFF;
  --text-muted: #5A5A5A;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'DM Sans', sans-serif;
  --nav-height: 72px;
  --top-bar-height: 60px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--top-bar-height));
}

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

/* ── GLOBAL LINK COLOR ───────────────────────────────── */
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }


/* ── TOP BADGE BAR ───────────────────────────────── */
.top-badge-bar {
  width: 100%;
  background: var(--mint);
  border-bottom: 1px solid rgba(62,162,151,.15);
  display: flex;
  justify-content: flex-start;
  padding: .6rem 5%;
}

.top-badge-bar .icf-badge-block {
  margin: 0;
  padding: .6rem 1rem;
  max-width: 900px;
  width: 100%;
  justify-content: flex-start;
}
/* ── NAVBAR ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(62,162,151,0.12);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(62,162,151,0.10); }

.logo {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .02em;
  text-decoration: none;
  line-height: 1.1;
}
.logo span {
  display: block;
  font-weight: 600;
  font-style: bold;
  font-size: .95rem;
  color: var(--black);
  letter-spacing: .1em;
}
.logo:hover { color: var(--teal-dark); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .45rem 1.3rem;
  border-radius: 50px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 300;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(62,162,151,.1);
  transition: color .2s, padding-left .2s;
  letter-spacing: .03em;
}
.mobile-link:hover { color: var(--teal); padding-left: .5rem; }
.mobile-cta {
  margin-top: 2rem;
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .9rem 1.5rem !important;
  border-radius: 50px;
  text-align: center;
  border-bottom: none !important;
  font-size: .95rem !important;
  letter-spacing: .05em;
}
.mobile-cta:hover { background: var(--teal-dark) !important; padding-left: 1.5rem !important; }

.mobile-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: .3rem;
  transition: color .2s;
}
.mobile-close:hover { color: var(--teal); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(73,145,137,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(73,145,137,.4);
  color: var(--white);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--teal-dark);
  color: var(--teal-dark);
  padding: .85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-height));
  min-height: 520px;
}

.hero-left {
  background: linear-gradient(135deg, var(--blush) 0%, var(--mint) 60%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6% 4rem 7%;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--teal-dark);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .7s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--teal-dark); }

.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp .7s .6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .8s forwards;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--teal);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(.9) saturate(1.1);
}
/*
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--teal) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
*/

/* ── TRUST BAR ───────────────────────────────────────── */
#trust {
  background: var(--black);
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  row-gap: .8rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── SECTION DEFAULTS ────────────────────────────────── */
.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: .9rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--teal-dark); }
.section-body {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

/* ── ABOUT ───────────────────────────────────────────── */
#about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}

.about-image-wrap { position: relative; }

.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px 60px 12px 60px;
  overflow: hidden;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blush);
  border: 1.5px solid rgba(62,162,151,.2);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.about-accent strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1;
}
.about-accent span { font-size: .75rem; color: var(--text-muted); letter-spacing: .05em; }

.icf-badge-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding: 1rem 1.2rem;
  background: var(--mint);
  border-radius: 12px;
  border: 1px solid rgba(62,162,151,.15);
}
.icf-badge-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}
.icf-badge-title {
  display: block;
  font-size: .88rem;
  color: var(--black);
  margin-bottom: .25rem;
}
.icf-badge-text {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FIT SECTION ─────────────────────────────────────── */
#fit {
  padding: 6rem 5%;
  background: var(--mint);
}
.fit-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.fit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(62,162,151,.1);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.fit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.fit-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(62,162,151,.15); }
.fit-card:hover::before { transform: scaleX(1); }
.fit-card-icon {
  width: 46px; height: 46px;
  background: var(--mint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.fit-card p { font-size: .92rem; line-height: 1.65; color: var(--black); }

.fit-closing { display: flex; justify-content: center; }
.fit-closing-inner {
  background: var(--teal-dark);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 760px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.fit-closing-question {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
}
.fit-closing-answer { font-size: .98rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.fit-closing-answer em { font-style: italic; color: var(--mint); }
.fit-closing-inner .btn-primary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.fit-closing-inner .btn-primary:hover {
  background: var(--mint);
  color: var(--teal-dark);
  box-shadow: 0 8px 26px rgba(0,0,0,.2);
}

/* ── SERVICES / OFFERS ───────────────────────────────── */
#services {
  padding: 6rem 5%;
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.offer-block { margin-bottom: 4rem; }
.offer-block:last-child { margin-bottom: 0; }
.offer-block-label { margin-bottom: 1.4rem; }
.offer-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(62,162,151,.2);
}
.offer-tag--group { background: var(--blush); color: #b05a40; border-color: rgba(176,90,64,.15); }
.offer-tag--custom { background: var(--black); color: rgba(255,255,255,.85); border-color: transparent; }
.offer-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: .4rem;
  line-height: 1.2;
}
.offer-subtitle {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  font-weight: 500;
}
.offer-desc { font-size: .94rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.2rem; }

.offer-one-on-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--blush);
  border-radius: 20px;
  padding: 2.8rem;
  border: 1px solid rgba(62,162,151,.1);
  align-items: start;
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--teal-dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.offer-popular-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.offer-popular-title em { font-style: italic; color: var(--teal-dark); }
.offer-popular-sub { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

.month-accordion { display: flex; flex-direction: column; gap: .8rem; }
.month-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(62,162,151,.12);
  overflow: hidden;
  transition: box-shadow .25s;
}
.month-item.active { box-shadow: 0 8px 30px rgba(62,162,151,.12); border-color: rgba(62,162,151,.25); }
.month-header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.month-header:hover { background: rgba(62,162,151,.04); }
.month-number {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}
.month-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--black); }
.month-theme { font-size: .78rem; color: var(--text-muted); font-style: italic; white-space: nowrap; }
.month-chevron { color: var(--teal); transition: transform .3s ease; flex-shrink: 0; }
.month-item.active .month-chevron { transform: rotate(180deg); }
.month-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 1.3rem;
}
.month-item.active .month-body { max-height: 200px; padding: 0 1.3rem 1.2rem; }
.month-body p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-top: 1px solid rgba(62,162,151,.1);
  padding-top: .9rem;
}

.group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.group-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid rgba(62,162,151,.12);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.group-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.group-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(62,162,151,.12); }
.group-card:hover::after { transform: scaleX(1); }
.group-card-header { margin-bottom: .4rem; }
.group-card-for-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: .4rem;
  margin-bottom: .6rem;
}
.group-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.group-list li {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
}
.group-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.group-card-outcome {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--black);
  font-style: italic;
  border-top: 1px solid rgba(62,162,151,.1);
  padding-top: 1rem;
  margin-top: auto;
}

.custom-card {
  background: var(--mint);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 0;
}
.custom-card-img-wrap {
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.custom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.88) saturate(1.05);
  transition: transform .4s ease;
}
.custom-card:hover .custom-card-img { transform: scale(1.03); }
.custom-card-text {
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.custom-card .offer-title { color: var(--teal); font-size: clamp(1.5rem, 2.8vw, 2rem); }
.custom-card .offer-desc { color: rgba(0,0,0,.85); margin-bottom: 0; font-size: 1.05rem; }
.custom-card-cta {
  flex-shrink: 0;
  background: var(--teal);
  box-shadow: 0 4px 18px rgba(62,162,151,.4);
  white-space: nowrap;
}
.custom-card-cta:hover { background: var(--teal-dark); color: var(--white); }

/* ── VIDEO ───────────────────────────────────────────── */
#video-section {
  padding: 6rem 5%;
  background: var(--black);
  text-align: center;
}
#video-section .section-eyebrow { color: var(--teal); }
#video-section .section-title { color: var(--white); }
.video-intro { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto 2.5rem; }

.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(62,162,151,.3);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  color: rgba(255,255,255,.35);
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(62,162,151,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.video-placeholder p { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }

/* ── PROCESS ─────────────────────────────────────────── */
#process {
  padding: 6rem 5%;
  background: var(--blush);
}
.process-header { max-width: 560px; margin-bottom: 3.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step { position: relative; }
.step-number {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(62,162,151,.18);
  line-height: 1;
  margin-bottom: .4rem;
}
.process-step h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--black);
}
.process-step p { font-size: .87rem; line-height: 1.7; color: var(--text-muted); }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: -1rem;
  width: 2rem; height: 1px;
  background: var(--teal);
  opacity: .3;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
#testimonials {
  padding: 6rem 5%;
  background: var(--white);
}
.testimonials-header { text-align: center; max-width: 520px; margin: 0 auto 3.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--mint);
  border-radius: 16px;
  padding: 1.8rem;
}
.quote-mark {
  font-family: var(--ff-display);
  font-size: 4.5rem;
  line-height: .6;
  color: var(--teal);
  opacity: .25;
  margin-bottom: .5rem;
}
.testimonial-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--black);
  font-style: italic;
  margin-bottom: 1.3rem;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .85rem; color: var(--black); }
.author-info span { font-size: .75rem; color: var(--text-muted); }

/* ── BOOKING ─────────────────────────────────────────── */
#booking {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
#booking::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
#booking .section-eyebrow { color: rgba(255,255,255,.7); }
#booking .section-title { color: var(--white); }
.booking-intro { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2.5rem; }

.scheduler-embed {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.scheduler-embed > p {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.scheduler-placeholder {
  width: 100%;
  min-height: 200px;
  border: 1.5px dashed rgba(255,255,255,.35);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.5);
}
.scheduler-placeholder svg { opacity: .5; }
.scheduler-placeholder span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.embed-note {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 1.4rem;
  font-style: italic;
}
.embed-note a { color: rgba(255,255,255,.75); text-decoration: underline; }
.embed-note a:hover { color: var(--white); }

/* ── CTA BANNER ──────────────────────────────────────── */
#cta-banner {
  padding: 5rem 5%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .03em;
}
.footer-links a:hover { color: var(--teal); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════ */

/* ── TABLET LANDSCAPE: 1024px ────────────────────────── */
@media (max-width: 1024px) {
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-one-on-one { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .process-step:nth-child(2)::after { display: none; }
  .process-step:not(:last-child)::after { display: block; }
  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after { display: none; }
}

/* Hide button on desktop, show iframe */
@media (min-width: 769px) {
  .mobile-booking-btn { display: none; }
}

/* ── TABLET PORTRAIT: 768px ──────────────────────────── */
@media (max-width: 768px) {
  .top-badge-bar {
    padding: .5rem 4%;
  }

  .top-badge-bar .icf-badge-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: .35rem;
  }

  .top-badge-bar .icf-badge-block > div {
    width: 100%;
  }

  .icf-badge-img {
    width: 80px;
    height: 80px;
  }

  :root { --nav-height: 64px; }

  /* Show hamburger, hide desktop nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero stacks vertically */
  #hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .hero-left {
    padding: 3.5rem 6%;
    order: 1;
  }
  .hero-right {
    order: 2;
    height: auto;
  }
  .hero-right img {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center center;
    background: var(--teal);
  }

  /* About stacks */
  #about {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 6%;
  }
  .about-accent { right: 1rem; bottom: -1rem; }

  /* Testimonials: 2 col */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  

  /* Process: 2 col */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-step::after { display: none !important; }

  /* Trust bar wraps cleanly */
  #trust { gap: 1.2rem; padding: 1.2rem 6%; }
  .trust-item { font-size: .72rem; }

  /* Group grid stacks */
  .group-grid { grid-template-columns: 1fr; }
  .fit-closing-inner { padding: 2.2rem 1.8rem; }
  .offer-one-on-one { padding: 2rem 1.6rem; }
  .month-header { grid-template-columns: auto 1fr auto; }
  .month-theme { display: none; }

  /* Custom card stacks on tablet */
  .custom-card { grid-template-columns: 1fr; }
  .custom-card-img-wrap { height: auto; min-height: unset; }
  .custom-card-img { height: auto; object-fit: contain; object-position: center center; background: var(--teal-dark); }
  .custom-card-text { padding: 2rem 2rem; }
  .custom-card-cta { width: 100%; text-align: center; }

  /* CTA banner stacks */
  #cta-banner { flex-direction: column; text-align: center; align-items: center; }

  /* Footer stacks */
  footer { flex-direction: column; align-items: center; text-align: center; gap: .8rem; }
}

@media (max-width: 768px) {
  .top-badge-bar {
    padding: .5rem 4%;
  }

  .top-badge-bar .icf-badge-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: .35rem;
  }

  .top-badge-bar .icf-badge-block > div {
    width: 100%;
  }

  .icf-badge-img {
    width: 80px;
    height: 80px;
  }

  .mobile-booking-btn { display: inline-block; }
  .scheduler-embed iframe { display: none; }
}

/* ── MOBILE: 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-height: 60px; }

  nav { padding: 0 4%; }

  .hero-left { padding: 3rem 5%; }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: .92rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; width: 100%; }
  .hero-right { height: auto; }

  #about { padding: 4rem 5%; gap: 3rem; }
  .about-img-box { border-radius: 12px 40px 12px 40px; }
  .about-accent { right: 0; bottom: -1rem; padding: .9rem 1.2rem; }
  .about-accent strong { font-size: 1.8rem; }

  #fit { padding: 4rem 5%; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-closing-inner { padding: 1.8rem 1.2rem; }

  #services { padding: 4rem 5%; }
  .offer-one-on-one { padding: 1.6rem 1.2rem; }
  .custom-card-img-wrap { height: auto; }
  .custom-card-text { padding: 1.6rem 1.6rem; }
  .custom-card-cta { width: 100%; }

  #video-section { padding: 4rem 5%; }

  #process { padding: 4rem 5%; }
  .process-steps { grid-template-columns: 1fr; gap: 1.8rem; }

  #testimonials { padding: 4rem 5%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }

  #booking { padding: 4rem 5%; }
  .scheduler-embed { padding: 1.8rem 1.4rem; }

  #cta-banner { padding: 4rem 5%; }
  #cta-banner .section-title { font-size: 1.8rem; }

  .footer-links { flex-direction: column; align-items: center; gap: .7rem; }

  .trust-item { font-size: .7rem; }
  #trust { gap: .9rem; }

  .icf-badge-block { flex-direction: column; text-align: center; align-items: center; }
}

/* ── SMALL MOBILE: 360px ─────────────────────────────── */
@media (max-width: 360px) {
  .hero-title { font-size: 2.1rem; }
  .btn-primary, .btn-secondary { padding: .75rem 1.5rem; font-size: .85rem; }
}

/* ── LIGHTBOX ───────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-modal {
  background: var(--white);
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  position: relative;
  transform: translateY(30px) scale(.98);
  opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.lightbox-overlay.open .lightbox-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lightbox-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: var(--black);
}
.lightbox-content p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color .2s;
}
.lightbox-close:hover {
  color: var(--teal);
}
.lightbox-cta {
  margin-top: 1rem;
  display: inline-block;
}

.lightbox-media-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.lightbox-cert,
.lightbox-video {
  width: 100%;
}

.lightbox-cert img,
.lightbox-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(62,162,151,.15);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: var(--black);
}
@media (max-width: 480px) {
  .lightbox-modal {
    padding: 2rem 1.4rem;
    border-radius: 16px;
  }
  .lightbox-title {
    font-size: 1.6rem;
  }
  .lightbox-content p {
    font-size: .9rem;
  }

  .lightbox-media-stack {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}


/* ── ABOUT CERTIFICATE IMAGE ───────────────────────── */
.about-cert {
  margin-top: 1.5rem;
  width: 100%;
}

.about-cert img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(62,162,151,.15);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

@media (min-width: 1024px) {
  .about-cert img {
    max-width: 520px;
  }
}


/* CTA BEFORE WORKPLACE SECTION */
.services-cta {
  text-align: left;
  margin: 2.5rem 0 3.5rem;
}
