    :root {
      --green-deep: #071A0F;
      --green-dark: #0B2318;
      --green-mid: #132E1E;
      --green-rich: #1B4A2C;
      --green-accent: #256340;
      --gold: #B8956A;
      --gold-light: #D4AE82;
      --gold-pale: #EDD9BC;
      --cream: #F8F4ED;
      --cream-dark: #EDE7DC;
      --cream-text: #6B5E4E;
      --white: #FFFFFF;
      --border-dark: rgba(200, 169, 110, 0.18);
      --border-cream: rgba(107, 94, 78, 0.18);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ─── TYPOGRAPHY ─── */
    .serif {
      font-family: 'Cormorant Garamond', Georgia, serif;
    }

    /* ─── SECTION THEMES ─── */
    .on-dark {
      background: var(--green-dark);
      color: var(--cream);
    }

    .on-dark-2 {
      background: var(--green-mid);
      color: var(--cream);
    }

    .on-dark-3 {
      background: var(--green-deep);
      color: var(--cream);
    }

    .on-cream {
      background: var(--cream);
      color: var(--green-dark);
    }

    .on-cream-2 {
      background: var(--cream-dark);
      color: var(--green-dark);
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(7, 26, 15, 0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-dark);
      height: 70px;
      padding: 0 clamp(20px, 5vw, 80px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo-img {
      height: 36px;
      width: auto;
      display: block;
    }

    nav {
      display: flex;
      align-items: center;
      gap: clamp(16px, 2vw, 32px);
    }

    nav a {
      color: rgba(248, 244, 237, 0.6);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color .2s;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--cream);
    }

    .h-ctas {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn-hdr-ghost {
      border: 1px solid rgba(184, 149, 106, 0.35);
      color: rgba(248, 244, 237, 0.8);
      background: transparent;
      padding: 8px 18px;
      border-radius: 4px;
      font-size: 12.5px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
      white-space: nowrap;
    }

    .btn-hdr-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-pale);
    }

    .btn-hdr-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 9px 22px;
      border-radius: 4px;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }

    .btn-hdr-primary:hover {
      box-shadow: 0 4px 20px rgba(184, 149, 106, 0.4);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--cream);
      transition: all .3s;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      inset: 70px 0 0 0;
      background: rgba(7, 26, 15, 0.98);
      backdrop-filter: blur(20px);
      z-index: 190;
      padding: 40px 24px;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      color: rgba(248, 244, 237, 0.8);
      text-decoration: none;
      font-size: 17px;
      font-weight: 400;
      padding: 18px 0;
      border-bottom: 1px solid var(--border-dark);
      letter-spacing: 0.3px;
    }

    .mobile-nav-ctas {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 32px;
    }

    /* ─── HERO ─── */
    .hero {
      background: var(--green-deep);
      min-height: calc(100vh - 70px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 56px clamp(20px, 5vw, 80px) 70px;
    }

    .hero-glow-1 {
      position: absolute;
      top: -10%;
      right: -5%;
      width: min(700px, 80vw);
      height: min(700px, 80vw);
      background: radial-gradient(circle, rgba(37, 99, 64, 0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: min(500px, 60vw);
      height: min(500px, 60vw);
      background: radial-gradient(circle, rgba(184, 149, 106, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(30px, 5vw, 60px);
      align-items: stretch;
      width: 100%;
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(184, 149, 106, 0.3);
      border-radius: 100px;
      padding: 6px 16px 6px 8px;
      margin-bottom: 32px;
      align-self: flex-start;
      width: fit-content;
    }

    .hero-pill-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.4;
      }
    }

    .hero-pill-text {
      font-size: 11px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--gold);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4.2vw, 3.6rem);
      line-height: 1.12;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .hero h1 em {
      color: var(--gold-light);
      font-style: italic;
    }

    .hero-sub {
      font-size: clamp(0.92rem, 1.2vw, 1.02rem);
      color: rgba(248, 244, 237, 0.6);
      max-width: 520px;
      margin-bottom: 32px;
      line-height: 1.8;
      font-weight: 300;
    }

    /* stat row with icons */
    .hero-stats-row {
      display: flex;
      gap: clamp(20px, 3vw, 40px);
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .hstat {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hstat-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 106, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
      color: var(--gold);
    }

    .hstat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
    }

    .hstat-lbl {
      font-size: 11px;
      color: rgba(248, 244, 237, 0.45);
      margin-top: 1px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .btn-lg-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      letter-spacing: 0.3px;
    }

    .btn-lg-gold:hover {
      box-shadow: 0 8px 32px rgba(184, 149, 106, 0.35);
      transform: translateY(-2px);
    }

    .btn-lg-ghost {
      background: transparent;
      border: 1.5px solid rgba(248, 244, 237, 0.22);
      color: var(--cream);
      padding: 14px 26px;
      border-radius: 5px;
      font-size: 13.5px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .25s;
    }

    .btn-lg-ghost:hover {
      border-color: var(--cream);
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-enterprise {
      font-size: 13px;
      color: rgba(248, 244, 237, 0.45);
    }

    .hero-enterprise a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }

    .hero-enterprise a:hover {
      color: var(--gold-pale);
    }

    /* ─── HERO VIDEO PANEL ─── */
    .hero-video-panel {
      position: relative;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
      border: 1px solid rgba(184, 149, 106, 0.25);
      border-radius: 16px;
      padding: clamp(28px, 3.2vw, 44px);
      overflow: hidden;
      height: 100%;
      width: 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-video-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(184, 149, 106, 0.35) 1px, transparent 1px);
      background-size: 16px 16px;
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 30%, #000 0%, transparent 70%);
      mask-image: radial-gradient(ellipse 70% 70% at 70% 30%, #000 0%, transparent 70%);
      opacity: 0.5;
      pointer-events: none;
    }

    .hvp-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--cream);
      text-align: center;
      margin-bottom: clamp(28px, 4vw, 44px);
      position: relative;
      z-index: 2;
    }

    .journey-track {
      position: relative;
      z-index: 2;
      margin-bottom: clamp(36px, 5vw, 56px);
    }

    .jt-line {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 4px;
    }

    .jt-line::before {
      content: '';
      position: absolute;
      left: 24px;
      right: 24px;
      top: 24px;
      height: 1px;
      background: repeating-linear-gradient(90deg, rgba(184, 149, 106, 0.4) 0, rgba(184, 149, 106, 0.4) 3px, transparent 3px, transparent 8px);
    }

    .jt-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      position: relative;
      flex: 1;
    }

    .jt-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(184, 149, 106, 0.5);
      background: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--gold-light);
      position: relative;
      z-index: 2;
    }

    .jt-num {
      font-size: 9px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .jt-label {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.6px;
      color: var(--cream);
      text-transform: uppercase;
    }

    .jt-sub {
      font-size: 9.5px;
      color: rgba(248, 244, 237, 0.4);
      text-align: center;
      line-height: 1.4;
      max-width: 80px;
    }

    .play-cta-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      position: relative;
      z-index: 2;
      padding: 8px 0 28px;
    }

    .play-btn-big {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(248, 244, 237, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s;
      color: var(--cream);
      font-size: 21px;
    }

    .play-btn-big:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
      transform: scale(1.06);
    }

    .play-cta-text {
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.55);
      text-align: center;
      max-width: 340px;
      line-height: 1.6;
    }

    .video-controls-bar {
      position: relative;
      z-index: 2;
      margin-top: clamp(24px, 3.4vw, 36px);
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .vc-progress {
      height: 3px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 3px;
      margin-bottom: 14px;
      position: relative;
    }

    .vc-progress-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 18%;
      background: var(--gold);
      border-radius: 3px;
    }

    .vc-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .vc-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .vc-icon-btn {
      background: none;
      border: none;
      color: rgba(248, 244, 237, 0.7);
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      transition: color .2s;
      padding: 2px;
    }

    .vc-icon-btn:hover {
      color: var(--cream);
    }

    .vc-time {
      font-size: 11.5px;
      color: rgba(248, 244, 237, 0.45);
      font-variant-numeric: tabular-nums;
    }

    .vc-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* ─── SECTION WRAPPERS ─── */
    .section-wrap {
      padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
    }

    .section-wrap.narrow {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: clamp(20px, 5vw, 80px);
      padding-right: clamp(20px, 5vw, 80px);
    }

    /* ─── SECTION LABELS / HEADINGS ─── */
    .s-eyebrow {
      font-size: 10.5px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .s-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .s-eyebrow.cream-ey {
      color: var(--gold);
    }

    .s-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.5vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -0.3px;
    }

    .on-dark .s-title,
    .on-dark-2 .s-title,
    .on-dark-3 .s-title {
      color: var(--cream);
    }

    .on-cream .s-title,
    .on-cream-2 .s-title {
      color: var(--green-dark);
    }

    .s-sub {
      font-size: 15.5px;
      line-height: 1.78;
      max-width: 580px;
      font-weight: 300;
    }

    .on-dark .s-sub,
    .on-dark-2 .s-sub,
    .on-dark-3 .s-sub {
      color: rgba(248, 244, 237, 0.58);
    }

    .on-cream .s-sub,
    .on-cream-2 .s-sub {
      color: var(--cream-text);
    }

    .gold-rule {
      width: 40px;
      height: 1.5px;
      background: var(--gold);
      margin: 20px 0 32px;
    }

    /* ─── BUTTONS (section) ─── */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 13px 28px;
      border-radius: 4px;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
      letter-spacing: 0.2px;
    }

    .btn-gold:hover {
      box-shadow: 0 6px 24px rgba(184, 149, 106, 0.35);
      transform: translateY(-1px);
    }

    .btn-outline-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      padding: 12px 26px;
      border-radius: 4px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
    }

    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--green-deep);
    }

    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid rgba(27, 74, 44, 0.4);
      color: var(--green-rich);
      padding: 12px 26px;
      border-radius: 4px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
    }

    .btn-outline-dark:hover {
      background: var(--green-rich);
      color: var(--cream);
    }

    /* ─── THE MEDIPOCKET DIFFERENCE (DARK, DECORATIVE) ─── */
    .diff-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .diff-arc {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 106, 0.18);
      pointer-events: none;
    }

    .diff-arc-1 {
      width: 900px;
      height: 900px;
      top: -420px;
      right: -380px;
      border-color: rgba(184, 149, 106, 0.14);
    }

    .diff-arc-2 {
      width: 700px;
      height: 700px;
      top: -280px;
      right: -260px;
      border-color: rgba(184, 149, 106, 0.22);
    }

    .diff-arc-3 {
      width: 600px;
      height: 600px;
      bottom: -380px;
      left: -300px;
      border-color: rgba(184, 149, 106, 0.12);
    }

    .diff-dot {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px 2px rgba(184, 149, 106, 0.6);
      pointer-events: none;
    }

    .diff-globe {
      position: absolute;
      left: -90px;
      top: 50%;
      transform: translateY(-50%);
      width: 340px;
      height: 340px;
      opacity: 0.5;
      pointer-events: none;
    }

    .diff-globe svg {
      width: 100%;
      height: 100%;
    }

    .diff-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4.2vw, 3.4rem);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 20px;
      letter-spacing: -0.3px;
      position: relative;
      z-index: 2;
    }

    .diff-title em {
      color: var(--gold-light);
      font-style: normal;
    }

    .diff-rule {
      width: 70px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 28px;
      position: relative;
      z-index: 2;
    }

    .diff-sub {
      font-size: 15.5px;
      color: rgba(248, 244, 237, 0.6);
      max-width: 600px;
      margin: 0 auto clamp(44px, 6vw, 64px);
      line-height: 1.75;
      font-weight: 300;
      position: relative;
      z-index: 2;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .diff-card {
      background: var(--cream);
      border-radius: 14px;
      padding: 36px 18px 30px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    }

    .diff-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(1.9rem, 2.6vw, 2.6rem);
      color: var(--green-dark);
      line-height: 1;
      margin-bottom: 14px;
    }

    .diff-card-rule {
      width: 30px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 14px;
    }

    .diff-lbl {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.4;
      font-weight: 500;
    }

    /* ─── TRUST (CREAM) — legacy, kept for reference ─── */
    .trust-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }

    .stats-quad {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .stat-box {
      padding: 28px 24px;
      background: var(--white);
      border-radius: 6px;
      border: 1px solid var(--border-cream);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--green-rich);
      line-height: 1;
    }

    .stat-lbl {
      font-size: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--cream-text);
      margin-top: 8px;
      font-weight: 600;
    }

    /* ─── SERVICES (PHOTO CARDS, DARK + WORLD MAP TEXTURE) ─── */
    .services-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .services-map-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -52%);
      width: min(1400px, 160vw);
      height: auto;
      opacity: 0.5;
      pointer-events: none;
      z-index: 1;
    }

    .services-arc-bg {
      position: absolute;
      top: -10%;
      right: -8%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184, 149, 106, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .services-header {
      text-align: center;
      max-width: 880px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 2;
    }

    .services-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .services-eyebrow::before,
    .services-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    .services-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2.6rem, 5.6vw, 4.4rem);
      line-height: 1.12;
      color: var(--cream);
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }

    .services-title .accent-line {
      display: block;
      color: var(--gold-light);
    }

    .services-rule {
      width: 56px;
      height: 1px;
      background: var(--gold);
      margin: 28px auto;
    }

    .services-sub {
      font-size: 16px;
      color: rgba(248, 244, 237, 0.6);
      line-height: 1.75;
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto;
    }

    .care-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 0;
      position: relative;
      z-index: 2;
    }

    .care-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border: 1px solid var(--border-dark);
      background: var(--green-mid);
      transition: transform .3s, box-shadow .3s;
    }

    .care-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .care-photo {
      height: 190px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .care-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .care-card:hover .care-photo img {
      transform: scale(1.06);
    }

    .care-photo-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      position: relative;
    }

    .care-caption {
      background: var(--cream);
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .care-caption-text {
      min-width: 0;
    }

    .care-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .care-copy {
      font-size: 12.5px;
      color: var(--cream-text);
      line-height: 1.5;
    }

    .care-arrow {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: all .25s;
    }

    .care-card:hover .care-arrow {
      background: var(--gold);
      color: var(--green-deep);
      transform: rotate(45deg);
    }

    .care-link {
      position: absolute;
      inset: 0;
      z-index: 5;
    }

    /* ─── EXPLORE CONDITIONS & PATHWAYS (CREAM) ─── */
    .pathways-section {
      background: var(--cream);
    }

    .pathways-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 44px;
    }

    .pathways-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .pathways-eyebrow::before,
    .pathways-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .pathways-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      color: var(--green-dark);
      margin-bottom: 18px;
    }

    .pathways-title em {
      color: var(--gold);
      font-style: normal;
    }

    .pathways-sub {
      font-size: 15.5px;
      color: var(--cream-text);
      line-height: 1.75;
      font-weight: 400;
    }

    .search-wrap {
      position: relative;
      max-width: 760px;
      margin: 0 auto 32px;
    }

    .search-input {
      width: 100%;
      background: var(--white);
      border: 1.5px solid var(--border-cream);
      border-radius: 100px;
      padding: 18px 64px 18px 56px;
      font-size: 15px;
      color: var(--green-dark);
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .search-input:focus {
      border-color: var(--gold);
      box-shadow: 0 4px 24px rgba(184, 149, 106, 0.18);
    }

    .search-input::placeholder {
      color: rgba(107, 94, 78, 0.5);
    }

    .s-icon {
      position: absolute;
      left: 22px;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green-deep);
      color: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .search-arrow-btn {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }

    .search-arrow-btn:hover {
      transform: translateY(-50%) scale(1.06);
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 48px;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border-cream);
      font-size: 13.5px;
      color: var(--cream-text);
      cursor: pointer;
      background: var(--white);
      transition: all .2s;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    .chip:hover {
      border-color: var(--gold);
      color: var(--green-dark);
    }

    .chip.active {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-color: var(--gold);
      color: var(--green-deep);
      font-weight: 700;
    }

    .chip-ic {
      font-size: 13px;
      line-height: 1;
    }

    /* featured pathway card — matches reference proportions exactly */
    .pathway-card {
      display: grid;
      grid-template-columns: 300px 1fr;
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-cream);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
      max-width: 1000px;
      margin: 0 auto;
      min-height: 230px;
    }

    .pathway-photo {
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .pathway-photo-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }

    .pathway-content {
      padding: 26px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }

    .pathway-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 8px;
    }

    .pathway-eyebrow {
      font-size: 10.5px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
    }

    .pathway-explore-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      background: var(--cream);
      border: 1.5px solid var(--border-cream);
      color: var(--green-dark);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
      white-space: nowrap;
    }

    .pathway-explore-btn:hover {
      background: var(--green-dark);
      color: var(--cream);
      border-color: var(--green-dark);
    }

    .pathway-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(1.5rem, 2.2vw, 1.9rem);
      color: var(--green-dark);
      margin-bottom: 10px;
    }

    .pathway-desc {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 480px;
    }

    .pathway-highlights {
      display: flex;
      align-items: flex-start;
      gap: 28px;
      flex-wrap: wrap;
    }

    .ph-item {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .ph-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(184, 149, 106, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    .ph-icon svg {
      width: 16px;
      height: 16px;
    }

    .ph-label {
      font-size: 12px;
      color: var(--green-dark);
      font-weight: 500;
      line-height: 1.3;
    }

    .pathways-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 36px;
      font-size: 13px;
      color: var(--cream-text);
    }

    .pathways-trust-icon {
      color: var(--gold);
      font-size: 15px;
    }

    /* ─── LEADING CENTERS OF EXCELLENCE (CREAM) ─── */
    .centers-section {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .centers-arc {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 106, 0.15);
      pointer-events: none;
    }

    .centers-arc-1 {
      width: 760px;
      height: 760px;
      top: -420px;
      left: -280px;
    }

    .centers-arc-2 {
      width: 600px;
      height: 600px;
      top: -340px;
      left: -200px;
    }

    .centers-arc-3 {
      width: 680px;
      height: 680px;
      bottom: -400px;
      right: -260px;
    }

    .centers-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 2;
    }

    .centers-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .centers-eyebrow::before,
    .centers-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    .centers-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      color: var(--green-dark);
      margin-bottom: 18px;
    }

    .centers-title em {
      color: var(--gold);
      font-style: normal;
    }

    .centers-sub {
      font-size: 15.5px;
      color: var(--cream-text);
      line-height: 1.75;
      font-weight: 400;
    }

    .centers-stats-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      max-width: 1040px;
      margin: 0 auto 36px;
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 14px;
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
      position: relative;
      z-index: 2;
      padding: 24px 30px;
    }

    .cstat {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 24px;
      border-right: 1px solid var(--border-cream);
    }

    .cstat:last-child {
      border-right: none;
    }

    .cstat-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(184, 149, 106, 0.12);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cstat-icon svg {
      width: 14px;
      height: 14px;
    }

    .cstat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.1;
      white-space: nowrap;
    }

    .cstat-lbl {
      font-size: 12px;
      color: var(--cream-text);
      line-height: 1.35;
    }

    .cstat-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      text-align: center;
      border-right: 1px solid var(--border-cream);
    }

    .cstat-badge:last-child {
      border-right: none;
    }

    .cstat-badge .cstat-icon {
      width: 30px;
      height: 30px;
    }

    .cstat-badge .cstat-icon svg {
      width: 14px;
      height: 14px;
    }

    .cstat-badge-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--green-dark);
      white-space: nowrap;
    }

    .cstat-badge-sub {
      font-size: 11px;
      color: var(--gold);
      white-space: nowrap;
    }

    .centers-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .cfilter {
      padding: 9px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--gold);
      background: var(--cream);
      font-size: 13px;
      color: var(--green-dark);
      cursor: pointer;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
    }

    .cfilter.active {
      background: var(--green-dark);
      border-color: var(--green-dark);
      color: var(--cream);
      font-weight: 600;
    }

    .cfilter:not(.active):hover {
      background: rgba(184, 149, 106, 0.1);
    }

    .centers-grid {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .centers-row {
      display: grid;
      gap: 18px;
    }

    .centers-row-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .centers-row-5 {
      grid-template-columns: repeat(5, 1fr);
    }

    .center-card {
      background: var(--cream-dark);
      border: 1px solid var(--border-cream);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .3s, box-shadow .3s;
    }

    .center-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .center-photo {
      height: 150px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .center-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .center-card:hover .center-photo img {
      transform: scale(1.03);
    }

    .center-photo-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

    .center-body {
      padding: 16px 18px;
    }

    .center-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .center-logo {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      flex-shrink: 0;
      background: var(--white);
      border: 1px solid var(--border-cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      color: var(--green-dark);
    }

    .center-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.25;
    }

    .center-bottom-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
    }

    .center-spec {
      font-size: 11.5px;
      color: var(--cream-text);
      line-height: 1.5;
    }

    .center-arrow {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(184, 149, 106, 0.12);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: all .25s;
    }

    .center-card:hover .center-arrow {
      background: var(--gold);
      color: var(--cream);
      transform: rotate(45deg);
    }

    .centers-footer {
      text-align: center;
      margin-top: 44px;
      position: relative;
      z-index: 2;
    }

    .centers-footer-text {
      font-size: 14.5px;
      color: var(--green-dark);
      margin-bottom: 22px;
      font-weight: 500;
    }

    .btn-centers {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--green-dark);
      color: var(--cream);
      padding: 14px 30px;
      border-radius: 100px;
      border: none;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .25s;
    }

    .btn-centers:hover {
      background: var(--green-rich);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(19, 46, 30, 0.25);
    }

    /* ─── WHO WE SERVE (CREAM, 4 IMAGE CARDS) ─── */
    .serve-section {
      background: var(--cream);
    }

    .serve-header {
      text-align: center;
      max-width: 740px;
      margin: 0 auto 48px;
    }

    .serve-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .serve-eyebrow::before,
    .serve-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .serve-title-main {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2rem, 4.2vw, 3.1rem);
      line-height: 1.15;
      color: var(--green-dark);
      margin-bottom: 18px;
    }

    .serve-sub {
      font-size: 15.5px;
      color: var(--cream-text);
      line-height: 1.75;
      font-weight: 400;
    }

    .serve-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .serve-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
      aspect-ratio: 3/4.2;
      background: var(--cream-dark);
      transition: transform .35s, box-shadow .35s;
    }

    .serve-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
    }

    .serve-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .45s ease;
    }

    .serve-card:hover .serve-card-img {
      transform: scale(1.03);
    }

    .serve-card-overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(7, 26, 15, 0.85) 35%, rgba(7, 26, 15, 0.97));
    }

    .serve-card-content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 26px 22px 24px;
      text-align: center;
    }

    .serve-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .serve-card-rule {
      width: 30px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 12px;
    }

    .serve-card-link {
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: var(--gold-pale);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      opacity: 0;
      transform: translateY(6px);
      transition: all .3s;
    }

    .serve-card:hover .serve-card-link {
      opacity: 1;
      transform: translateY(0);
    }

    .serve-footer {
      text-align: center;
      margin-top: 52px;
    }

    .serve-footer-divider {
      width: 100%;
      max-width: 640px;
      height: 1px;
      background: var(--border-cream);
      margin: 0 auto 28px;
      position: relative;
    }

    .serve-footer-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .serve-footer-main {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .serve-footer-sub {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.6;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ─── INSIGHTS & RESOURCES (CREAM, 4 ARTICLE CARDS) ─── */
    .insights-section {
      background:
        radial-gradient(ellipse 900px 500px at 15% 0%, rgba(184, 149, 106, 0.10), transparent 60%),
        radial-gradient(ellipse 700px 500px at 100% 100%, rgba(184, 149, 106, 0.08), transparent 60%),
        var(--cream);
      position: relative;
      overflow: hidden;
    }

    .insights-arc {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 106, 0.14);
      pointer-events: none;
    }

    .insights-arc-1 {
      width: 520px;
      height: 520px;
      top: -260px;
      right: -180px;
    }

    .insights-arc-2 {
      width: 680px;
      height: 680px;
      bottom: -420px;
      left: -260px;
    }

    .insights-branch {
      position: absolute;
      color: var(--gold);
      opacity: 0.18;
      pointer-events: none;
    }

    .insights-branch-tl {
      top: 24px;
      left: 24px;
      width: 90px;
    }

    .insights-branch-br {
      bottom: 24px;
      right: 24px;
      width: 90px;
      transform: rotate(180deg);
    }

    .insights-header {
      text-align: center;
      max-width: 740px;
      margin: 0 auto 44px;
    }

    .insights-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .insights-eyebrow::before,
    .insights-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .insights-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2rem, 4.2vw, 3.1rem);
      line-height: 1.15;
      color: var(--green-dark);
      margin-bottom: 18px;
    }

    .insights-sub {
      font-size: 15px;
      color: var(--cream-text);
      line-height: 1.75;
      font-weight: 400;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .insight-card {
      background: var(--white);
      border: 1px solid var(--border-cream);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
      transition: transform .3s, box-shadow .3s;
    }

    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .insight-photo {
      height: 170px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .insight-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .insight-card:hover .insight-photo img {
      transform: scale(1.04);
    }

    .insight-photo-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
    }

    .insight-body {
      padding: 18px 20px 20px;
    }

    .insight-cat-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .insight-cat-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(184, 149, 106, 0.1);
      border: 1px solid var(--border-cream);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .insight-cat-icon svg {
      width: 14px;
      height: 14px;
    }

    .insight-cat-label {
      font-size: 10.5px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      border-bottom: 1.5px solid var(--gold);
      padding-bottom: 2px;
    }

    .insight-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.3;
      margin-bottom: 16px;
      min-height: 62px;
    }

    .insight-readmore {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: gap .2s;
    }

    .insight-readmore span {
      color: var(--gold);
    }

    .insight-card:hover .insight-readmore {
      gap: 11px;
    }

    .insights-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 44px;
    }

    .insights-footer-leaf {
      color: var(--gold);
      font-size: 14px;
      opacity: 0.7;
    }

    .btn-insights {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--green-dark);
      color: var(--cream);
      padding: 14px 30px;
      border-radius: 100px;
      border: none;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .25s;
    }

    .btn-insights:hover {
      background: var(--green-rich);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(19, 46, 30, 0.25);
    }

    /* ─── PHOTO CTA (FULL-BLEED, DARK OVERLAY) ─── */
    .photocta-section {
      position: relative;
      overflow: hidden;
      padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 60px);
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: #0c100d;
    }

    .photocta-bg-left {
      position: absolute;
      top: 0;
      left: 0;
      width: 42%;
      height: 100%;
      overflow: hidden;
    }

    .photocta-bg-left img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .photocta-bg-right {
      position: absolute;
      top: 0;
      right: 0;
      width: 62%;
      height: 100%;
      overflow: hidden;
    }

    .photocta-bg-right img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .photocta-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(7, 26, 15, 0.78) 0%, rgba(7, 26, 15, 0.55) 18%, rgba(7, 26, 15, 0.88) 38%, rgba(7, 26, 15, 0.9) 62%, rgba(7, 26, 15, 0.5) 82%, rgba(7, 26, 15, 0.78) 100%);
    }

    .photocta-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .photocta-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .photocta-eyebrow::before,
    .photocta-eyebrow::after {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .photocta-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2.2rem, 4.6vw, 3.4rem);
      line-height: 1.18;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .photocta-title .accent {
      color: var(--gold-light);
    }

    .photocta-dot-rule {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      margin: 18px auto 22px;
    }

    .photocta-sub {
      font-size: 15px;
      color: rgba(248, 244, 237, 0.78);
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 34px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    .photocta-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 30px;
      justify-content: center;
    }

    .photocta-btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 16px 28px;
      border-radius: 6px;
      border: none;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
      white-space: nowrap;
    }

    .photocta-btn-gold:hover {
      box-shadow: 0 10px 28px rgba(184, 149, 106, 0.35);
      transform: translateY(-2px);
    }

    .photocta-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(248, 244, 237, 0.35);
      color: var(--cream);
      padding: 15px 26px;
      border-radius: 6px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
      white-space: nowrap;
    }

    .photocta-btn-ghost:hover {
      border-color: var(--cream);
      background: rgba(255, 255, 255, 0.12);
    }

    .photocta-btn-ghost svg {
      width: 15px;
      height: 15px;
    }

    .photocta-tags {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 13px;
      color: rgba(248, 244, 237, 0.7);
      font-weight: 500;
    }

    .photocta-tag-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
    }

    /* ─── CARE FINDER (CREAM) ─── */
    .finder-shell {
      background: var(--white);
      border: 1px solid var(--border-cream);
      border-radius: 12px;
      padding: clamp(28px, 5vw, 52px);
      max-width: 700px;
      margin-top: 48px;
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
    }

    .prog-track {
      height: 2px;
      background: var(--cream-dark);
      border-radius: 2px;
      margin-bottom: 40px;
    }

    .prog-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--green-accent), var(--gold));
      border-radius: 2px;
      transition: width .4s ease;
    }

    .fstep {
      display: none;
    }

    .fstep.active {
      display: block;
    }

    .f-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 24px;
    }

    .f-opts {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .f-opt {
      padding: 10px 20px;
      border: 1.5px solid var(--border-cream);
      border-radius: 6px;
      font-size: 14px;
      color: var(--cream-text);
      cursor: pointer;
      background: transparent;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
    }

    .f-opt:hover,
    .f-opt.picked {
      border-color: var(--green-accent);
      color: var(--green-rich);
      background: rgba(37, 99, 64, 0.06);
    }

    .f-input {
      width: 100%;
      background: var(--cream);
      border: 1.5px solid var(--border-cream);
      border-radius: 6px;
      padding: 13px 18px;
      font-size: 15px;
      color: var(--green-dark);
      font-family: 'Inter', sans-serif;
      outline: none;
      margin-bottom: 32px;
      transition: border-color .2s;
    }

    .f-input:focus {
      border-color: var(--green-accent);
    }

    select.f-input option {
      background: var(--white);
    }

    .f-nav {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-fnext {
      background: linear-gradient(135deg, var(--green-rich), var(--green-accent));
      color: var(--cream);
      padding: 13px 28px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-fback {
      background: transparent;
      border: 1.5px solid var(--border-cream);
      color: var(--cream-text);
      padding: 12px 22px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .2s;
    }

    .btn-fback:hover {
      border-color: var(--green-accent);
      color: var(--green-accent);
    }

    .f-result-box {
      background: rgba(37, 99, 64, 0.07);
      border: 1px solid rgba(37, 99, 64, 0.2);
      border-radius: 10px;
      padding: 28px;
      margin-bottom: 28px;
    }

    .f-result-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      color: var(--green-dark);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .f-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .f-tag {
      padding: 5px 14px;
      background: rgba(37, 99, 64, 0.1);
      border: 1px solid rgba(37, 99, 64, 0.2);
      border-radius: 100px;
      font-size: 12px;
      color: var(--green-rich);
      font-weight: 600;
    }

    .f-result-note {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.7;
    }

    .lead-label {
      font-size: 11px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--cream-text);
      margin-bottom: 6px;
      display: block;
    }

    .lead-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .lead-input {
      width: 100%;
      background: var(--cream);
      border: 1.5px solid var(--border-cream);
      border-radius: 5px;
      padding: 11px 16px;
      font-size: 14px;
      color: var(--green-dark);
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s;
    }

    .lead-input:focus {
      border-color: var(--green-accent);
    }

    .lead-input::placeholder {
      color: rgba(107, 94, 78, 0.45);
    }

    textarea.lead-input {
      resize: vertical;
      min-height: 80px;
    }

    .btn-lead {
      width: 100%;
      background: linear-gradient(135deg, var(--green-rich), var(--green-accent));
      color: var(--cream);
      padding: 15px;
      border-radius: 5px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      margin-top: 8px;
      letter-spacing: 0.2px;
    }

    .ty-box {
      text-align: center;
      padding: 24px 0;
    }

    .ty-icon {
      font-size: 44px;
      margin-bottom: 18px;
    }

    .ty-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--green-dark);
      margin-bottom: 14px;
    }

    .ty-copy {
      font-size: 14.5px;
      color: var(--cream-text);
      line-height: 1.75;
    }

    /* ─── PATIENT JOURNEYS (DARK, CAROUSEL) ─── */
    .journeys-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
    }

    .journeys-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 44px;
      position: relative;
      z-index: 2;
    }

    .journeys-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .journeys-eyebrow::before,
    .journeys-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    .journeys-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2.1rem, 4.2vw, 3.2rem);
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 18px;
    }

    .journeys-title em {
      color: var(--gold-light);
      font-style: normal;
    }

    .journeys-sub {
      font-size: 15px;
      color: rgba(248, 244, 237, 0.6);
      line-height: 1.75;
      font-weight: 300;
    }

    .journeys-carousel-wrap {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      z-index: 2;
    }

    .journeys-track-viewport {
      overflow: hidden;
    }

    .journeys-track {
      display: flex;
      gap: 20px;
      transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    }

    .jc-card {
      flex: 0 0 calc(25% - 15px);
      background: var(--cream);
      border-radius: 14px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    }

    .jc-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .jc-case {
      font-size: 10.5px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
    }

    .jc-flag {
      font-size: 13px;
      color: var(--green-dark);
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }

    .jc-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--green-dark);
      line-height: 1.25;
      margin-bottom: 18px;
      min-height: 68px;
    }

    .jc-meta {
      margin-bottom: 16px;
    }

    .jc-meta-row {
      padding: 8px 0;
      border-top: 1px solid var(--border-cream);
    }

    .jc-meta-row:first-child {
      border-top: none;
    }

    .jc-meta-label {
      font-size: 9.5px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 3px;
    }

    .jc-meta-value {
      font-size: 12.5px;
      color: var(--green-dark);
      font-weight: 500;
    }

    .jc-quote {
      font-size: 12.5px;
      color: var(--cream-text);
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 10px;
      flex: 1;
      position: relative;
      padding-left: 18px;
    }

    .jc-quote::before {
      content: '"';
      position: absolute;
      left: -2px;
      top: -4px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: var(--gold);
      font-style: normal;
      line-height: 1;
    }

    .jc-attribution {
      font-size: 11.5px;
      color: var(--cream-text);
      opacity: 0.7;
      margin-bottom: 16px;
    }

    .jc-link {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: gap .2s;
      padding-top: 14px;
      border-top: 1px solid var(--border-cream);
    }

    .jc-link:hover {
      gap: 11px;
    }

    .journeys-nav-btn {
      position: absolute;
      top: 42%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1.5px solid rgba(248, 244, 237, 0.25);
      color: var(--cream);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      z-index: 5;
    }

    .journeys-nav-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
    }

    .journeys-nav-prev {
      left: -22px;
    }

    .journeys-nav-next {
      right: -22px;
    }

    .journeys-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 32px;
      position: relative;
      z-index: 2;
    }

    .jc-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(248, 244, 237, 0.25);
      cursor: pointer;
      transition: all .25s;
      border: none;
      padding: 0;
    }

    .jc-dot.active {
      background: var(--gold);
      width: 22px;
      border-radius: 4px;
    }

    .journeys-cta-bar {
      margin-top: 56px;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid var(--border-dark);
      border-radius: 18px;
      padding: clamp(28px, 3.5vw, 40px);
      position: relative;
      z-index: 2;
    }

    .jcta-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      padding-bottom: 32px;
      margin-bottom: 28px;
      border-bottom: 1px solid var(--border-dark);
    }

    .jcta-text-block {
      flex: 1;
      min-width: 260px;
    }

    .jcta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .jcta-sub {
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.55);
      line-height: 1.65;
      max-width: 440px;
    }

    .jcta-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .jcta-btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 14px 26px;
      border-radius: 7px;
      border: none;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
      white-space: nowrap;
    }

    .jcta-btn-gold:hover {
      box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
      transform: translateY(-2px);
    }

    .jcta-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: transparent;
      border: 1.5px solid rgba(248, 244, 237, 0.25);
      color: var(--cream);
      padding: 13px 24px;
      border-radius: 7px;
      font-size: 13.5px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
      white-space: nowrap;
    }

    .jcta-btn-ghost:hover {
      border-color: var(--cream);
      background: rgba(255, 255, 255, 0.06);
    }

    .jcta-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .jcta-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .jcta-feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(184, 149, 106, 0.1);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .jcta-feature-icon svg {
      width: 17px;
      height: 17px;
    }

    .jcta-feature-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .jcta-feature-copy {
      font-size: 11.5px;
      color: rgba(248, 244, 237, 0.5);
      line-height: 1.5;
    }

    .journeys-footer-line {
      text-align: center;
      margin-top: 36px;
      font-size: 13px;
      color: rgba(248, 244, 237, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      z-index: 2;
    }

    .journeys-footer-icon {
      color: var(--gold);
      font-size: 14px;
    }

    /* ─── ENTERPRISE (CREAM) ─── */
    .ent-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: start;
      margin-top: 52px;
    }

    .aud-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 0;
    }

    .aud-tag {
      padding: 7px 16px;
      border: 1.5px solid var(--border-cream);
      border-radius: 100px;
      font-size: 13px;
      color: var(--cream-text);
      background: var(--white);
    }

    .prog-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .prog-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 15px 18px;
      background: var(--white);
      border: 1px solid var(--border-cream);
      border-radius: 8px;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
      transition: all .2s;
    }

    .prog-item:hover {
      border-color: rgba(37, 99, 64, 0.3);
      transform: translateX(4px);
    }

    .prog-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .prog-name {
      font-size: 14px;
      color: var(--green-dark);
      font-weight: 500;
    }

    /* ─── THE MEDIPOCKET PROCESS (DARK, 2-COLUMN TIMELINE) ─── */
    .process-section {
      background: var(--green-deep);
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }

    .process-left {
      position: sticky;
      top: 100px;
    }

    .process-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .process-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .process-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2.2rem, 4.2vw, 3.2rem);
      line-height: 1.12;
      color: var(--cream);
      margin-bottom: 8px;
    }

    .process-title .accent-line {
      display: block;
      color: var(--gold-light);
    }

    .process-rule {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 24px 0 26px;
    }

    .process-sub {
      font-size: 15px;
      color: rgba(248, 244, 237, 0.6);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 36px;
      max-width: 440px;
    }

    .process-cta-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-dark);
      border-radius: 14px;
      padding: 28px;
      max-width: 440px;
    }

    .process-cta-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(184, 149, 106, 0.4);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .process-cta-icon svg {
      width: 20px;
      height: 20px;
    }

    .process-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .process-cta-copy {
      font-size: 13px;
      color: rgba(248, 244, 237, 0.55);
      line-height: 1.65;
      margin-bottom: 22px;
    }

    .process-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      padding: 13px 26px;
      border-radius: 7px;
      border: none;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: all .22s;
    }

    .process-cta-btn:hover {
      box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
      transform: translateY(-2px);
    }

    .process-timeline {
      position: relative;
      padding-left: 0;
    }

    .ptl-item {
      position: relative;
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 24px;
      padding-bottom: 48px;
    }

    .ptl-item:last-child {
      padding-bottom: 0;
    }

    .ptl-track {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .ptl-track::after {
      content: '';
      position: absolute;
      top: 60px;
      bottom: -48px;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      background: linear-gradient(180deg, rgba(184, 149, 106, 0.5), rgba(184, 149, 106, 0.15));
    }

    .ptl-item:last-child .ptl-track::after {
      display: none;
    }

    .ptl-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1.5px solid rgba(184, 149, 106, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--gold-light);
      background: var(--green-deep);
      position: relative;
      z-index: 2;
    }

    .ptl-content {
      padding-top: 8px;
      display: flex;
      gap: 14px;
    }

    .ptl-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 10px;
    }

    .ptl-text {
      flex: 1;
    }

    .ptl-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .ptl-copy {
      font-size: 14px;
      color: rgba(248, 244, 237, 0.55);
      line-height: 1.7;
    }

    .process-footer {
      margin-top: 56px;
      text-align: center;
      border: 1px solid var(--border-dark);
      border-radius: 100px;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .process-footer-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 106, 0.4);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .process-footer-line {
      width: 40px;
      height: 1px;
      background: rgba(184, 149, 106, 0.3);
    }

    .process-footer-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 16px;
      color: rgba(248, 244, 237, 0.7);
    }

    /* ─── RESOURCES (CREAM) ─── */
    .res-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .res-card {
      padding: 30px 26px;
      background: var(--white);
      border: 1px solid var(--border-cream);
      border-radius: 8px;
      transition: all .28s;
    }

    .res-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .res-icon {
      font-size: 26px;
      margin-bottom: 18px;
    }

    .res-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 10px;
    }

    .res-copy {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.7;
    }

    /* ─── QUESTIONS, ANSWERED (CREAM, 2-COLUMN) ─── */
    .qa-section {
      background: var(--cream);
    }

    .qa-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }

    .qa-left {
      position: sticky;
      top: 100px;
    }

    .qa-eyebrow {
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .qa-eyebrow-rule {
      width: 32px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 26px;
    }

    .qa-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: clamp(2.4rem, 4.6vw, 3.6rem);
      line-height: 1.1;
      color: var(--green-dark);
      margin-bottom: 24px;
    }

    .qa-title-rule {
      width: 48px;
      height: 1px;
      background: var(--border-cream);
      margin-bottom: 24px;
    }

    .qa-sub {
      font-size: 15px;
      color: var(--cream-text);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 380px;
    }

    .qa-cta {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .qa-cta-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1.5px solid var(--border-cream);
      color: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qa-cta-icon svg {
      width: 20px;
      height: 20px;
    }

    .qa-cta-label {
      font-size: 13px;
      color: var(--cream-text);
      margin-bottom: 3px;
    }

    .qa-cta-link {
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: gap .2s;
    }

    .qa-cta-link:hover {
      gap: 11px;
    }

    .qa-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .qa-item {
      background: var(--cream-dark);
      border: 1px solid var(--border-cream);
      border-radius: 12px;
      padding: 24px 26px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 18px;
      align-items: flex-start;
      cursor: pointer;
      transition: all .25s;
    }

    .qa-item:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    }

    .qa-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--gold);
      padding-right: 18px;
      border-right: 1px solid var(--border-cream);
      align-self: stretch;
      display: flex;
      align-items: flex-start;
    }

    .qa-text-block {
      min-width: 0;
    }

    .qa-q {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.3;
      margin-bottom: 0;
    }

    .qa-a {
      font-size: 13.5px;
      color: var(--cream-text);
      line-height: 1.65;
      margin-top: 10px;
      display: none;
    }

    .qa-item.open .qa-a {
      display: block;
    }

    .qa-toggle {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1.5px solid var(--border-cream);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: transform .3s;
    }

    .qa-item.open .qa-toggle {
      transform: rotate(45deg);
    }

    /* ─── FAQ (DARK) ─── */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-dark);
      border-radius: 8px;
      overflow: hidden;
    }

    .faq-q {
      padding: 20px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--cream);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background .2s;
    }

    .faq-q:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .faq-ic {
      color: var(--gold);
      font-size: 20px;
      flex-shrink: 0;
      transition: transform .3s;
      line-height: 1;
    }

    .faq-a {
      padding: 0 24px 20px;
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.5);
      line-height: 1.75;
      display: none;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .faq-item.open .faq-ic {
      transform: rotate(45deg);
    }

    /* ─── FINAL CTA (CREAM) ─── */
    .final-cta-section {
      background: var(--green-deep);
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 80px);
    }

    .final-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37, 99, 64, 0.2), transparent);
    }

    .final-cta-section .s-title {
      color: var(--cream);
      max-width: 700px;
      margin: 0 auto 18px;
    }

    .final-cta-section .s-sub {
      color: rgba(248, 244, 237, 0.58);
      max-width: 600px;
      margin: 0 auto 44px;
    }

    .final-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .ent-link {
      font-size: 13px;
      color: rgba(248, 244, 237, 0.45);
    }

    .ent-link a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }

    .ent-link a:hover {
      color: var(--gold-pale);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--green-deep);
      border-top: 1px solid var(--border-dark);
    }

    /* flags ribbon */
    .footer-flags-bar {
      border-bottom: 1px solid var(--border-dark);
      padding: 22px clamp(20px, 5vw, 80px);
      overflow: hidden;
      position: relative;
    }

    .footer-flags-label {
      text-align: center;
      font-size: 10.5px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .footer-flags-track-wrap {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .footer-flags-track {
      display: flex;
      gap: 18px;
      width: max-content;
      animation: flagsScroll 38s linear infinite;
    }

    .footer-flag {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      opacity: 0.65;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    @keyframes flagsScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    footer .footer-main {
      padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 80px) 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
      gap: clamp(20px, 3vw, 40px);
      margin-bottom: 0;
    }

    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cream);
      letter-spacing: 1px;
    }

    .footer-brand-name .usa-sub {
      display: block;
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--gold);
      font-weight: 700;
      margin-top: 4px;
    }

    .footer-brand-rule {
      width: 36px;
      height: 1px;
      background: var(--gold);
      margin: 14px 0 18px;
    }

    .footer-brand-text {
      font-size: 13px;
      color: rgba(248, 244, 237, 0.5);
      line-height: 1.8;
      max-width: 260px;
    }

    .footer-brand-divider {
      width: 100%;
      max-width: 260px;
      height: 1px;
      background: var(--border-dark);
      margin: 18px 0;
    }

    .footer-brand-mission {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 14px;
      color: var(--gold-light);
      line-height: 1.6;
      max-width: 250px;
    }

    .fc-title {
      font-size: 10.5px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .fc-title-rule {
      width: 24px;
      height: 1px;
      background: var(--border-dark);
      margin-bottom: 18px;
    }

    .fc-links {
      list-style: none;
    }

    .fc-links li {
      margin-bottom: 13px;
    }

    .fc-links a {
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.55);
      text-decoration: none;
      transition: color .2s;
    }

    .fc-links a:hover {
      color: var(--cream);
    }

    .fc-contact-label {
      font-size: 10px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 6px;
      margin-top: 18px;
    }

    .fc-contact-label:first-of-type {
      margin-top: 0;
    }

    .fc-contact-value {
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.7);
      line-height: 1.6;
    }

    .fc-contact-divider {
      width: 100%;
      height: 1px;
      background: var(--border-dark);
      margin: 16px 0;
    }

    .fc-action-btns {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }

    .fc-action-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1.5px solid var(--border-dark);
      border-radius: 7px;
      padding: 11px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.6px;
      color: var(--gold-pale);
      text-decoration: none;
      cursor: pointer;
      transition: all .22s;
      background: transparent;
    }

    .fc-action-btn:hover {
      border-color: var(--gold);
      background: rgba(184, 149, 106, 0.08);
    }

    .fc-action-btn svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }

    footer .footer-bottom {
      border-top: 1px solid var(--border-dark);
      padding: 26px clamp(20px, 5vw, 80px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-monogram {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1px solid rgba(184, 149, 106, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold);
    }

    .footer-bottom-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 13.5px;
      color: rgba(248, 244, 237, 0.6);
      line-height: 1.5;
      max-width: 220px;
    }

    .f-legal {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    .f-legal a {
      font-size: 12.5px;
      color: rgba(248, 244, 237, 0.45);
      text-decoration: none;
      transition: color .2s;
    }

    .f-legal a:hover {
      color: var(--cream);
    }

    .f-legal-sep {
      color: var(--border-dark);
      font-size: 12px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-social-label {
      font-size: 10px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      margin-right: 4px;
    }

    .footer-social-icons {
      display: flex;
      gap: 12px;
    }

    .footer-social-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: all .2s;
    }

    .footer-social-icon:hover {
      color: var(--cream);
      transform: translateY(-2px);
    }

    .footer-social-icon svg {
      width: 15px;
      height: 15px;
    }

    .footer-copy-bar {
      border-top: 1px solid var(--border-dark);
      padding: 20px clamp(20px, 5vw, 80px);
      text-align: center;
    }

    .f-copy {
      font-size: 12px;
      color: rgba(248, 244, 237, 0.35);
      letter-spacing: 0.3px;
    }

    /* ─── MODAL ─── */
    .modal-ov {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 300;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(6px);
    }

    .modal-ov.open {
      display: flex;
    }

    .modal-box {
      background: var(--cream);
      border-radius: 14px;
      padding: clamp(28px, 4vw, 48px);
      max-width: 560px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--cream-dark);
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      cursor: pointer;
      font-size: 16px;
      color: var(--cream-text);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .modal-close:hover {
      background: var(--border-cream);
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .modal-sub {
      font-size: 13.5px;
      color: var(--cream-text);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .m-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .m-full {
      margin-bottom: 14px;
    }

    .m-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--cream-text);
      margin-bottom: 6px;
    }

    .m-input {
      width: 100%;
      background: var(--white);
      border: 1.5px solid var(--border-cream);
      border-radius: 5px;
      padding: 12px 16px;
      font-size: 14px;
      color: var(--green-dark);
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s;
    }

    .m-input:focus {
      border-color: var(--green-accent);
    }

    .m-input::placeholder {
      color: rgba(107, 94, 78, 0.4);
    }

    textarea.m-input {
      resize: vertical;
      min-height: 80px;
    }

    .modal-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--green-rich), var(--green-accent));
      color: var(--cream);
      padding: 15px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      margin-top: 8px;
      letter-spacing: 0.2px;
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1100px) {
      .care-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hosp-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        max-width: 100%;
      }

      .hero-video-panel {
        max-width: 640px;
        height: auto;
      }

      .jt-sub {
        display: none;
      }

      .diff-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .diff-globe {
        display: none;
      }

      .services-map-bg {
        width: 320px;
        height: 320px;
        opacity: 0.22;
      }

      .centers-row-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .centers-row-5 {
        grid-template-columns: repeat(3, 1fr);
      }

      .centers-stats-bar {
        flex-direction: column;
        padding: 18px 24px;
      }

      .cstat {
        border-right: none;
        border-bottom: 1px solid var(--border-cream);
        padding: 14px 0;
        width: 100%;
        justify-content: center;
      }

      .cstat-badge {
        border-right: none;
        border-bottom: 1px solid var(--border-cream);
        padding: 14px 0;
        width: 100%;
      }

      .cstat-badge:last-child,
      .cstat:last-child {
        border-bottom: none;
      }

      .jc-card {
        flex: 0 0 calc(50% - 10px);
      }

      .journeys-nav-prev {
        left: 4px;
      }

      .journeys-nav-next {
        right: 4px;
      }
    }

    @media(max-width:900px) {
      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .trust-inner {
        grid-template-columns: 1fr;
      }

      .serve-grid {
        grid-template-columns: 1fr 1fr;
      }

      .j-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ent-layout {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .res-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .pathway-card {
        grid-template-columns: 1fr;
      }

      .pathway-photo,
      .pathway-photo-fallback {
        min-height: 220px;
      }

      .centers-row-4 {
        grid-template-columns: 1fr 1fr;
      }

      .centers-row-5 {
        grid-template-columns: 1fr 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .process-left {
        position: static;
      }

      .jcta-features {
        grid-template-columns: 1fr 1fr;
      }

      .jcta-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .qa-grid {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .qa-left {
        position: static;
      }

      .insights-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:600px) {
      .care-grid {
        grid-template-columns: 1fr;
      }

      .hosp-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .stats-quad {
        grid-template-columns: 1fr 1fr;
      }

      .j-grid {
        grid-template-columns: 1fr;
      }

      .res-grid {
        grid-template-columns: 1fr;
      }

      .hero-ctas {
        flex-direction: column;
      }

      .btn-lg-gold,
      .btn-lg-ghost {
        width: 100%;
        justify-content: center;
      }

      .lead-grid {
        grid-template-columns: 1fr;
      }

      .m-row {
        grid-template-columns: 1fr;
      }

      .h-ctas .btn-hdr-ghost {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }

      .f-legal {
        gap: 10px;
      }

      .final-btns {
        flex-direction: column;
        align-items: center;
      }

      .btn-lg-gold,
      .btn-lg-ghost,
      .btn-gold,
      .btn-outline-gold {
        width: 100%;
        justify-content: center;
      }

      .hero-stats-row {
        gap: 18px;
      }

      .jt-circle {
        width: 38px;
        height: 38px;
        font-size: 14px;
      }

      .hero-video-panel {
        height: auto;
      }

      .jt-label {
        font-size: 8.5px;
      }

      .jt-line::before {
        left: 19px;
        right: 19px;
        top: 19px;
      }

      .hero {
        padding-top: 100px;
      }

      .diff-grid {
        grid-template-columns: 1fr 1fr;
      }

      .services-map-bg {
        display: none;
      }

      .centers-row-4 {
        grid-template-columns: 1fr;
      }

      .centers-row-5 {
        grid-template-columns: 1fr;
      }

      .serve-grid {
        grid-template-columns: 1fr;
      }

      .pathway-highlights {
        grid-template-columns: 1fr 1fr;
      }

      .pathway-top-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .chips {
        gap: 8px;
      }

      .search-input {
        padding: 16px 56px 16px 50px;
        font-size: 14px;
      }

      .ptl-item {
        grid-template-columns: 48px 1fr;
        gap: 16px;
      }

      .ptl-circle {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
      }

      .ptl-track::after {
        top: 46px;
      }

      .ptl-title {
        font-size: 1.15rem;
      }

      .process-cta-card {
        padding: 22px;
      }

      .process-footer {
        padding: 16px 20px;
      }

      .jc-card {
        flex: 0 0 100%;
      }

      .journeys-nav-btn {
        display: none;
      }

      .jcta-features {
        grid-template-columns: 1fr;
      }

      .jcta-btns {
        width: 100%;
      }

      .jcta-btn-gold,
      .jcta-btn-ghost {
        width: 100%;
        justify-content: center;
      }

      .qa-item {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 20px;
      }

      .qa-toggle {
        display: none;
      }

      .qa-num {
        padding-right: 12px;
      }

      .qa-q {
        font-size: 1.05rem;
      }

      .insights-grid {
        grid-template-columns: 1fr;
      }

      .photocta-btns {
        flex-direction: column;
        align-items: stretch;
      }

      .photocta-btn-gold,
      .photocta-btn-ghost {
        justify-content: center;
      }

      .photocta-tags {
        flex-wrap: wrap;
      }
    }
