/* ============================================================
   Total Association — Design System CSS
   Palette: Navy Deep / Navy / Teal / Teal Light
   Typography: Playfair Display (headings) + Inter (body)
   ============================================================ */

:root {
  --navy-deep: #0F2746;
  --navy:      #183B66;
  --teal:      #23B8B0;
  --teal-hover:#1a9d96;
  --teal-light:#DDF6F4;
  --bg-light:  #F8FAFC;
  --white:     #fff;
  --text:      #0F2746;
  --text-body: #0F2746;
  --text-muted:#556170;
  --border:    #dce8f0;
  --line:      #dce8f0;
  --slate:     #556170;
  --shadow:    rgba(15,39,70,.08);
  --shadow-sm: 0 2px 8px rgba(15,39,70,.07);
  --shadow-lg: 0 16px 40px rgba(15,39,70,.14);
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-deep);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; margin-bottom: 20px; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.875rem); font-weight: 700; margin-bottom: 20px; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 700; margin-bottom: 10px; }
h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; }
p  { color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul, ol { padding-left: 20px; }

/* ── Layout ── */
body .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 100px 0; }
.section-tight { padding: 48px 0; }
.section-dark  { background: var(--navy-deep); }
.section-teal  { background: var(--teal); }
.section-light { background: var(--bg-light); }
.section-tint  { background: var(--teal-light); }

/* ── Grid ── */
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.split      { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-wide { display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center; }
@media(max-width: 900px) {
  .g2, .g3, .g4, .split, .split-wide { grid-template-columns: 1fr; gap: 28px; }
}
@media(max-width: 680px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 420px) {
  .g4 { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-teal-out { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-teal-out:hover { background: var(--teal); color: #fff; }
.btn-dark { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.btn-dark:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.eyebrow-navy { color: var(--navy); }

/* ── Rule ── */
.rule { width: 48px; height: 3px; background: var(--teal); border-radius: 3px; margin: 0 0 24px; }
.rule-navy { background: var(--navy); }
.rule-center { margin-left: auto; margin-right: auto; }

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 22px;
  margin-bottom: 16px;
}

/* ── Check list ── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.5;
}
.chk {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.chk i { color: #fff; font-size: 10px; }

/* ── Hero ── */
.hero { padding: 90px 0 80px; background: #fff; }
.hero h1 { margin-bottom: 12px; }
.hero-sub { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; max-width: 52ch; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust i { color: var(--teal); }

/* ── Stats strip ── */
.stats-strip { background: var(--navy-deep); padding: 36px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--teal);
  display: block;
  font-family: 'Inter', sans-serif;
}
.stat-lbl {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  display: block;
  margin-top: 4px;
}
.stat-sub { font-size: .65rem; color: rgba(255,255,255,.45); display: block; }

.mission-strip { padding: 26px 0; }
.mission-line {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #fff;
}
@media(max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
  .stat-item { border-right: none; padding-bottom: 16px; }
}
@media(max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section header (centered intro) ── */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sec-head p { color: var(--text-muted); font-size: 1.125rem; line-height: 1.65; }

/* ── Feature grid item ── */
.feat { display: flex; flex-direction: column; gap: 6px; }
.feat .feat-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 10px;
}
.feat h4 { color: var(--navy); font-size: .95rem; }
.feat p  { font-size: .88rem; color: var(--text-muted); }

/* ── Media placeholder ── */
.media-ph {
  background: var(--teal-light);
  border: 2px dashed var(--teal);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
}
.media-ph .tag {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  background: rgba(35,184,176,.15);
  padding: 4px 12px;
  border-radius: 20px;
}
.media-ph .lbl { font-weight: 700; color: var(--navy); font-size: 1rem; text-align: center; }
.media-ph .sub { font-size: .82rem; color: var(--text-muted); text-align: center; margin-top: 4px; }
.lp {
  background: rgba(35,184,176,.1);
  border: 1px solid rgba(35,184,176,.25);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ── CTA band ── */
.cta-band {
  background: var(--bg-light);
  padding: 100px 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy-deep); }
.cta-band p { color: var(--text-muted); max-width: 56ch; margin: 0 auto 32px; }
.cta-band .eyebrow { color: var(--teal); }
.cta-band .btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.cta-band .btn-ghost:hover { background: var(--navy); color: #fff; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-fine { font-size: .78rem; color: var(--text-muted); margin-top: 16px; }

/* ── Trust strip ── */
.trust-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.trust-item i { color: var(--teal); font-size: 14px; }

/* ── FAQ accordion ── */
details { border-bottom: 1px solid var(--border); }
details summary {
  padding: 18px 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "＋"; font-size: 1.2rem; color: var(--teal); transition: transform .2s; }
details[open] summary::after { content: "－"; }
details .ans { padding: 0 0 18px; color: var(--text-muted); line-height: 1.7; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-body);
  background: #fff;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal); }
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Top Bar ── */
.site-topbar { background: var(--navy-deep); padding: 8px 0; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.site-topbar .topbar-inner { color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  white-space: nowrap;
}
.tb-item i { color: var(--teal); font-size: 12px; }
.tb-item a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .15s; }
.tb-item a:hover { color: #fff; }
.tb-group { display: flex; align-items: center; gap: 20px; }
.tb-divider { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.tb-social { display: flex; gap: 6px; }
.tb-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  display: grid;
  place-items: center;
  font-size: 11px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.tb-social a:hover { border-color: var(--teal); color: var(--teal); }
@media(max-width: 680px) { .site-topbar { padding: 6px 0; } .site-topbar .topbar-inner { font-size: .65rem; } }

/* ── Main Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15,39,70,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header > .container { max-width: 1400px; }
.site-header .bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header .brand { flex-shrink: 0; }
.site-header .brand img { height: 48px; width: auto; display: block; max-width: none; }
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.site-header .nav > li { position: relative; }
.site-header .nav > li > .top {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.site-header .nav > li > .top:hover,
.site-header .nav > li > .top.active {
  color: var(--teal);
  background: var(--teal-light);
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  opacity: .6;
  transition: transform .2s;
}
.site-header .nav > li:hover > .top .caret,
.site-header .nav > li:focus-within > .top .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(15,39,70,.12);
  padding: 14px 10px 10px;
  padding-top: 14px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s;
  min-width: 210px;
  z-index: 999;
}
/* Invisible bridge fills the gap so hover stays continuous */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.site-header .nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-header .nav > li:focus-within .dropdown { opacity:1; visibility:visible; pointer-events:auto; }
.dropdown.keyboard-open { opacity:1; visibility:visible; pointer-events:auto; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-size: .87rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.dropdown a:hover { background: var(--teal-light); color: var(--teal); }
.dropdown a i { width: 18px; text-align: center; color: var(--teal); font-size: 13px; flex-shrink: 0; }
.dropdown.wide {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4px;
  left: 0;
  transform: none;
}

/* ── Mega Menu ── */
.site-header .bar { position: relative; }
.site-header .nav > li.has-mega { position: static; }
/* Mega hover is JS-controlled — disable CSS :hover so the gap doesn't close it */
.site-header .nav > li.has-mega:hover .dropdown.mega { opacity: 0; visibility: hidden; pointer-events: none; }
.site-header .nav > li.has-mega.mega-open .dropdown.mega { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown.mega {
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 40px));
  padding: 0;
  top: 100%;
  border-radius: 0 0 16px 16px;
  border-top: 2px solid var(--teal);
  min-width: 0;
}
.mega-head {
  padding: 12px 22px 10px;
  border-bottom: 1px solid var(--line);
}
.mega-head strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 700;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px 22px 14px;
}
.mega-sep {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
  margin: 6px 0 14px;
}
.mega-col { padding: 0 16px; }
.mega-col:first-child,
.mega-col:nth-child(5) { padding-left: 0; }
.mega-col:nth-child(2),
.mega-col:nth-child(3),
.mega-col:nth-child(6),
.mega-col:last-child { border-left: 1px solid var(--line); }
.mega-col h5 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--teal-light);
  font-family: 'Inter', sans-serif;
}
.mega-col h5 i { font-size: 11px; opacity: .75; flex-shrink: 0; }
.mega-col h5 a {
  color: var(--teal) !important;
  font-size: .67rem !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  white-space: nowrap;
  flex: 1;
}
.mega-col h5 a:hover { color: var(--navy) !important; background: none !important; padding-left: 0 !important; }
.mega-col a {
  display: block;
  font-size: .8rem;
  color: var(--text-body);
  padding: 3px 0;
  border-radius: 0;
  font-weight: 500;
  white-space: normal;
  transition: color .15s, padding-left .12s;
}
.mega-col a:hover { background: none !important; color: var(--teal); padding-left: 5px; }
.mega-foot {
  background: var(--navy-deep);
  border-radius: 0 0 14px 14px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mega-foot > span { color: rgba(255,255,255,.55); font-size: .82rem; }
.mega-foot > a {
  color: var(--teal) !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  white-space: nowrap;
  display: inline !important;
  padding: 0 !important;
  background: none !important;
}
.mega-foot > a:hover { color: #fff !important; background: none !important; padding-left: 0 !important; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-login {
  padding: 9px 8px;
  border: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-login:hover { color: var(--navy); }
.btn-action {
  padding: 9px 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  white-space: nowrap;
}
.btn-action:hover { text-decoration: underline; }
.btn-book {
  padding: 9px 15px;
  border-radius: 30px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s;
  border: 2px solid var(--teal);
  white-space: nowrap;
}
.btn-book:hover { background: var(--teal-hover); border-color: var(--teal-hover); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
@media(max-width: 1380px) {
  .site-header .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1200;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid var(--teal);
  padding: 14px 0 24px;
  box-shadow: 0 8px 24px rgba(15,39,70,.18);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav details { border-bottom: 1px solid var(--bg-light); }
.mobile-nav summary {
  padding: 14px 20px;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "▾"; font-size: .75rem; opacity: .5; }
.mobile-nav .sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav .sub a:hover { color: var(--teal); }
.mobile-nav .sub a i { width: 18px; text-align: center; color: var(--teal); font-size: 13px; }
.mobile-nav .m-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--bg-light);
}
.mobile-nav .m-link:hover { color: var(--teal); }
.mobile-nav .m-cta { padding: 16px 20px 0; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav .m-cta a {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
}
.mobile-nav .m-cta .btn-book { background: var(--teal); color: #fff; border: 2px solid var(--teal); }
.mobile-nav .m-cta .btn-action { background: #fff; color: var(--teal); border: 2px solid var(--teal); }
.mobile-nav .m-cta .btn-login { background: transparent; color: var(--text-muted); border: 0; }
.mobile-nav .sub .m-sub-label {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 10px 20px 4px;
}

/* ── Footer ── */
.site-footer { background: var(--navy-deep); padding: 64px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}
.foot-brand img { max-width: 140px; height: auto; display: block; }
.foot-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.6;
  margin: 16px 0 20px;
  max-width: 30ch;
}
.cta-row { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-grid h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.foot-grid a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .15s;
}
.foot-grid a:hover { color: var(--teal); }
.foot-grid p { color: rgba(255,255,255,.5); font-size: .82rem; margin-top: 12px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-bottom span { font-size: .78rem; color: rgba(255,255,255,.35); }
.foot-bottom a { color: rgba(255,255,255,.35); font-size: .78rem; text-decoration: none; transition: color .15s; }
.foot-bottom a:hover { color: #fff; }
@media(max-width: 1150px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } }
@media(max-width: 680px)  { .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media(max-width: 400px)  { .foot-grid { grid-template-columns: 1fr; } }

/* ── Hero inner (page banners) ── */
.hero-inner {
  background: linear-gradient(135deg, #0a1d3a, #0F2746);
  padding: 80px 0;
  text-align: center;
}
.hero-inner h1 { color: #fff; }
.hero-inner .eyebrow { color: var(--teal); }
.hero-inner p { color: rgba(255,255,255,.78); max-width: 56ch; margin: 0 auto; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--teal); }

/* ── Free month band ── */
.fm-band { background: var(--teal); padding: 40px 0; text-align: center; }
.fm-band h3 { color: #fff; font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.fm-band p { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.fm-band .btn-dark { background: var(--navy-deep); border-color: var(--navy-deep); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Benefit icon list ── */
.benefit-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 14px; }
.benefit-list .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 17px;
  flex-shrink: 0;
}
.benefit-list strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.benefit-list span { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

/* ── Outcomes row ── */
.outcomes-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.outcome i { font-size: 22px; color: var(--teal); }
.outcome span { font-size: .78rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
@media(max-width: 680px) { .outcomes-row { grid-template-columns: repeat(2, 1fr); } }

/* ── Step process ── */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.step-body strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.step-body span { font-size: .88rem; color: var(--text-muted); }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--navy-deep);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
}
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.compare-table tr:nth-child(even) td { background: var(--bg-light); }
.compare-table .ta-col { color: var(--teal); font-weight: 700; }

/* ── Testimonial ── */
.testimonial {
  background: var(--teal-light);
  border: 1px solid rgba(35,184,176,.2);
  border-radius: 16px;
  padding: 28px;
}
.testimonial blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial cite { font-size: .85rem; font-weight: 700; color: var(--teal); }
.stars { color: #f6c90e; font-size: 14px; margin-bottom: 10px; }

/* ── Pull quote ── */
.pull-quote {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
  margin: 32px 0 0;
  font-style: italic;
  color: var(--teal);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--text-muted) !important; }
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-100 { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
