/* ============================================================
   Heal Stammering — Design System
   Breath, rhythm, and the arc from a stammered pattern to
   fluent speech. Paper & ink, steel-blue harbor, achievement gold.
   ============================================================ */
:root {
  /* --- Brand palette --- */
  --paper: #FAF8F4;
  /* Fixed light color for text/icons on surfaces that stay dark in BOTH themes
     (hero carousel, footer, cta-band, dark cards, trust-strip in dark mode, etc).
     Intentionally never redefined inside the dark-theme block below — unlike
     --paper (which flips to a near-black page-canvas color in dark mode). */
  --paper-fixed: #FAF8F4;
  --ink: #17202B;
  --ink-soft: #55606E;
  --harbor: #1F3B4D;
  --harbor-2: #142B3A;
  --gold: #BD8A2E;
  --gold-bright: #D9AF5C;
  --gold-deep: #8A6117;
  --gold-pale: #F2E8D2;
  --coral: #C85C42;
  --coral-pale: #F6E3DC;
  --line: #E4DFD3;

  /* --- Legacy aliases (kept so inline styles across pages still work) --- */
  --primary: var(--gold-deep);
  --primary-dark: var(--gold-deep);
  --primary-light: #E3C98D;
  --navy: var(--harbor);
  --navy-2: var(--harbor-2);
  --accent: var(--gold);
  --accent-dark: #9A7224;
  --bg: #ffffff;
  --bg-soft: #F1EDE2;

  --radius: 10px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(23, 32, 43, .06);
  --shadow-md: 0 12px 32px rgba(23, 32, 43, .12);
  --shadow-lg: 0 26px 60px rgba(23, 32, 43, .16);

  --font-head: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "IBM Plex Sans", "Hind", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth; color-scheme: light;
  /* Stop Android Chrome's automatic "font boosting" — it inflates text size inside narrow
     text blocks (like the hero slide captions, sitting in a fixed-width column over a photo)
     well past whatever size the CSS actually specifies, which is what was pushing the slider
     text off the right edge and down into the pause button on phones. */
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
}
html[data-theme="dark"] { color-scheme: dark; }
/* Offset in-page anchor targets (e.g. #faq) so the sticky header doesn't cover them. */
[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto keeps aspect-ratio-based sizing in effect everywhere: WordPress's
   the_post_thumbnail() prints width/height HTML attributes from the media file,
   which browsers treat as a definite height — with both dimensions then definite,
   CSS aspect-ratio rules become a no-op and images render at their raw native
   height instead of the intended crop. The static source's hand-written <img>
   tags never had these attributes, so this only bites WP-rendered images. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.22; letter-spacing: -.01em; }

.container { width: min(var(--container), 92%); margin-inline: auto; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; }
.topbar :focus-visible, .page-hero :focus-visible, .section-dark :focus-visible,
.cta-band :focus-visible, .footer :focus-visible, .trust-strip :focus-visible,
.lightbox :focus-visible, .followup :focus-visible { outline-color: var(--gold-bright); }

/* ---------- Utilities ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: linear-gradient(145deg, #24465C 0%, var(--harbor) 52%, var(--harbor-2) 100%); color: var(--paper-fixed); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-dark .eyebrow { color: var(--gold-bright); }
.section-dark .eyebrow::before { background: var(--gold-bright); }

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; font-weight: 600; }
.section-sub { color: var(--ink-soft); max-width: 640px; font-size: 1.05rem; }
.section-dark .section-sub { color: rgba(250, 248, 244, .78); }
.section-dark h2 { color: var(--paper-fixed); }

.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

.grad-text {
  color: var(--gold-deep);
  -webkit-text-fill-color: currentColor;
  background: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 27px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--harbor); color: var(--paper-fixed); box-shadow: 0 10px 22px rgba(31, 59, 77, .28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(31, 59, 77, .36); background: var(--harbor-2); }
.btn-accent { background: var(--gold); color: var(--ink); box-shadow: 0 10px 22px rgba(189, 138, 46, .3); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(189, 138, 46, .4); background: #CBA144; }
.btn-ghost { background: transparent; color: var(--paper-fixed); border-color: rgba(250, 248, 244, .55); }
.btn-ghost:hover { background: rgba(250, 248, 244, .12); border-color: var(--paper-fixed); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: rgba(189, 138, 46, .06); }
.btn-lg { padding: 16px 35px; font-size: 16px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--harbor); color: rgba(250, 248, 244, .8); font-size: 13.5px;
  padding: 9px 0; position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(250, 248, 244, .8); transition: color .2s; }
.topbar a:hover { color: var(--gold-bright); }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a svg { width: 17px; height: 17px; fill: rgba(250, 248, 244, .72); transition: fill .2s; }
.topbar-right a:hover svg { fill: var(--gold-bright); }

/* ---------- Announcement Bar ---------- */
.announce-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 88;
  display: flex; align-items: flex-start; gap: 10px;
  width: min(340px, calc(100vw - 40px));
  padding: 14px 32px 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--harbor) 0%, var(--harbor-2) 100%);
  color: var(--paper-fixed);
  box-shadow: 0 10px 30px rgba(12, 24, 34, .35), 0 0 0 1px rgba(217, 175, 92, .25);
  opacity: 0; transform: translateY(24px) scale(.92);
  animation: announce-in .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .8s forwards,
             announce-bob 4s ease-in-out 1.4s infinite;
}
.announce-float.hidden { display: none; }
@keyframes announce-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes announce-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.announce-icon {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 1px;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.announce-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.announce-text strong { color: var(--gold-bright); }
.announce-text a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.announce-text a:hover { color: var(--paper-fixed); }
.announce-close {
  position: absolute; top: 8px; right: 8px;
  background: rgba(250, 248, 244, .12);
  border: none;
  color: rgba(250, 248, 244, .7);
  cursor: pointer;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color .2s, background .2s;
}
.announce-close:hover {
  color: var(--paper-fixed);
  background: rgba(250, 248, 244, .22);
}
@media (max-width: 480px) {
  .announce-float { left: 14px; bottom: 14px; width: min(300px, calc(100vw - 28px)); padding: 12px 30px 12px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .announce-float { animation: announce-in .3s ease .3s forwards; }
  .announce-icon { animation: none; }
}

/* ---------- Header / Nav ---------- */
.header {
  /* z-index must beat .nav-backdrop (65): .header creates its own stacking context
     (position + z-index), so .nav-links/.burger's higher z-indexes only rank them
     against each other inside that context — against the backdrop, a body-level
     sibling, the whole header stacked as one unit at its own z-index. At 50 that
     lost to the backdrop's 65, so the backdrop rendered on top of the open mobile
     menu and silently absorbed every tap on a nav link (menu just closed, no nav). */
  position: sticky; top: 0; z-index: 75;
  background: rgba(250, 248, 244, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
/* A sticky, blurred header sitting right above the always-animating trust-strip
   marquee forces the GPU to recompute that blur against moving content every
   frame — desktop GPUs absorb it, but it's a common cause of visible stutter on
   phone-class GPUs (the animation looks like it's crawling, not gliding). Small
   screens and touch/coarse-pointer devices skip the blur and get a slightly more
   opaque flat header instead — visually similar, none of the per-frame blur cost. */
@media (max-width: 860px), (pointer: coarse) {
  .header {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(250, 248, 244, .97);
  }
  html[data-theme="dark"] .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--ink); flex: none; }
  .brand > span:last-child { white-space: nowrap; }
/* flex:none keeps this from shrinking as a flex item of .brand; the img's height
   is set directly in px (not 100%/grid-stretch) because a grid/flex item's default
   min-height:auto floors percentage sizing at the image's intrinsic height (260px,
   from its width/height attributes), which silently defeated height:100% here. */
.brand-logo { flex: none; }
.brand-logo img { height: 38px; width: auto; display: block; }
.brand small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-mono); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 18px; border-radius: 8px;
  font-weight: 600; font-size: 16.5px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover { color: var(--gold-deep); background: rgba(189, 138, 46, .12); }
.nav-links > li > a .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.nav-links > li:hover > a .chev, .nav-links > li:focus-within > a .chev { transform: rotate(225deg) translateY(-1px); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-links > li:hover .dropdown, .nav-links > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 12px 16px; border-radius: 6px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
}
.dropdown a:hover { background: var(--gold-pale); color: var(--gold-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 21px; font-size: 14.5px; }
.nav-cta a.nav-login-btn { border-radius: 999px; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(720px 420px at 92% 8%, rgba(217, 175, 92, .18), transparent 62%),
    radial-gradient(620px 400px at 2% 96%, rgba(200, 92, 66, .12), transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, #f5f1ea 100%);
  padding: 88px 0 104px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cpath stroke='%23BD8A2E' stroke-width='2' stroke-linecap='round' opacity='.4' d='M0 30C16 14 32 14 48 30S80 46 96 30S128 14 144 30S176 46 192 30'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 260px 78px;
  background-position: center bottom 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fdf8f0 100%); color: var(--gold-deep);
  border: 2px solid var(--gold); border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; margin-bottom: 26px;
  box-shadow: 0 4px 18px rgba(189, 138, 46, .18);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); animation: pulse-dot 1.6s infinite; box-shadow: 0 0 0 3px var(--gold-pale); }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(189, 138, 46, .45);} 50% { box-shadow: 0 0 0 6px rgba(189, 138, 46, 0);} }
.hero h1 { font-size: clamp(2.15rem, 4.6vw, 3.25rem); margin-bottom: 20px; font-weight: 600; }
.hero p.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat { border-left: 1px solid var(--line); padding-left: 18px; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat h3 { font-family: var(--font-mono); font-size: 1.8rem; color: var(--gold-deep); }
.stat p { font-size: 13px; color: var(--ink-soft); }

.hero-media { position: relative; }
.hero-media .img-frame {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px;
}
.hero-media .img-frame img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: 6px; }
.hero-media .caption {
  margin-top: 12px; padding: 0 4px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft);
}

/* Floating hero badges (kept for compatibility; simplified usage) */
.hero-card {
  position: absolute; background: var(--bg); border-radius: 10px; box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 600;
}
.hero-card .icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--gold-pale); color: var(--gold-deep); flex: none; }
.hero-card small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 12px; }

/* ---------- Rating badge (trust signal) ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--gold-pale) 100%); border: 2px solid var(--gold); border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; color: var(--ink);
  box-shadow: 0 4px 18px rgba(189, 138, 46, .18); flex-wrap: wrap;
}
.rating-badge .stars { color: var(--gold-deep); letter-spacing: 2px; font-size: 16px; }
.rating-badge .stars-big { font-size: 18px; }
.page-hero .rating-badge { background: rgba(255, 255, 255, .08); border-color: rgba(217, 175, 92, .55); color: var(--paper-fixed); }
.page-hero .rating-badge .stars { color: var(--gold-bright); }

/* ---------- Marquee / trust strip ---------- */
.trust-strip { background: var(--gold); color: var(--ink); padding: 16px 0; overflow: hidden; }
.trust-strip .track { display: flex; gap: 46px; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; will-change: transform; }
.trust-strip span { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Breath Line (signature section) ---------- */
.breath-line { position: relative; }
.breath-line::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px 320px at 88% 12%, rgba(242, 232, 210, .85), transparent 65%),
              radial-gradient(520px 300px at 6% 92%, rgba(246, 227, 220, .6), transparent 65%);
}
.breath-line .container { position: relative; }

.breath-stage {
  max-width: 980px; margin-inline: auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 34px 30px 28px;
}
.bl-wave-wrap { position: relative; aspect-ratio: 1200 / 320; }
.bl-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.bl-baseline { stroke: var(--line); stroke-width: 2; }
.bl-jag path { stroke: var(--coral); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; transition: opacity 1.3s ease, transform 1.3s ease, stroke .8s ease; }
.bl-smooth path { stroke: var(--gold); stroke-width: 5; stroke-linecap: round; fill: none; }
.bl-smooth { opacity: .9; transform-origin: 50% 60%; animation: bl-breathe 4.2s ease-in-out infinite; transition: opacity .6s ease; }

.bl-point { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.bl-point i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 3px var(--coral-pale); }
.bl-point span {
  font-family: var(--font-mono); font-size: clamp(9px, 2.4vw, 11.5px);
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap; background: var(--bg); padding: 2px 6px; border-radius: 4px;
}
.bl-pt-1 { left: 12.5%; top: 4%; }
.bl-pt-2 { left: 19%; top: 22%; }
.bl-pt-3 { left: 29.5%; top: 6%; }
.bl-pt-4 { left: 40%; top: 20%; }

.bl-costal { margin-top: 38px; padding-top: 26px; border-top: 1px dashed var(--line); }
.bl-costal-title { font-family: var(--font-head); font-size: 1.3rem; margin: 6px 0 0; }

.bl-actions { display: flex; justify-content: center; margin-top: 26px; }
.btn-breathe { background: var(--gold); color: var(--ink); border-radius: 999px; padding: 13px 30px; font-weight: 600; font-size: 15.5px; cursor: pointer; border: 2px solid transparent; box-shadow: 0 10px 22px rgba(189, 138, 46, .32); transition: transform .2s, box-shadow .25s, background .25s; }
.btn-breathe:hover { transform: translateY(-2px); background: #CBA144; box-shadow: 0 16px 30px rgba(189, 138, 46, .4); }
.btn-breathe[aria-pressed="true"] { background: var(--harbor); color: var(--paper-fixed); box-shadow: 0 10px 22px rgba(31, 59, 77, .3); }

/* Breathe animation state */
.breath-stage.breathe .bl-jag path { opacity: 0; transform: translateX(-34px); }
.breath-stage.breathe .bl-smooth { opacity: 1; animation-duration: 4.2s; }

/* Guided 4-7-8 breathing coach: shown only while the exercise is running */
.breath-coach {
  display: none; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 30px; padding-top: 26px; border-top: 1px dashed var(--line);
}
.breath-stage.breathe .breath-coach { display: flex; animation: bl-coach-in .5s ease both; }
.breath-orb {
  width: 112px; height: 112px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--gold-deep, #b8862c));
  box-shadow: 0 0 0 10px rgba(189, 138, 46, .12), 0 10px 26px rgba(189, 138, 46, .3);
  display: flex; align-items: center; justify-content: center;
  transform: scale(.72); transition: transform 4s ease-in-out;
}
.breath-orb.phase-in { transform: scale(1.15); transition-duration: 2s; }
.breath-orb.phase-hold { transform: scale(1.15); transition-duration: .3s; }
.breath-orb.phase-out { transform: scale(.72); transition-duration: 6s; }
.breath-orb-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; line-height: 1.35;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  text-shadow: 0 1px 2px rgba(255, 255, 255, .5);
  text-align: center; max-width: 82px; overflow-wrap: break-word;
}
html[data-theme="dark"] .breath-orb-label { color: var(--ink); text-shadow: none; }
.breath-coach-note {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft);
  text-align: center; max-width: 340px; letter-spacing: .01em;
}
.breath-round-note {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; color: var(--gold-deep, var(--gold)); min-height: 16px;
}
@keyframes bl-coach-in {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bl-caption {
  margin-top: 22px; text-align: center;
  font-family: var(--font-head); font-style: italic; font-size: 1.02rem;
  color: var(--ink-soft);
}
.bl-caption strong { color: var(--ink); font-style: normal; font-family: var(--font-body); }

@keyframes bl-breathe {
  0%, 100% { transform: scaleY(1); opacity: .75; }
  50% { transform: scaleY(1.055); opacity: 1; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-pale); color: var(--gold-deep); margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 14.8px; }
.card.soft { background: transparent; border-color: rgba(250, 248, 244, .18); }
.section-dark .card.soft p { color: rgba(250, 248, 244, .78); }
.section-dark .card.soft .icon { background: rgba(217, 175, 92, .16); color: var(--gold-bright); }
.section-dark .card.soft h3 { color: var(--paper-fixed); }

/* Follow-up pillar cards: .card.soft is only ever used inside .followup, so this trims the
   section's height (was ~168px of section padding + 30px card padding, feeling oversized for
   3 short cards) without affecting any other card grid on the site. Trimmed further per request:
   tighter section padding, smaller icon/heading, and denser card padding/body copy. */
.followup { padding: 34px 0; }
.followup .grid-3 { margin-top: 20px !important; }
.followup .card.soft { padding: 16px 18px; }
.followup .card.soft .icon { width: 36px; height: 36px; margin-bottom: 8px; }
.followup .card.soft h3 { font-size: 1rem; margin-bottom: 6px; }
.followup .card.soft p { font-size: 13.6px; line-height: 1.45; }

/* On the 2-column tablet breakpoint (see .grid-3 override below) a 3-card grid leaves the last
   card alone in row 2, half-width and off-center — center it instead of letting it hang left. */
@media (max-width: 860px) {
  .followup .grid-3 > :last-child { grid-column: 1 / -1; max-width: 360px; margin-inline: auto; }
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ---------- "What changes for you" life cards ---------- */
.life-card .life-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  background: var(--gold-pale); border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.life-card ul { margin: 14px 0 0; }
.life-card li {
  display: flex; gap: 9px; align-items: flex-start;
  color: var(--ink-soft); font-size: 14.6px; margin-bottom: 9px;
}
.life-card li::before { content: "\2713"; color: var(--gold-deep); font-weight: 700; flex: none; }

/* ---------- Follow-up pillar band ---------- */
.followup .followup-promise {
  margin-top: 14px; text-align: center;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--paper-fixed);
}
.followup .followup-promise strong { color: var(--gold-bright); font-weight: 600; }

/* ---------- Course cards ---------- */
.course-card { position: relative; overflow: hidden; }
.course-card .tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--gold); color: var(--ink); font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.course-card .thumb { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; }
.course-card .thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s ease; }
.course-card:hover .thumb img { transform: scale(1.06); }
.course-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.course-card .meta { display: flex; gap: 16px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; flex-wrap: wrap; }
.course-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.course-card p { color: var(--ink-soft); font-size: 14.6px; margin-bottom: 18px; }
.course-card .foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 20px; right: 18px;
  font-family: var(--font-mono); font-weight: 600; font-size: 1rem;
  color: var(--gold-deep);
  background: var(--gold-pale); padding: 2px 9px; border-radius: 6px;
  letter-spacing: .05em;
}
.step .icon { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: var(--harbor); color: var(--gold-bright); }
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 13.8px; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.t-scroller { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scrollbar-width: none; }
.t-scroller::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(380px, 86%); scroll-snap-align: start;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.t-card .stars { color: var(--gold-deep); font-size: 15px; letter-spacing: 2px; }
.t-card p { color: var(--ink-soft); font-size: 14.6px; flex: 1; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--harbor), var(--harbor-2)); color: var(--gold-bright); font-weight: 700; flex: none; }
.t-card .who strong { display: block; font-size: 14.5px; }
.t-card .who small { color: var(--ink-soft); }

/* ---------- Google Reviews Style ---------- */
.google-rating-summary {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; max-width: 720px; margin-inline: auto; box-shadow: var(--shadow-sm);
}
.rating-main { display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: center; }
.rating-score { text-align: center; padding: 16px 0; }
.score-number { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--harbor); line-height: 1; }
.score-stars { color: var(--gold-deep); font-size: 1.4rem; letter-spacing: 3px; margin: 8px 0; }
.score-count { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.bar-label { width: 20px; text-align: right; color: var(--ink-soft); font-family: var(--font-mono); font-weight: 600; }
.bar-track { flex: 1; height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 4px; transition: width .8s ease; }
.bar-percent { width: 40px; text-align: right; color: var(--ink-soft); font-family: var(--font-mono); font-size: 12px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--harbor), var(--harbor-2));
  color: var(--gold-bright); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
}
.reviewer-name { font-size: 15px; color: var(--ink); }
.review-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; font-size: 12px; color: var(--ink-soft); }
.review-course { background: var(--gold-pale); color: var(--gold-deep); padding: 2px 8px; border-radius: 999px; font-weight: 600; font-family: var(--font-mono); font-size: 11px; }
.review-time { font-family: var(--font-mono); }
.review-stars { color: var(--gold-deep); font-size: 16px; letter-spacing: 2px; flex: none; }
.review-text { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; flex: 1; }
.review-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.review-tags .tag {
  background: var(--gold-pale); color: var(--gold-deep);
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-main { grid-template-columns: 140px 1fr; gap: 20px; }
  .score-number { font-size: 3.2rem; }
}
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-main { grid-template-columns: 1fr; text-align: center; }
  .rating-bars { max-width: 320px; margin-inline: auto; }
  .review-header { flex-direction: column; align-items: flex-start; }
  .review-stars { align-self: flex-end; }
}

/* ---------- YouTube Channel Section ---------- */
.youtube-main-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.youtube-card-content { display: grid; grid-template-columns: 320px 1fr; gap: 0; }
.youtube-thumb { position: relative; background: var(--harbor); }
.youtube-thumb img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; opacity: .85; transition: opacity .3s, transform .4s; }
.youtube-thumb:hover img { opacity: 1; transform: scale(1.03); }
.youtube-play-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: radial-gradient(circle at center, rgba(217, 175, 92, .25), transparent 70%);
  color: var(--paper-fixed); transition: transform .3s, background .3s; cursor: pointer;
}
.youtube-play-overlay svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); transition: transform .2s; }
.youtube-thumb:hover .youtube-play-overlay { background: radial-gradient(circle at center, rgba(217, 175, 92, .35), transparent 65%); }
.youtube-thumb:hover .youtube-play-overlay svg { transform: scale(1.15); }
.youtube-info { padding: 32px; display: flex; flex-direction: column; }
.youtube-channel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.yt-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--gold-pale); }
.yt-name { font-size: 1.2rem; color: var(--ink); font-family: var(--font-head); }
.yt-stats { font-size: 13px; color: var(--ink-soft); font-family: var(--font-mono); }
.yt-desc { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 24px; flex: 1; }
.yt-video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.yt-video-card { display: block; border-radius: 10px; overflow: hidden; background: var(--bg); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s, border-color .3s; }
.yt-video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.yt-vid-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.yt-vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.yt-video-card:hover .yt-vid-thumb img { transform: scale(1.08); }
.yt-duration { position: absolute; bottom: 8px; right: 8px; background: rgba(23, 32, 43, .9); color: var(--paper-fixed); padding: 2px 6px; border-radius: 4px; font-size: 11px; font-weight: 600; font-family: var(--font-mono); }
.yt-vid-info { padding: 12px; }
.yt-vid-info h4 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.yt-meta { font-size: 11.5px; color: var(--ink-soft); font-family: var(--font-mono); }
.yt-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.yt-actions .btn { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 1024px) {
  .youtube-card-content { grid-template-columns: 1fr; }
  .youtube-thumb { min-height: 200px; }
  .yt-video-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .yt-video-row { grid-template-columns: 1fr; }
  .youtube-info { padding: 24px; }
  .yt-actions { flex-direction: column; }
  .yt-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Student Success Stories ---------- */
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.success-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.success-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.success-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gold-pale); }
.success-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.success-card:hover .success-image img { transform: scale(1.08); }
.course-badge {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.course-badge.offline { background: var(--harbor); color: var(--gold-bright); }
.course-badge.online { background: var(--gold); color: var(--ink); }
.course-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: .9;
}
.success-content { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.success-content h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 2px; }
.success-location { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-deep); font-size: 13px; font-weight: 500; }
.success-location svg { color: var(--gold); flex-shrink: 0; }
.success-quote { color: var(--ink-soft); font-size: 14px; line-height: 1.6; flex: 1; font-style: italic; }
.success-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-deep); font-weight: 600; font-size: 13.5px; font-family: var(--font-mono); margin-top: 4px; transition: color .2s; }
.success-link:hover { color: var(--harbor); }

@media (max-width: 1024px) {
  .success-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .success-grid { grid-template-columns: 1fr; }
  .success-image { aspect-ratio: 16/9; }
}

/* ---------- Media Gallery Links ---------- */
.media-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.media-link-card {
  display: block; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; text-align: center; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.media-link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.media-card-icon {
  width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 12px;
  display: grid; place-items: center; color: var(--gold-deep);
  background: var(--gold-pale); transition: all .3s ease;
}
.media-link-card:hover .media-card-icon { background: var(--gold); color: var(--ink); transform: scale(1.05); }
.media-card-icon svg { width: 22px; height: 22px; }
.media-card-icon.youtube-icon { background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%); color: #fff; }
.media-link-card:hover .media-card-icon.youtube-icon { background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%); transform: scale(1.08); }
.media-link-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 12px; font-weight: 600; }
.media-link-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.media-card-meta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.media-count { font-family: var(--font-mono); font-size: 13.5px; font-weight: 700; color: var(--gold-deep); background: var(--gold-pale); padding: 5px 14px; border-radius: 999px; }
.media-type { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 1024px) {
  .media-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .media-links-grid { grid-template-columns: 1fr; }
}

/* ---------- Photo Gallery Slider ---------- */
.gallery-slider {
  position: relative; max-width: 1100px; margin: 0 auto;
}
.gallery-track {
  display: flex; gap: 20px; overflow-x: hidden; padding: 10px 5px 20px;
  scroll-behavior: smooth;
}
.gallery-slide {
  flex: 0 0 calc(33.333% - 14px); min-width: 280px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s ease;
}
.gallery-slide img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease;
}
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 24, 34, .95) 100%);
  color: var(--paper-fixed); padding: 24px 18px 18px; z-index: 2;
  transform: translateY(100%); opacity: 0;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .4s ease;
}
.gallery-slide:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; font-family: var(--font-mono);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.gallery-badge.offline { background: var(--harbor); color: var(--gold-bright); }
.gallery-badge.online { background: var(--gold); color: var(--ink); }
.gallery-caption h3 { font-size: 1.1rem; margin-bottom: 4px; }
.gallery-caption p { font-size: 13px; color: rgba(250, 248, 244, .8); }
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: all .3s ease;
}
.gallery-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-50%) scale(1.1); }
.gallery-btn.prev { left: -24px; }
.gallery-btn.next { right: -24px; }
.gallery-indicators {
  display: flex; justify-content: center; gap: 10px; margin-top: 16px;
}
.gallery-indicator {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  transition: all .3s ease;
}
.gallery-indicator.active { background: var(--gold-deep); transform: scale(1.3); }
.gallery-indicator:hover { background: var(--gold); }

@media (max-width: 1024px) {
  .gallery-slide { flex: 0 0 calc(50% - 10px); }
  .gallery-btn.prev { left: -12px; }
  .gallery-btn.next { right: -12px; }
}
@media (max-width: 768px) {
  .gallery-slide { flex: 0 0 85%; }
  .gallery-btn { width: 40px; height: 40px; }
  .gallery-btn.prev { left: -8px; }
  .gallery-btn.next { right: -8px; }
}

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--bg); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: none; border: none; padding: 18px 20px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--ink); text-align: left;
}
.faq-btn .chev { flex: none; width: 10px; height: 10px; border-right: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(45deg); transition: transform .3s; }
.faq-item.open .faq-btn .chev { transform: rotate(225deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body p { padding: 0 20px 18px; color: var(--ink-soft); font-size: 14.6px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 12px;
  background: linear-gradient(120deg, var(--harbor) 0%, #24465C 55%, var(--harbor-2) 100%);
  padding: 54px 48px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden; color: var(--paper-fixed);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; left: -40px; bottom: -30px; width: 380px; height: 120px;
  opacity: .34; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cpath stroke='%23D9AF5C' stroke-width='3' stroke-linecap='round' d='M0 30C16 14 32 14 48 30S80 46 96 30S128 14 144 30S176 46 192 30'/%3E%3Cpath stroke='%23D9AF5C' stroke-width='3' stroke-linecap='round' opacity='.5' d='M0 46C16 38 32 38 48 46S80 54 96 46S128 38 144 46S176 54 192 46'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  transform: scaleX(-1);
}
.cta-band h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 8px; color: var(--paper-fixed); }
.cta-band p { color: rgba(250, 248, 244, .78); max-width: 520px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Comparison table ---------- */
.compare { width: 100%; border-collapse: collapse; background: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 14.5px; }
.compare th, .compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--harbor); color: var(--paper-fixed); font-family: var(--font-mono); font-weight: 600; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.compare tbody tr:hover { background: var(--bg-soft); }
.compare .yes { color: var(--gold-deep); font-weight: 700; }
.compare .no { color: var(--coral); font-weight: 700; }

/* ---------- Media grid / lightbox ---------- */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
/* ---------- Gallery page: top-level Photos/Videos tabs ---------- */
.media-tabs { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.media-tab-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1.6px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 28px; font-size: 15.5px; font-weight: 700; color: var(--ink);
  cursor: pointer; font-family: var(--font-body); transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.media-tab-btn svg { flex: none; }
.media-tab-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.media-tab-btn.is-active { background: var(--harbor); border-color: var(--harbor); color: var(--gold-bright); box-shadow: var(--shadow-md); }
/* Watch Videos gets its own red accent (play-button association) so it reads as
   a visually distinct action from the Training Pictures tab, not just a twin button. */
.media-tab-btn-videos { border-color: rgba(214, 69, 65, .45); color: var(--video-red, #D64541); }
.media-tab-btn-videos:hover { border-color: var(--video-red, #D64541); color: var(--video-red, #D64541); }
.media-tab-btn-videos.is-active { background: var(--video-red, #D64541); border-color: var(--video-red, #D64541); color: #fff; box-shadow: 0 12px 28px rgba(214, 69, 65, .35); }
html[data-theme="dark"] .media-tab-btn-videos { border-color: rgba(224, 100, 96, .5); color: #E58A87; }
.media-panel[hidden] { display: none; }
@media (max-width: 560px) {
  .media-tab-btn { flex: 1 1 auto; justify-content: center; padding: 13px 16px; font-size: 14px; }
}

.gallery-filter-btn {
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; transition: border-color .2s, background .2s, color .2s; font-family: var(--font-body);
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.gallery-filter-btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
html[data-theme="dark"] .gallery-filter-btn { background: var(--bg-soft); }
html[data-theme="dark"] .gallery-filter-btn.is-active { background: var(--gold); color: var(--ink); }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.media-grid figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.media-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.media-grid figure:hover img { transform: scale(1.07); }
.media-grid figure::after { content: "+"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; font-weight: 700; color: var(--gold-bright); background: rgba(20, 43, 58, .55); opacity: 0; transition: opacity .3s; }
.media-grid figure:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(16, 28, 36, .94); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(900px, 94vw); max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .close { position: absolute; top: 22px; right: 26px; color: var(--paper-fixed); background: none; border: none; font-size: 2.2rem; cursor: pointer; line-height: 1; }
.lightbox .prev, .lightbox .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(250, 248, 244, .12); color: var(--paper-fixed); border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; }
.lightbox .prev { left: 22px; } .lightbox .next { right: 22px; }

/* ---------- Video cards ---------- */
.video-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.video-thumb { position: relative; cursor: pointer; aspect-ratio: 16/9; overflow: hidden; background: var(--harbor); }
.video-thumb img { width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.08); filter: brightness(.8); }
/* A gentle top-to-bottom scrim so the play button (and any duration badge)
   stay legible over whatever the thumbnail looks like — these are often
   busy YouTube auto-thumbnails with their own baked-in text and captions. */
.video-thumb::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 24, 32, .06) 0%, rgba(15, 24, 32, .12) 45%, rgba(15, 24, 32, .58) 100%);
}
.video-thumb .play {
  position: absolute; inset: 0; z-index: 2; margin: auto; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255, 255, 255, .18); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, .6);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(10, 18, 26, .4), 0 0 0 0 rgba(217, 175, 92, .45);
  transition: transform .3s cubic-bezier(.34, 1.4, .4, 1), box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.video-thumb .play::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
  transition: border-left-color .3s ease;
}
.video-card:hover .play {
  transform: scale(1.14);
  background: var(--gold); border-color: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(10, 18, 26, .45), 0 0 0 9px rgba(217, 175, 92, .18);
}
.video-card:hover .play::after { border-left-color: var(--ink); }
.video-card .body { padding: 16px 18px 18px; }
.video-card .body h3 { font-size: 15px; margin-bottom: 4px; line-height: 1.35; }
.video-card .body small {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-deep); font-weight: 600; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
}
.video-card .body small::before { content: ""; width: 12px; height: 2px; border-radius: 2px; background: var(--gold); }
@media (prefers-reduced-motion: reduce) {
  .video-thumb img, .video-thumb .play, .video-thumb .play::after { transition: none; }
}

/* ---------- Blog ---------- */
.blog-card { overflow: hidden; }
.blog-card .thumb { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; }
.blog-card .thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .cat { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--ink-soft); font-size: 14.4px; }
.blog-card .date { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; display: flex; gap: 6px; align-items: center; }

/* ---------- Prose (content pages) ---------- */
.prose { max-width: 780px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 16px; }
.prose h2 { font-size: 1.55rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose ul { margin: 0 0 20px; list-style: none; }
.prose li { padding-left: 26px; position: relative; margin-bottom: 10px; color: var(--ink-soft); }
.prose li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 3px; background: var(--gold); }
.prose blockquote { border-left: 4px solid var(--gold); background: var(--bg-soft); padding: 18px 22px; border-radius: 0 10px 10px 0; margin: 0 0 20px; font-style: italic; color: var(--ink-soft); }
.prose blockquote p { margin: 0; }
/* Inline article photos were rendering at their raw attribute size (e.g. 1920x1080),
   left-aligned and narrower than the text column instead of filling it - no rule here
   constrained them to .prose's width at all. */
.prose img { display: block; max-width: 100%; height: auto; border-radius: var(--radius); margin: 8px auto 24px; }
.prose figure { margin: 8px 0 24px; }
.prose figure img { margin: 0 auto; }
.prose figcaption { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

.back-to-articles { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(135deg, #24465C 0%, var(--harbor) 58%, var(--harbor-2) 100%);
  color: var(--paper-fixed); padding: 74px 0 78px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -70px; top: -40px; width: 520px; height: 160px;
  opacity: .3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cpath stroke='%23D9AF5C' stroke-width='3' stroke-linecap='round' d='M0 30C16 14 32 14 48 30S80 46 96 30S128 14 144 30S176 46 192 30'/%3E%3Cpath stroke='%23D9AF5C' stroke-width='3' stroke-linecap='round' opacity='.5' d='M0 46C16 38 32 38 48 46S80 54 96 46S128 38 144 46S176 54 192 46'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
.page-hero::after {
  content: ""; position: absolute; width: 340px; height: 340px; left: -130px; bottom: -180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(250, 248, 244, .07), transparent 70%);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 12px; position: relative; color: var(--paper-fixed); }
.page-hero p { color: rgba(250, 248, 244, .8); max-width: 640px; font-size: 1.05rem; position: relative; }
.crumbs { display: flex; gap: 8px; font-size: 13px; color: rgba(250, 248, 244, .6); margin-bottom: 18px; position: relative; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs .sep { opacity: .7; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg); border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  padding: 36px; max-width: 780px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.6px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus,
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 4px rgba(141, 97, 23, .13);
}
.field textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 40px; }
.select-wrap::after { content: ""; position: absolute; right: 17px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.form-note { font-size: 13px; color: var(--ink-soft); background: var(--bg-soft); border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 14px; }

/* ---------- Comments ("Leave a Reply") ---------- */
.comment-list { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.comment-list .children { list-style: none; margin: 18px 0 0; padding: 0 0 0 30px; display: flex; flex-direction: column; gap: 18px; border-left: 2px solid var(--line); }
.comment-item {
  display: flex; gap: 14px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.comment-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--harbor), var(--harbor-2));
  color: var(--gold-bright); font-weight: 700; font-size: 13px;
  display: grid; place-items: center;
}
.comment-main { flex: 1; min-width: 0; }
.comment-header { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.comment-author { font-size: 15px; color: var(--ink); }
.comment-date { font-size: 12.5px; color: var(--ink-soft); font-family: var(--font-mono); }
.comment-content p { margin: 0 0 8px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.comment-content p:last-child { margin-bottom: 0; }
.comment-awaiting-moderation { font-size: 13px; color: var(--gold-deep); font-style: italic; margin: 4px 0 8px; }
.comment-reply { margin-top: 8px; }
.comment-reply a { font-size: 13px; font-weight: 600; color: var(--gold-deep); }
.comments-closed { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.comment-form .comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; grid-column: 1 / -1; font-size: 13px; color: var(--ink-soft); }
.comment-form .comment-form-cookies-consent input { width: auto; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; transition: transform .3s, box-shadow .3s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .icon { width: 46px; height: 46px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--gold-pale); color: var(--gold-deep); }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: 14.5px; }
.contact-card a:hover { color: var(--gold-deep); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  animation: pulse-dot 2s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- WhatsApp enquiry widget (EN / हिंदी / Hinglish) ---------- */
.wa-bot { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-bot .wa-float { position: relative; right: auto; bottom: auto; animation: none; }
.wa-bot-panel { width: min(330px, calc(100vw - 32px)); background: var(--bg); border-radius: 16px; box-shadow: 0 18px 44px rgba(17, 26, 32, .3); border: 1px solid var(--line); overflow: hidden; font-size: 14px; }
.wa-bot-panel[hidden] { display: none; }
.wa-bot-head { background: linear-gradient(135deg, #128C7E, #075E54); color: #fff; padding: 13px 15px; display: flex; align-items: center; gap: 10px; }
.wa-bot-head .wa-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .16); display: grid; place-items: center; flex: none; }
.wa-bot-head .wa-ava svg { width: 20px; height: 20px; fill: #fff; }
.wa-bot-head strong { font-family: var(--font-head); font-size: 15px; display: block; line-height: 1.2; }
.wa-bot-head small { font-size: 11.5px; color: rgba(255, 255, 255, .85); display: block; margin-top: 2px; }
.wa-online { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #7bed9f; margin-right: 6px; animation: pulse-dot 1.6s infinite; }
.wa-bot-langs { display: flex; gap: 8px; padding: 12px 14px 0; }
.wa-lang { flex: 1; border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 6px 4px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.wa-lang.is-active { background: var(--harbor); border-color: var(--harbor); color: var(--paper-fixed); }
.wa-bot-msg { margin: 12px 14px 0; background: #f1f4f6; border-radius: 12px 12px 12px 3px; padding: 10px 12px; color: var(--ink); font-size: 13px; line-height: 1.55; }
.wa-bot-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px; }
.wa-chip { border: 1px solid #cfe8dd; background: #f2fbf5; color: #0b6e4f; border-radius: 999px; padding: 7px 12px; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all .2s; }
.wa-chip:hover { background: #dff3e6; }
.wa-chip-primary { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.wa-chip-primary:hover { background: var(--gold-deep, #b8862c); }
.wa-bot-form { display: flex; gap: 8px; padding: 0 14px 14px; }
.wa-bot-form input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-size: 13px; font-family: inherit; color: var(--ink); }
.wa-bot-form input:focus { outline: none; border-color: #128C7E; }
.wa-bot-form button { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 0; background: #25d366; color: #fff; font-size: 15px; cursor: pointer; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(37, 211, 102, .4); }
.wa-bot-form button:hover { background: #1fbe5c; }
@media (max-width: 480px) {
  .wa-bot { right: 14px; bottom: 14px; }
}

/* ---------- Hero Carousel (full-width, auto-playing) ---------- */
.hero-carousel {
  position: relative; overflow: hidden;
  height: clamp(560px, 82vh, 820px);
  min-height: clamp(560px, 82vh, 820px);
  padding: 0;
  background: var(--harbor);
  /* Subtle top highlight + bottom depth — cheap, GPU-composited, no extra assets. */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .25);
}
.hero-carousel::before { display: none; }
/* The @media (max-width: 768px) block that used to sit here (hero height + caption sizing)
   was moved below the unconditional .carousel-caption/.carousel-badge/h2/p rules it overrides
   (after .carousel-caption p, before .carousel-btn). It has the exact same selectors and
   specificity as those base rules, so CSS falls back to "later in the file wins" between them —
   sitting *before* the rules it was meant to override made the whole mobile caption fix (and
   the object-fit:contain photo-cropping fix) dead code: on every phone, the base rules always
   won back, giving mobile the full 800px-wide centered desktop caption box squeezed into the
   much shorter mobile-height hero, clipping half of it. Same for object-fit: the base
   `.carousel-slide img { object-fit: cover }` two rules below also outranked it by the same
   rule. Moving the whole block after everything it targets keeps it byte-for-byte identical
   but lets it actually win, both by matching specificity and by now coming later. */
.carousel-track {
  position: relative; width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0; visibility: hidden;
  transform: scale(1.02);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0s 1.2s;
}
.carousel-slide.active {
  opacity: 1; visibility: visible; z-index: 2;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Richer, glossier color without touching the actual image files — pure CSS filter is
     GPU-composited and adds no extra HTTP requests, so it costs nothing in load speed. */
  filter: saturate(1.18) contrast(1.08) brightness(1.03);
}
.carousel-slide.active img {
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(960px 420px at 50% -20%, rgba(217, 175, 92, .28), transparent 64%),
    radial-gradient(800px 300px at 50% 100%, rgba(31, 59, 77, .35), transparent 60%),
    linear-gradient(180deg, rgba(12, 24, 34, .40) 0%, rgba(12, 24, 34, .15) 45%, rgba(12, 24, 34, .55) 100%);
  pointer-events: none;
}
.carousel-slide::before {
  /* Soft diagonal glass sheen — a single static gradient, no animation/JS/image asset, so it's
     free at runtime. Sits above the photo, below the caption/readability overlay. */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, .16) 0%,
    rgba(255, 255, 255, .05) 18%,
    transparent 34%,
    transparent 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.carousel-caption {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); z-index: 3;
  text-align: center; color: var(--paper-fixed);
  padding: 0 24px; max-width: 800px; width: 100%; box-sizing: border-box;
  animation: captionFade 1s ease-out 0.4s both;
}
.carousel-badge, .carousel-caption h2, .carousel-caption p {
  /* Belt-and-suspenders: even if a browser ever renders these bigger than the CSS asks for,
     a long word breaks onto its own line instead of running off the edge of the screen. */
  max-width: 100%; overflow-wrap: break-word; word-break: break-word;
}
@keyframes captionFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.carousel-badge {
  display: inline-block; background: rgba(217, 175, 92, .2); color: var(--gold-bright);
  border: 1px solid rgba(217, 175, 92, .4); padding: 8px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--font-mono); margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.carousel-caption h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem); font-weight: 700; line-height: 1.12;
  letter-spacing: -.015em; margin-bottom: 16px; color: var(--paper-fixed);
  font-family: var(--font-head);
}
.carousel-caption p {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: rgba(250, 248, 244, .85);
  max-width: 640px; margin-inline: auto; line-height: 1.6;
}
@media (max-width: 768px) {
  /* On a phone the hero is much taller than it is wide (e.g. 390×692 at 82vh), while every
     slide photo is landscape (1600×720 to 1600×1200). object-fit:cover on that shape scales
     the image up until its HEIGHT fills the container, which pushes the WIDTH way past the
     screen edges — visitors were seeing a cropped ~25-40% sliver through the middle of each
     photo, not the photo. Shortening the hero on narrow screens (so its own shape sits closer
     to landscape) and switching to object-fit:contain (guarantees the whole photo stays
     visible, letterboxed into the existing navy hero background instead of cut off) fixes it
     without touching the desktop treatment at all.  */
  .hero-carousel, .hero-carousel.hero-carousel {
    height: clamp(280px, 56vw, 420px);
    min-height: clamp(280px, 56vw, 420px);
  }
  .carousel-slide img { object-fit: contain; }

  /* The text-size-adjust opt-out alone didn't fix the caption running off the right edge on a
     real phone, so instead of fighting the browser's own auto-sizing behavior, pin every caption
     size to a fixed px value on mobile (nothing scaled from viewport width, so it can't balloon)
     and anchor it to the bottom-left corner instead of centering it — a left-anchored block that's
     narrower than the screen has guaranteed room to grow into on its right side without ever
     reaching the edge, unlike a centered block that overflows on both sides at once. */
  .carousel-caption {
    left: 16px; right: 16px; bottom: 54px; transform: none;
    text-align: left; max-width: none; width: auto; padding: 0;
    -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  }
  .carousel-badge {
    font-size: 10px; padding: 5px 12px; margin-bottom: 8px; letter-spacing: .04em;
  }
  .carousel-caption h2 {
    font-size: 1.4rem; line-height: 1.18; margin-bottom: 6px;
  }
  .carousel-caption p {
    font-size: .85rem; line-height: 1.4; max-width: 88%; margin-inline: 0;
  }
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(250, 248, 244, .1); border: 1px solid rgba(250, 248, 244, .2);
  color: var(--paper-fixed); cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(10px); transition: all .3s ease;
}
.carousel-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 32px; }
.carousel-btn.next { right: 32px; }
.carousel-indicators {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; gap: 12px;
}
.carousel-indicator {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(250, 248, 244, .4); border: none; cursor: pointer;
  transition: all .3s ease;
}
.carousel-indicator.active {
  background: var(--gold-bright); transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(217, 175, 92, .3);
}
.carousel-indicator:hover { background: rgba(250, 248, 244, .7); }
.carousel-pause {
  position: absolute; bottom: 32px; right: 32px; z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(250, 248, 244, .1); border: 1px solid rgba(250, 248, 244, .2);
  color: var(--paper-fixed); cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(10px); transition: all .3s ease;
}
.carousel-pause:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: opacity .3s, transform none; }
  .carousel-slide img { transition: none; transform: scale(1) !important; }
  .carousel-caption { animation: none; }
}
@media (max-width: 768px) {
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-btn.prev { left: 16px; }
  .carousel-btn.next { right: 16px; }
  .carousel-pause { bottom: 16px; right: 16px; }
  .carousel-indicators { bottom: 16px; gap: 8px; }
  .carousel-indicator { width: 10px; height: 10px; }
}

/* ---------- Hero intro text (below the video, no overlap) ---------- */
.hero-text { padding: 72px 0 84px; text-align: center; }
.hero-text .container > div { max-width: 860px; margin-inline: auto; }
.hero-text h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); line-height: 1.12; letter-spacing: -.015em; margin: 26px 0 20px; color: var(--harbor); font-weight: 700; }
.hero-text h1 .grad-text { color: var(--gold-deep); background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-bright) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; margin-inline: auto; margin-bottom: 36px; line-height: 1.7; }
.hero-text .hero-actions { justify-content: center; gap: 18px; margin-bottom: 42px; }
.hero-text .hero-stats { justify-content: center; gap: 28px; }
.hero-text .stat { border-left: 1px solid var(--gold-pale); padding-left: 24px; }
.hero-text .stat:first-child { border-left: 0; padding-left: 0; }
.hero-text .stat h3 { font-family: var(--font-mono); font-size: 2.2rem; color: var(--gold-deep); font-weight: 700; }
.hero-text .stat p { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--harbor); color: rgba(250, 248, 244, .78); padding-top: 66px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer h4 { color: var(--gold-bright); font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer .brand { color: var(--paper-fixed); margin-bottom: 14px; }
.footer .brand small { color: rgba(250, 248, 244, .55); }
.footer p { color: rgba(250, 248, 244, .65); font-size: 14px; max-width: 320px; }
.footer li { margin-bottom: 11px; }
.footer li a { color: rgba(250, 248, 244, .78); transition: color .2s, padding-left .2s; }
.footer li a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer .soc { display: flex; gap: 12px; margin-top: 18px; }
.footer .soc a { width: 38px; height: 38px; border-radius: 10px; background: rgba(250, 248, 244, .08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer .soc a:hover { background: var(--gold); transform: translateY(-3px); }
/* color (not fill) so currentColor resolves correctly for every icon shape —
   the Instagram icon is drawn with fill="none" stroke="currentColor" (plus one
   filled dot), and a blanket `fill` here would inherit onto its outline paths
   and render it as a solid blank square instead of the camera outline. */
.footer .soc svg { width: 17px; height: 17px; color: rgba(250, 248, 244, .85); }
.footer .soc a:hover svg { color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(250, 248, 244, .12); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(250, 248, 244, .6); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  /* Breath Line: static smooth wave, labels readable, no animation */
  .bl-jag { opacity: 0; }
  .bl-smooth { opacity: 1; transform: none; }
  .btn-breathe { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 520px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(320px, 84vw); height: 100vh;
    height: 100dvh;
    background: var(--paper); flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 90px 26px 30px; box-shadow: var(--shadow-lg);
    transition: right .35s ease; z-index: 70; overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { width: 100%; justify-content: space-between; padding: 16px 14px; font-size: 17px; font-weight: 600; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 4px 12px; display: none; }
  .nav-links > li.open .dropdown { display: block; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: flex; flex-direction: column; gap: 10px; width: 100%; list-style: none; margin-top: 14px; padding: 0; }
  .nav-cta-mobile a { justify-content: center; padding: 13px 12px; }
  .nav-cta-mobile .btn-primary,
  html[data-theme="dark"] .nav-cta-mobile .btn-primary { color: #fff; }
  .burger { display: flex; z-index: 80; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(20, 43, 58, .55); z-index: 65; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .brand { font-size: 1.05rem; }
  .brand-logo img { height: 34px; }
  .brand small { font-size: 9px; }
}

@media (min-width: 1121px) {
  .nav { height: 68px; gap: 10px; }
  .brand { font-size: 1.05rem; gap: 8px; }
  .brand-logo img { height: 32px; }
  .brand small { font-size: 9px; }
  .nav-links { gap: 2px; }
  .nav-links > li > a { padding: 8px 9px; font-size: 13px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; }
  /* Mobile-only nav items: only ever hide these on desktop, so the
     unconditional rules below can't cancel out the mobile media query's
     "display: flex" (equal specificity + later in source would otherwise win). */
  .nav-cta-mobile, .nav-lang-row { display: none; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  /* Social icons (WhatsApp/YouTube/Facebook/Instagram) used to be hidden here
     to save space — now shown on phone too, each row centered as a block
     (phone numbers, then icons) rather than left-hugging or overflowing. */
  .topbar .container { justify-content: center; }
  .topbar-left { justify-content: center; width: 100%; }
  .topbar-right { justify-content: center; width: 100%; }
  .breath-stage { padding: 26px 18px 22px; }
  /* Give the wave room to breathe: each label gets its own row so
     nowrap text never overlaps a neighbour, however narrow the screen. */
  .bl-wave-wrap { aspect-ratio: unset; min-height: 210px; }
  .bl-pt-1 { left: 8%; top: 0%; }
  .bl-pt-2 { left: 16%; top: 26%; }
  .bl-pt-3 { left: 27%; top: 52%; }
  .bl-pt-4 { left: 37.5%; top: 78%; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .stat { padding-left: 12px; }
  .cta-band { padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .bl-point span { background: transparent; padding: 0; }
  .bl-wave-wrap { min-height: 230px; }
}

/* HEAL-COMPAT-2026 -- design-system support for all exported page variants */
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(217, 175, 92, .45);
  background: rgba(217, 175, 92, .14);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em;
  color: var(--gold-bright);
}
.page-hero .rating-badge .stars { color: var(--gold-bright); font-size: 15px; letter-spacing: 2px; }
.rating-badge strong { font-size: 15px; }

#news-feed { display: grid; gap: 24px; }

.article-header { margin-bottom: 26px; }
.article-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.2; margin-bottom: 14px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 26px; }
.author-box { display: flex; align-items: center; gap: 12px; margin: 26px 0; }
.author-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.share { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.share a { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.share a:hover { border-color: var(--gold); color: var(--gold-deep); }

.h1a { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.h2a { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.h3a { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
.h4a { font-size: 1.05rem; }

.founder-pic { margin: 0; }
.quote-float {
  position: absolute; right: -18px; bottom: -16px; max-width: 210px;
  background: var(--gold); color: var(--ink); padding: 14px 16px; border-radius: 10px;
  font-family: var(--font-head); font-style: italic; font-size: 13.5px; line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.timeline { margin-top: 10px; border-left: 2px solid var(--line); padding-left: 26px; }
.t-item { position: relative; padding-bottom: 34px; }
.t-item::before { content: ""; position: absolute; left: -33px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold); }
.t-year { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.t-text { color: var(--ink-soft); font-size: 14.5px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips button { border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; }
.chips button:hover, .chips button.active { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-pale); }

.video-list { margin-top: 24px; }
.contact-details { margin-top: 18px; }
.contact-details p { display: flex; gap: 10px; align-items: baseline; margin-bottom: 12px; }

mark, .mark { background: var(--gold-pale); color: var(--ink); padding: 1px 5px; border-radius: 4px; }

.quick-links { list-style: none; }
.quick-links a { color: rgba(250, 248, 244, .78); font-size: 14px; }
.quick-links a:hover { color: var(--gold-bright); }

.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--paper-fixed); }
.center-flex { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }

.nav-cta-mobile .btn { width: 100%; }
.close-mobile { position: absolute; top: 14px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; }

.wa-text { font-size: 13px; line-height: 1.4; }
.wa-text strong { display: block; color: var(--paper-fixed); font-size: 13.5px; }
.wa-text-mobile { font-size: 13px; color: var(--ink); }

.gallery-item { display: block; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }
.gallery-item figcaption { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }

/* Training Pictures starts collapsed to a 15-photo preview (10 offline + 5
   online); "More Photos" (main.js) reveals the rest by toggling is-expanded
   on the grid — independent of the category filters above, which use the
   `hidden` attribute rather than this class, so the two never conflict. */
.gallery-item-extra { display: none; }
#gallery-grid.is-expanded .gallery-item-extra { display: block; }
.gallery-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.gallery-more-wrap[hidden] { display: none; }

.news-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.news-item:last-child { border-bottom: 0; }
.news-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.news-item .news-date { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.open-news { cursor: pointer; }

.news-card { display: block; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.news-card .news-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card .news-body { padding: 16px 18px; }
.news-card .news-title { font-size: 1rem; margin-bottom: 6px; }
.news-card .news-title a { color: var(--ink); }
.news-card .news-title a:hover { color: var(--gold-deep); }
.news-card .news-date, .news-card .news-source { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); display: inline-block; margin-right: 10px; }

/* Mobile-browser compatibility fallbacks (iOS Safari < 15.4, older Android WebView) */
.lightbox, .nav-backdrop, .bl-svg, .breath-line::before, .cta-band::after, .media-grid figure::after {
  top: 0; right: 0; bottom: 0; left: 0;
}
.bl-wave-wrap { padding-top: 0; }
img { max-width: 100%; }

.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.press-card { margin: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-sm); cursor: zoom-in; }
.press-card img { width: 100%; height: auto; display: block; border-radius: 8px; }
@media (max-width: 640px) { .press-grid { grid-template-columns: 1fr; } }

/* Viewport-fit guarantee: no horizontal overflow at any width
   (`clip` on modern browsers, `hidden` fallback for older mobile Safari) */
html, body { overflow-x: hidden; overflow-x: clip; }
body { width: 100%; max-width: 100%; }
main, header, .topbar, .section, .hero, .page-hero, .cta-band, .trust-strip, .footer, .breath-line { max-width: 100%; }
:where(img, svg, video, iframe, canvas, pre, table) { max-width: 100%; }
pre { white-space: pre-wrap; overflow-wrap: break-word; }
p, li, h1, h2, h3, h4, h5, h6, a, figcaption, th, td, dt, dd { overflow-wrap: break-word; }
.compare { width: 100%; max-width: 100%; }
/* .trust-strip .track is deliberately excluded here: it's an infinite marquee that
   must stay wider than its container (`width: max-content`, clipped by the parent's
   own `overflow: hidden`) so `translateX(-50%)` has real distance to travel. Capping
   it to max-width: 100% (as this rule used to, for every viewport) squeezes it down
   to the container's width on any screen where the un-wrapped content overflows it —
   which is every phone — shrinking the sweep distance to almost nothing, so the loop
   still takes 28s but visibly crawls instead of gliding. .t-scroller is a different,
   unrelated component (a user-swipeable row, not an animated one) and still needs it. */
.t-scroller { max-width: 100%; }


/* ============================================================
   Dark theme — variable overrides (toggle in the header)
   ============================================================ */
html[data-theme="dark"] {
  --paper: #0d161e;
  --ink: #e9e3d7;
  --ink-soft: #9fb0bf;
  --harbor: #16293a;
  --harbor-2: #0f1e2b;
  --line: #243445;
  --bg: #15212b;
  --bg-soft: #1c2b38;
  --gold-pale: #332a17;
  --coral-pale: #3a2621;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .45);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, .55);
}
html[data-theme="dark"] .btn-primary { background: #2f6b92; color: #f6f3ec; box-shadow: 0 10px 22px rgba(0, 0, 0, .4); }
html[data-theme="dark"] .btn-primary:hover { background: #3a7ca7; box-shadow: 0 16px 30px rgba(0, 0, 0, .5); }
html[data-theme="dark"] .btn-breathe[aria-pressed="true"] { background: #2f6b92; color: #f6f3ec; box-shadow: 0 10px 22px rgba(0, 0, 0, .4); }
html[data-theme="dark"] .btn-breathe[aria-pressed="true"]:hover { background: #3a7ca7; }
html[data-theme="dark"] .btn-accent { color: #241f14; }
html[data-theme="dark"] .btn-accent:hover { background: #d6aa4e; color: #241f14; }
html[data-theme="dark"] .chip-btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
html[data-theme="dark"] body { background: var(--paper); color: var(--ink); }
html[data-theme="dark"] .header { background: var(--bg); border-bottom: 1px solid var(--line); }
html[data-theme="dark"] .topbar { background: var(--harbor-2); }
html[data-theme="dark"] .dropdown { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .section-soft { background: var(--bg-soft); }
html[data-theme="dark"] .trust-strip { background: var(--harbor); color: var(--paper-fixed); }
html[data-theme="dark"] .t-card { background: var(--bg); }
html[data-theme="dark"] .hero-card { background: var(--bg); }
html[data-theme="dark"] .rating-badge { background: var(--bg); }
html[data-theme="dark"] .cta-band { background: linear-gradient(135deg, #1c3350 0%, var(--harbor) 60%, var(--harbor-2) 100%); }
html[data-theme="dark"] .form-note { background: var(--bg-soft); }
html[data-theme="dark"] .wa-bot-panel { background: var(--bg); }
html[data-theme="dark"] .wa-float { background: #1e3f2e; }
html[data-theme="dark"] .footer { background: #0a1218; }
html[data-theme="dark"] .press-card img { filter: brightness(.92) contrast(1.05); }
html[data-theme="dark"] .btn-ghost-dark { color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .btn-ghost-dark:hover { background: var(--bg-soft); }
html[data-theme="dark"] .stat h3 { color: var(--gold-bright); }
html[data-theme="dark"] .hero-stats { border-top-color: var(--line); }
html[data-theme="dark"] .nav-links > li > a:hover, html[data-theme="dark"] .header .nav-links > li > a:focus-visible { color: var(--gold-bright); }

/* ============================================================
   Theme + language toggles
   ============================================================ */
.chip-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: border-color .2s, background .2s; font-family: var(--font-body);
  white-space: nowrap;
}
.chip-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip-btn svg { width: 15px; height: 15px; }
.chip-btn.theme-toggle svg { display: none; }
.chip-btn.theme-toggle::before {
  content: "\263E"; font-size: 16px; line-height: 1; color: var(--gold-deep);
  font-family: var(--font-body);
}
html[data-theme="dark"] .chip-btn.theme-toggle::before { content: "\2600"; color: var(--gold-bright); }
.chip-btn .theme-sun { display: none; }
html[data-theme="dark"] .chip-btn .theme-moon { display: none; }
html[data-theme="dark"] .chip-btn .theme-sun { display: block; }
html[data-theme="dark"] .chip-btn { background: var(--bg-soft); border-color: var(--line); }
.nav-cta .chip-btn { margin-right: 8px; padding: 7px 11px; }
.nav-lang-row { gap: 8px; padding: 10px 4px 4px; }
.nav-lang-row .chip-btn { flex: 1; justify-content: center; }

/* ============================================================
   Auth (student login / create account)
   ============================================================ */
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--bg-soft); border-radius: 999px; padding: 5px; margin-bottom: 26px; }
.auth-tab { border: 0; background: transparent; border-radius: 999px; padding: 10px 12px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; font-family: var(--font-body); transition: background .2s, color .2s; }
.auth-tab.is-active { background: var(--bg); color: var(--gold-deep); box-shadow: var(--shadow-sm); }
.auth-pane { display: none; }
.auth-pane.is-active { display: block; }
.auth-msg { margin-top: 12px; font-size: 13.5px; font-weight: 600; min-height: 0; }
.auth-msg.ok { color: #2e7d32; }
.auth-msg.err { color: var(--coral); }
html[data-theme="dark"] .auth-msg.ok { color: #7bc67f; }
.link-btn { background: none; border: 0; color: var(--primary); font-weight: 700; cursor: pointer; font-size: inherit; font-family: inherit; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.check-row input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold-deep); flex: none; }

/* ============================================================
   Student portal
   ============================================================ */
.portal-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.portal-id { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--harbor); color: var(--gold-bright); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); font-size: 17px; flex: none; }
.portal-id strong { font-size: 1.05rem; }
.portal-id small { color: var(--ink-soft); font-size: 13px; }
.portal-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700; border: 1px solid; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-pending { color: var(--gold-deep); background: var(--gold-pale); border-color: rgba(189, 138, 46, .35); }
.status-review { color: var(--harbor); background: var(--paper); border-color: var(--line); }
.status-approved { color: #2e7d32; background: #e7f3e9; border-color: rgba(46, 125, 50, .35); }
html[data-theme="dark"] .status-review { background: var(--bg-soft); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

.stepper { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.step-dot { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-weight: 600; font-size: 13.5px; }
.step-dot i { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-soft); border: 1.6px solid var(--line); color: var(--ink-soft); font-style: normal; display: grid; place-items: center; font-weight: 700; font-family: var(--font-mono); transition: all .25s; }
.step-dot.is-on { color: var(--ink); }
.step-dot.is-on i { background: var(--harbor); border-color: var(--harbor); color: var(--gold-bright); }
.step-dot.done i { background: var(--gold); border-color: var(--gold); color: #fff; }
.step-line { height: 2px; width: 44px; background: var(--line); }
@media (max-width: 640px) { .step-line { width: 18px; } .step-dot span { display: none; } }

.step-panel { display: none; }
.step-panel.is-on { display: block; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.upload-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 2px dashed var(--line); border-radius: 12px; padding: 26px; color: var(--ink-soft); font-size: 14px; cursor: pointer; text-align: center; transition: border-color .2s, background .2s; }
.upload-box:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--bg-soft); }
.photo-preview { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.photo-preview img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }

.kv-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.kv-table th, .kv-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.kv-table th { color: var(--ink-soft); font-weight: 600; width: 42%; background: var(--bg-soft); }
.kv-table td { color: var(--ink); }
.kv-table tr:last-child th, .kv-table tr:last-child td { border-bottom: 0; }

.success-panel { text-align: center; padding: 18px 6px 6px; }
.success-icon { width: 68px; height: 68px; border-radius: 50%; background: #e7f3e9; color: #2e7d32; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
html[data-theme="dark"] .success-icon { background: #1d3a25; color: #7bc67f; }
.success-panel h2 { margin: 6px 0 12px; }
.success-panel p { max-width: 560px; margin: 0 auto 20px; color: var(--ink-soft); }
.app-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.print-only { display: none; }
@media print {
  body * { visibility: hidden; }
  #print-area, #print-area * { visibility: visible; }
  #print-area { display: block; position: absolute; left: 0; top: 0; width: 100%; padding: 24px; color: #000; background: #fff; }
  #print-area h2 { margin-bottom: 8px; }
  #print-area .kv-table { border: 1px solid #ccc; }
  #print-area .kv-table th { background: #f1f1f1; color: #000; }
  #print-area .kv-table td { color: #000; }
}

.form-card { max-width: 860px; }

/* ============================================================
   Enrollment fee (?1000) payment modal
   ============================================================ */
.pay-modal-backdrop {
  position: fixed; inset: 0; background: rgba(10, 18, 26, .66);
  z-index: 120; display: flex; align-items: center; justify-content: center; padding: 18px;
}
.pay-modal {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  max-width: 480px; width: 100%; padding: 28px; box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow: auto;
}
.pay-modal h2 { margin-bottom: 4px; }
.pay-modal .pay-note { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 6px; }
.pay-total-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px dashed var(--line); margin-bottom: 8px; }
.pay-total-line b { font-size: 1.15rem; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.pay-method {
  border: 1.6px solid var(--line); border-radius: 12px; padding: 13px 12px;
  display: flex; gap: 9px; align-items: center; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.pay-method:hover { border-color: var(--gold); }
.pay-method input { accent-color: var(--gold-deep); }
.pay-mode-sec { margin: 8px 0 14px; }
.pay-mode-sec label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.pay-mode-sec input { width: 100%; padding: 12px 14px; border: 1.6px solid var(--line); border-radius: var(--radius-sm); font-size: 14.5px; color: var(--ink); background: var(--bg); }
.upi-qr-wrap {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: 18px 16px; margin-bottom: 14px;
  border: 1.6px solid var(--line); border-radius: 12px; background: var(--paper);
}
/* Fixed box even before the QR library finishes loading (or if it never does) so the
   layout doesn't jump once the <canvas>/<img> it renders drops in. */
.upi-qr { width: 168px; height: 168px; display: grid; place-items: center; }
.upi-qr img, .upi-qr canvas { display: block; border-radius: 4px; }
.upi-id-line { font-size: 14px; color: var(--ink-soft); margin: 2px 0 0; }
.upi-id-line strong { color: var(--ink); font-family: var(--font-mono); font-size: 13.5px; }
.upi-qr-wrap .btn { margin-top: 4px; }
.upi-hint { font-size: 12.5px; color: var(--ink-soft); margin: 0; max-width: 280px; }
.pay-fields { border: 1.6px solid var(--line); border-radius: 12px; padding: 14px 16px; margin: 14px 0; }
.pay-fields .frow { display: flex; justify-content: space-between; font-size: 14.5px; margin: 7px 0; color: var(--ink-soft); }
.pay-fields .frow b { color: var(--ink); }
.pay-fields .fee-total { border-top: 1px dashed var(--line); margin-top: 10px; padding-top: 10px; display: flex; justify-content: space-between; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
[hidden] { display: none !important; }
.reg-success { background: #e7f3e9; border: 1px solid rgba(46, 125, 50, .35); color: #2e7d32; border-radius: 12px; padding: 22px 26px; text-align: center; margin-top: 18px; font-weight: 600; }
html[data-theme="dark"] .reg-success { background: #1d3a25; color: #7bc67f; }

/* ============================================================
   Fee banner (registration form)
   ============================================================ */
.fee-banner { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: linear-gradient(135deg, var(--gold-pale), var(--paper)); border: 1.5px dashed var(--gold); border-radius: 12px; padding: 14px 18px; margin-top: 26px; }
.fee-banner strong { display: block; font-size: 15px; }
.fee-banner small { color: var(--ink-soft); font-size: 13px; }
.fee-rs { font-family: var(--font-mono); font-weight: 700; font-size: 1.3rem; color: var(--gold-deep); flex: none; }
html[data-theme="dark"] .fee-banner { background: var(--bg-soft); }

/* --- New components dark theme fixes --- */
html[data-theme="dark"] .google-rating-summary { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .score-number { color: var(--gold-bright); }
html[data-theme="dark"] .bar-fill { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); }
html[data-theme="dark"] .review-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .review-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .reviewer-name { color: var(--ink); }
html[data-theme="dark"] .review-text { color: var(--ink-soft); }
html[data-theme="dark"] .review-course { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .review-tag { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .review-stars { color: var(--gold-bright); }

html[data-theme="dark"] .youtube-main-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .youtube-info { background: var(--bg); }
html[data-theme="dark"] .yt-name { color: var(--ink); }
html[data-theme="dark"] .yt-stats { color: var(--ink-soft); }
html[data-theme="dark"] .yt-desc { color: var(--ink-soft); }
html[data-theme="dark"] .yt-video-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .yt-video-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .yt-vid-info h4 { color: var(--ink); }
html[data-theme="dark"] .yt-meta { color: var(--ink-soft); }

html[data-theme="dark"] .success-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .success-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .success-content h3 { color: var(--ink); }
html[data-theme="dark"] .success-location { color: var(--gold-bright); }
html[data-theme="dark"] .success-quote { color: var(--ink-soft); }
html[data-theme="dark"] .success-link { color: var(--gold-bright); }
html[data-theme="dark"] .success-link:hover { color: var(--gold); }

html[data-theme="dark"] .media-link-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .media-link-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .media-card-icon { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .media-link-card:hover .media-card-icon { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .media-link-card h3 { color: var(--ink); }
html[data-theme="dark"] .media-link-card p { color: var(--ink-soft); }
html[data-theme="dark"] .media-count { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .media-type { color: var(--ink-soft); }

html[data-theme="dark"] .announcement-bar { background: linear-gradient(90deg, var(--harbor) 0%, var(--harbor-2) 100%); }
html[data-theme="dark"] .announce-text a { color: var(--gold-bright); }
html[data-theme="dark"] .announce-text a:hover { color: var(--paper-fixed); }

html[data-theme="dark"] .hero-text h1 { color: var(--paper-fixed); }
html[data-theme="dark"] .hero-text h1 .grad-text { background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="dark"] .hero-text p.lead { color: var(--ink-soft); }
html[data-theme="dark"] .hero-text .stat h3 { color: var(--gold-bright); }
html[data-theme="dark"] .hero-text .stat p { color: var(--ink-soft); }
html[data-theme="dark"] .hero-text .stat { border-left-color: var(--gold-pale); }
html[data-theme="dark"] .hero-badge { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--bg-soft) 100%); border-color: var(--gold); color: var(--gold-bright); }
html[data-theme="dark"] .rating-badge { background: linear-gradient(135deg, var(--bg) 0%, var(--gold-pale) 100%); border-color: var(--gold); color: var(--paper-fixed); }
html[data-theme="dark"] .rating-badge .stars { color: var(--gold-bright); }

html[data-theme="dark"] .cta-band h2 { color: var(--paper-fixed); }
html[data-theme="dark"] .cta-band p { color: rgba(250, 248, 244, .78); }

html[data-theme="dark"] .nav-links > li > a { color: var(--ink); }
html[data-theme="dark"] .nav-links > li > a:hover { color: var(--gold-bright); background: var(--bg-soft); }

/* --- Comprehensive dark theme fixes for all text elements --- */
html[data-theme="dark"] .brand { color: var(--ink); }
html[data-theme="dark"] .announce-text { color: var(--paper-fixed); }
html[data-theme="dark"] .announce-text strong { color: var(--gold-bright); }
html[data-theme="dark"] .trust-strip { background: var(--harbor); color: var(--paper-fixed); }
html[data-theme="dark"] .trust-strip span { color: var(--paper-fixed); }
html[data-theme="dark"] .btn-breathe { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .btn-breathe:hover { background: var(--gold-deep); color: var(--ink); }
html[data-theme="dark"] .bl-caption strong { color: var(--paper-fixed); }
html[data-theme="dark"] .course-card .tag { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .score-number { color: var(--gold-bright); }
html[data-theme="dark"] .course-badge.online { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .success-link:hover { color: var(--gold-bright); }
html[data-theme="dark"] .media-link-card:hover .media-card-icon { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .faq-btn { color: var(--ink); }
html[data-theme="dark"] .field label { color: var(--ink); }
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea { color: var(--ink); background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .wa-bot-msg { background: var(--bg-soft); color: var(--ink); }
html[data-theme="dark"] .wa-bot-form input { color: var(--ink); background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .share a { color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .share a:hover { border-color: var(--gold); color: var(--gold-deep); }
html[data-theme="dark"] .quote-float { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .chips button { color: var(--ink); background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .chips button:hover,
html[data-theme="dark"] .chips button.active { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-pale); }
html[data-theme="dark"] mark, 
html[data-theme="dark"] .mark { background: var(--gold-pale); color: var(--ink); }
html[data-theme="dark"] .close-mobile { color: var(--ink); background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .wa-text-mobile { color: var(--ink); }
html[data-theme="dark"] .news-card .news-title a { color: var(--ink); }
html[data-theme="dark"] .news-card .news-title a:hover { color: var(--gold-deep); }
html[data-theme="dark"] .chip-btn { color: var(--ink); background: var(--bg-soft); border-color: var(--line); }
html[data-theme="dark"] .chip-btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
html[data-theme="dark"] .link-btn { color: var(--gold-bright); }
html[data-theme="dark"] .step-dot.is-on { color: var(--ink); }
html[data-theme="dark"] .step-dot.is-on i { background: var(--harbor); border-color: var(--harbor); color: var(--gold-bright); }
html[data-theme="dark"] .kv-table td { color: var(--ink); }
html[data-theme="dark"] .kv-table th { background: var(--bg-soft); color: var(--ink-soft); }
html[data-theme="dark"] .pay-mode-sec input { color: var(--ink); background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .upi-qr-wrap { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .pay-fields .frow b { color: var(--ink); }
html[data-theme="dark"] .pay-fields .fee-total { color: var(--ink); }
html[data-theme="dark"] .btn-accent { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .btn-accent:hover { background: var(--gold-deep); color: var(--ink); }
html[data-theme="dark"] .btn-ghost-dark { color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .btn-ghost-dark:hover { background: var(--bg-soft); border-color: var(--gold-deep); color: var(--gold-deep); }
html[data-theme="dark"] .btn-primary { background: #2f6b92; color: #f6f3ec; box-shadow: 0 10px 22px rgba(0, 0, 0, .4); }
html[data-theme="dark"] .btn-primary:hover { background: #3a7ca7; box-shadow: 0 16px 30px rgba(0, 0, 0, .5); }
html[data-theme="dark"] .section-sub { color: var(--ink-soft); }
html[data-theme="dark"] .eyebrow { color: var(--gold-bright); }
html[data-theme="dark"] .eyebrow::before { background: var(--gold-bright); }
html[data-theme="dark"] .card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .card:hover { box-shadow: var(--shadow-md); }
html[data-theme="dark"] .card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .card p { color: var(--ink-soft); }
html[data-theme="dark"] .card .icon { background: rgba(217, 175, 92, .16); color: var(--gold-bright); }
html[data-theme="dark"] .t-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .t-card .stars { color: var(--gold-bright); }
html[data-theme="dark"] .t-card p { color: var(--ink-soft); }
html[data-theme="dark"] .t-card .avatar { background: linear-gradient(135deg, var(--harbor), var(--harbor-2)); color: var(--gold-bright); }
html[data-theme="dark"] .t-card .who strong { color: var(--paper-fixed); }
html[data-theme="dark"] .t-card .who small { color: var(--ink-soft); }
html[data-theme="dark"] .hero-stats .stat h3 { color: var(--gold-bright); }
html[data-theme="dark"] .hero-stats .stat p { color: var(--ink-soft); }
html[data-theme="dark"] .rating-badge { background: linear-gradient(135deg, var(--bg) 0%, var(--gold-pale) 100%); border-color: var(--gold); color: var(--paper-fixed); }
html[data-theme="dark"] .rating-badge .stars { color: var(--gold-bright); }
html[data-theme="dark"] .stat h3 { color: var(--gold-bright); }
html[data-theme="dark"] .stat p { color: var(--ink-soft); }
html[data-theme="dark"] .life-card .life-tag { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .life-card li { color: var(--ink-soft); }
html[data-theme="dark"] .life-card li::before { color: var(--gold-bright); }
html[data-theme="dark"] .followup-promise { color: var(--paper-fixed); }
html[data-theme="dark"] .followup-promise strong { color: var(--gold-bright); }
html[data-theme="dark"] .prose p { color: var(--ink-soft); }
html[data-theme="dark"] .prose h2,
html[data-theme="dark"] .prose h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .prose li { color: var(--ink-soft); }
html[data-theme="dark"] .prose li::before { background: var(--gold); }
html[data-theme="dark"] .prose blockquote { background: var(--bg-soft); border-color: var(--gold); color: var(--ink-soft); }
html[data-theme="dark"] .contact-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .contact-card:hover { box-shadow: var(--shadow-md); }
html[data-theme="dark"] .contact-card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .contact-card p,
html[data-theme="dark"] .contact-card a { color: var(--ink-soft); }
html[data-theme="dark"] .contact-card a:hover { color: var(--gold-bright); }
html[data-theme="dark"] .form-card { background: var(--bg); border-color: var(--line); box-shadow: var(--shadow-md); }
html[data-theme="dark"] .footer li a { color: rgba(250, 248, 244, .78); }
html[data-theme="dark"] .footer li a:hover { color: var(--gold-bright); }
html[data-theme="dark"] .footer p { color: rgba(250, 248, 244, .65); }
html[data-theme="dark"] .footer .brand small { color: rgba(250, 248, 244, .55); }
html[data-theme="dark"] .footer .soc a { background: rgba(250, 248, 244, .08); }
html[data-theme="dark"] .footer .soc a:hover { background: var(--gold); }
html[data-theme="dark"] .footer .soc svg { color: rgba(250, 248, 244, .85); }
html[data-theme="dark"] .footer .soc a:hover svg { color: var(--ink); }
html[data-theme="dark"] .footer-bottom { border-color: rgba(250, 248, 244, .12); color: rgba(250, 248, 244, .6); }
html[data-theme="dark"] .topbar a { color: rgba(250, 248, 244, .8); }
html[data-theme="dark"] .topbar a:hover { color: var(--gold-bright); }
html[data-theme="dark"] .topbar-right a svg { fill: rgba(250, 248, 244, .72); }
html[data-theme="dark"] .topbar-right a:hover svg { fill: var(--gold-bright); }
html[data-theme="dark"] .nav-links > li > a .chev { border-color: currentColor; }
html[data-theme="dark"] .dropdown a { color: var(--ink-soft); }
html[data-theme="dark"] .dropdown a:hover { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .burger span { background: var(--ink); }
html[data-theme="dark"] .nav-cta .btn-ghost-dark { color: var(--ink); border-color: var(--line); }
html[data-theme="dark"] .nav-cta .btn-primary { background: #2f6b92; color: #f6f3ec; }
html[data-theme="dark"] .hero-badge { background: linear-gradient(135deg, var(--gold-pale) 0%, var(--bg-soft) 100%); border-color: var(--gold); color: var(--gold-bright); }
html[data-theme="dark"] .hero-badge .dot { background: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }
html[data-theme="dark"] .announce-icon { color: var(--gold-bright); }
html[data-theme="dark"] .announce-close { color: rgba(250, 248, 244, .6); }
html[data-theme="dark"] .announce-close:hover { color: var(--paper-fixed); background: rgba(250, 248, 244, .12); }
html[data-theme="dark"] .review-course { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .review-tag { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .yt-duration { background: rgba(23, 32, 43, .9); color: var(--paper-fixed); }
html[data-theme="dark"] .hero-text .stat h3 { color: var(--gold-bright); }
html[data-theme="dark"] .hero-text .stat p { color: var(--ink-soft); }
html[data-theme="dark"] .hero-text .stat { border-left-color: var(--gold-pale); }

/* --- Course cards dark theme --- */
html[data-theme="dark"] .course-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .course-card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .course-card .meta { color: var(--ink-soft); }
html[data-theme="dark"] .course-card p { color: var(--ink-soft); }
html[data-theme="dark"] .course-card .tag { background: var(--gold); color: var(--ink); }

/* --- Carousel dark theme --- */
html[data-theme="dark"] .hero-carousel { background: var(--harbor-2); }
html[data-theme="dark"] .carousel-caption h2 { color: var(--paper-fixed); }
html[data-theme="dark"] .carousel-caption p { color: rgba(250, 248, 244, .85); }
html[data-theme="dark"] .carousel-badge { background: rgba(217, 175, 92, .2); color: var(--gold-bright); border-color: rgba(217, 175, 92, .4); }
html[data-theme="dark"] .carousel-btn { background: rgba(250, 248, 244, .1); border-color: rgba(250, 248, 244, .2); color: var(--paper-fixed); }
html[data-theme="dark"] .carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
html[data-theme="dark"] .carousel-indicator { background: rgba(250, 248, 244, .4); }
html[data-theme="dark"] .carousel-indicator.active { background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(217, 175, 92, .3); }
html[data-theme="dark"] .carousel-indicator:hover { background: rgba(250, 248, 244, .7); }
html[data-theme="dark"] .carousel-pause { background: rgba(250, 248, 244, .1); border-color: rgba(250, 248, 244, .2); color: var(--paper-fixed); }
html[data-theme="dark"] .carousel-pause:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* --- Trust strip / marquee dark theme --- */
html[data-theme="dark"] .trust-strip { background: var(--harbor); color: var(--paper-fixed); }
html[data-theme="dark"] .trust-strip span { color: var(--paper-fixed); }
html[data-theme="dark"] .trust-strip .dot { background: var(--paper-fixed); }

/* --- CTA band dark theme --- */
html[data-theme="dark"] .cta-band { background: linear-gradient(135deg, #1c3350 0%, var(--harbor) 60%, var(--harbor-2) 100%); }
html[data-theme="dark"] .cta-band h2 { color: var(--paper-fixed); }
html[data-theme="dark"] .cta-band p { color: rgba(250, 248, 244, .78); }

/* --- Steps dark theme --- */
html[data-theme="dark"] .step { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .step:hover { box-shadow: var(--shadow-md); }
html[data-theme="dark"] .step h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .step p { color: var(--ink-soft); }
html[data-theme="dark"] .step .icon { background: var(--harbor); color: var(--gold-bright); }
html[data-theme="dark"] .step::before { background: var(--gold-pale); color: var(--gold-bright); }

/* --- Feature cards dark theme --- */
html[data-theme="dark"] .card.soft { background: transparent; border-color: rgba(250, 248, 244, .18); }
html[data-theme="dark"] .card.soft h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .card.soft p { color: rgba(250, 248, 244, .78); }
html[data-theme="dark"] .card.soft .icon { background: rgba(217, 175, 92, .16); color: var(--gold-bright); }

/* --- What changes cards dark theme --- */
html[data-theme="dark"] .life-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .life-card .life-tag { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .life-card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .life-card li { color: var(--ink-soft); }
html[data-theme="dark"] .life-card li::before { color: var(--gold-bright); }

/* --- Follow-up cards dark theme --- */
html[data-theme="dark"] .followup .card.soft { background: transparent; border-color: rgba(250, 248, 244, .18); }
html[data-theme="dark"] .followup .card.soft h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .followup .card.soft p { color: rgba(250, 248, 244, .78); }
html[data-theme="dark"] .followup .card.soft .icon { background: rgba(217, 175, 92, .16); color: var(--gold-bright); }
html[data-theme="dark"] .followup-promise { color: var(--paper-fixed); }
html[data-theme="dark"] .followup-promise strong { color: var(--gold-bright); }

/* --- Press cards dark theme --- */
html[data-theme="dark"] .press-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .press-card img { filter: brightness(.92) contrast(1.05); }

/* --- FAQ dark theme --- */
html[data-theme="dark"] .faq-item { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .faq-btn { color: var(--ink); }
html[data-theme="dark"] .faq-body p { color: var(--ink-soft); }

/* --- Compare table dark theme --- */
html[data-theme="dark"] .compare { background: var(--bg); }
html[data-theme="dark"] .compare th { background: var(--harbor); color: var(--paper-fixed); }
html[data-theme="dark"] .compare td { color: var(--ink); }
html[data-theme="dark"] .compare tbody tr:hover { background: var(--bg-soft); }

/* --- Media grid dark theme --- */
html[data-theme="dark"] .media-grid figure::after { background: rgba(20, 43, 58, .7); color: var(--gold-bright); }
html[data-theme="dark"] .media-grid img { filter: brightness(.95); }

/* --- Video cards dark theme --- */
html[data-theme="dark"] .video-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .video-card .body h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .video-card .body small { color: var(--gold-bright); }
html[data-theme="dark"] .video-card .body small::before { background: var(--gold-bright); }

/* --- Blog cards dark theme --- */
html[data-theme="dark"] .blog-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .blog-card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .blog-card p { color: var(--ink-soft); }
html[data-theme="dark"] .blog-card .cat { color: var(--gold-bright); }
html[data-theme="dark"] .blog-card .date { color: var(--ink-soft); }
html[data-theme="dark"] .blog-card .thumb img { filter: brightness(.95); }

/* --- Gallery items dark theme --- */
html[data-theme="dark"] .gallery-item figcaption { color: var(--ink-soft); }

/* --- Photo Gallery Slider dark theme --- */
html[data-theme="dark"] .gallery-slide { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .gallery-slide img { filter: brightness(.95); }
html[data-theme="dark"] .gallery-caption { background: linear-gradient(180deg, transparent 0%, rgba(10, 18, 26, .98) 100%); }
html[data-theme="dark"] .gallery-badge.offline { background: var(--harbor); color: var(--gold-bright); }
html[data-theme="dark"] .gallery-badge.online { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .gallery-btn { background: var(--bg); border-color: var(--line); color: var(--ink); }
html[data-theme="dark"] .gallery-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
html[data-theme="dark"] .gallery-indicator { background: var(--line); }
html[data-theme="dark"] .gallery-indicator.active { background: var(--gold-bright); }
html[data-theme="dark"] .gallery-indicator:hover { background: var(--gold); }

/* --- News items dark theme --- */
html[data-theme="dark"] .news-item { border-color: var(--line); }
html[data-theme="dark"] .news-item h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .news-item .news-date { color: var(--ink-soft); }

/* --- News cards dark theme --- */
html[data-theme="dark"] .news-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .news-card .news-title a { color: var(--ink); }
html[data-theme="dark"] .news-card .news-title a:hover { color: var(--gold-deep); }
html[data-theme="dark"] .news-card .news-date,
html[data-theme="dark"] .news-card .news-source { color: var(--ink-soft); }
html[data-theme="dark"] .news-card .news-thumb img { filter: brightness(.95); }

/* --- Success stories dark theme --- */
html[data-theme="dark"] .success-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .success-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .success-content h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .success-location { color: var(--gold-bright); }
html[data-theme="dark"] .success-quote { color: var(--ink-soft); }
html[data-theme="dark"] .success-link { color: var(--gold-bright); }
html[data-theme="dark"] .success-link:hover { color: var(--gold); }
html[data-theme="dark"] .course-badge.offline { background: var(--harbor); color: var(--gold-bright); }
html[data-theme="dark"] .course-badge.online { background: var(--gold); color: var(--ink); }

/* --- YouTube section dark theme --- */
html[data-theme="dark"] .youtube-main-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .youtube-info { background: var(--bg); }
html[data-theme="dark"] .yt-name { color: var(--paper-fixed); }
html[data-theme="dark"] .yt-stats { color: var(--ink-soft); }
html[data-theme="dark"] .yt-desc { color: var(--ink-soft); }
html[data-theme="dark"] .yt-video-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .yt-video-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .yt-vid-info h4 { color: var(--paper-fixed); }
html[data-theme="dark"] .yt-meta { color: var(--ink-soft); }
html[data-theme="dark"] .yt-vid-thumb img { filter: brightness(.95); }

/* --- Media links dark theme --- */
html[data-theme="dark"] .media-link-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .media-link-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .media-card-icon { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .media-link-card:hover .media-card-icon { background: var(--gold); color: var(--ink); }
html[data-theme="dark"] .media-link-card h3 { color: var(--paper-fixed); }
html[data-theme="dark"] .media-link-card p { color: var(--ink-soft); }
html[data-theme="dark"] .media-count { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .media-type { color: var(--ink-soft); }

/* --- Google reviews dark theme --- */
html[data-theme="dark"] .google-rating-summary { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .score-number { color: var(--gold-bright); }
html[data-theme="dark"] .bar-fill { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); }
html[data-theme="dark"] .review-card { background: var(--bg); border-color: var(--line); }
html[data-theme="dark"] .review-card:hover { border-color: var(--gold); }
html[data-theme="dark"] .reviewer-name { color: var(--paper-fixed); }
html[data-theme="dark"] .review-text { color: var(--ink-soft); }
html[data-theme="dark"] .review-course { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .review-tag { background: var(--gold-pale); color: var(--gold-bright); }
html[data-theme="dark"] .review-stars { color: var(--gold-bright); }

/* ============================================================
   "Test Your Stammering Level" hero button + Fluency Check modal
   ============================================================ */
.btn-coral {
  background: var(--coral); color: #fff; box-shadow: 0 10px 22px rgba(200, 92, 66, .32);
  animation: fc-pulse 2.6s ease-in-out infinite;
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(200, 92, 66, .42); background: #B24E36; animation-play-state: paused; }
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(200, 92, 66, .32); }
  50% { box-shadow: 0 10px 22px rgba(200, 92, 66, .32), 0 0 0 8px rgba(200, 92, 66, .14); }
}

.fc-modal-backdrop {
  --fc-mild: #3E8E7E; --fc-mid: #C98A2E; --fc-deep: #B4552F;
  position: fixed; inset: 0; background: rgba(10, 18, 26, .66);
  z-index: 130; display: flex; align-items: center; justify-content: center; padding: 18px;
}
html[data-theme="dark"] .fc-modal-backdrop { --fc-mild: #4FA891; --fc-mid: #D89B3E; --fc-deep: #C6673D; }

.fc-modal {
  position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  max-width: 560px; width: 100%; padding: 32px 28px 26px; box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow: auto;
}
.fc-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  border: 1.6px solid var(--line); background: var(--bg); color: var(--ink-soft);
  display: grid; place-items: center; cursor: pointer; transition: border-color .2s, color .2s;
}
.fc-close:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.fc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
}
.fc-card { margin-top: 14px; }

.fc-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.fc-qcount { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.fc-track { flex: 1; height: 6px; border-radius: 99px; background: var(--bg-soft); overflow: hidden; margin-left: 14px; }
.fc-track > i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); border-radius: 99px; transition: width .45s cubic-bezier(.4, 0, .2, 1); }

.fc-qtag { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.fc-qtext { font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; line-height: 1.32; margin: 8px 0 20px; }
.fc-qhelp { font-size: 13.5px; color: var(--ink-soft); margin: -14px 0 20px; }

.fc-opts { display: flex; flex-direction: column; gap: 10px; }
.fc-opt {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 14px 16px; border: 1.6px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, background .15s, transform .1s;
}
.fc-opt:hover { border-color: var(--gold); background: var(--gold-pale); }
.fc-opt:active { transform: scale(.99); }
.fc-opt .fc-dot {
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.6px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--ink-soft); transition: border-color .15s, background .15s, color .15s;
}
.fc-opt:hover .fc-dot { border-color: var(--gold-deep); color: var(--gold-deep); }
.fc-opt.chosen { border-color: var(--gold-deep); background: var(--gold-pale); }
.fc-opt.chosen .fc-dot { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.fc-backrow { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.fc-backbtn {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft); background: none; border: none; cursor: pointer; padding: 6px 2px;
  display: flex; align-items: center; gap: 6px; visibility: hidden;
}
.fc-backbtn.show { visibility: visible; }
.fc-backbtn:hover { color: var(--gold-deep); }

.fc-intro-list { list-style: none; margin: 18px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fc-intro-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.fc-intro-list svg { flex: none; color: var(--gold-deep); margin-top: 2px; }

.fc-result-head { text-align: center; margin-bottom: 6px; }
.fc-band-eyebrow { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.fc-band-title { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; margin: 6px 0 4px; }

.fc-gauge-wrap { display: flex; justify-content: center; margin: 14px 0 6px; }

.fc-result-copy { font-size: 15px; color: var(--ink-soft); text-align: center; max-width: 52ch; margin: 10px auto 22px; }
.fc-result-copy strong { color: var(--ink); }

.fc-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 24px; }
.fc-stat { background: var(--bg); padding: 14px 10px; text-align: center; }
.fc-stat b { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-deep); }
.fc-stat span { font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

.fc-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 6px; }
.fc-restart { display: block; text-align: center; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); background: none; border: none; cursor: pointer; width: 100%; text-decoration: underline; text-underline-offset: 3px; }
.fc-restart:hover { color: var(--gold-deep); }

/* Floating "Test Your Stammering Level" teaser — peeks in above the WhatsApp
   button a few seconds after page load, retreats on its own, and returns a
   couple of times over the session (see main.js). Hidden by default so it
   never flashes on screen if JS hasn't run yet. */
.fc-teaser {
  position: fixed; right: 20px; bottom: 92px; z-index: 89;
  width: min(300px, calc(100vw - 40px));
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.95);
  transition: transform .4s cubic-bezier(.34, 1.35, .4, 1), opacity .3s ease, visibility 0s linear .3s;
}
.fc-teaser.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: transform .4s cubic-bezier(.34, 1.35, .4, 1), opacity .3s ease;
}
.fc-teaser-close {
  position: absolute; top: 8px; right: 8px; z-index: 2; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-soft); border: none; color: var(--ink-soft); padding: 0;
  display: grid; place-items: center; cursor: pointer; font-size: 12px; line-height: 1;
}
.fc-teaser-close:hover { background: var(--gold-pale); color: var(--gold-deep); }
.fc-teaser-body {
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%;
  background: var(--bg); border: 1.6px solid var(--line); border-radius: 16px;
  padding: 13px 34px 13px 14px; box-shadow: var(--shadow-lg); cursor: pointer;
  font-family: var(--font-body); transition: border-color .2s, transform .15s;
}
.fc-teaser-body:hover { border-color: var(--coral); transform: translateY(-2px); }
.fc-teaser-icon {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--coral-pale); color: var(--coral);
  display: grid; place-items: center;
}
.fc-teaser-text { display: flex; flex-direction: column; gap: 2px; }
.fc-teaser-text strong { font-size: 13px; color: var(--ink); line-height: 1.35; font-weight: 600; }
.fc-teaser-text em { font-style: normal; font-size: 12px; color: var(--coral); font-weight: 600; margin-top: 1px; }

@media (max-width: 480px) {
  .fc-modal { padding: 26px 18px 22px; border-radius: 14px; }
  .fc-stat-row { grid-template-columns: 1fr; }
  .fc-cta-row .btn { width: 100%; }
  .fc-teaser { right: 14px; bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-coral { animation: none; }
  .fc-opt, .fc-track > i, .fc-modal #fc-needle { transition: none; }
  .fc-teaser { transition: opacity .2s ease; }
  .fc-teaser-body { transition: none; }
}
