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

    /* Page loader */
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      background: #F9F8F5;
      transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .page-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .page-loader-logo {
      width: min(12rem, 52vw);
      height: auto;
      opacity: 0.92;
    }

    .page-loader-spinner {
      width: 2rem;
      height: 2rem;
      border: 2px solid rgba(163, 177, 138, 0.25);
      border-top-color: #7A9066;
      border-radius: 50%;
      animation: page-loader-spin 0.75s linear infinite;
    }

    @keyframes page-loader-spin {
      to { transform: rotate(360deg); }
    }

    body.is-loading {
      overflow: hidden;
    }

    html.mv-site-cached .page-loader {
      display: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .page-loader-spinner { animation: none; border-top-color: #7A9066; opacity: 0.7; }
      .page-loader { transition: none; }
    }

    :root {
      --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
      --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
      --font-amp: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --canvas: #F9F8F5;
      --surface: #ffffff;
      --surface-soft: rgba(28, 28, 34, 0.035);
      --surface-hover: rgba(28, 28, 34, 0.06);
      --text: #1C1C22;
      --text-muted: #6B6B6B;
      --text-faint: rgba(28, 28, 34, 0.45);
      --border: rgba(28, 28, 34, 0.08);
      --accent: #6B9BAA;
      --accent-deep: #4F7A87;
      --accent-soft: rgba(107, 155, 170, 0.18);
      --ink: #1C1C22;
      --gold: #B8926A;
      --logo-green: #4F7A87;
      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-card: 1.6rem;
      --shadow-btn: 0 1px 2px rgba(38,36,31,.08), 0 6px 16px rgba(38,36,31,.10);
      --shadow-card: 0 1px 2px rgba(38,36,31,.04), 0 12px 32px rgba(38,36,31,.06);
      --max-width: 1180px;
      --gutter: clamp(1rem, 4vw, 3.5rem);
    }

    html {
      scroll-behavior: smooth;
      scrollbar-gutter: stable;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--canvas);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; height: auto; }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(var(--max-width), 100% - var(--gutter) * 2);
      margin-inline: auto;
    }

    /* Pill Nav */
    .nav-pill {
      position: fixed;
      top: 1.6rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: max-content;
      max-width: calc(100% - 3.2rem);
      background: rgba(227, 221, 207, 0.55);
      backdrop-filter: blur(13px);
      -webkit-backdrop-filter: blur(13px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 1.5rem;
      transition: background 0.3s, border-color 0.3s;
    }

    .nav-pill.nav-on-hero {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-pill.nav-on-hero .nav-link {
      color: rgba(255, 255, 255, 0.75);
    }

    .nav-pill.nav-on-hero .nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      height: 4.5rem;
      min-height: 4.5rem;
      padding: 0 0.65rem;
      flex-shrink: 0;
    }

    .nav-logo-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 3.5rem;
      min-height: 3.5rem;
      padding: 0 0.55rem;
      border-radius: 1rem;
      background: #fff;
      flex-shrink: 0;
      overflow: hidden;
      isolation: isolate;
      transition: background 0.3s ease;
      text-decoration: none;
    }

    .nav-pill.nav-on-hero .nav-logo-btn {
      background: #fff;
    }

    .nav-logo-btn:hover { background: #E8E4DC; }

    .nav-logo-btn img {
      display: block;
      height: 2.5rem;
      width: auto;
      flex-shrink: 0;
      filter: none;
      mix-blend-mode: normal;
      opacity: 1;
      transform: scale(1.4);
      transform-origin: center center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.1rem;
      min-width: 0;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 3.5rem;
      min-height: 3.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 0 0.75rem;
      border-radius: 1rem;
      color: var(--text-muted);
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .nav-link:hover { background: rgba(28,28,34,0.06); color: var(--ink); }

    /* Floating contact buttons */
    .floating-contact {
      position: fixed;
      bottom: 1.6rem;
      right: 1.6rem;
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.65rem;
      transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

    .floating-contact.is-hidden {
      transform: translateY(calc(100% + 1rem));
      opacity: 0;
      pointer-events: none;
    }

    .floating-btn-wrap {
      position: relative;
      width: 10.75rem;
      border-radius: 1rem;
      padding: 2px;
      overflow: hidden;
      isolation: isolate;
    }

    .floating-btn-wrap::before {
      content: '';
      position: absolute;
      inset: -120%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg 70deg,
        rgba(91, 109, 68, 0.15) 100deg,
        var(--logo-green) 140deg,
        #8fa876 180deg,
        var(--logo-green) 220deg,
        rgba(91, 109, 68, 0.15) 260deg,
        transparent 290deg 360deg
      );
      animation: borderGlowRotate 2.8s linear infinite;
    }

    @keyframes borderGlowRotate {
      to { transform: rotate(360deg); }
    }

    .btn-floating {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 1.1rem 1.5rem;
      border-radius: calc(1rem - 2px);
      background: #fff;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      box-shadow: 0 3px 18px rgba(28, 28, 34, 0.1), 0 1px 3px rgba(28, 28, 34, 0.06);
      transition: background 0.3s ease, color 0.3s ease;
    }

    .btn-floating:hover {
      background: var(--logo-green);
      color: #fff;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1;
      padding: 0.625rem 1rem;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-btn);
    }

    .btn-primary:hover {
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 2px 6px rgba(38,36,31,.12), 0 12px 28px rgba(38,36,31,.16);
    }

    .btn-accent {
      background: var(--accent);
      color: #fff;
      box-shadow: var(--shadow-btn);
    }

    .btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }

    .btn-secondary {
      background: transparent;
      color: var(--text-muted);
    }

    .btn-secondary:hover { background: var(--surface-hover); color: var(--text); }

    .btn-lg {
      font-size: 0.9375rem;
      padding: 0.75rem 1.25rem;
      border-radius: var(--radius-md);
    }

    /* Hero: shorter viewport with next section peek */
    .hero {
      position: relative;
      width: 100vw;
      height: 78svh;
      min-height: 28rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 6rem;
      box-sizing: border-box;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to bottom,
          transparent 65%,
          rgba(255, 255, 255, 0.015) 71%,
          rgba(255, 255, 255, 0.03) 75%,
          rgba(255, 255, 255, 0.05) 78%,
          rgba(255, 255, 255, 0.08) 81%,
          rgba(255, 255, 255, 0.11) 84%,
          rgba(255, 255, 255, 0.15) 86.5%,
          rgba(255, 255, 255, 0.2) 88.5%,
          rgba(255, 255, 255, 0.26) 90.5%,
          rgba(255, 255, 255, 0.33) 92.5%,
          rgba(255, 255, 255, 0.41) 94%,
          rgba(255, 255, 255, 0.5) 95.5%,
          rgba(255, 255, 255, 0.6) 96.8%,
          rgba(255, 255, 255, 0.7) 97.8%,
          rgba(255, 255, 255, 0.8) 98.6%,
          rgba(255, 255, 255, 0.9) 99.3%,
          var(--surface) 100%
        ),
        linear-gradient(
          180deg,
          rgba(28, 28, 34, 0.72) 0%,
          rgba(28, 28, 34, 0.58) 40%,
          rgba(28, 28, 34, 0.48) 78%,
          rgba(28, 28, 34, 0.38) 100%
        );
      pointer-events: none;
      z-index: 1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.6rem 0;
      max-width: 52rem;
    }

    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.75rem, 8vw, 5.5rem);
      font-weight: 350;
      line-height: 1.04;
      letter-spacing: -0.025em;
      color: #fff;
      margin-bottom: 2.5rem;
    }

    .hero-italic { font-style: italic; }

    .hero-feed {
      position: relative;
      width: 100%;
      max-width: 32rem;
      height: 3rem;
      overflow: hidden;
    }

    .hero-feed-item {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
    }

    .hero-feed-item.is-active {
      opacity: 1;
      visibility: inherit;
    }

    .hero-feed-item p {
      font-size: 0.9375rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-feed-icon {
      display: inline-flex;
      opacity: 0.7;
      flex-shrink: 0;
    }

    .hero-cta-wrap {
      position: absolute;
      bottom: 1.6rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      transition: transform 0.5s ease-out;
    }

    .hero-cta-wrap.is-hidden {
      transform: translateX(-50%) translateY(calc(100% + 2rem));
    }

    .hero-cta-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      width: 27.5rem;
      max-width: calc(100vw - 3.2rem);
      padding: 0.6rem;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: width 0.3s ease-out;
    }

    .hero-cta-text {
      flex: 1;
      min-width: 0;
      padding: 0 0.5rem;
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.8);
      white-space: nowrap;
    }

    .hero-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      height: 4rem;
      padding: 0 1.4rem;
      border-radius: 1.2rem;
      background: #fff;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.15s, color 0.15s, transform 0.15s;
    }

    .hero-cta-btn:hover {
      background: var(--surface-soft);
      transform: translateY(-1px);
    }

    .hero-cta-btn:focus-visible {
      outline: 2px solid rgba(66, 181, 220, 0.8);
      outline-offset: 2px;
      box-shadow: 0 0 0 3px rgba(66, 181, 220, 0.3);
    }

    @media (min-width: 768px) {
      .hero-cta-pill:focus-within { width: 36rem; }
    }

    .hero-cta-btn--standalone {
      height: 3.5rem;
      padding: 0 1.75rem;
      border-radius: 999px;
      box-shadow: var(--shadow-btn);
    }

    .amp {
      font-family: var(--font-amp);
      font-style: italic;
      font-weight: 500;
    }

    /* Doctor section */
    .doctor-section {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }

    .doctor-trust-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
      margin-top: 2.5rem;
    }

    .doctor-trust-cards .trust-card {
      text-align: center;
      padding: 1.25rem 1rem;
    }

    .trust-card-num {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--text);
      line-height: 1;
    }

    .trust-card-label {
      margin-top: 0.45rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.35;
    }

    /* Sections */
    section { padding: 5rem 0; }

    .section-label {
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-faint);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 350;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-lead {
      font-size: 1.0625rem;
      color: var(--text-muted);
      max-width: 42rem;
    }

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

    /* Feature cards */
    .features-grid {
      display: grid;
      gap: 1rem;
      margin-top: 3rem;
    }

    .card-surface {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
    }

    .snap-scroll {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
      padding-bottom: 0.5rem;
    }

    .snap-scroll::-webkit-scrollbar { display: none; }

    .snap-scroll > * {
      flex: 0 0 calc(100% - 3.8rem);
      max-width: 36.2rem;
      scroll-snap-align: center;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 1.75rem;
      transition: transform 0.18s, box-shadow 0.18s;
    }

    .feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

    .feature-card .ficon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem; height: 2.5rem;
      border-radius: 12px;
      background: var(--accent-soft);
      color: var(--accent-deep);
      margin-bottom: 1rem;
    }

    /* Pricing section */
    .pricing-stage {
      display: grid;
      gap: 2.5rem;
      align-items: start;
    }

    .pricing-visual {
      position: relative;
      height: 32rem;
    }

    .pricing-visual .split-image {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
    }

    .pricing-visual .split-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(28, 28, 34, 0.55) 0%, rgba(28, 28, 34, 0.2) 45%, rgba(28, 28, 34, 0.35) 100%);
      pointer-events: none;
    }

    .pricing-how-overlay {
      position: relative;
      z-index: 2;
      padding: 1.25rem;
      height: 100%;
      min-height: 0;
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }

    .pricing-how-overlay .section-label,
    .pricing-how-overlay .section-title,
    .pricing-how-overlay .section-lead {
      pointer-events: auto;
      color: #fff;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    }

    .pricing-how-overlay .section-lead {
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.9375rem;
      max-width: 28rem;
    }

    .how-float-cards {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-top: auto;
      pointer-events: auto;
      width: 100%;
      flex-shrink: 0;
    }

    .how-step-list {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .how-step-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      transition: border-color 0.18s ease;
    }

    .how-step-item.open { border-color: rgba(94, 107, 90, 0.28); }

    .how-step-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.1rem 1.25rem;
      background: none;
      border: none;
      font-family: var(--font-body);
      cursor: pointer;
      text-align: left;
    }

    .how-step-trigger-main {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 0;
    }

    .how-step-title {
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.3;
      color: var(--ink);
      transition: color 0.15s;
    }

    .how-step-trigger:hover .how-step-title,
    .how-step-item.open .how-step-title { color: var(--accent-deep); }

    .how-float-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-deep);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      flex-shrink: 0;
    }

    .how-step-icon {
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      color: var(--text-muted);
      transition: transform 0.22s ease, color 0.15s;
    }

    .how-step-item.open .how-step-icon {
      transform: rotate(180deg);
      color: var(--accent-deep);
    }

    .how-step-detail {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 1.25rem;
      height: 8rem;
      overflow-y: auto;
    }

    .how-step-panel {
      display: none;
    }

    .how-step-panel.is-active {
      display: block;
    }

    .how-step-panel p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .price-card {
      background: var(--surface-soft);
      border-radius: var(--radius-lg);
    }

    #pricing .pricing-grid {
      margin-top: 1.5rem;
    }

    /* Pinned showcase sections */
    .scroll-pin-section { padding: 0; }

    .stat-mobile { display: none; }
    .stat-desktop {
      display: block;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    /* Shared ocean background band */
    .ocean-band {
      position: relative;
      isolation: isolate;
    }

    .ocean-band::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(28, 28, 34, 0.55), rgba(28, 28, 34, 0.55)),
        url('../images/heroimagecart.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    @media (max-width: 767px) {
      .ocean-band::before {
        background-attachment: scroll;
        background-image:
          linear-gradient(rgba(28, 28, 34, 0.4), rgba(28, 28, 34, 0.4)),
          url('../images/heroimagecart.png');
      }
    }

    /* Stat showcase */
    #stat-showcase {
      position: relative;
      z-index: 1;
      background: transparent;
      padding-bottom: 2.5rem;
    }

    .stat-pin-wrapper {
      height: auto;
      min-height: 55vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
      opacity: 0;
      padding: 5rem 1.5rem;
    }

    .stat-pin-wrapper.is-visible {
      opacity: 1;
    }

    .stat-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .stat-content .stat-big-num,
    .stat-content .stat-headline {
      color: #fff;
    }

    .stat-big-num {
      display: block;
      font-family: var(--font-heading);
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 350;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 1rem;
      will-change: transform, opacity;
    }

    .stat-headlines {
      display: grid;
      place-items: center;
      position: relative;
      font-size: clamp(1.75rem, 4vw, 3rem);
      min-height: calc(2 * 1.12em);
    }

    .stat-headline {
      grid-column: 1;
      grid-row: 1;
      width: 100%;
      margin: 0;
      text-align: center;
      font-family: var(--font-heading);
      font-size: inherit;
      font-weight: 350;
      line-height: 1.12;
      letter-spacing: -0.02em;
      will-change: opacity, visibility;
    }

    .stat-headline-1 { z-index: 1; }

    .stat-headline-2 {
      z-index: 2;
      opacity: 0;
      visibility: hidden;
    }

    .stat-lead {
      max-width: 34rem;
      margin: 1.75rem auto 0;
      font-size: clamp(0.9375rem, 2vw, 1.0625rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.84);
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    }

    .stat-mobile-intro {
      text-align: center;
      padding: 2rem 1.5rem;
      margin-bottom: 1.25rem;
      background: transparent;
      box-shadow: none;
      border: 0;
    }

    .stat-mobile-intro .stat-big-num,
    .stat-mobile-intro .stat-headline {
      color: #fff;
    }

    .stat-mobile-intro .stat-big-num {
      display: block;
      margin-bottom: 0.75rem;
    }

    .stat-mobile-intro .stat-headlines {
      font-size: clamp(1.5rem, 5vw, 2rem);
      min-height: calc(2 * 1.15em);
    }

    .stat-mobile-intro .stat-headline {
      font-family: var(--font-heading);
      font-weight: 350;
      line-height: 1.15;
    }

    .stat-mobile-card {
      text-align: center;
      padding: 3rem 2rem;
    }

    .stat-mobile-card .stat-big-num { margin-bottom: 0.75rem; }

    .stat-mobile-card h2 {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      font-weight: 350;
      line-height: 1.15;
    }

    @media (max-width: 767px) {
      :root {
        --mobile-card-padding: 1.25rem;
        --mobile-card-radius: var(--radius-card);
        --mobile-title: 1.0625rem;
        --mobile-body: 0.9375rem;
        --mobile-label: 0.8125rem;
        --mobile-meta: 0.875rem;
      }

      .stat-desktop { display: none !important; }

      .stat-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: relative;
        z-index: 1;
        padding: 2.5rem 1.25rem 2.5rem;
        opacity: 0;
      }

      .stat-mobile.is-visible { opacity: 1; }

      .stat-mobile-intro {
        position: relative;
        top: auto;
        z-index: 2;
        padding: 0;
        margin-bottom: 0;
      }

      .stat-mobile-intro .stat-headlines {
        font-size: clamp(2rem, 5vw, 3rem);
      }

      .stat-mobile-intro .stat-big-num {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
      }
    }

    .feature-card h3 {
      font-family: var(--font-body);
      font-size: 1.0625rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* Split sections */
    .split {
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }

    .split-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--surface-soft);
    }

    .split-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .split-image.portrait { aspect-ratio: 3 / 4; max-width: 22rem; }

    /* Doctor */
    .doctor-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .doctor-header .section-title {
      margin-bottom: 0;
    }

    .doctor-block {
      display: grid;
      gap: 2rem;
      align-items: center;
      justify-items: center;
      max-width: 52rem;
      margin-inline: auto;
    }

    .doctor-photo {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--surface-soft);
      width: 100%;
      max-width: 16rem;
      margin-inline: auto;
      aspect-ratio: 3 / 4;
    }

    .doctor-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .doctor-bio {
      width: 100%;
      max-width: 36rem;
      text-align: center;
    }

    .doctor-credentials {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      position: relative;
      width: 7.5rem;
      flex-shrink: 0;
    }

    .doctor-credential {
      object-fit: contain;
    }

    .doctor-credential-loma {
      width: 7.5rem;
      height: 7.5rem;
      border-radius: var(--radius-sm);
    }

    .doctor-credential-kaiser {
      position: absolute;
      top: calc(7.5rem + 0.75rem);
      left: 50%;
      transform: translateX(-50%);
      width: 15rem;
      height: auto;
    }

    .doctor-bio-text p {
      font-size: 1.0625rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .doctor-bio-text p + p {
      margin-top: 1.25rem;
    }

    .doctor-name {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .price-card {
      padding: 2rem;
    }

    .price-card h3 {
      font-size: 1.0625rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .price {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      margin: 0.75rem 0;
    }

    .price-meta {
      font-size: 0.875rem;
      color: var(--text-faint);
    }

    .price-card p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
      line-height: 1.55;
    }

    /* FAQ */
    .faq-list {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    #faq { background: #fff; }

    .faq-list { max-width: 68rem; margin-inline: auto; gap: 1.2rem; }

    .faq-item {
      background: #fff;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(28,28,34,0.05), 0 4px 16px rgba(28,28,34,0.04);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.6rem;
      background: none;
      border: none;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      text-align: left;
      color: var(--ink);
      cursor: pointer;
      transition: color 0.15s;
    }

    @media (min-width: 768px) { .faq-question { padding: 2rem 2.4rem; } }

    .faq-question:hover { color: var(--accent-deep); }

    .faq-icon {
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      color: var(--text-muted);
      transition: transform 0.22s ease, color 0.15s;
    }

    .faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent-deep); }

    .faq-answer {
      display: none;
      padding: 0 1.6rem 1.6rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    @media (min-width: 768px) { .faq-answer { padding: 0 2.4rem 2.4rem; } }

    .faq-item.open .faq-answer { display: block; }

    /* Contact */
    .contact-layout {
      display: grid;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .contact-row-pair {
      display: grid;
      gap: 2rem;
    }

    .contact-card {
      background: var(--surface-soft);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
    }

    .contact-card-address {
      padding: 1.25rem 1.75rem;
    }

    .contact-card-address .contact-note {
      margin-top: 0.75rem;
      font-size: 0.875rem;
      color: var(--text-faint);
    }

    .contact-card h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .contact-card p,
    .contact-card a {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .contact-card a:hover { color: var(--text); text-decoration: underline; }

    .contact-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 21 / 7;
      max-height: 9rem;
      background: var(--surface-soft);
    }

    .contact-map iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Footer */
    .site-footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 0 3rem;
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .footer-links a:hover { color: var(--text); }

    .footer-emergency {
      font-size: 0.8125rem;
      color: var(--text-faint);
      line-height: 1.6;
      padding: 1rem 1.25rem;
      background: var(--surface-soft);
      border-radius: var(--radius-md);
    }

    .footer-copy {
      font-size: 0.8125rem;
      color: var(--text-faint);
    }

    /* Responsive */
    @media (max-width: 767px) {
      section { padding: 3.5rem 0; }

      .section-lead { font-size: var(--mobile-body); }

      .feature-card {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .feature-card h3 { font-size: var(--mobile-title); }

      .feature-card p { font-size: var(--mobile-body); }

      .doctor-trust-cards .trust-card {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .trust-card-label { font-size: var(--mobile-label); }

      .doctor-bio-text p { font-size: var(--mobile-body); }

      .price-card {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .price-card h3 { font-size: var(--mobile-title); }

      .price-card p { font-size: var(--mobile-body); }

      .price-meta { font-size: var(--mobile-meta); }

      .how-step-item { border-radius: var(--mobile-card-radius); }

      .how-step-trigger { padding: var(--mobile-card-padding); }

      .how-step-title { font-size: var(--mobile-title); }

      .how-step-detail {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .how-step-panel p { font-size: var(--mobile-body); }

      .faq-item { border-radius: var(--mobile-card-radius); }

      .faq-question {
        padding: var(--mobile-card-padding);
        font-size: var(--mobile-title);
      }

      .faq-answer {
        padding: 0 var(--mobile-card-padding) var(--mobile-card-padding);
        font-size: var(--mobile-body);
      }

      .contact-card {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .contact-card-address { padding: var(--mobile-card-padding); }

      .contact-card h3 { font-size: var(--mobile-title); }

      .contact-card p,
      .contact-card a { font-size: var(--mobile-body); }

      .contact-card-address .contact-note { font-size: var(--mobile-meta); }

      .footer-links a { font-size: var(--mobile-meta); }

      .footer-emergency,
      .footer-copy { font-size: var(--mobile-label); }

      .cond-modal-dialog {
        padding: var(--mobile-card-padding);
        border-radius: var(--mobile-card-radius);
      }

      .cond-modal-desc,
      .cond-modal-help { font-size: var(--mobile-body); }

      .nav-pill {
        top: 0.75rem;
        width: calc(100% - 1rem);
        max-width: none;
      }

      .nav-inner {
        width: 100%;
        height: 4.1rem;
        min-height: 4.1rem;
        padding: 0 0.5rem;
        gap: 0.25rem;
      }

      .nav-logo-btn {
        height: 3.25rem;
        min-height: 3.25rem;
        padding: 0 0.5rem;
      }

      .nav-logo-btn img { height: 2.15rem; }

      .nav-links {
        flex: 1;
        justify-content: space-between;
        gap: 0;
      }

      .nav-link {
        flex: 1;
        height: 3.25rem;
        min-height: 3.25rem;
        font-size: 0.8125rem;
        padding: 0 0.2rem;
      }
      .floating-contact { bottom: 0.75rem; right: 0.75rem; gap: 0.5rem; }
      .floating-btn-wrap { width: 9.75rem; }
      .btn-floating { padding: 1rem 1.25rem; font-size: var(--mobile-body); }

      .hero {
        height: 72svh;
        min-height: 22rem;
        padding-top: 5rem;
      }

      .hero h1 {
        margin-bottom: 2rem;
        font-size: clamp(2rem, 7vw, 2.5rem);
      }

      .hero-feed { height: 2.5rem; }

      .hero-cta-pill { width: calc(100vw - 3.2rem); }

      .hero-cta-text {
        font-size: var(--mobile-body);
        white-space: normal;
        line-height: 1.3;
      }

      .hero-cta-btn {
        height: 3.5rem;
        padding: 0 1rem;
        font-size: var(--mobile-body);
      }

      .doctor-block {
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          "loma photo kaiser"
          "bio bio bio";
        gap: 1.5rem 0;
        width: 100%;
        max-width: none;
        justify-items: stretch;
      }

      .doctor-bio {
        display: contents;
        max-width: none;
      }

      .doctor-credentials {
        display: contents;
      }

      .doctor-credential-loma {
        grid-area: loma;
        position: relative;
        z-index: 1;
        justify-self: end;
        width: 9rem;
        height: 9rem;
        margin-right: 0;
        margin-left: 0;
      }

      .doctor-credential-kaiser {
        grid-area: kaiser;
        position: relative;
        z-index: 1;
        justify-self: start;
        top: auto;
        left: auto;
        transform: none;
        width: 13rem;
        max-height: 13.5rem;
        margin-left: 0;
      }

      .doctor-photo {
        grid-area: photo;
        position: relative;
        z-index: 2;
        width: min(14.5rem, 42vw);
        max-width: 14.5rem;
        justify-self: center;
      }

      .doctor-bio-text {
        grid-area: bio;
      }

      .pricing-visual {
        height: auto;
      }

      .pricing-how-overlay {
        height: auto;
        min-height: 34rem;
        padding: 2rem 1.35rem 1.5rem;
        justify-content: flex-start;
        gap: 1.75rem;
      }

      .pricing-how-overlay .section-lead {
        line-height: 1.6;
        max-width: none;
      }

      .how-float-cards {
        margin-top: 0;
        gap: 1rem;
      }

      .how-step-list {
        gap: 0.875rem;
      }

      .how-step-detail {
        height: auto;
        min-height: 5.75rem;
      }

      .how-step-panel p {
        line-height: 1.65;
      }
    }

    @media (max-width: 399px) {
      .nav-pill { width: calc(100% - 0.75rem); }

      .nav-inner {
        padding: 0 0.4rem;
      }

      .nav-link {
        font-size: 0.75rem;
        padding: 0 0.12rem;
      }

      .nav-logo-btn img { height: 2rem; }

      .doctor-block {
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
          "loma photo kaiser"
          "bio bio bio";
        width: 100%;
        max-width: none;
      }

      .doctor-credential-loma {
        width: 7.75rem;
        height: 7.75rem;
      }

      .doctor-credential-kaiser {
        width: 11.25rem;
        max-height: 11.75rem;
      }

      .doctor-photo {
        width: min(12.5rem, 40vw);
        max-width: 12.5rem;
      }
    }

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

      .pricing-stage { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

      .pricing-visual { height: 36rem; }

      .pricing-how-overlay {
        padding: 2rem;
        justify-content: space-between;
      }

      .how-float-cards {
        gap: 0.75rem;
        padding-top: 2rem;
        max-width: 26rem;
      }

      .how-step-list { gap: 0.75rem; }

      .how-step-trigger { padding: 1.2rem 1.35rem; }

      .how-step-title { font-size: 1.125rem; }

      .how-float-step {
        width: 2.125rem;
        height: 2.125rem;
        font-size: 0.8125rem;
      }

      .how-step-detail {
        padding: 1.35rem;
        height: 8.5rem;
      }

      .how-step-panel p { font-size: 1rem; }

      .doctor-trust-cards { grid-template-columns: repeat(4, 1fr); gap: 1rem; }

      .split { grid-template-columns: 1fr 1fr; }
      .split.reverse .split-content { order: 2; }
      .split.reverse .split-image { order: 1; }

      .doctor-block {
        grid-template-columns: auto 1fr;
        gap: 3rem;
        justify-items: stretch;
        align-items: start;
        max-width: 56rem;
      }

      .doctor-photo {
        grid-column: 1;
        grid-row: 1;
        max-width: 17.5rem;
        width: 17.5rem;
        position: static;
        z-index: auto;
      }

      .doctor-bio {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
        grid-column: 2;
        grid-row: 1;
        max-width: none;
        text-align: left;
        align-self: center;
        overflow: visible;
      }

      .doctor-credentials {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        position: relative;
        width: 9rem;
        flex-shrink: 0;
        align-self: flex-start;
        overflow: visible;
      }

      .doctor-credential-loma {
        width: 9rem;
        height: 9rem;
        margin: 0;
        justify-self: auto;
        z-index: auto;
        position: static;
      }

      .doctor-credential-kaiser {
        position: absolute;
        top: calc(9rem + 0.75rem);
        left: 50%;
        transform: translateX(-58%);
        width: 24rem;
        max-height: none;
        margin: 0;
        z-index: 1;
      }

      .doctor-bio-text {
        grid-area: auto;
        flex: 1;
        min-width: 0;
      }

      .pricing-grid { grid-template-columns: repeat(3, 1fr); }
      .pricing-grid.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); }

      .contact-row-pair { grid-template-columns: repeat(2, 1fr); align-items: stretch; }

      .contact-map { aspect-ratio: unset; max-height: none; height: 100%; min-height: 0; }

      .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
    }


    #doctor, #conditions, #pricing, #location {
      scroll-margin-top: 7rem;
    }

    /* Conditions Treated */
    #conditions {
      position: relative;
      z-index: 2;
      background: transparent;
      padding-bottom: 1.5rem;
    }

    #conditions .section-label,
    #conditions .section-title,
    #conditions .section-lead {
      color: #fff;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    }

    #conditions .section-lead {
      color: rgba(255, 255, 255, 0.88);
    }

    #services {
      position: relative;
      z-index: 2;
      background: var(--canvas);
    }

    #pricing,
    #faq,
    #location,
    #policies {
      position: relative;
      z-index: 2;
      background: var(--canvas);
    }

    .section-label.accent-gold { color: var(--gold); }

    .conditions-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      margin-top: 2.5rem;
      align-items: start;
    }

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

    .condition-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 1.6rem;
      transition: box-shadow 0.18s, border-color 0.18s;
    }

    .condition-card:hover {
      box-shadow: var(--shadow-card);
      border-color: rgba(163, 177, 138, 0.35);
    }

    .cond-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 1.25rem 1.4rem;
      background: none;
      border: none;
      font: inherit;
      color: inherit;
      text-align: left;
      cursor: pointer;
      transition: color 0.15s;
    }

    .cond-toggle:hover { color: var(--accent-deep); }

    .cond-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cond-title {
      flex: 1;
      font-family: var(--font-heading);
      font-weight: 350;
      font-size: 1.125rem;
      color: var(--text);
      line-height: 1.2;
    }

    .cond-chevron {
      flex-shrink: 0;
      width: 1.125rem;
      height: 1.125rem;
      color: var(--text-muted);
    }

    @media (max-width: 767px) {
      .conditions-grid {
        gap: 0.875rem;
      }

      .condition-card {
        border-radius: var(--mobile-card-radius);
        box-shadow: var(--shadow-card);
      }

      .cond-toggle {
        padding: var(--mobile-card-padding);
        gap: 0.75rem;
      }

      .cond-title {
        font-family: var(--font-body);
        font-size: var(--mobile-title);
        font-weight: 400;
        line-height: 1.3;
        color: var(--text);
      }

      .cond-modal-header .cond-title {
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-weight: 350;
      }
    }

    .cond-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
    }

    .cond-modal[hidden] { display: none; }

    .cond-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(28, 28, 34, 0.45);
      backdrop-filter: blur(4px);
    }

    .cond-modal-dialog {
      position: relative;
      width: 100%;
      max-width: 32rem;
      max-height: min(85vh, 36rem);
      overflow-y: auto;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 1.6rem;
      padding: 1.75rem 1.5rem;
      box-shadow: 0 8px 32px rgba(28, 28, 34, 0.12);
    }

    .cond-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 50%;
      background: var(--surface-soft);
      color: var(--text-muted);
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    .cond-modal-close:hover {
      background: var(--accent-soft);
      color: var(--accent-deep);
    }

    .cond-modal-header {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding-right: 2rem;
      margin-bottom: 1.25rem;
    }

    .cond-modal-header .cond-title {
      font-size: 1.375rem;
    }

    .cond-modal-desc,
    .cond-modal-help {
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .cond-modal-help {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }

    .cond-modal-help strong {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text);
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.in { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      .hero-feed-item {
        opacity: 0;
        visibility: hidden;
      }

      .hero-feed-item:first-child {
        opacity: 1;
        visibility: inherit;
        transform: none;
      }

      .reveal { opacity: 1; transform: none; transition: none; }
      .floating-btn-wrap::before { animation: none; }
      .stat-desktop { display: none !important; }
      .stat-mobile {
        display: flex !important;
        flex-direction: column;
        opacity: 0;
      }
      .stat-mobile.is-visible { opacity: 1; }
      * { scroll-behavior: auto; }
    }

    /* Inner pages */
    .nav-pill.nav-inner-page {
      background: rgba(227, 221, 207, 0.85);
      border: 1px solid rgba(28, 28, 34, 0.08);
    }

    .nav-pill.nav-inner-page .nav-link {
      color: var(--text-muted);
    }

    .nav-pill.nav-inner-page .nav-link:hover {
      background: rgba(28, 28, 34, 0.06);
      color: var(--ink);
    }

    .page-hero {
      padding: 8.5rem 0 3.5rem;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }

    .page-hero-inner {
      display: grid;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .page-hero-inner {
        grid-template-columns: auto 1fr;
        gap: 2.5rem;
      }
    }

    .page-hero-photo {
      width: min(10rem, 32vw);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--surface-soft);
      flex-shrink: 0;
      justify-self: center;
    }

    @media (min-width: 768px) {
      .page-hero-photo {
        width: 11rem;
        justify-self: start;
      }
    }

    .page-hero-photo img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
    }

    .page-hero-text .section-title {
      max-width: 48rem;
    }

    .page-hero .section-lead {
      margin-top: 1rem;
    }

    .hero-kicker {
      font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.82);
      margin-top: -1.25rem;
      margin-bottom: 2rem;
      line-height: 1.5;
      max-width: 36rem;
    }

    .inner-content {
      padding: 4rem 0;
    }

    .inner-content .prose {
      max-width: 42rem;
    }

    .inner-content .prose p {
      font-size: 1.0625rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .inner-content .prose h2 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 350;
      margin: 2.5rem 0 1rem;
      letter-spacing: -0.02em;
    }

    .inner-content .prose ul {
      margin: 0 0 1.25rem 1.25rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .inner-content .prose li + li {
      margin-top: 0.35rem;
    }

    .inner-split {
      display: grid;
      gap: 2.5rem;
      align-items: start;
    }

    @media (min-width: 768px) {
      .inner-split {
        grid-template-columns: 1fr 1fr;
      }
    }

    .cta-band {
      padding: 3rem 0;
      background: var(--surface-soft);
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .cta-band .section-title {
      font-size: clamp(1.5rem, 4vw, 2.25rem);
      margin-bottom: 1.25rem;
    }

    .metro-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .metro-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .metro-faq {
      margin-top: 2.5rem;
    }

    .footer-areas {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }

    .footer-areas-label {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-faint);
      margin-bottom: 0.5rem;
    }

    .footer-areas-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 0.85rem;
    }

    .footer-areas-links a {
      font-size: 0.75rem;
      color: var(--text-faint);
    }

    .footer-areas-links a:hover {
      color: var(--text-muted);
    }

    .serving-note {
      margin-top: 1.5rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 42rem;
    }

    .hero-logo {
      width: min(18rem, 72vw);
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    }

    .hero-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .doctor-block--solo {
      grid-template-columns: 1fr;
      max-width: 48rem;
    }

    .doctor-block--solo .doctor-bio {
      max-width: none;
    }

    .page-hero-logo {
      width: min(12rem, 40vw);
      flex-shrink: 0;
      justify-self: center;
    }

    .page-hero-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .contact-telehealth-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

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

    @media (max-width: 767px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    .coming-soon-note {
      margin-top: 1rem;
      padding: 0.875rem 1rem;
      background: var(--accent-soft);
      border-radius: var(--radius-sm);
      font-size: 0.9375rem;
      color: var(--accent-deep);
    }

    .payment-note {
      margin-top: 1.25rem;
      font-size: 0.875rem;
      color: var(--text-faint);
      line-height: 1.6;
    }
