    /* ── HERO ── */
    .page-hero { background: var(--navy); padding: 60px 0 0; }
    .h-eye { font-size: 14px; letter-spacing: 1.8px; text-transform: uppercase; color: #0f7bc2; font-weight: 500; margin-bottom: 16px; }
    .h-h1 { font-size: clamp(27px, 5vw, 39px); font-weight: 400; color: #fff; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 20px; }
    .h-h1 strong { font-style: normal; font-weight: 600; }
    .h-desc { font-size: 18px; color: #fff; line-height: 1.75; max-width: 520px; margin-bottom: 32px; }
    .btn-hp {
      background: #0f7bc2;
      color: #fff;
      padding: 14px 26px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 500;
      border: none;
      transition: opacity var(--tr);
    }
    .btn-hp:hover { opacity: .88; color: #fff; }
    .btn-hg {
      background: transparent;
      color: #fff;
      padding: 14px 24px;
      border-radius: 8px;
      font-size: 17px;
      border: 1.5px solid rgba(255,255,255,.3);
      transition: border-color var(--tr);
    }
    .btn-hg:hover { border-color: rgba(255,255,255,.65); color: #fff; }
    .h-trust-item { font-size: 15px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 6px; }
    .h-trust-dot { width: 5px; height: 5px; border-radius: 50%; background: #0f7bc2; flex-shrink: 0; }
    /* floating stat card */
    .hstat {
      background: rgba(255,255,255,.97);
      border-radius: 14px 14px 0 0;
      padding: 24px 28px;
      box-shadow: 0 -4px 16px rgba(0,0,0,.1);
    }
    .hs-l { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: #0f7bc2; font-weight: 600; margin-bottom: 4px; }
    .hs-v { font-size: 29px; font-weight: 600; color: var(--navy); }
    .hs-s { font-size: 14px; color: var(--muted); margin-top: 3px; }
    .hs-div { height: 1px; background: var(--blue-b); margin: 14px 0; }
    .hs-mini .n { font-size: 21px; font-weight: 600; color: var(--navy); }
    .hs-mini .n em { color: #0f7bc2; font-style: normal; }
    .hs-mini .l { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* ── FILTER TABS ── */
    .filters-strip {
      background: #fff;
      border-bottom: 0.5px solid var(--border);
      position: sticky;
      top: 83px;
      z-index: 666;
      overflow-x: auto;
      scrollbar-width: none;
      white-space: nowrap;
    }
    .filters-strip::-webkit-scrollbar { display: none; }
    .ft {
      font-size: 16px;
      color: var(--muted);
      padding: 17px 22px;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: var(--font);
      transition: color var(--tr), border-color var(--tr);
      display: inline-block;
    }
    .ft:hover { color: var(--navy); }
    .ft.on { color: var(--navy); font-weight: 600; border-bottom-color: #000; }

    /* ── GOLD TRUST STRIP ── */
    .trust-strip-gold {
      background: var(--gold-l);
      border-top: 1px solid var(--gold-b);
      border-bottom: 1px solid var(--gold-b);
      padding: 18px 0;
    }
    .ts-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--navy); font-weight: 500; }
    .ts-ico { width: 20px; height: 20px; flex-shrink: 0; }
    .ts-ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; }

    /* ── SECTION UTILITIES ── */
    .sec-eye { font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: #0f7bc2; font-weight: 600; margin-bottom: 10px; display: block; }
    .sec-h2 { font-size: 25px; font-weight: 400; color: var(--navy); letter-spacing: -.3px; margin-bottom: 14px; line-height: 1.25; font-family: Georgia, serif; font-style: italic; }
    .sec-h2 strong { font-style: normal; font-weight: 600; }
    .sec-sub { font-size: 17px; color: var(--muted); margin-bottom: 32px; max-width: 640px; line-height: 1.7; }

    /* ── DOCTOR CARD ── */
    .dc {
      border: 0.5px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color var(--tr), box-shadow var(--tr);
      background: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .dc:hover { border-color: var(--blue-b); box-shadow: 0 4px 20px rgba(15,123,194,.08); }

    /* Photo */
    .dc-photo { position: relative; height: 450px; overflow: hidden; background: var(--gray); flex-shrink: 0; }
    .dc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s ease; }
    .dc:hover .dc-photo img { transform: scale(1.04); }
    .dc-loc {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255,255,255,.93);
      border-radius: 5px;
      padding: 3px 10px;
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      backdrop-filter: blur(4px);
    }
    .dc-type {
      position: absolute;
      top: 12px;
      right: 12px;
      border-radius: 5px;
      padding: 3px 10px;
      font-size: 13px;
      font-weight: 600;
    }
    .t-psych { background: rgba(15,123,194,.85); color: #fff; }
    .t-therapist { background: rgba(13,31,51,.8); color: #fff; }
    .t-rmo { background: rgba(200,134,10,.85); color: #fff; }
    /* hover overlay */
    .dc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,31,51,.92) 0%, rgba(13,31,51,.4) 60%, transparent 100%);
      opacity: 0;
      transition: opacity .25s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px;
    }
    .dc:hover .dc-overlay { opacity: 1; }
    .ov-title { font-size: 13px; color: #0f7bc2; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
    .ov-spec {
      font-size: 13px;
      color: rgba(255,255,255,.82);
      line-height: 1.45;
      display: flex;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 3px;
    }
    .ov-spec::before { content: '·'; color: #0f7bc2; flex-shrink: 0; }

    /* Card body */
    .dc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
    .dc-name { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
    .dc-role { font-size: 15px; color: var(--gold); font-weight: 500; margin-bottom: 5px; }
    .dc-qual { font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.45; }
    .dc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; flex: 1; align-content: flex-start; }
    .dtag { font-size: 13px; color: var(--blue-m); background: var(--blue-l); border: 0.5px solid var(--blue-b); border-radius: 4px; padding: 3px 9px; }
    .dtag-gold { color: var(--gold); background: var(--gold-l); border-color: var(--gold-b);padding: 4px; border-radius: 8px;font-size: 13px;}
    /* CTA row */
    .dc-cta { display: flex; gap: 8px; padding-top: 12px; border-top: 0.5px solid var(--border); margin-top: auto; }
    .btn-book {
      flex: 1;
      background: var(--navy);
      color: #fff;
      padding: 9px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      border: none;
      transition: opacity var(--tr);
    }
    .btn-book:hover { opacity: .88; }
    .btn-view-profile {
      flex: 1;
      background: transparent;
      color: var(--navy);
      padding: 9px;
      border-radius: 6px;
      font-size: 15px;
      border: 0.5px solid var(--border);
      transition: border-color var(--tr);
    }
    .btn-view-profile:hover { border-color: var(--navy); }

    /* ── DARK TRUST BOX ── */
    .trust-box {
      background: var(--navy);
      border-radius: 12px;
      padding: 36px 40px;
      margin-bottom: 56px;
    }
    .tb-eye { font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: #0f7bc2; font-weight: 600; margin-bottom: 10px; }
    .tb-h3 { font-size: 24px; font-weight: 400; color: #fff; margin-bottom: 14px; line-height: 1.3; font-family: Georgia, serif; font-style: italic; }
    .tb-body { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 22px; }
    .tb-quote {
      font-size: 18px;
      font-weight: 400;
      color: #fff;
      font-family: Georgia, serif;
      font-style: italic;
      line-height: 1.6;
      border-left: 3px solid #0f7bc2;
      padding-left: 18px;
      margin-bottom: 22px;
    }
    .tb-btn {
      background: #0f7bc2;
      color: #fff;
      padding: 13px 22px;
      border-radius: 7px;
      font-size: 16px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: opacity var(--tr);
    }
    .tb-btn:hover { opacity: .88; }
    .tb-stat {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 18px;
      background: rgba(255,255,255,.05);
      border-radius: 8px;
      border: 0.5px solid rgba(255,255,255,.08);
      margin-bottom: 12px;
    }
    .tb-stat:last-child { margin-bottom: 0; }
    .tb-stat-n { font-size: 29px; font-weight: 400; color: #fff; font-family: Georgia, serif; flex-shrink: 0; min-width: 76px; }
    .tb-stat-n em { color: #0f7bc2; font-style: normal; }
    .tb-stat-l { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.5; }

    /* ── CTA STRIP ── */
    .cta-strip { background: var(--navy); padding: 64px 0; }
    .cta-eye { font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: #0f7bc2; font-weight: 600; margin-bottom: 12px; }
    .cta-h { font-size: clamp(22px, 3.5vw, 28px); font-weight: 400; color: #fff; line-height: 1.3; letter-spacing: -.3px; margin-bottom: 12px; font-family: Georgia, serif; font-style: italic; }
    .cta-sub { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 28px; line-height: 1.65; }
    .btn-cp {
      background: #0f7bc2;
      color: #fff;
      padding: 13px 24px;
      border-radius: 7px;
      font-size: 16px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: opacity var(--tr);
    }
    .btn-cp:hover { opacity: .88; color: #fff; }
    .btn-cg {
      background: transparent;
      color: #fff;
      padding: 13px 24px;
      border-radius: 7px;
      font-size: 16px;
      border: 1.5px solid rgba(255,255,255,.22);
      cursor: pointer;
      transition: border-color var(--tr);
    }
    .btn-cg:hover { border-color: rgba(255,255,255,.55); color: #fff; }
    .cta-img-wrap { border-radius: 11px; overflow: hidden; height: 200px; }
    .cta-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1030px) {
      .hstat { display: none; }
      .filters-strip { top:63px; }
    }
    @media (max-width: 767.98px) {
        .h-h1 { font-size: 26px; }
        .trust-strip-gold .ts-item { font-size: 14px; }
        .ft {padding: 17px;}
        .filters-strip { top:63px; }
    }
    @media (max-width: 590px) {
        .filters-strip { top:63px; }
    }

