    :root {
      --navy:    #0d1f33;
      --navy-d:  #070f1a;
      --blue:    #0f7bc2;
      --blue-l:  #e6f3fb;
      --blue-b:  #9bcde8;
      --blue-m:  #0a5f96;
      --gold:    #c8860a;
      --muted:   #5a6a7a;
      --border:  rgba(0,0,0,0.08);
      --font:    'Inter', -apple-system, system-ui, sans-serif;
      --tr:      0.15s ease;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    /* base body font: 14px → 17px */
    body { font-family: var(--font); color: var(--navy); -webkit-font-smoothing: antialiased; font-size: 17px; }

    a { color: inherit; text-decoration: none; }
    button { font-family: var(--font); }

    
    /* ── BREADCRUMB ── */
    .bc-strip {
      background: #f7f9fb;
      border-bottom: 0.5px solid var(--border);
      padding: 13px 0;
    }
    /* 12px → 15px */
    .bc-strip .breadcrumb { margin: 0; font-size: 15px; }
    .bc-strip .breadcrumb-item a { color: var(--muted); }
    .bc-strip .breadcrumb-item.active { color: var(--navy); font-weight: 500; }
    .bc-strip .breadcrumb-item + .breadcrumb-item::before { color: rgba(90,106,122,.4); }

    /* ── PAGE HERO ── */
    .page-hero { background: url(https://confidentialrehab.in/dr/assets/image/bg-page.png); padding: 60px 0 0; }
    /* eyebrow: 11px → 14px */
    .ph-eye { font-size: 15px; letter-spacing: 1.8px; text-transform: uppercase; color: #2E8B77; font-weight: 600; margin-bottom: 16px; }
    /* h1: clamp(26→29, 5vw, 38→41px) */
    .ph-h1 { font-size: clamp(29px,5vw,41px); font-weight: 400; color: #fff; line-height: 1.15; letter-spacing: -.6px; margin-bottom: 20px; font-family: Georgia, serif; font-style: italic; }
    .ph-h1 strong { font-style: normal; font-weight: 600; }
    /* 15px → 18px */
    .ph-desc { font-size: 18px; line-height: 1.75; margin-bottom: 34px; width:70%; }
    /* 14px → 17px */
    .btn-ph {
      background: #2E8B77;
      color: #fff;
      padding: 14px 26px;
      border-radius: 20px;
      font-size: 17px;
      font-weight: 500;
      border: none;
      transition: opacity var(--tr);
    }
    .btn-ph:hover { opacity: .88; color: #fff; }
   .btn-outline-custom {
    border: 1px solid #cfe1da;
    color: #2E8B77;
    background: #fff;
    padding: 14px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: #f7faf9;
    color: #2E8B77;
}
    .ph-trust-item { font-size: 15px; color: #fff; display: flex; align-items: center; gap: 6px; }
    .ph-trust-dot { width: 7px; height: 7px; border-radius: 50%; background: #2E8B77; flex-shrink: 0; }
    .ph-stat-card {
      background: rgba(255,255,255,.97);
      border-radius: 12px 12px 0 0;
      padding: 22px 26px;
      box-shadow: 0 2px 12px rgba(0,0,0,.1);
    }
    /* 9px → 12px */
    .ph-stat-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #6b7a8d; margin-bottom: 5px; }
    /* 20px → 23px */
    .ph-stat-val { font-size: 23px; font-weight: 600; color: var(--navy); }
    /* 11px → 14px */
    .ph-stat-sub { font-size: 14px; color: var(--blue-m); margin-top: 4px; }

    /* ── IN-PAGE TABS ── */
    .ptabs-strip {
      background: #fff;
      border-bottom: 0.5px solid var(--border);
      position: sticky;
      top: 68px;
      z-index: 1020;
      overflow-x: auto;
      scrollbar-width: none;
      white-space: nowrap;
    }
    .ptabs-strip::-webkit-scrollbar { display: none; }
    /* 13px → 16px */
    .ptab {
      font-size: 16px;
      color: var(--muted);
      padding: 17px 24px;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      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;
    }
    .ptab:hover { color: var(--navy); }
    .ptab.on { color: var(--navy); font-weight: 600; border-bottom-color: var(--navy); }

    /* ── PANELS ── */
    .panel { display: none; }
    .panel.on { display: block; animation: fu .2s ease; }
    @keyframes fu { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

    /* ── SECTION UTILITIES ── */
    /* eyebrow: 10px → 13px */
    .sec-eye { font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--blue-m); font-weight: 600; margin-bottom: 12px; display: block; }
    /* 22px → 25px, increased margin-bottom */
    .sec-h2 { font-size: 25px; font-weight: 400; color: var(--navy); letter-spacing: -.3px; margin-bottom: 18px; line-height: 1.25; font-family: Georgia, serif; font-style: italic; }
    .sec-h2 strong { font-style: normal; font-weight: 600; }
    /* 15px → 18px, increased margin-bottom */
    .sec-body { font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

    /* ── STAGE TABS ── */
    .stage-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 2px; }
    .stage-tab {
      background: #fff;
      padding: 26px 20px;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: background var(--tr), border-color var(--tr);
    }
    .stage-tab:hover { background: #f7f9fb; }
    .stage-tab.on { background: #f7f9fb; border-bottom-color: var(--blue); }
    .stage-ico {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: var(--blue-l);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      border: 0.5px solid var(--blue-b);
    }
    .stage-ico svg { width: 19px; height: 19px; stroke: var(--blue-m); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    /* 10px → 13px */
    .stage-badge { font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue-m); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .stage-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
    /* 14px → 17px */
    .stage-tab h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
    /* 12px → 15px */
    .stage-tab p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

    /* ── DETAIL PANEL ── */
    .stage-detail {
      background: #f7f9fb;
      border-radius: 12px;
      padding: 36px 40px;
      margin-top: 2px;
    }
    /* 18px → 21px, increased margin */
    .det-title { font-size: 21px; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.3; font-family: Georgia, serif; font-style: italic; }
    .det-title strong { font-style: normal; font-weight: 600; }
    /* 14px → 17px, increased margin */
    .det-body { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
    /* 11px → 14px */
    .pill { font-size: 14px; color: var(--blue-m); background: var(--blue-l); border-radius: 4px; padding: 4px 12px; border: 0.5px solid var(--blue-b); display: inline-block; margin: 4px; }
    .chk { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .chk-c {
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: var(--blue-l);
      border: 0.5px solid var(--blue-b);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .chk-c svg { width: 9px; height: 9px; stroke: var(--blue-m); fill: none; stroke-width: 2.5; stroke-linecap: round; }
    /* 12px → 15px */
    .chk-t { font-size: 15px; color: var(--muted); line-height: 1.6; }

    /* ── METRICS STRIP ── */
    .metrics-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
    .mc { background: #fff; padding: 34px 24px; text-align: center; }
    /* 38px → 41px */
    .mc-n { font-size: 41px; font-weight: 400; color: var(--navy); line-height: 1; letter-spacing: -.03em; margin-bottom: 10px; font-family: Georgia, serif; }
    .mc-n em { color: var(--blue-m); font-style: normal; }
    /* 12px → 15px */
    .mc-l { font-size: 15px; color: var(--muted); line-height: 1.5; max-width: 130px; margin: 0 auto; }

    /* ── PILLARS ── */
    .pillar-card {
      border: 0.5px solid var(--border);
      border-radius: 10px;
      padding: 28px 24px;
      transition: border-color var(--tr);
      height: 100%;
    }
    .pillar-card:hover { border-color: var(--blue-b); }
    .pl-ico {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .pl-ico svg { width: 20px; height: 20px; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .ic-bl { background: var(--blue-l); }
    .ic-bl svg { stroke: var(--blue-m); }
    .ic-b { background: #e6f1fb; }
    .ic-b svg { stroke: #185fa5; }
    .ic-g { background: #eaf3de; }
    .ic-g svg { stroke: #3b6d11; }
    /* 14px → 17px, increased margin */
    .pillar-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    /* 12px → 15px */
    .pillar-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }
    /* 26px → 29px */
    .pl-fig { font-size: 29px; font-weight: 400; color: var(--navy); margin-top: 18px; font-family: Georgia, serif; }
    .pl-fig em { color: var(--blue-m); font-style: normal; }

    /* ── ROI BANNER ── */
    .roi-banner { background: var(--navy); border-radius: 12px; padding: 44px; margin-bottom: 0; }
    /* eyebrow: 10px → 13px */
    .roi-eye { font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 14px; }
    /* 22px → 25px, increased margin */
    .roi-h { font-size: 25px; font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 14px; font-family: Georgia, serif; font-style: italic; }
    .roi-h strong { font-style: normal; font-weight: 600; }
    /* 13px → 16px */
    .roi-p { font-size: 16px; color: rgba(255,255,255,.52); line-height: 1.75; margin-bottom: 28px; }
    /* 26px → 29px */
    .roi-num .n { font-size: 29px; font-weight: 400; color: #fff; font-family: Georgia, serif; }
    .roi-num .n em { color: var(--blue); font-style: normal; }
    /* 10px → 13px */
    .roi-num .l { font-size: 13px; color: rgba(255,255,255,.38); margin-top: 4px; }
    .roi-card { background: rgba(255,255,255,.06); border-radius: 10px; padding: 28px; border: 0.5px solid rgba(255,255,255,.1); }
    /* 11px → 14px */
    .roi-ig label { font-size: 14px; color: rgba(255,255,255,.45); letter-spacing: .04em; display: block; margin-bottom: 9px; }
    .roi-sl { width: 100%; accent-color: var(--blue); cursor: pointer; height: 3px; }
    /* 15px → 18px */
    .roi-vl { font-size: 18px; color: #fff; margin-top: 8px; font-weight: 400; }
    .roi-res { background: rgba(15,123,194,.18); border-radius: 7px; padding: 14px 18px; border: 0.5px solid rgba(15,123,194,.35); margin-top: 8px; }
    /* 10px → 13px */
    .roi-res-l { font-size: 13px; color: var(--blue); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
    /* 26px → 29px */
    .roi-res-v { font-size: 29px; font-weight: 400; color: #fff; font-family: Georgia, serif; }

    /* ── TESTIMONIALS ── */
    .feat-story { border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
    .feat-img-col { background: var(--navy); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; position: relative; min-height: 280px; }
    .feat-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
    .feat-qm { font-size: 68px; line-height: .9; color: rgba(255,255,255,.22); position: relative; z-index: 1; margin-bottom: 8px; font-family: Georgia, serif; }
    /* 10px → 13px */
    .feat-loc { font-size: 13px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.2px; position: relative; z-index: 1; }
    .feat-body-col { padding: 34px 38px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; }
    /* 16px → 19px, increased margin */
    .feat-q { font-size: 19px; color: var(--navy); line-height: 1.7; font-style: italic; margin-bottom: 26px; font-family: Georgia, serif; font-weight: 400; }
    .feat-av { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #f0f4f8; }
    .feat-av img { width: 100%; height: 100%; object-fit: cover; }
    /* 13px → 16px */
    .feat-name { font-size: 16px; font-weight: 600; color: var(--navy); }
    /* 11px → 14px */
    .feat-role { font-size: 14px; color: var(--muted); margin-top: 2px; }
    .feat-badge {
      margin-top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--blue-m);
      background: var(--blue-l);
      border-radius: 4px;
      padding: 4px 11px;
      border: 0.5px solid var(--blue-b);
    }
    .feat-badge svg { width: 12px; height: 12px; stroke: var(--blue-m); fill: none; stroke-width: 2; stroke-linecap: round; }

    .story-card { border: 0.5px solid var(--border); border-radius: 10px; padding: 26px; transition: border-color var(--tr); height: 100%; }
    .story-card:hover { border-color: var(--blue-b); }
    /* 28px → 31px */
    .sc-fig { font-size: 31px; font-weight: 400; color: var(--navy); line-height: 1; font-family: Georgia, serif; }
    .sc-fig em { color: var(--blue-m); font-style: normal; }
    /* 10px → 13px */
    .sc-met { font-size: 13px; color: var(--muted); margin: 6px 0 18px; letter-spacing: .02em; }
    /* 12px → 15px */
    .sc-q { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
    .sc-sep { height: 0.5px; background: var(--border); margin-bottom: 12px; }
    /* 11px → 14px */
    .sc-auth { font-size: 14px; font-weight: 600; color: var(--navy); }
    /* 10px → 13px */
    .sc-org { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* ── SIDEBAR ── */
    .sidebar-wrap { position: sticky; top: 136px; }
    .sb-img-wrap { border-radius: 10px; overflow: hidden; height: 120px; margin-bottom: 14px; position: relative; }
    .sb-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .sb-img-ov { position: absolute; inset: 0; background: rgba(13,31,51,.25); display: flex; align-items: flex-end; padding: 10px; }
    /* 10px → 13px */
    .sb-img-cap { font-size: 13px; color: rgba(255,255,255,.88); font-style: italic; }
    .sb-card { border: 0.5px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 14px; background: #fff; }
    /* 12px → 15px */
    .sb-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
    .sb-input {
      width: 100%;
      padding: 10px 12px;
      border: 0.5px solid var(--border);
      border-radius: 7px;
      font-size: 15px;
      font-family: var(--font);
      color: var(--navy);
      margin-bottom: 9px;
      background: #fff;
      outline: none;
      transition: border-color var(--tr);
    }
    .sb-input:focus { border-color: var(--blue); }
    .sb-btn {
      width: 100%;
      background: var(--navy);
      color: #fff;
      padding: 12px;
      border-radius: 7px;
      border: none;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: opacity var(--tr);
    }
    .sb-btn:hover { opacity: .88; }
    .sb-btn-t { background: var(--blue); }
    /* 10px → 13px */
    .sb-note { font-size: 14px; color: var(--muted); text-align: center; margin-top: 9px; }
    .sb-ph { display: flex; align-items: center; gap: 8px; padding: 11px 13px; background: #f7f9fb; border-radius: 7px; margin-top: 9px; }
    /* 12px → 15px */
    .sb-ph .n { font-size: 15px; font-weight: 600; color: var(--navy); }
    /* 10px → 13px */
    .sb-ph .l { font-size: 14px; color: var(--muted); }
    .tlist { display: flex; flex-direction: column; gap: 10px; }
    .tr2 { display: flex; align-items: center; gap: 9px; }
    .tr2-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
    /* 11px → 14px */
    .tr2-t { font-size: 14px; color: var(--muted); }
    .sb-green { background: var(--blue-l) !important; border-color: var(--blue-b) !important; }

    /* ── TRUST ROW ── */
    .trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; display: inline-block; }

    /* ── CTA STRIP ── */
    .cta-strip { background: var(--navy); padding: 64px 0; }
    /* 11px → 14px */
    .cta-eye { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 14px; }
    /* clamp: 20→23, 26→29 */
    .cta-h { font-size: clamp(23px,3.5vw,29px); font-weight: 400; color: #fff; line-height: 1.3; letter-spacing: -.3px; margin-bottom: 14px; font-family: Georgia, serif; font-style: italic; }
    /* 14px → 17px */
    .cta-sub { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 28px; line-height: 1.65; }
    /* 14px → 17px */
    .btn-cp { background: var(--blue); color: #fff; padding: 14px 26px; border-radius: 8px; font-size: 17px; font-weight: 500; border: none; cursor: pointer; transition: opacity var(--tr); }
    .btn-cp:hover { opacity: .88; color: #fff; }
    /* 14px → 17px */
    .btn-cg { background: transparent; color: #fff; padding: 14px 26px; border-radius: 8px; font-size: 17px; border: 1.5px solid rgba(255,255,255,.25); cursor: pointer; transition: border-color var(--tr); }
    .btn-cg:hover { border-color: rgba(255,255,255,.55); color: #fff; }
    .cta-img-wrap { border-radius: 12px; overflow: hidden; height: 220px; }
    .cta-img-wrap img { width: 100%; height: 100%; object-fit: cover; }



    /* ── RESPONSIVE ── */
    @media (max-width: 991.98px) {
      .stage-rail { grid-template-columns: 1fr 1fr; }
      .metrics-strip { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 767.98px) {
      .stage-rail { grid-template-columns: 1fr; }
      .metrics-strip { grid-template-columns: 1fr; }
      .stage-detail { padding: 24px 20px; }
      .roi-banner { padding: 28px 22px; }
      .feat-story .row { flex-direction: column; }
    }
