/* ==========================================================================
   Mouth Rehab Centre — Design System
   Premium, clinical, mobile-first. No frameworks, no dependencies.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette: deep clinical teal + warm ivory + gold accent */
  --ink: #0d2340;            /* near-black teal — headings */
  --ink-soft: #33475e;       /* body text on light */
  --ink-mute: #5b7089;       /* secondary text */
  --teal: #0c53b4;           /* primary brand */
  --teal-deep: #0a3f88;      /* hover / dark sections */
  --teal-dark: #072448;      /* darkest section bg */
  --mint: #e3f0fc;           /* tint backgrounds */
  --mint-soft: #f2f8fd;
  --ivory: #f8fafd;          /* page background */
  --white: #ffffff;
  --gold: #38aefc;           /* accent — used sparingly */
  --gold-soft: #b7dffe;
  --line: #dbe6f2;           /* hairlines on light */
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm: clamp(0.85rem, 0.82rem + 0.15vw, 0.94rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --text-lg: clamp(1.12rem, 1.05rem + 0.35vw, 1.3rem);
  --text-xl: clamp(1.3rem, 1.18rem + 0.6vw, 1.65rem);
  --text-2xl: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.7rem + 1.6vw, 3rem);
  --text-hero: clamp(2.4rem, 1.9rem + 2.8vw, 4.3rem);

  /* Spacing & layout */
  --space-section: clamp(4rem, 3rem + 5vw, 7.5rem);
  --space-block: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  --container: 1180px;
  --container-narrow: 860px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10, 32, 62, 0.06), 0 4px 12px rgba(10, 32, 62, 0.05);
  --shadow-md: 0 2px 6px rgba(10, 32, 62, 0.06), 0 14px 34px rgba(10, 32, 62, 0.1);
  --shadow-lg: 0 4px 10px rgba(10, 32, 62, 0.07), 0 28px 60px rgba(10, 32, 62, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  width: 100%;
}

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  flex: none;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  flex: none;
}

.lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 62ch;
}

em.accent {
  font-style: normal;
  color: var(--teal);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.section {
  padding-block: var(--space-section);
  position: relative;
}

.section--tint {
  background: var(--mint-soft);
}

.section--dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(56, 174, 252, 0.08), transparent 60%),
    linear-gradient(175deg, var(--teal-deep), var(--teal-dark));
  color: #d7e2f4;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .lede {
  color: #a9c2e4;
}

.section--dark .eyebrow {
  color: var(--gold-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-block);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .lede {
  margin-inline: auto;
}

.section-head h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

/* Long button labels must wrap on small screens instead of forcing the page wider */
@media (max-width: 700px) {
  .btn {
    white-space: normal;
  }

  /* Stacked, centered CTA buttons; wrapped label lines stay centered */
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-inline: 1.2rem;
  }

  .hero-actions .btn svg {
    display: none;
  }
}

/* Safety net: nothing may create page-level horizontal scroll */
html,
body {
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 0.25s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(12, 83, 180, 0.28);
}

.btn--primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(12, 83, 180, 0.34);
}

.btn--gold {
  background: linear-gradient(135deg, #64c1fd, var(--gold));
  color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(56, 174, 252, 0.32);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(56, 174, 252, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  box-shadow: inset 0 0 0 1.5px var(--teal);
}

.btn--ghost:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.15rem 2.4rem;
  font-size: var(--text-base);
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(248, 250, 253, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(10, 32, 62, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.site-header--dark:not(.is-scrolled) .brand-name {
  color: var(--white);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a:not(.btn) {
  font-size: var(--text-sm);
  font-weight: 550;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.4rem;
}

.nav-desktop a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:not(.btn):hover::after,
.nav-desktop a[aria-current="page"]:not(.btn)::after {
  transform: scaleX(1);
}

.site-header--dark:not(.is-scrolled) .nav-desktop a:not(.btn) {
  color: rgba(255, 255, 255, 0.86);
}

.nav-desktop .btn {
  padding: 0.7rem 1.5rem;
}

/* Burger */
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  position: relative;
  z-index: 210;
}

.burger-box {
  width: 24px;
  height: 16px;
  position: relative;
}

.burger-box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s;
}

.site-header--dark:not(.is-scrolled) .burger-box span {
  background: var(--white);
}

.burger-box span:nth-child(1) { top: 0; }
.burger-box span:nth-child(2) { top: 7px; }
.burger-box span:nth-child(3) { top: 14px; }

body.nav-open .burger-box span {
  background: var(--white);
}

body.nav-open .burger-box span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .burger-box span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger-box span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(56, 174, 252, 0.1), transparent 55%),
    linear-gradient(170deg, var(--teal-deep), var(--teal-dark));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

body.nav-open .nav-mobile {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.nav-mobile ul {
  display: grid;
  gap: 0.25rem;
}

.nav-mobile a:not(.btn) {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  font-weight: 500;
  color: var(--white);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-dark);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.nav-mobile a[aria-current="page"]:not(.btn) {
  color: var(--gold-soft);
}

body.nav-open .nav-mobile a:not(.btn) {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile li:nth-child(1) a { transition-delay: 0.06s; }
.nav-mobile li:nth-child(2) a { transition-delay: 0.1s; }
.nav-mobile li:nth-child(3) a { transition-delay: 0.14s; }
.nav-mobile li:nth-child(4) a { transition-delay: 0.18s; }
.nav-mobile li:nth-child(5) a { transition-delay: 0.22s; }
.nav-mobile li:nth-child(6) a { transition-delay: 0.26s; }
.nav-mobile li:nth-child(7) a { transition-delay: 0.3s; }

.nav-mobile-cta {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.nav-mobile-note {
  margin-top: 1.4rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.06em;
}

@media (min-width: 920px) {
  .nav-desktop {
    display: flex;
  }
  .burger,
  .nav-mobile {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 880px);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(1100px 700px at 80% 10%, rgba(56, 174, 252, 0.12), transparent 55%),
    radial-gradient(900px 600px at -10% 90%, rgba(12, 83, 180, 0.5), transparent 60%),
    linear-gradient(160deg, #0b3c85 0%, var(--teal-dark) 72%);
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

/* On phones, hug the content instead of stretching to 92svh (pushed copy way down) */
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2.25rem);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}

.hero-kicker::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-size: var(--text-hero);
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--text-lg);
  color: #b9cfec;
  max-width: 54ch;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-benefit {
  background: rgba(7, 36, 72, 0.55);
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.hero-benefit svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--gold-soft);
  margin-top: 2px;
}

.hero-benefit strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
}

.hero-benefit span {
  font-size: var(--text-xs);
  color: #9db8dc;
  line-height: 1.45;
  display: block;
  margin-top: 2px;
}

@media (min-width: 920px) {
  .hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 4rem;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: var(--text-sm);
  color: var(--ink-mute);
  line-height: 1.65;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
}

.card .card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* Treatment cards with image header */
.treatment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.treatment-card-media {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--mint), #cfe6fb);
}

.treatment-card-media svg.treatment-illustration,
.treatment-card-media img.treatment-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.treatment-card-media img.treatment-illustration {
  object-fit: cover;
}

.treatment-card-body {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card-body p {
  flex: 1;
}

.treatment-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(7, 36, 72, 0.82);
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* ---------- Steps (How it works) ---------- */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  padding-top: 3.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.4rem;
  left: clamp(1.6rem, 3vw, 2.2rem);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.step::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: calc(clamp(1.6rem, 3vw, 2.2rem) + 2.6rem);
  right: clamp(1.6rem, 3vw, 2.2rem);
  height: 1px;
  background: var(--line);
}

.step h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.7rem;
}

.step p {
  font-size: var(--text-sm);
  color: var(--ink-mute);
}

.step-note {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 920px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--rev > .split-media {
    order: 2;
  }
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  background: linear-gradient(150deg, #0b4494, var(--teal-dark));
}

.split-media > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo-wall image (black background baked into the asset) */
.split-media--logos {
  background: var(--white);
  border: 1px solid var(--line);
}

.split-media--logos > img {
  object-fit: contain;
}

.split-media--video {
  aspect-ratio: 4 / 5;
  background: #04101f;
}

.split-media--video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  right: 1.1rem;
  background: rgba(248, 250, 253, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.split-media-badge svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
  flex: none;
}

.split-media-badge strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.3;
}

.split-media-badge span {
  font-size: var(--text-xs);
  color: var(--ink-mute);
}

.split-copy h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1.1rem;
}

.split-copy > p {
  color: var(--ink-mute);
  margin-bottom: 1rem;
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0;
}

.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}

.checklist li svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--teal);
  margin-top: 1px;
}

.checklist li strong {
  color: var(--ink);
}

.section--dark .checklist li {
  color: #c3d5ee;
}

.section--dark .checklist li svg {
  color: var(--gold-soft);
}

.section--dark .checklist li strong {
  color: var(--white);
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-block: 1px solid var(--line-dark);
}

@media (min-width: 900px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: var(--teal-dark);
  padding: clamp(1.8rem, 4vw, 2.8rem) 1.4rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gold-soft);
  display: block;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93aed6;
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(56, 174, 252, 0.14), transparent 60%),
    linear-gradient(165deg, var(--teal-deep), var(--teal-dark));
  border-color: transparent;
  color: #cfe0f5;
  box-shadow: var(--shadow-lg);
}

.price-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #64c1fd, var(--gold));
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.35rem;
}

.price-card--featured h3 {
  color: var(--white);
}

.price-for {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}

.price-card--featured .price-for {
  color: #9db8dc;
}

.price-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.price-card--featured .price-value {
  color: var(--gold-soft);
}

.price-value small {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mute);
}

.price-card--featured .price-value small {
  color: #9db8dc;
}

.price-from {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.price-features {
  margin: 1.5rem 0 1.8rem;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}

.price-features li {
  display: flex;
  gap: 0.65rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--ink-soft);
}

.price-card--featured .price-features li {
  color: #c3d5ee;
}

.price-features svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--teal);
  margin-top: 3px;
}

.price-card--featured .price-features svg {
  color: var(--gold-soft);
}

.pricing-disclaimer {
  margin-top: 2rem;
  font-size: var(--text-xs);
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 900px;
}

.pricing-disclaimer strong {
  color: var(--ink-soft);
}

/* ---------- Hero portrait ---------- */
.hero-side {
  position: relative;
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  background: var(--teal-deep);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-figure figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  right: 0.9rem;
  font-size: var(--text-xs);
  line-height: 1.5;
  color: #d7e2f4;
  background: rgba(7, 36, 72, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
}

.hero-side .package-card {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  margin-inline: 0.9rem;
}

@media (min-width: 920px) {
  .hero-figure {
    aspect-ratio: 4 / 4.1;
  }
  .hero-figure img {
    object-position: center 10%;
  }
  .hero-side .package-card {
    margin-top: -2.75rem;
    margin-inline: 1.1rem;
  }
}

/* ---------- Dental Access Package card ---------- */
.package-card {
  position: relative;
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(56, 174, 252, 0.16), transparent 60%),
    linear-gradient(165deg, var(--teal-deep), var(--teal-dark));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: #c3d5ee;
  box-shadow: var(--shadow-lg);
}

.package-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.package-card-head h2,
.package-card-head h3 {
  font-size: var(--text-lg);
  color: var(--white);
  line-height: 1.25;
}

.package-value {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #64c1fd, var(--gold));
  color: var(--teal-dark);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(56, 174, 252, 0.3);
}

.package-value del {
  opacity: 0.6;
  font-weight: 600;
}

.package-list {
  display: grid;
  gap: 0.85rem;
}

.package-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.package-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold-soft);
  margin-top: 2px;
}

.package-list strong {
  color: var(--white);
}

.package-terms {
  display: inline-block;
  margin-top: 1.3rem;
  font-size: var(--text-xs);
  color: #9db8dc;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.package-terms:hover {
  color: var(--white);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  -webkit-user-select: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
}

.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--ink-mute);
  line-height: 1.7;
}

.faq-body p + p,
.faq-body ul + p,
.faq-body p + ul {
  margin-top: 0.8rem;
}

.faq-body ul {
  list-style: disc;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.35rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(56, 174, 252, 0.16), transparent 60%),
    linear-gradient(160deg, var(--teal-deep), var(--teal-dark));
  color: var(--white);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  font-size: var(--text-3xl);
  color: var(--white);
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--gold);
}

.cta-band p {
  color: #aec6e6;
  max-width: 56ch;
  margin: 0 auto 2rem;
}

.cta-band .hero-actions {
  justify-content: center;
}

.cta-micro {
  margin-top: 1.4rem;
  font-size: var(--text-xs);
  color: #8fabd2;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.cta-micro + .cta-micro {
  margin-top: 0.35rem;
}

/* Beat .cta-band p's margin shorthand (higher specificity) so micro copy
   sits clear of the buttons instead of hugging them */
.cta-band .cta-micro {
  margin: 1.6rem auto 0;
}

.cta-band .cta-micro + .cta-micro {
  margin-top: 0.35rem;
}

.cta-micro a {
  color: #c8daf1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-micro a:hover {
  color: var(--white);
}

/* ---------- Forms ---------- */
.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid--2 .form-field--full {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.form-field label .req {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: var(--text-base);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e5952' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 83, 180, 0.1);
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--text-xs);
  color: var(--ink-mute);
  line-height: 1.6;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--teal);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  line-height: 1.65;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 1.2rem;
}

.form-success h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.6rem;
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--ink-mute);
  max-width: 44ch;
  margin-inline: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: #9db8dc;
  padding-top: var(--space-section);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1.1rem;
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: #b7cbe8;
  font-size: var(--text-sm);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.footer-locations li {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  color: #b7cbe8;
}

.footer-compliance {
  border-top: 1px solid var(--line-dark);
  padding-block: 2rem;
  font-size: var(--text-xs);
  line-height: 1.75;
  color: #7f9cc4;
}

.footer-compliance p + p {
  margin-top: 0.8rem;
}

.footer-compliance strong {
  color: #a9c2e4;
}

.footer-compliance a {
  color: #a9c2e4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-compliance a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
}

.footer-legal-copy {
  display: grid;
  gap: 0.3rem;
}

.footer-operated {
  color: #7f9cc4;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-legal a {
  color: #b7cbe8;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(56, 174, 252, 0.1), transparent 55%),
    linear-gradient(165deg, #0b3c85, var(--teal-dark));
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 1.8rem + 2.4vw, 3.8rem);
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.1rem;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-hero .lede {
  color: #b9cfec;
}

.page-hero .hero-kicker {
  margin-bottom: 1.2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8fabd2;
  margin-bottom: 1.8rem;
}

.breadcrumb a {
  color: #b7cbe8;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

/* ---------- Prose (legal pages) ---------- */
.prose {
  max-width: 74ch;
}

.prose h2 {
  font-size: var(--text-xl);
  margin: 2.4rem 0 0.8rem;
}

.prose h3 {
  font-size: var(--text-lg);
  margin: 1.8rem 0 0.6rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-updated {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ---------- Notice / info boxes ---------- */
.notice {
  display: flex;
  gap: 0.9rem;
  background: var(--mint);
  border: 1px solid #c6ddf4;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}

.notice svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--teal);
  margin-top: 2px;
}

.notice strong {
  color: var(--ink);
}

.notice--gold {
  background: #eef6fe;
  border-color: #bfdff9;
}

.notice--gold svg {
  color: var(--gold);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem;
  background: rgba(7, 36, 72, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transform: translateY(130%);
  transition: transform 0.45s var(--ease);
}

.mobile-cta.is-visible {
  transform: none;
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.8rem 1rem;
  font-size: var(--text-xs);
}

@media (min-width: 920px) {
  .mobile-cta {
    display: none;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 300;
  background: var(--teal);
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Options check ---------- */
.oc-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-md);
}

.oc-progress {
  margin-bottom: 1.9rem;
}

.oc-progress-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}

.oc-progress-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  overflow: hidden;
}

.oc-progress-fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 0.4s var(--ease);
}

.oc-step[hidden],
.oc-result[hidden] {
  display: none;
}

@keyframes ocFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.oc-step:not([hidden]),
.oc-result:not([hidden]) {
  animation: ocFade 0.35s var(--ease);
}

.oc-step h2,
.oc-result h2 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

.oc-step h2:focus,
.oc-result h2:focus {
  outline: none;
}

.oc-step-sub {
  font-size: var(--text-sm);
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.oc-options {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .oc-options {
    grid-template-columns: 1fr 1fr;
  }
  .oc-options--stack {
    grid-template-columns: 1fr;
  }
}

.oc-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.oc-option:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.oc-option.is-selected {
  border-color: var(--teal);
  background: var(--mint-soft);
  box-shadow: 0 0 0 4px rgba(12, 83, 180, 0.08);
}

.oc-option strong {
  display: block;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--ink);
}

.oc-option span {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-xs);
  color: var(--ink-mute);
  line-height: 1.5;
}

.oc-nav {
  display: flex;
  justify-content: flex-start;
}

.oc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-mute);
  transition: color 0.2s;
}

.oc-back[hidden] {
  display: none;
}

.oc-back:hover {
  color: var(--teal);
}

.oc-back svg {
  width: 15px;
  height: 15px;
}

.oc-result-icon {
  width: 52px;
  height: 52px;
  color: var(--teal);
  margin-bottom: 1rem;
}

.oc-result-lede {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.7;
}

.oc-result-lede a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oc-result-lede a:hover {
  color: var(--teal-deep);
}

.oc-result-lede + .oc-result-lede {
  margin-top: 0.9rem;
}

.oc-result .package-card {
  margin: 1.9rem 0 0.3rem;
}

.oc-claim {
  margin-top: 1.9rem;
}

.oc-claim form > h3 {
  font-size: var(--text-lg);
  margin-bottom: 1.1rem;
}

.oc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.oc-micro {
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  color: var(--ink-mute);
  line-height: 1.65;
}

.oc-micro + .oc-micro {
  margin-top: 0.5rem;
}

.oc-micro a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oc-micro a:hover {
  color: var(--teal-deep);
}
