@charset "UTF-8";
/* ============================================================
   DocIndia di-system  —  Premium "neat & clean" (REL_54, 2026-06-17)
   Ported from approved premium home design. Token-based, BEM-ish.
   ============================================================ */
@font-face {
  font-family: "Inter";
  src: url("/fonts/di/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/di/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("/fonts/di/jakarta-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
:root {
  --blue:#0f50a0;
  --blue2:#2f7ce0;
  --sky:#5aa6f0;
  --navy:#0c1f3f;
  --ink:#0b1a30;
  --ink2:#475569;
  --muted:#7c8aa0;
  --tint:#eef4fc;
  --tint2:#f7faff;
  --line:#e7eef7;
  --amber:#f59e0b;
  --green:#10b981;
  /* 2026-06-18 fix — semantic tokens (S0/#16: no hardcoded hex in components) */
  --blue-dark:#0b3d7d;
  --green-bright:#34d399;
  --amber-deep:#ea7c08;
  --green-ink:#0a8f63;
  --danger:#ef4444;
  --danger-tint:#fff5f5;
  --danger-line:#fecaca;
  /* 2026-06-18 fix — surface + footer-on-navy tokens (S0: zero raw hex in components) */
  --white:#fff;
  --foot-fg:#9fb2cd;
  --foot-link:#cdd9ec;
  --foot-ph:#8ea3c0;
  --r:18px;
  --r-lg:26px;
  --r-xl:36px;
  --pill:999px;
  /* 2026-06-23 REL_67 -- shared sticky-clearance token (clears the global header); tokenises the blog rail offset flagged by CSS-review (LOW) so sticky surfaces can stay in sync */
  --sticky-top:90px;
  /* 2026-06-26 REL_81 -- auth brand-panel photo overlay (brand blue->navy at alpha; same rgba pattern as the shadow tokens). Reusable by every Identity/Auth page. */
  --ovl-auth:linear-gradient(160deg,rgba(15,80,160,.78),rgba(12,31,63,.92));
  --sh-sm:0 4px 16px rgba(14,35,72,.06);
  --sh:0 18px 50px -12px rgba(14,35,72,.16);
  --sh-blue:0 18px 40px -12px rgba(15,80,160,.5);
}

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

/* 2026-06-18 REL_54 fix (QA HIGH-2): clip the off-canvas mobile drawer's horizontal overflow so no page-level horizontal scroll */
html {
  overflow-x: clip;
}

/* 2026-06-18 REL_54 a11y: skip-to-content link — off-screen until keyboard-focused (WCAG 2.4.1) */
.di-skip {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--sh-blue);
  transition: top 0.18s ease;
}

.di-skip:focus {
  top: 12px;
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

main:focus {
  outline: none;
}

/* 2026-06-19 REL_54 — site-wide top promo/announcement strip. Admin-driven (bannermaster, active-date window), dismissible. Brand-gradient band above the header. 3-col grid (1fr auto 1fr): message perfectly centered in the middle, dismiss ✕ in its own right column so it can never overlap the text at any width. */
.di-promobar {
  background: linear-gradient(100deg, var(--blue), var(--blue2) 55%, var(--sky));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.di-promobar[hidden] {
  display: none;
}

.di-promobar__in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.di-promobar__msg {
  grid-column: 2;
  text-align: center;
  line-height: 1.4;
}

.di-promobar__msg a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.di-promobar__msg a:hover {
  opacity: 0.85;
}

.di-promobar__x {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r);
  opacity: 0.85;
  transition: opacity 0.15s ease, background 0.15s ease;
} /* 44x44 touch target (WCAG 2.5.5) */
.di-promobar__x:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.16);
}

.di-promobar__x:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .di-promobar {
    font-size: 13px;
  }
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(900px 520px at 88% -6%, rgba(47, 124, 224, 0.12), transparent 60%), radial-gradient(720px 520px at -5% 20%, rgba(15, 80, 160, 0.06), transparent 55%), var(--white);
}

h1, h2, h3, .disp {
  font-family: "Jakarta", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.12;
}

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

.di-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

/* 2026-06-22 -- listing/search pages opt into a wider container (header+breadcrumb+content+footer all align) via <body class="di-wide">. Content pages stay 1240 for readability. */
body.di-wide .di-wrap {
  max-width: 1440px;
}

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

.di-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: var(--pill);
  padding: 14px 26px;
  transition: 0.2s;
  white-space: nowrap;
  text-align: center;
}

.di-btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue);
}

.di-btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.di-btn--ghost {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--line);
}

.di-btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.di-btn--ghost:hover {
  border-color: var(--blue);
}

.ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.di-sec {
  padding: 90px 0;
}

.di-shead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.di-shead .tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.di-shead h2 {
  font-size: 39px;
  margin-bottom: 14px;
}

.di-shead p {
  color: var(--ink2);
  font-size: 17px;
}

/* header */
.di-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 238, 247, 0.7);
}

.di-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 84px;
}

.di-nav .logo {
  height: 38px;
  width: auto;
}

.di-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 6px;
  list-style: none;
}

.di-nav__links > li {
  position: relative;
}

.di-nav__links > li > a, .di-nav__links > li > button {
  color: var(--ink2);
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.di-nav__links > li > a:hover, .di-nav__links > li > button:hover {
  color: var(--blue);
}

.di-nav__drop {
  position: absolute;
  top: 140%;
  left: -14px;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.16s;
  z-index: 30;
}

.di-nav__links > li:hover .di-nav__drop, .di-nav__links > li:focus-within .di-nav__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.di-nav__drop a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--ink2);
  font-size: 14px;
}

.di-nav__drop a:hover {
  background: var(--tint);
  color: var(--blue);
}

.di-nav .sp {
  flex: 1;
}

.di-signin {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  margin-right: 2px;
  white-space: nowrap;
}

.di-signin:hover {
  color: var(--blue);
}

.di-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.di-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.di-nav__backdrop {
  display: none;
}

/* 2026-06-20 REL_60 — header user menu (signed-in). Avatar(initials)+name pill -> dropdown. Zero-legacy di-system replacement for the Bootstrap _LoginPartial. All colors are :root tokens. */
.di-header__auth {
  display: inline-flex;
  align-items: center;
}

.di-usermenu {
  position: relative;
}

.di-usermenu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  padding: 5px 13px 5px 5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: 0.18s;
}

.di-usermenu__trigger:hover {
  border-color: var(--blue);
}

.di-usermenu__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--pill);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  flex: none;
}

.di-usermenu__name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.di-usermenu__chev {
  color: var(--ink2);
  transition: transform 0.18s;
}

.di-usermenu.is-open .di-usermenu__chev {
  transform: rotate(180deg);
}

.di-usermenu__drop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 248px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.16s;
  z-index: 50;
}

.di-usermenu.is-open .di-usermenu__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.di-usermenu__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.di-usermenu__avatar--lg {
  width: 42px;
  height: 42px;
  font-size: 15px;
}

.di-usermenu__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.di-usermenu__fullname {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.di-usermenu__role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.di-usermenu__logout {
  margin: 0;
}

.di-usermenu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: 0.14s;
}

.di-usermenu__item:hover {
  background: var(--tint);
  color: var(--blue);
}

.di-usermenu__item .ico {
  color: currentColor;
  flex: none;
}

.di-usermenu__item--danger:hover {
  background: var(--danger-tint);
  color: var(--danger);
}

.di-usermenu__trigger:focus-visible, .di-usermenu__item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .di-usermenu__name, .di-usermenu__chev {
    display: none;
  }
  .di-usermenu__trigger {
    padding: 5px;
  }
  .di-usermenu__drop {
    right: 0;
    min-width: 230px;
  }
}
/* 2026-06-20 REL_61 — legal/policy page (privacy-policy + reusable for terms/refund/cancellation/delivery): sticky TOC + premium reading prose. :root tokens only. */
.di-legal {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.di-legal__toc {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 15px;
  box-shadow: var(--sh-sm);
}

.di-toc__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.di-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.di-toc__link {
  display: block;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink2);
  border-left: 2px solid transparent;
  transition: 0.14s;
}

.di-toc__link:hover {
  background: var(--tint);
  color: var(--blue);
}

.di-toc__link.is-active {
  background: var(--tint);
  color: var(--blue);
  border-left-color: var(--blue);
  font-weight: 600;
}

.di-toc__link:focus-visible, .di-legal__body a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px;
}

.di-legal__updated {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.di-legal__body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink2);
  max-width: 780px;
}

.di-legal__body section {
  scroll-margin-top: 100px;
  margin-bottom: 30px;
}

.di-legal__lead {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 18px;
}

.di-legal__body h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 6px 0 12px;
  font-family: "Jakarta", "Inter", sans-serif;
}

.di-legal__body h3 {
  font-size: 16.5px;
  color: var(--navy);
  margin: 20px 0 9px;
}

.di-legal__body h4 {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 700;
  margin: 16px 0 8px;
}

.di-legal__body p {
  margin: 0 0 12px;
}

.di-legal__body ul, .di-legal__body ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.di-legal__body li {
  margin-bottom: 7px;
}

.di-legal__body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.di-legal__body a:hover {
  color: var(--blue-dark);
}

.di-legal__body strong {
  color: var(--ink);
  font-weight: 700;
}

.di-legal__note {
  background: var(--tint2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  padding: 13px 16px;
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--ink2);
}

.di-legal__cross {
  margin-top: 6px;
  padding: 18px;
  background: var(--tint2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.di-legal__cross h4 {
  margin: 0 0 6px;
}

.di-legal__cross ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 920px) {
  .di-legal {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .di-legal__toc {
    position: static;
    top: auto;
  }
  .di-toc__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .di-toc__link {
    border-left: none;
    border: 1px solid var(--line);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .di-toc__link.is-active {
    border-color: var(--blue);
  }
}
@media print {
  .di-header, .di-footer, .di-promobar, .di-legal__toc, .di-breadcrumb, .di-chat-fab, .di-burger {
    display: none !important;
  }
  .di-legal {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .di-legal__body {
    max-width: none;
    color: #000;
    font-size: 12pt;
  }
}
/* 2026-06-21 REL_63 rework -- SSR doctor-search results (legacy /Common/search_doctor URL; old layout re-skinned premium): left 2-mode filter sidebar + right horizontal result rows + load-more + mobile drawer. :root tokens only. */
.di-pagehead.di-pagehead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.di-sres {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.di-sres__toggle {
  display: none;
  margin-bottom: 14px;
}

.di-sres__filters {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.di-sres__form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.di-sres__modes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.di-sres__mode {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
}

.di-sres__mode input {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
}

.di-sres__panel {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.di-sres__panel[hidden] {
  display: none;
} /* author display:flex would otherwise override the UA [hidden] rule */
.di-sres__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.di-sres__flabel {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.di-sres__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.di-sres__facet {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.di-sres__facetlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.di-sres__facetlink {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink2);
  transition: 0.14s;
}

.di-sres__facetlink:hover {
  background: var(--tint);
  color: var(--blue);
}

.di-sres__facetlink span {
  color: var(--muted);
  font-weight: 600;
  font-size: 12.5px;
}

.di-sres__main {
  min-width: 0;
}

.di-sres__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.di-sres__count {
  font-weight: 700;
  color: var(--ink);
}

.di-sres__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink2);
  font-weight: 600;
}

.di-sres__sort .di-fld__input {
  width: auto;
  min-width: 150px;
}

.di-sres__note {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 15px;
  margin-bottom: 16px;
  color: var(--ink2);
  font-size: 14px;
  font-weight: 600;
}

.di-sres__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.di-sres__loadmore {
  margin-top: 22px;
}

.di-sres__pageinfo {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 14px;
}

.di-sres__empty {
  text-align: center;
  padding: 40px 18px;
  background: var(--tint2);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.di-sres__empty h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.di-sres__empty-hint {
  color: var(--muted);
  margin: 14px 0 12px;
}

.di-sres__related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.di-sres__about {
  max-width: 840px;
  margin: 42px 0 0;
  color: var(--ink2);
  line-height: 1.78;
}

.di-sres__about h2 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 12px;
}

.di-sres__faqwrap {
  margin-top: 34px;
}

.di-sres__faqwrap h2 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 16px;
}

.di-sres__faqwrap .di-faq {
  margin: 0;
}

/* horizontal result row (premium re-skin of the legacy finder card) */
.di-dres {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh-sm);
  transition: 0.18s;
}

.di-dres:hover {
  box-shadow: var(--sh);
}

.di-dres__photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  text-decoration: none;
}

.di-dres__ini {
  color: var(--white);
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.02em;
}

.di-dres__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.di-dres__main {
  min-width: 0;
}

.di-dres__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.di-dres__name {
  font-size: 19px;
  margin: 0;
}

.di-dres__name a {
  color: var(--navy);
  font-family: "Jakarta";
  font-weight: 800;
}

.di-dres__name a:hover {
  color: var(--blue);
}

.di-dres__title {
  color: var(--ink2);
  font-size: 14px;
  margin: 4px 0 0;
}

.di-dres__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0;
}

.di-dres__spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--tint);
  border-radius: var(--pill);
  padding: 4px 10px;
}

.di-dres__spec img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.di-dres__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink2);
  font-size: 13.5px;
  margin: 6px 0;
}

.di-dres__loc .ico {
  color: var(--blue);
  flex: 0 0 auto;
}

.di-dres__more {
  color: var(--blue);
  font-weight: 600;
  margin-left: 4px;
}

.di-dres__about {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.di-dres__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 600;
}

.di-dres__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.di-dres__tag .ico {
  color: var(--muted);
}

.di-dres__tag--star .star {
  color: var(--amber);
}

.di-dres__tag em {
  color: var(--muted);
  font-weight: 500;
  font-style: normal;
}

.di-dres__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  min-width: 152px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.di-dres__fee {
  text-align: right;
}

.di-dres__fee span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}

.di-dres__fee b {
  font-family: "Jakarta";
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
}

.di-dres__cta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.di-dres__na {
  font-size: 12.5px;
  color: var(--muted);
  text-align: right;
}

/* 2026-06-21 REL_63 -- compact autocomplete dropdown for the filter Speciality/Location inputs (injected inside .di-fld; same data as home search). */
.di-ac__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--sh);
  max-height: 280px;
  overflow-y: auto;
  padding: 5px;
}

.di-ac__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
}

.di-ac__item:hover, .di-ac__item.is-active {
  background: var(--tint);
}

.di-ac__w {
  font-weight: 600;
}

.di-ac__sub {
  color: var(--muted);
  font-size: 12px;
}

.di-ac__tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: var(--tint);
  border-radius: var(--pill);
  padding: 2px 7px;
}

.di-ac__empty, .di-ac__loading {
  padding: 11px;
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 920px) {
  .di-sres {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .di-sres__toggle {
    display: inline-flex;
  }
  .di-sres__filters {
    position: fixed;
    inset: 0 0 0 auto;
    width: 330px;
    max-width: 88vw;
    z-index: 60;
    border-radius: 0;
    overflow: auto;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    box-shadow: var(--sh);
  }
  .di-sres.is-filters-open .di-sres__filters {
    transform: none;
  }
  .di-sres.is-filters-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 48, 0.45);
    z-index: 55;
  }
  .di-sres__facetlink {
    padding: 12px 12px;
  } /* >=44px tap target in the mobile filter drawer (WCAG 2.5.5) */
}
@media (max-width: 620px) {
  .di-dres {
    grid-template-columns: 84px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .di-dres__photo {
    width: 84px;
    height: 84px;
  }
  .di-dres__ini {
    font-size: 26px;
  }
  .di-dres__side {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 14px;
    min-width: 0;
  }
  .di-dres__cta {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .di-dres__fee {
    text-align: left;
  }
}
/* hero */
.di-hero {
  position: relative;
  padding: 46px 0 84px;
}

.di-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}

.di-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  box-shadow: var(--sh-sm);
  margin-bottom: 26px;
}

.di-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: dipulse 2.2s infinite;
}

@keyframes dipulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.di-hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.di-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.di-hero .lead {
  font-size: 19px;
  color: var(--ink2);
  max-width: 480px;
  margin-bottom: 32px;
}

.di-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--pill);
  box-shadow: var(--sh);
  padding: 9px 9px 9px 22px;
  max-width: 552px;
  border: 1px solid rgba(231, 238, 247, 0.9);
}

.di-search .fld {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  color: var(--muted);
}

.di-search input {
  border: none;
  outline: none;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  width: 100%;
  background: none;
}

.di-search input::placeholder {
  color: var(--muted);
}

.di-popular {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.di-popular a {
  color: var(--blue);
  font-weight: 600;
  margin: 0 4px;
}

.di-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.di-stk {
  display: flex;
}

.di-stk img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -13px;
  box-shadow: var(--sh-sm);
}

.di-stk img:first-child {
  margin-left: 0;
}

.di-trust .t {
  font-size: 14.5px;
  color: var(--ink2);
}

.di-trust .t b {
  color: var(--navy);
  font-weight: 700;
}

.di-trust .star {
  color: var(--amber);
}

.di-visual {
  position: relative;
  height: 560px;
}

.di-visual__circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: 8px;
  top: 30px;
  background: linear-gradient(150deg, var(--blue), var(--blue2));
  opacity: 0.14;
  filter: blur(2px);
}

.di-visual__ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -12px;
  top: 10px;
  border: 1.5px dashed rgba(15, 80, 160, 0.18);
}

.di-visual__dots {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(15, 80, 160, 0.22) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.di-photo {
  position: absolute;
  right: 34px;
  top: 36px;
  width: 430px;
  height: 486px;
  overflow: hidden;
  z-index: 2;
  border-radius: 46% 54% 47% 53%/52% 46% 54% 48%;
  box-shadow: var(--sh);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.di-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.di-fc {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.di-fc .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex: 0 0 auto;
}

.di-fc b {
  display: block;
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.15;
}

.di-fc span {
  font-size: 12.5px;
  color: var(--muted);
}

.di-fc--verify {
  left: -6px;
  top: 84px;
}

.di-fc--rating {
  right: -8px;
  top: 226px;
}

.di-fc--booked {
  left: 24px;
  bottom: 54px;
}

.di-fc--booked .live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.di-fc--booked .live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: dipulse 2.2s infinite;
}

/* trust strip */
.di-strip {
  background: var(--tint2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.di-strip__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.di-strip__i {
  display: flex;
  align-items: center;
  gap: 13px;
}

.di-strip__i .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.di-strip__i b {
  display: block;
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  line-height: 1;
}

.di-strip__i span {
  font-size: 13.5px;
  color: var(--muted);
}

/* feature cards */
.di-feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.di-feat__c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: 0.2s;
}

.di-feat__c:hover {
  box-shadow: var(--sh);
  transform: translateY(-5px);
  border-color: transparent;
}

.di-feat__c .ic {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.di-feat__c h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.di-feat__c p {
  color: var(--ink2);
  font-size: 15px;
}

/* specialities */
.di-spec-sec {
  background: var(--tint2);
}

.di-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.di-spec {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 14px;
  text-align: center;
  transition: 0.2s;
  display: block;
}

.di-spec:hover {
  box-shadow: var(--sh);
  transform: translateY(-5px);
  border-color: transparent;
}

.di-spec .ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  overflow: hidden;
}

.di-spec .ic img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.di-spec p {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* doctor cards */
.di-sechead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.di-sechead h2 {
  font-size: 39px;
}

.di-sechead p {
  color: var(--ink2);
  font-size: 16px;
  margin-top: 8px;
}

.di-sechead a {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.di-docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.di-doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: 0.2s;
}

.di-doc:hover {
  box-shadow: var(--sh);
  transform: translateY(-6px);
  border-color: transparent;
}

.di-doc__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.di-doc__av {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 22px;
  position: relative;
}

.di-doc__av img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.di-doc__id h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.di-doc__vk {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  flex: 0 0 auto;
}

.di-doc__spec {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  margin-top: 3px;
}

.di-doc__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
}

.di-doc__meta {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.di-doc__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  color: var(--ink2);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--pill);
}

.di-doc__pill .star {
  color: var(--amber);
}

.di-doc__pill b {
  color: var(--navy);
}

.di-doc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.di-doc__fee b {
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
}

.di-doc__fee small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

/* how to book */
.di-how-sec {
  background: var(--tint2);
}

.di-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.di-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  position: relative;
}

.di-step .n {
  position: absolute;
  top: -14px;
  left: 26px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: "Jakarta";
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: var(--sh-blue);
}

.di-step .ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin: 14px 0 16px;
}

.di-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.di-step p {
  color: var(--ink2);
  font-size: 14.5px;
}

/* split */
.di-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.di-split__img {
  position: relative;
}

.di-split__img img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 1/0.92;
  box-shadow: var(--sh);
}

.di-split__img .badge {
  position: absolute;
  right: -16px;
  bottom: 30px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.di-split__img .badge .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  display: grid;
  place-items: center;
}

.di-split__img .badge b {
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  display: block;
}

.di-split__img .badge span {
  font-size: 12.5px;
  color: var(--muted);
}

.di-split h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.di-split .lead {
  color: var(--ink2);
  font-size: 16.5px;
  margin-bottom: 24px;
}

.di-checks {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.di-checks li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.di-checks .ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.di-checks b {
  color: var(--navy);
  font-weight: 700;
  display: block;
  font-size: 15.5px;
}

.di-checks span {
  color: var(--ink2);
  font-size: 14.5px;
}

/* 2026-06-19 REL_54 — Reserve with Google patient trust badge (credibility signal). Brand-blue, not a success-check. */
.di-rwg {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 520px;
  margin: 0 0 26px;
  padding: 13px 16px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.45;
}

.di-rwg__g {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
}

.di-rwg__g .ico {
  width: 20px;
  height: 20px;
}

.di-rwg b {
  color: var(--navy);
  font-weight: 700;
}

/* testimonials */
.di-testi-sec {
  background: var(--tint2);
}

.di-testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.di-testi__c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}

.di-testi__c .q {
  color: var(--blue);
  opacity: 0.18;
  font-family: "Jakarta";
  font-size: 56px;
  line-height: 0.6;
  font-weight: 800;
}

.di-testi__c .stars {
  color: var(--amber);
  letter-spacing: 3px;
  margin: 6px 0 14px;
  font-size: 15px;
}

.di-testi__c p {
  color: var(--ink2);
  font-size: 15px;
  margin-bottom: 20px;
}

.di-testi__who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.di-testi__who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 16px;
  flex: 0 0 auto;
}

.di-testi__who b {
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  display: block;
}

.di-testi__who span {
  color: var(--muted);
  font-size: 13px;
}

/* cities */
.di-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.di-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 22px;
  transition: 0.2s;
}

.di-city:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
  border-color: transparent;
}

.di-city b {
  font-family: "Jakarta";
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.di-city span {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.di-city .ar {
  color: var(--blue);
}

/* faq */
.di-faq-sec {
  background: var(--tint2);
}

.di-faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.di-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 24px;
  transition: 0.2s;
}

.di-faq details[open] {
  box-shadow: var(--sh-sm);
}

.di-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: "Jakarta";
  font-weight: 800;
  color: var(--navy);
  font-size: 16.5px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.di-faq summary .ar {
  color: var(--blue);
  transition: 0.2s;
  flex: 0 0 auto;
}

.di-faq details[open] summary .ar {
  transform: rotate(180deg);
}

.di-faq details .ans {
  color: var(--ink2);
  font-size: 15px;
  padding: 0 0 20px;
}

/* cta */
.di-cta__box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--blue), var(--blue2));
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
  color: var(--white);
}

.di-cta__box:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  right: -80px;
  top: -120px;
}

.di-cta__box:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  left: -60px;
  bottom: -120px;
}

.di-cta__box h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 14px;
  position: relative;
}

.di-cta__box p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 28px;
  position: relative;
}

.di-cta__box .di-btn {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
  position: relative;
}

/* 2026-06-19 REL_54 — Reserve with Google doctor teaser inside the blue CTA box (white-alpha highlight, like the box scrims). */
.di-cta__box .di-cta__hl {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 26px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r);
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  position: relative;
}

.di-cta__box .di-cta__hl .ico {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.di-cta__box .di-cta__hl b {
  font-weight: 800;
}

/* get started */
.di-gs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 840px;
  margin: 0 auto;
}

.di-gs__c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  transition: 0.2s;
}

.di-gs__c:hover {
  box-shadow: var(--sh);
  transform: translateY(-5px);
  border-color: transparent;
}

.di-gs__c .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.di-gs__c h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.di-gs__c p {
  color: var(--ink2);
  font-size: 14.5px;
  margin-bottom: 20px;
}

/* 2026-06-19 REL_54 — app-download showcase (Patient + Doctor apps). Premium phone-mockup + di-system store buttons. Tokens only; brand-blue chips (no green per brand rule). */
.di-appdl {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, var(--tint), var(--white) 70%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}

.di-appdl:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 124, 224, 0.14), transparent 70%);
  right: -120px;
  top: -140px;
  pointer-events: none;
} /* brand-blue (--blue2) alpha glow */
.di-appdl__main {
  position: relative;
}

.di-appdl__main h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.di-appdl__main .lead {
  color: var(--ink2);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 26px;
}

.di-appdl__visual {
  display: grid;
  place-items: center;
  position: relative;
}

/* phone frame ratio matched to the real screenshot (894x1988 ≈ .45) so object-fit:cover shows it with no crop */
.di-appdl__phone {
  width: 246px;
  height: 520px;
  background: var(--navy);
  border-radius: 42px;
  padding: 11px;
  position: relative;
  box-shadow: 0 30px 60px -18px rgba(12, 31, 63, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.di-appdl__screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
}

.di-appdl__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.di-appdl__tracks {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.di-appdl__th {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.di-appdl__th .ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
}

.di-appdl__th .ic .ico {
  width: 22px;
  height: 22px;
}

.di-appdl__th b {
  display: block;
  font-size: 16px;
  color: var(--navy);
}

.di-appdl__th span {
  font-size: 13px;
  color: var(--ink2);
}

.di-appdl__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.di-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 9px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.di-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11, 26, 48, 0.55);
}

.di-store:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.di-store__g {
  display: grid;
  place-items: center;
}

.di-store__g svg {
  width: 24px;
  height: 24px;
}

.di-store__t {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.di-store__t small {
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.di-store__t b {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .di-appdl {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px;
    text-align: center;
  }
  .di-appdl__main .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .di-appdl__th {
    justify-content: center;
  }
  .di-appdl__badges {
    justify-content: center;
  }
  .di-appdl__tracks {
    align-items: center;
  }
}
@media (max-width: 560px) {
  .di-appdl {
    padding: 30px 16px;
  }
  .di-appdl__phone {
    width: 208px;
    height: 440px;
  }
  .di-appdl__main h2 {
    font-size: 27px;
  }
  .di-store {
    padding: 8px 14px;
  }
  .di-store__t b {
    font-size: 14px;
  }
}
/* footer */
.di-footer {
  background: var(--navy);
  color: var(--foot-fg);
  padding: 70px 0 30px;
  margin-top: 30px;
}

.di-fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.di-footer .flogo {
  height: 42px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.di-footer .ftag {
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.di-footer p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.75;
}

.di-footer h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
  font-family: "Inter";
  font-weight: 600;
}

.di-footer ul {
  list-style: none;
}

.di-footer li {
  margin-bottom: 12px;
}

.di-footer a {
  font-size: 14px;
}

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

.di-footer .social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.di-footer .social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--foot-link);
}

.di-footer .social a:hover {
  background: var(--blue);
  color: var(--white);
}

.di-fnews {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  max-width: 330px;
}

.di-fnews input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: var(--pill);
  padding: 11px 16px;
  font: inherit;
  font-size: 14px;
}

.di-fnews input::placeholder {
  color: var(--foot-ph);
}

.di-fbar {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.di-fbar a {
  margin-left: 18px;
}

.di-chat-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--pill);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--sh-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.di-chat-fab:hover {
  background: var(--blue-dark);
}

@media (max-width: 1040px) {
  .di-burger {
    display: inline-flex;
  }
  /* 2026-06-18 REL_54 fix (QA HIGH-2): drawer anchored at right:0 INSIDE the viewport (no translateX beyond edge -> no horizontal scroll, since position:fixed escapes overflow clipping). Toggle via opacity+visibility. */
  .di-nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 86vw;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 18px 24px;
    box-shadow: var(--sh);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 60;
    overflow: auto;
  }
  .di-nav.is-open .di-nav__links {
    visibility: visible;
    opacity: 1;
  }
  .di-nav__links > li > a, .di-nav__links > li > button {
    padding: 14px 10px;
    font-size: 16px;
    width: 100%;
  }
  .di-nav__drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 12px;
  }
  .di-nav.is-open .di-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 48, 0.45);
    z-index: 55;
  }
}
@media (max-width: 980px) {
  .di-hero__grid, .di-split {
    grid-template-columns: 1fr;
  }
  .di-feat, .di-docs, .di-testi, .di-steps, .di-gs, .di-cities {
    grid-template-columns: 1fr;
  }
  .di-specs {
    grid-template-columns: repeat(3, 1fr);
  }
  .di-fgrid {
    grid-template-columns: 1fr 1fr;
  }
  .di-visual {
    height: 430px;
    margin-top: 10px;
  }
  .di-hero h1 {
    font-size: 42px;
  }
  .di-sec {
    padding: 64px 0;
  }
  .di-shead h2, .di-sechead h2, .di-split h2 {
    font-size: 30px;
  }
}
@media (max-width: 560px) {
  .di-specs, .di-cities {
    grid-template-columns: repeat(2, 1fr);
  }
  .di-wrap {
    padding: 0 20px;
  }
  .di-hero h1 {
    font-size: 34px;
  }
  .di-cta__box, .di-gs__c, .di-feat__c {
    padding: 30px;
  }
}
/* ===== REL_54 — artistic motion layer (CSP-safe; reduced-motion aware) ===== */
.di-js .di-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.di-js .di-reveal.is-in {
  opacity: 1;
  transform: none;
}

.di-header {
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.di-header--scrolled {
  box-shadow: 0 8px 28px -14px rgba(14, 35, 72, 0.22);
}

.di-btn--primary {
  position: relative;
  overflow: hidden;
}

.di-btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.di-btn--primary:hover::after {
  left: 145%;
}

.di-doc__av img {
  transition: transform 0.4s ease;
}

.di-doc:hover .di-doc__av img {
  transform: scale(1.09);
}

.di-spec .ic {
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.di-spec:hover .ic {
  transform: scale(1.12) rotate(-5deg);
}

.di-city .ar {
  transition: transform 0.2s ease;
}

.di-city:hover .ar {
  transform: translateX(4px);
}

html {
  scroll-behavior: smooth;
}

@keyframes dispin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes difloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes diUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .di-visual__ring {
    animation: dispin 60s linear infinite;
  }
  .di-fc--verify {
    animation: difloat 6s ease-in-out infinite;
  }
  .di-fc--rating {
    animation: difloat 6.6s ease-in-out infinite;
  }
  .di-fc--booked {
    animation: difloat 7.2s ease-in-out infinite;
  }
  .di-js .di-hero__grid > div > * {
    animation: diUp 0.7s both;
  }
  .di-js .di-hero .di-eyebrow {
    animation-delay: 0.02s;
  }
  .di-js .di-hero h1 {
    animation-delay: 0.08s;
  }
  .di-js .di-hero .lead {
    animation-delay: 0.16s;
  }
  .di-js .di-hero .di-search {
    animation-delay: 0.24s;
  }
  .di-js .di-hero .di-popular {
    animation-delay: 0.3s;
  }
  .di-js .di-hero .di-trust {
    animation-delay: 0.36s;
  }
  .di-js .di-visual {
    animation: diUp 0.9s 0.2s both;
  }
}
@media (prefers-reduced-motion: reduce) {
  .di-js .di-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ===== REL_54.1 — richer artistic motion (home page) ===== */
.di-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  box-shadow: 0 0 8px rgba(47, 124, 224, 0.5);
}

.di-hero {
  overflow: hidden;
}

.di-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.di-hero .orb1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 124, 224, 0.45), transparent 70%);
  top: -70px;
  left: -50px;
}

.di-hero .orb2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(90, 166, 240, 0.4), transparent 70%);
  bottom: -50px;
  left: 38%;
}

.di-hero__grid {
  position: relative;
  z-index: 1;
}

.di-js .di-reveal .di-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.di-js .di-reveal.is-in .di-stagger > * {
  opacity: 1;
  transform: none;
}

.di-stagger > *:nth-child(1) {
  transition-delay: 0.04s;
}

.di-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}

.di-stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}

.di-stagger > *:nth-child(4) {
  transition-delay: 0.22s;
}

.di-stagger > *:nth-child(5) {
  transition-delay: 0.28s;
}

.di-stagger > *:nth-child(6) {
  transition-delay: 0.34s;
}

.di-stagger > *:nth-child(7) {
  transition-delay: 0.4s;
}

.di-stagger > *:nth-child(8) {
  transition-delay: 0.46s;
}

.di-doc, .di-feat__c, .di-gs__c {
  will-change: transform;
}

@keyframes diDrift1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(46px, 34px);
  }
}
@keyframes diDrift2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-54px, -30px);
  }
}
@keyframes diShimmer {
  to {
    background-position: 200% center;
  }
}
@keyframes diBlob {
  0%, 100% {
    border-radius: 46% 54% 47% 53%/52% 46% 54% 48%;
  }
  50% {
    border-radius: 54% 46% 56% 44%/44% 56% 46% 56%;
  }
}
@keyframes diFab {
  0%, 100% {
    box-shadow: var(--sh-blue);
  }
  50% {
    box-shadow: 0 20px 44px -10px rgba(15, 80, 160, 0.7);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .di-hero .orb1 {
    animation: diDrift1 17s ease-in-out infinite;
  }
  .di-hero .orb2 {
    animation: diDrift2 21s ease-in-out infinite;
  }
  .di-hero h1 em {
    background-size: 200% auto;
    animation: diShimmer 6s linear infinite;
  }
  .di-photo {
    animation: diBlob 14s ease-in-out infinite;
  }
  .di-cta__box:before {
    animation: diDrift1 19s ease-in-out infinite;
  }
  .di-cta__box:after {
    animation: diDrift2 23s ease-in-out infinite;
  }
  .di-chat-fab {
    animation: diFab 3s ease-in-out infinite;
  }
}
/* ===== REL_54.2 — sliders + decorative doctor card ===== */
.di-slider {
  position: relative;
}

.di-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.di-slider__track::-webkit-scrollbar {
  display: none;
}

.di-slider__track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.di-docs.di-slider__track > * {
  width: 340px;
  max-width: 84vw;
}

.di-specs.di-slider__track > * {
  width: 174px;
}

.di-slider__nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 6;
  color: var(--blue);
  transition: 0.2s;
}

.di-slider__nav:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.07);
}

.di-slider__nav--prev {
  left: -20px;
}

.di-slider__nav--next {
  right: -20px;
}

@media (max-width: 1040px) {
  .di-slider__nav {
    display: none;
  }
  .di-docs.di-slider__track > * {
    width: 300px;
  }
}
/* doctor card — base shell + hover accent. Live layout = photo-top (below).
   2026-06-18 fix (#11 DRY): removed dead centered/decorative layers — __deco/__av/__id/__badge/__avwrap/__vk/__rate
   + the entire superseded REL_54.3 centered block (photo-top below fully supersedes it). One card definition now. */
.di-doc {
  position: relative;
  overflow: hidden;
}

.di-doc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.di-doc:hover::after {
  transform: scaleX(1);
}

/* ===== REL_54.4 — Doccure-style PHOTO-TOP doctor card (the single live card) ===== */
.di-doc {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-align: left;
  align-items: stretch;
}

.di-docs.di-slider__track > * {
  width: 300px;
}

.di-doc__photo {
  position: relative;
  height: 216px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.di-doc__photo .ini {
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 46px;
  color: var(--white);
  letter-spacing: 1px;
}

.di-doc__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.di-doc__rating {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  border-radius: var(--pill);
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--sh-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.di-doc__rating .star {
  color: var(--amber);
}

.di-doc__rating em {
  color: var(--muted);
  font-weight: 500;
  font-style: normal;
}

.di-doc__save {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.2s;
  padding: 0;
  box-shadow: var(--sh-sm);
}

.di-doc__save svg {
  width: 17px;
  height: 17px;
  transition: 0.2s;
}

.di-doc__save:hover {
  color: var(--danger);
}

.di-doc__save.is-on {
  color: var(--danger);
}

.di-doc__save.is-on svg {
  fill: var(--danger);
}

.di-doc__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.di-doc__r1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.di-doc__spec {
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
}

.di-doc__avl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pill);
  white-space: nowrap;
}

.di-doc__avl .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.di-doc h3 {
  font-size: 18px;
  margin-bottom: 7px;
  line-height: 1.25;
}

.di-doc__loc {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.di-doc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.di-doc__foot {
  margin-top: 16px;
}

.di-doc__fee span {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  margin-bottom: 1px;
}

.di-doc__fee b {
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

.di-doc__book {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-blue);
  transition: 0.2s;
  flex: 0 0 auto;
}

.di-doc__book:hover {
  background: var(--blue-dark);
  transform: translateY(-2px) scale(1.04);
}

.di-doc__book svg {
  width: 21px;
  height: 21px;
}

.di-doc:hover .di-doc__photo img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* ===== REL_54.5 — clarity & small-font sharpness (darker secondary text + crisp sizes) ===== */
:root {
  --muted:#556579;
  --ink2:#3f4f63;
}

body {
  text-rendering: optimizeLegibility;
}

.di-doc__fee span {
  font-size: 12px;
}

.di-doc__avl {
  font-size: 11.5px;
}

.di-doc__loc {
  font-size: 13.5px;
}

.di-doc__spec {
  font-size: 13.5px;
}

.di-doc__rating {
  font-size: 13px;
}

.di-fc span {
  font-size: 13px;
}

.di-fc b {
  font-size: 16.5px;
}

.di-strip__i span {
  font-size: 14px;
}

.di-testi__who span {
  font-size: 13.5px;
}

.di-popular {
  font-size: 14.5px;
}

.di-spec p {
  font-size: 14.5px;
}

.di-city span {
  font-size: 13.5px;
}

.di-footer a {
  font-size: 14.5px;
}

.di-footer p {
  font-size: 14.5px;
}

.di-shead p {
  color: var(--ink2);
}

/* ===== REL_54.6 — speciality card with doctor count ===== */
.di-specs.di-slider__track > * {
  width: 192px;
}

.di-spec {
  padding: 30px 16px 26px;
}

.di-spec .ic {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.di-spec .ic img {
  width: 30px;
  height: 30px;
}

.di-spec p {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.di-spec .cnt {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

/* ===== REL_54.7 — compact doctor card (proportionate vs other cards) ===== */
.di-docs.di-slider__track > * {
  width: 268px;
}

.di-doc__photo {
  height: 158px;
}

.di-doc__photo .ini {
  font-size: 36px;
}

.di-doc__body {
  padding: 15px 18px 17px;
}

.di-doc__r1 {
  margin-bottom: 7px;
}

.di-doc__spec {
  font-size: 13px;
}

.di-doc__avl {
  font-size: 10.5px;
  padding: 3px 9px;
}

.di-doc h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.di-doc__loc {
  font-size: 12.5px;
}

.di-doc__loc .ico {
  width: 14px;
  height: 14px;
}

.di-doc__foot {
  margin-top: 14px;
  padding-top: 13px;
}

.di-doc__fee span {
  font-size: 11px;
}

.di-doc__fee b {
  font-size: 16px;
}

.di-doc__book {
  width: 42px;
  height: 42px;
}

.di-doc__book svg {
  width: 18px;
  height: 18px;
}

.di-doc__rating {
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  font-size: 12px;
}

.di-doc__save {
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
}

.di-doc__save svg {
  width: 15px;
  height: 15px;
}

/* ===== REL_54.8 — new Indian hero/split images: crop positioning ===== */
.di-photo img {
  object-position: 32% center;
}

.di-split__img img {
  object-position: center 22%;
}

/* ===== REL_54.9 — hero trust-stack = real DB doctors (initials + photo overlay) ===== */
.di-stk {
  display: flex;
}

.di-stk__a {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -13px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: var(--white);
  font-family: "Jakarta";
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 auto;
}

.di-stk__a:first-child {
  margin-left: 0;
}

.di-stk__a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== REL_54.10 — 3-mode search (premium, di-system) ===== */
.di-srch {
  max-width: 610px;
}

.di-srch__modes {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.di-srch__mode {
  padding: 8px 16px;
  border-radius: var(--pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink2);
  cursor: pointer;
  transition: 0.18s;
}

.di-srch__mode:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.di-srch__mode.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--sh-blue);
}

.di-srch__bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 6px;
}

.di-srch__f {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  min-width: 0;
}

.di-srch__f + .di-srch__f {
  border-left: 1px solid var(--line);
}

.di-srch__f .ico {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.di-srch__f input {
  border: none;
  outline: none;
  background: none;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  min-width: 0;
}

.di-srch__f input::placeholder {
  color: var(--muted);
}

.di-srch__btn {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0 26px;
  border-radius: calc(var(--r) - 4px);
}

.di-srch__list {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  right: -8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  z-index: 40;
  max-height: 330px;
  overflow: auto;
  padding: 6px;
}

.di-srch__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
}

.di-srch__item:hover {
  background: var(--tint);
}

.di-srch__iic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.di-srch__iic svg {
  width: 16px;
  height: 16px;
}

.di-srch__itx {
  flex: 1;
  min-width: 0;
}

.di-srch__itx b {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}

.di-srch__itx small {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}

.di-srch__tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--tint);
  padding: 3px 8px;
  border-radius: var(--pill);
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.di-srch__empty {
  color: var(--muted);
  justify-content: center;
  cursor: default;
}

.di-srch__empty:hover {
  background: none;
}

/* 2026-06-18 — autocomplete loading row + spinner (UX: feedback while suggestions fetch) */
.di-srch__loading {
  color: var(--muted);
  justify-content: center;
  cursor: default;
}

.di-srch__loading:hover {
  background: none;
}

.di-srch__spin {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--blue);
  display: inline-block;
  animation: di-spin 0.6s linear infinite;
}

@keyframes di-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .di-srch__spin {
    animation-duration: 1.4s;
  }
}
.di-srch__err {
  color: var(--danger);
  font-size: 13.5px;
  margin-top: 10px;
}

@media (max-width: 560px) {
  .di-srch__bar {
    flex-direction: column;
    padding: 8px;
  }
  .di-srch__f + .di-srch__f {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .di-srch__btn {
    align-self: auto;
    width: 100%;
    padding: 13px;
  }
  .di-srch__list {
    left: 0;
    right: 0;
  }
}
/* fix: hidden search fields must stay hidden (override display:flex) */
.di-srch__f[hidden] {
  display: none !important;
}

/* ===== REL_54.11 — search dropdown = full bar width (fix narrow/clutter) ===== */
.di-srch__bar {
  position: relative;
}

.di-srch__list {
  left: 0;
  right: 0;
  top: calc(100% + 12px);
}

/* ===== REL_54.12 — lift search above later hero siblings (entrance-anim stacking-context fix) ===== */
.di-srch {
  position: relative;
  z-index: 30;
}

.di-srch__list {
  z-index: 50;
}

/* ===== REL_54.13 — dropdown not clipped (orbs in own layer) + keyboard highlight ===== */
.di-hero {
  overflow: visible;
}

.di-hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* ===== REL_54.15 — hero search = full-width band (prominent, wide+thin inputs, gradient border, light shadow, focus-glow). Trust moved under lead; smart-chip none. Photo+padding tightened so the band sits in view (headline unchanged). ===== */
.di-hero {
  padding-bottom: 60px;
}

.di-visual {
  height: 440px;
}

.di-hero__search {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.di-hero__search .di-srch {
  max-width: none;
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(135deg, var(--blue), var(--sky)) border-box;
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 16px 16px 12px;
  transition: box-shadow 0.2s ease;
}

.di-hero__search .di-srch:focus-within {
  box-shadow: var(--sh-blue);
}

.di-hero__search .di-srch__bar {
  box-shadow: none;
}

.di-hero__search .di-srch__f {
  padding-top: 4px;
  padding-bottom: 4px;
}

.di-hero__search .di-srch__f input {
  height: 36px;
}

.di-hero__search .di-srch__btn {
  align-self: center;
  height: 44px;
}

.di-hero__search .di-popular {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .di-js .di-hero__search {
    animation: diUp 0.7s both;
    animation-delay: 0.28s;
  }
}
/* mobile: reorder so search sits between the text and the photo (headline -> search -> photo) */
@media (max-width: 980px) {
  .di-hero .di-wrap {
    display: flex;
    flex-direction: column;
  }
  .di-hero__grid {
    display: contents;
  }
  .di-hero__grid > div:first-child {
    order: 1;
  }
  .di-hero__search {
    order: 2;
    margin-top: 28px;
  }
  .di-visual {
    order: 3;
    margin-top: 22px;
  }
}
@media (max-width: 560px) {
  .di-hero__search {
    margin-top: 24px;
  }
  .di-hero__search .di-srch__btn {
    align-self: auto;
    width: 100%;
  }
}
.di-srch__item.is-active {
  background: var(--tint);
}

/* ===== REL_54.14 (2026-06-18 fix) — token classes replacing inline styles (S0/#16) + a11y polish (#7) ===== */
/* floating-card icon gradients (were inline hardcoded-hex on Index) */
.di-fc--verify .ic {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
}

.di-fc--rating .ic {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.di-fc--booked .ic {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

/* shared eyebrow tag (replaces inline-styled .tag in split section) */
.di-tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* icon size utilities (replace inline width/height on .ico) */
.ico--xs {
  width: 13px;
  height: 13px;
}

.ico--sm {
  width: 15px;
  height: 15px;
}

.ico--md {
  width: 18px;
  height: 18px;
}

.ico--lg {
  width: 26px;
  height: 26px;
}

.ico--xl {
  width: 28px;
  height: 28px;
}

/* section flush-top (replaces inline padding-top:0) */
.di-sec--flush {
  padding-top: 0;
}

/* compact button + footer icon/spacing utils (replace inline styles in partials) */
.di-btn--sm {
  padding: 11px 20px;
}

.di-footer .social svg {
  width: 18px;
  height: 18px;
}

.di-chat-fab svg {
  width: 17px;
  height: 17px;
}

.di-fnews-note {
  margin-bottom: 8px;
}

/* a11y: keyboard focus ring + mobile touch targets */
.di-btn:focus-visible, .di-srch__mode:focus-visible, .di-nav__links a:focus-visible, .di-doc__book:focus-visible, .di-doc__save:focus-visible, .di-faq summary:focus-visible, .di-spec:focus-visible, .di-city:focus-visible, .di-authorhero__link:focus-visible, .di-chip:focus-visible, .di-pop__card:focus-visible, .di-procfilter__in:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .di-srch__mode {
    padding: 11px 16px;
  }
}
/* ===================== REL_56 -- shared form controls + breadcrumb + contact ===================== */
.di-hp {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
} /* honeypot (off-screen, aria-hidden) */
/* Breadcrumb trail (shared) */
.di-crumbs {
  border-bottom: 1px solid var(--line);
  background: var(--tint2);
}

.di-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  margin: 0;
  font-size: 13.5px;
}

.di-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.di-crumbs a {
  color: var(--ink2);
  font-weight: 600;
}

.di-crumbs a:hover {
  color: var(--blue);
}

.di-crumbs__sep {
  color: var(--muted);
}

.di-crumbs [aria-current=page] {
  color: var(--blue);
  font-weight: 700;
}

/* Contact page glue */
.di-contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.di-channels {
  display: grid;
  gap: 14px;
}

.di-channel {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.di-channel:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

.di-channel__ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.di-channel__t {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 4px;
}

.di-channel__v {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.55;
}

.di-channel__v a {
  color: var(--blue);
  font-weight: 600;
}

.di-channel__v span {
  display: block;
}

.di-formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--sh-sm);
}

.di-formcard h2 {
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 4px;
}

.di-formcard__lead {
  color: var(--ink2);
  font-size: 14.5px;
  margin: 0 0 22px;
}

.di-form__two {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: start;
}

.di-form__alert {
  display: none;
  background: var(--danger-tint);
  border: 1px solid var(--danger-line);
  color: var(--danger);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  margin-bottom: 16px;
}

.di-form__alert.is-on {
  display: block;
}

@media (max-width: 880px) {
  .di-contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .di-formcard {
    padding: 24px 20px;
  }
}
@media (max-width: 560px) {
  .di-form__two {
    grid-template-columns: 1fr;
  }
}
/* REL_56 -- shared footer mobile fix: newsletter input forced 2-col grid tracks to ~330px -> horizontal overflow on small phones. Stack to 1 col + let inputs shrink. (Benefits every page.) */
@media (max-width: 560px) {
  .di-fgrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .di-fnews {
    max-width: 100%;
  }
  .di-fnews .di-input, .di-fnews input {
    min-width: 0;
  }
  .di-fbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* ===================== REL_56 -- PREMIUM smart form controls (shared di-system) ===================== */
/* Floating-label field (icon + animated label + live valid/invalid). REUSE everywhere. */
.di-fld {
  position: relative;
  margin-bottom: 4px;
}

.di-fld__ic {
  position: absolute;
  left: 15px;
  top: 29px;
  transform: translateY(-50%);
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: color 0.16s;
  pointer-events: none;
  z-index: 1;
}

.di-fld__input {
  width: 100%;
  height: 58px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 42px 8px 44px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.di-fld__ta {
  width: 100%;
  min-height: 132px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 26px 14px 12px;
  line-height: 1.55;
  resize: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  overflow: hidden;
}

.di-fld--noicon .di-fld__input {
  padding-left: 15px;
}

/* 2026-06-21 REL_63 -- shared select skin: <select class="di-fld__input"> needs sane padding + a chevron (the input style sets appearance:none). */
select.di-fld__input {
  height: 48px;
  padding: 10px 38px 10px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23445469' stroke-width='2.2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

.di-fld__label {
  position: absolute;
  left: 44px;
  top: 29px;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
  transition: top 0.16s ease, font-size 0.16s ease, color 0.16s ease;
  background: transparent;
}

.di-fld--noicon .di-fld__label {
  left: 15px;
}

.di-fld__ta ~ .di-fld__label {
  top: 24px;
}

.di-fld__input:focus, .di-fld__ta:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.12);
}

.di-fld__input:focus ~ .di-fld__ic, .di-fld__ta:focus ~ .di-fld__ic {
  color: var(--blue);
}

.di-fld__input:focus ~ .di-fld__label, .di-fld__input:not(:placeholder-shown) ~ .di-fld__label,
.di-fld__ta:focus ~ .di-fld__label, .di-fld__ta:not(:placeholder-shown) ~ .di-fld__label {
  top: 11px;
  transform: none;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.di-fld__ta:focus ~ .di-fld__label, .di-fld__ta:not(:placeholder-shown) ~ .di-fld__label {
  top: 9px;
}

.di-fld__ok {
  position: absolute;
  right: 14px;
  top: 29px;
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  color: var(--green-ink);
  transition: 0.18s;
  pointer-events: none;
}

.di-fld.is-valid .di-fld__ok {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.di-fld.is-valid .di-fld__input {
  border-color: rgba(16, 185, 129, 0.5);
}

.di-fld.is-invalid .di-fld__input, .di-fld.is-invalid .di-fld__ta {
  border-color: var(--danger);
  background: var(--danger-tint);
}

.di-fld__err {
  display: block;
  font-size: 13px;
  color: var(--danger);
  min-height: 15px;
  margin: 5px 3px 0;
}

.di-flabel {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 9px;
}

.di-flabel .req {
  color: var(--danger);
  margin-left: 2px;
}

.req {
  color: var(--danger);
}

.di-fld--gap {
  margin-top: 8px;
}

/* Reason chips (radio-styled, accessible, no-JS) */
.di-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.di-chips input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.di-chips label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  background: var(--white);
  cursor: pointer;
  transition: 0.15s;
  user-select: none;
}

.di-chips label:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.di-chips input:checked + label {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue);
}

.di-chips input:focus-visible + label {
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.2);
}

/* 2026-06-21 REL_63 -- shared clickable chip (link pill) e.g. empty-rescue related-speciality suggestions. */
.di-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint);
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 600;
  transition: 0.15s;
}

.di-chip:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Searchable combo (country dial code) -- progressive enhancement over native select */
.di-combo {
  position: relative;
}

.di-combo__native {
  width: 100%;
  height: 58px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  -webkit-appearance: none;
  appearance: none;
}

.di-combo__btn {
  display: none;
  width: 100%;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.di-combo.js-on .di-combo__native {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  padding: 0;
  border: 0;
}

.di-combo.js-on .di-combo__btn {
  display: flex;
}

.di-combo__btn:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.12);
}

.di-combo__btn .chev {
  color: var(--muted);
  transition: transform 0.18s;
  flex: 0 0 auto;
}

.di-combo.is-open .di-combo__btn {
  border-color: var(--blue);
}

.di-combo.is-open .di-combo__btn .chev {
  transform: rotate(180deg);
}

.di-combo__pop {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh);
  padding: 8px;
  display: none;
  max-height: 304px;
  flex-direction: column;
}

.di-combo.is-open .di-combo__pop {
  display: flex;
}

.di-combo__search {
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  margin-bottom: 6px;
  width: 100%;
  font-family: inherit;
}

.di-combo__search:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 80, 160, 0.1);
}

.di-combo__list {
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.di-combo__opt {
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink2);
  cursor: pointer;
}

.di-combo__opt:hover, .di-combo__opt.is-active {
  background: var(--tint);
  color: var(--blue);
}

.di-combo__opt.is-sel {
  font-weight: 700;
  color: var(--blue);
}

.di-combo__empty {
  padding: 14px;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
}

/* Smart message counter */
.di-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.di-count {
  font-size: 12.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.di-count.is-ok {
  color: var(--green-ink);
  font-weight: 600;
}

/* Premium animated in-place success */
.di-contact__ok {
  display: none;
  text-align: center;
  padding: 32px 10px;
}

.di-formcard.is-sent .di-form__live {
  display: none;
}

.di-formcard.is-sent .di-contact__ok {
  display: block;
  animation: diOkIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes diOkIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.di-contact__ok .ic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green-ink);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  animation: diOkPop 0.5s 0.15s cubic-bezier(0.2, 1.3, 0.4, 1) both;
}

@keyframes diOkPop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.di-contact__ok h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 8px;
}

.di-contact__ok p {
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 22px;
}

.di-contact__ok .acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* REL_56 review fixes (SEO/CSS/QA) */
.di-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink2);
}

.di-chips label {
  min-height: 44px;
}

.di-combo__search {
  height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .di-formcard.is-sent .di-contact__ok, .di-contact__ok .ic {
    animation: none !important;
  }
}
/* REL_57 -- chat-with-us channel cards (WhatsApp/Messenger; device-aware QR vs button) */
.di-chat-note {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--ink2);
  font-size: 14.5px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 13px 18px;
}

.di-chat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
}

.di-chat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.di-chat:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}

.di-chat__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 20px;
}

.di-chat__ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
}

.di-chat__ic--wa {
  background: #25D366;
} /* WhatsApp brand green (external brand colour, not a theme token) */
.di-chat__ic--fb {
  background: #0084FF;
} /* Messenger brand blue (external brand colour) */
.di-chat__head h2 {
  font-size: 18.5px;
  color: var(--navy);
  margin: 0;
}

.di-chat__qr {
  width: 190px;
  height: 190px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--white);
  margin: 0 auto 14px;
  display: block;
}

.di-chat__or {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.di-chat__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 13px;
}

.di-chat__link {
  display: inline-block;
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 600;
  word-break: break-all;
}

.di-chat-more {
  text-align: center;
  margin-top: 34px;
  font-size: 14.5px;
  color: var(--ink2);
}

.di-chat-more a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 600px) {
  .di-chat-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .di-chat__qr, .di-chat__or {
    display: none;
  } /* mobile: QR not scannable on same device -> tap-button only */
}
/* REL_57 -- shared page-head utilities (reusable static-page intro) */
.di-sec--top {
  padding-top: 46px;
}

.di-pagehead {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.di-pagehead h1 {
  margin: 6px 0 12px;
}

.di-chat-note svg {
  vertical-align: -3px;
  margin-right: 6px;
}

/* REL_58 -- write-for-us layout + guidelines */
.di-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.di-wfu {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 34px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.di-guidelines {
  background: var(--tint2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.di-guidelines h2 {
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 8px;
}

.di-guidelines p {
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.di-guidelines .di-checks {
  margin-bottom: 18px;
}

.di-guidelines__foot {
  font-size: 13.5px;
  color: var(--ink2);
  margin: 0;
}

.di-guidelines__foot a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 860px) {
  .di-wfu {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .di-guidelines {
    position: static;
  }
}
@media (max-width: 560px) {
  .di-grid2 {
    grid-template-columns: 1fr;
  }
}
/* 2026-06-19 REL_59 ask-a-question -- shared di-check (checkbox) + OTP input modifier + page glue (aq-*) */
.di-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink2);
  user-select: none;
}

.di-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.di-check__box {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: 0.15s;
  margin-top: 1px;
}

.di-check__box svg {
  width: 13px;
  height: 13px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: 0.15s;
}

.di-check input:checked + .di-check__box {
  background: var(--blue);
  border-color: var(--blue);
}

.di-check input:checked + .di-check__box svg {
  opacity: 1;
  transform: scale(1);
}

.di-check input:focus-visible + .di-check__box {
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.2);
}

.di-check b {
  color: var(--navy);
  font-weight: 700;
}

.di-fld__input.is-otp {
  text-align: center;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.aq-mt {
  margin-top: 18px;
}

.aq-mt2 {
  margin-top: 28px;
}

.aq-back {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
}

.aq-back:hover {
  text-decoration: underline;
}

.aq-otp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.aq-emergency {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink2);
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--r);
  padding: 12px 14px;
  margin: 0 0 20px;
}

.aq-emergency svg {
  flex: 0 0 auto;
  color: var(--amber-deep);
  margin-top: 1px;
}

.aq-recent {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.aq-recent h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 12px;
}

.aq-recent ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.aq-recent a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  line-height: 1.35;
}

.aq-recent a:hover {
  color: var(--blue);
}

.aq-recent__age {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

/* 2026-06-22 REL_67 -- Health Blog listing: tag-chip row + responsive article-card grid + pager (shared di-system, token-only). */
.di-blognav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.di-blognav__in {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.di-blognav__group {
  position: relative;
}

.di-blognav__sum {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink2);
  transition: 0.16s;
}

.di-blognav__sum::-webkit-details-marker {
  display: none;
}

.di-blognav__sum:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.di-blognav__group[open] .di-blognav__sum {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.di-blognav__count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.85;
}

.di-blognav__chev {
  width: 15px;
  height: 15px;
  transition: transform 0.18s;
}

.di-blognav__group[open] .di-blognav__chev {
  transform: rotate(180deg);
}

.di-blognav__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  min-width: 240px;
  max-width: 340px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 6px;
}

.di-blognav__item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  line-height: 1.35;
}

.di-blognav__item:hover {
  background: var(--tint);
  color: var(--blue);
}

/* 2026-06-23 REL_67 -- blog listing: articles fill the wide (di-wide) area on the LEFT, topics rail on the RIGHT; big non-compact cards. */
.di-bloglayout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: start;
}

.di-bloglayout__side {
  position: sticky;
  top: var(--sticky-top);
}

.di-topics {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 16px 16px 10px;
}

.di-topics__head {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
}

.di-topics__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 62vh;
  overflow-y: auto;
  padding-bottom: 6px;
}

@media (max-width: 620px) {
  .di-blognav__panel {
    min-width: 220px;
    max-width: 88vw;
  }
}
.di-bloglist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.di-bcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.di-bcard:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.di-bcard__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--tint);
}

.di-bcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.di-bcard__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  flex: 1;
}

.di-bcard__title {
  font-size: 18px;
  line-height: 1.34;
  margin: 0;
  font-weight: 700;
}

.di-bcard__title a {
  color: var(--ink);
  text-decoration: none;
}

.di-bcard__title a:hover {
  color: var(--blue);
}

.di-bcard__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.di-bcard__meta time {
  font-variant-numeric: tabular-nums;
}

.di-bcard__dot {
  color: var(--line);
}

.di-bcard__excerpt {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink2);
}

.di-bcard__more {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
}

.di-bcard__more:hover {
  text-decoration: underline;
}

.di-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 36px 0 8px;
}

.di-pager__num, .di-pager__link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  color: var(--ink2);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.16s;
}

.di-pager__num:hover, .di-pager__link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.di-pager__num.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.di-pager .is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* 2026-06-23 REL_68 -- shared empty-state card (blog tag rescue + reusable on any list page). */
.di-empty {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 40px 28px;
  text-align: center;
}

.di-empty__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.di-empty__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink2);
  max-width: 520px;
  margin: 0 auto 20px;
}

/* 2026-06-23 REL_69 -- Health Blog ARTICLE: reading-optimized prose column + sticky TOC/related rail. */
.di-artlayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.di-article__main {
  min-width: 0;
  max-width: 760px;
}

.di-article__side {
  position: sticky;
  top: var(--sticky-top);
}

.di-article__reviewed {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}

.di-article__reviewed a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.di-article__reviewed a:hover {
  text-decoration: underline;
}

.di-article__title {
  font-size: 34px;
  line-height: 1.18;
  margin: 0 0 14px;
}

.di-article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
}

.di-article__meta time {
  font-variant-numeric: tabular-nums;
}

.di-article__hero {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  margin: 0 0 28px;
  display: block;
}

.di-prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink2);
}

.di-prose h2 {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
  margin: 34px 0 12px;
  scroll-margin-top: calc(var(--sticky-top) + 12px);
}

.di-prose h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 10px;
  scroll-margin-top: calc(var(--sticky-top) + 12px);
}

.di-prose h4, .di-prose h5, .di-prose h6 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 8px;
  scroll-margin-top: calc(var(--sticky-top) + 12px);
}

.di-prose p {
  margin: 0 0 18px;
}

.di-prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.di-prose a:hover {
  color: var(--blue-dark);
}

.di-prose ul, .di-prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.di-prose li {
  margin: 0 0 8px;
}

.di-prose strong {
  color: var(--ink);
  font-weight: 700;
}

.di-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  margin: 8px 0 22px;
  display: block;
}

.di-article__disclaimer {
  background: var(--tint2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 30px 0;
}

.di-article__disclaimer-head {
  font-size: 15px;
  margin: 0 0 8px;
}

.di-article__disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.di-eeat {
  margin: 30px 0 0;
}

.di-eeat__head {
  font-size: 19px;
  margin: 0 0 14px;
}

.di-eeat__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 16px;
  margin: 0 0 14px;
}

.di-eeat__photo {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tint);
  border: 2px solid var(--tint);
}

.di-eeat__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.di-eeat__body {
  min-width: 0;
}

.di-eeat__name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
}

.di-eeat__name a {
  color: var(--ink);
  text-decoration: none;
}

.di-eeat__name a:hover {
  color: var(--blue);
}

.di-eeat__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 6px;
}

.di-eeat__about {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.di-eeat__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.di-eeat__link:hover {
  text-decoration: underline;
}

.di-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 16px 18px;
  margin: 0 0 22px;
}

.di-toc__head {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 10px;
}

.di-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 62vh;
  overflow-y: auto;
}

.di-toc__item {
  margin: 0 0 2px;
}

.di-toc__item a {
  display: block;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink2);
  text-decoration: none;
}

.di-toc__item a:hover {
  background: var(--tint);
  color: var(--blue);
}

.di-toc__item--l3 a {
  padding-left: 20px;
  font-size: 13px;
  color: var(--muted);
}

.di-related {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  padding: 16px 18px;
}

.di-related__head {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 10px;
}

.di-related__item {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.di-related__item:last-child {
  border-bottom: none;
}

.di-related__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.di-related__item:hover .di-related__title {
  color: var(--blue);
}

.di-related__date {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

@media (max-width: 980px) {
  .di-artlayout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
  }
  .di-article__side {
    position: static;
    order: 2;
  }
  .di-article__main {
    order: 1;
    max-width: none;
  }
  .di-toc__list {
    max-height: none;
  }
  .di-toc__item a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .di-article__title {
    font-size: 27px;
  }
  .di-eeat__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* 2026-06-23 REL_70 -- Health Blog AUTHOR profile hero (photo + name + bio). */
.di-authorhero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 32px 34px;
}

.di-authorhero__photo {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tint);
  border: 4px solid var(--tint);
}

.di-authorhero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.di-authorhero__body {
  min-width: 0;
  padding-top: 4px;
}

.di-authorhero__name {
  font-size: 30px;
  line-height: 1.2;
  margin: 8px 0 14px;
}

.di-authorhero__bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0 0 16px;
}

.di-authorhero__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--pill);
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.di-authorhero__link:hover {
  background: var(--blue-dark);
}

@media (max-width: 620px) {
  .di-authorhero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 22px;
    gap: 20px;
  }
  .di-authorhero__name {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .di-bloglayout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .di-bloglayout__side {
    position: static;
  }
  .di-topics__chips {
    max-height: 320px;
  }
}
@media (max-width: 620px) {
  .di-bloglist {
    grid-template-columns: 1fr;
  }
}
/* 2026-06-23 REL_71 -- City directory (/all-cities + /India/{state}): slim sticky search band + a normal-flow state quick-nav (NO nested scroll) + grouped city grid. Reuses .di-city card + .di-chip + .di-empty (token-only glue). */
.di-citydir {
  margin-top: 6px;
}

/* the [hidden] attr (UA display:none) loses to the author .di-city{display:flex}/.di-chip rules, so the client filter couldn't hide cards -- re-assert it, scoped to the directory. */
.di-citydir [hidden] {
  display: none;
}

/* slim FULL-WIDTH sticky band (masks content scrolling under it) -> the search follows without a heavy floating card; only the search is sticky, so the page scrolls smoothly (no nested scroller). */
.di-citydir__bar {
  position: sticky;
  top: var(--sticky-top);
  z-index: 15;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px -18px rgba(14, 35, 72, 0.4);
  padding: 14px 0;
  margin: 0 0 22px;
}

.di-citydir__search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  background: var(--tint2);
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  padding: 0 22px;
  height: 54px;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
}

.di-citydir__search:focus-within {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.12);
}

.di-citydir__search svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.di-citydir__search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  height: 100%;
}

/* state quick-nav -- normal flow, wraps naturally, CENTERED, NO internal scroll (that was the janky nested scroller). */
.di-citydir__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto 30px;
}

.di-citydir__states {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.di-citydir__state {
  scroll-margin-top: calc(var(--sticky-top) + 86px);
}

.di-citydir__statehead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tint);
}

.di-citydir__statecount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--pill);
  background: var(--tint);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0;
}

.di-citydir__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
}

.di-citydir__noresult {
  margin-bottom: 26px;
}

@media (max-width: 560px) {
  .di-citydir__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .di-citydir__statehead {
    font-size: 18px;
  }
  .di-citydir__search {
    height: 50px;
    padding: 0 18px;
  }
}
@media (max-width: 400px) {
  .di-citydir__grid {
    grid-template-columns: 1fr;
  }
}
/* 2026-06-24 REL_72 -- City-speciality hub: reuses the .di-citydir filter band + the Home .di-spec card; only this denser auto-fill grid is page glue. */
.di-specdir__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

@media (max-width: 560px) {
  .di-specdir__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 380px) {
  .di-specdir__grid {
    grid-template-columns: 1fr;
  }
}
/* 2026-06-24 REL_73 -- city+speciality doctor listing: reuses the REL_63 .di-sres layout + _DoctorResultRow + .di-faq + .di-pager + .di-chip. Only the filter-chip group glue + the active chip is new. */
.di-chip--on {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.di-csd__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.di-csd__other {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}

.di-csd__hub {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.di-csd__hub:hover {
  text-decoration: underline;
}

/* mobile: this page's filters are simple chip-links (not the REL_63 search-form drawer) -> keep them IN-FLOW (override the off-canvas), so no toggle/JS is needed and they stay accessible. */
@media (max-width: 920px) {
  .di-csd__filters {
    position: static;
    width: auto;
    max-width: none;
    z-index: auto;
    transform: none;
    overflow: visible;
    box-shadow: none;
    border-radius: var(--r);
  }
}
/* 2026-06-24 REL_74 -- /doctors = SMART SYMPTOM FINDER ("describe your problem -> we match the right specialist"). Distinct from
   Home (marketing) + /Common/search_doctor (results). Page-unique GLUE: a centered problem-input hero + the smart answer band;
   the browse grids reuse .di-cond chips + the secondary speciality browse reuses the Home .di-spec card. Tokens only. */
.di-find {
  position: relative;
  overflow: visible;
  padding: 54px 0 60px;
  text-align: center;
  background: radial-gradient(1100px 540px at 50% -14%, rgba(47, 124, 224, 0.12), transparent 60%);
}

.di-find__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.di-find__orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.5;
}

.di-find__orbs .orb1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 124, 224, 0.42), transparent 70%);
  top: -100px;
  left: 4%;
}

.di-find__orbs .orb2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(90, 166, 240, 0.4), transparent 70%);
  top: -50px;
  right: 6%;
}

.di-find__in {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.di-find__in .di-eyebrow {
  margin-bottom: 18px;
}

.di-find__h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.di-find__h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.di-find__lead {
  font-size: 18px;
  color: var(--ink2);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* the problem input -- big pill with an inline icon + a primary button (the hero affordance) */
.di-find__form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  box-shadow: var(--sh);
  padding: 8px 8px 8px 20px;
  transition: border-color 0.16s, box-shadow 0.16s;
}

.di-find__form:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 80, 160, 0.12), var(--sh);
}

.di-find__ico {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--muted);
}

.di-find__ico svg {
  width: 22px;
  height: 22px;
}

.di-find__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  height: 44px;
}

.di-find__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.di-find .di-popular {
  margin-top: 16px;
}

.di-find__alt {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.di-find__alt a {
  color: var(--blue);
  font-weight: 600;
}

/* smart answer band -- the match payoff */
.di-answer-sec {
  padding: 8px 0 0;
}

.di-answer {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: 20px 24px;
}

.di-answer__ic {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--tint);
  color: var(--blue);
  overflow: hidden;
}

.di-answer__ic img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.di-answer__ic svg {
  width: 28px;
  height: 28px;
}

.di-answer__tx {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.di-answer__tx .lbl {
  font-size: 14px;
  color: var(--ink2);
}

.di-answer__tx .spec {
  font-family: "Jakarta", "Inter", sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.di-answer__cta {
  flex: 0 0 auto;
}

.di-answer--empty .di-answer__ic {
  display: none;
}

.di-answer--empty .spec {
  font-size: 19px;
}

/* secondary speciality browse -- reuses the .di-spec card; only the responsive grid container is glue */
.di-fspecs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

/* problem + body-area chips -> resolved speciality (tinted band for rhythm) */
.di-cond-sec {
  background: var(--tint2);
}

.di-conds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.di-cond {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 42px 16px 18px;
  transition: 0.2s;
}

.di-cond:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
  border-color: transparent;
}

.di-cond__t {
  font-family: "Jakarta", "Inter", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  line-height: 1.25;
}

.di-cond__s {
  color: var(--muted);
  font-size: 12.5px;
}

.di-cond__ar {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}

.di-cond:hover .di-cond__ar {
  transform: translateY(-50%) translateX(3px);
}

@media (max-width: 980px) {
  .di-find__h1 {
    font-size: 40px;
  }
  .di-conds {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .di-conds {
    grid-template-columns: repeat(2, 1fr);
  }
  .di-answer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .di-answer__cta {
    align-self: stretch;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .di-find {
    padding: 36px 0 44px;
  }
  .di-find__h1 {
    font-size: 31px;
  }
  .di-find__lead {
    font-size: 16px;
  }
  .di-find__form {
    flex-wrap: wrap;
    border-radius: var(--r-lg);
    padding: 12px;
  }
  .di-find__input {
    flex: 1 1 100%;
    order: 1;
    height: 44px;
  }
  .di-find__btn {
    flex: 1 1 100%;
    order: 2;
    justify-content: center;
  }
  .di-find__ico {
    display: none;
  }
  .di-fspecs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .di-cond {
    padding: 14px 38px 14px 16px;
  }
}
@media (max-width: 380px) {
  .di-fspecs {
    grid-template-columns: 1fr 1fr;
  }
  .di-conds {
    grid-template-columns: 1fr;
  }
}
/* 2026-06-25 REL_77 -- /procedure PROCEDURES DISCOVERY HUB (from-scratch; NOT a legacy/Home/finder copy). Reuses global .di-eyebrow/.di-shead/.di-faq/.di-btn + :root tokens.
   Page-unique only: procedures hero + search autocomplete dropdown, "most offered" card grid, browse-by-speciality chip groups, why-grid. */
/* NOTE: no overflow:hidden here -- it would clip the search autocomplete dropdown. The decorative orbs are clipped by their own .di-prohero__orbs{overflow:hidden}; page-level x-scroll is already prevented by html{overflow-x:clip}. */
.di-prohero {
  position: relative;
  padding: 54px 0 60px;
  text-align: center;
  background: radial-gradient(1100px 540px at 50% -14%, rgba(47, 124, 224, 0.12), transparent 60%);
}

.di-prohero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.di-prohero__orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.5;
}

.di-prohero__orbs .orb1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 124, 224, 0.42), transparent 70%);
  top: -100px;
  left: 4%;
}

.di-prohero__orbs .orb2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(90, 166, 240, 0.4), transparent 70%);
  top: -50px;
  right: 6%;
}

.di-prohero__in {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.di-prohero__in .di-eyebrow {
  margin-bottom: 18px;
}

.di-prohero__h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.di-prohero__h1 em {
  font-style: normal;
  color: var(--blue);
}

.di-prohero__lead {
  color: var(--ink2);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 26px;
}

.di-procfilter {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.di-procfilter__ico {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
}

.di-procfilter__in {
  width: 100%;
  height: 60px;
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  padding: 0 22px 0 52px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: 0.18s;
}

.di-procfilter__in:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--sh-blue);
}

.di-procfilter__in:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.di-prohero__alt {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 16px;
}

.di-prohero__alt a {
  color: var(--blue);
  font-weight: 600;
}

.di-pop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.di-pop__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  transition: 0.18s;
}

.di-pop__card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}

.di-pop__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
}

.di-pop__hint {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

.di-pop__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.di-pop__docs {
  color: var(--blue);
  font-weight: 600;
  font-size: 13.5px;
}

/* 2026-06-26 REL_81 -- Login / auth page glue (page-unique layout only; reuses .di-fld/.di-combo/.di-chips/.di-check/.di-btn). */
.di-auth {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, var(--tint), transparent 60%);
}

/* split shell: brand panel (left) + login card (right), one rounded surface */
.di-authshell {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}

.di-authcard {
  background: var(--white);
  padding: 38px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- brand / trust panel ---- */
.di-authbrand {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.di-authbrand__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.di-authbrand__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.di-authbrand__shade {
  position: absolute;
  inset: 0;
  background: var(--ovl-auth);
}

.di-authbrand__body {
  padding: 38px 34px 36px;
}

.di-tag--light {
  color: var(--foot-link);
}

.di-authbrand__h {
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 6px 0 10px;
  max-width: 13ch;
}

.di-authbrand__p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--foot-link);
  margin: 0 0 20px;
  max-width: 34ch;
}

.di-authbrand__stats {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0 0 18px;
  padding: 0;
  flex-wrap: wrap;
}

.di-authbrand__stats b {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.di-authbrand__stats b i {
  color: var(--amber);
  font-style: normal;
  margin-left: 2px;
}

.di-authbrand__stats span {
  font-size: 12px;
  color: var(--foot-fg);
  font-weight: 500;
}

.di-authbrand__trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--foot-link);
  margin: 0;
}

/* ---- OTP code entry ---- */
.di-otpring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue);
  margin: 0 auto 4px;
}

.di-auth__row--center {
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.di-auth__inlineform {
  margin: 0;
}

.di-auth__link--btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ---- live hints + caps-lock ---- */
.di-fld__hint {
  min-height: 16px;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink2);
  margin: 5px 2px 0;
  transition: 0.18s;
}

.di-fld__hint.is-bad {
  color: var(--danger);
}

.di-fld__hint--caps {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--amber-deep);
  font-weight: 600;
}

.di-fld__hint--caps[hidden] {
  display: none;
} /* the class's display:flex would otherwise beat the bare [hidden] */
/* ---- smart-recovery nudges ---- */
.di-authnudge {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 16px;
  text-decoration: none;
}

.di-authnudge svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--blue);
}

.di-authnudge--resend {
  color: var(--blue);
  font-weight: 600;
  transition: 0.18s;
}

.di-authnudge--resend:hover {
  background: var(--tint);
  border-color: var(--blue);
}

.di-authnudge--resend:focus-visible, .di-authnudge:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.di-link-inline {
  background: none;
  border: 0;
  padding: 0;
  color: var(--blue);
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.di-link-inline:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.di-authcard__head {
  text-align: center;
  margin-bottom: 22px;
}

.di-authcard__head h1 {
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
}

.di-authcard__head .di-lead {
  font-size: 14.5px;
  color: var(--ink2);
}

.di-chips--seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  margin: 0 0 18px;
}

.di-chips--seg input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.di-chips--seg label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: 0.18s;
  margin: 0;
}

.di-chips--seg input:checked + label {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--sh-sm);
}

.di-chips--seg input:focus-visible + label {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.di-auth__method {
  margin-bottom: 4px;
}

.di-fld--pass {
  position: relative;
}

.di-fld--pass .di-fld__input {
  padding-right: 48px;
}

.di-fld__eye {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  color: var(--ink2);
  cursor: pointer;
  border-radius: 8px;
}

.di-fld__eye:hover {
  color: var(--blue);
}

.di-fld__eye:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.di-fld__eye.is-on {
  color: var(--blue);
}

.di-auth__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 6px;
  flex-wrap: wrap;
}

.di-auth__otp {
  margin: 8px 0 18px;
  font-size: 13.5px;
  color: var(--ink2);
}

.di-auth__link {
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.di-auth__link:hover {
  text-decoration: underline;
}

.di-auth__link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.di-auth__alt {
  text-align: center;
  margin-top: 14px;
}

.di-auth__or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  color: var(--ink2);
  font-size: 13px;
}

.di-auth__or::before, .di-auth__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.di-auth__signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.di-auth__signup .di-btn {
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
}

/* tablet/mobile: collapse the split -> single card; the brand panel is decorative, so it drops away */
/* 2026-06-26 REL_82 -- Doctor Register glue (page-unique; reuses the .di-auth shell + .di-fld/.di-combo/.di-btn). */
.di-authshell--wide {
  max-width: 1000px;
}

.di-form__two--even {
  grid-template-columns: 1fr 1fr;
}

.di-authbrand__feats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.di-authbrand__feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--foot-link);
}

.di-authbrand__feats svg {
  flex: 0 0 auto;
  color: var(--green-bright);
}

.di-pwmeter {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 6px 2px 2px;
  min-height: 16px;
}

.di-pwmeter__bar {
  flex: 1;
  height: 5px;
  border-radius: var(--pill);
  background: var(--line);
  overflow: hidden;
}

.di-pwmeter__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--pill);
  background: var(--danger);
  transition: width 0.25s, background 0.25s;
}

.di-pwmeter__txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  min-width: 54px;
  text-align: right;
}

.di-pwmeter.is-weak .di-pwmeter__bar i {
  width: 33%;
  background: var(--danger);
}

.di-pwmeter.is-fair .di-pwmeter__bar i {
  width: 66%;
  background: var(--amber);
}

.di-pwmeter.is-strong .di-pwmeter__bar i {
  width: 100%;
  background: var(--green);
}

.di-otpsent {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 13px;
  color: var(--ink);
  margin: 4px 0 12px;
}

.di-auth__fineprint {
  font-size: 12px;
  color: var(--ink2);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}

.di-auth__fineprint a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.di-auth__fineprint a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .di-form__two--even {
    grid-template-columns: 1fr;
  }
} /* names stack on small phones (match .di-form__two) */
@media (max-width: 860px) {
  .di-authshell {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .di-authshell--wide {
    max-width: 460px;
  }
  .di-authbrand {
    display: none;
  }
}
@media (max-width: 480px) {
  .di-authshell {
    border-radius: 14px;
  }
  .di-authcard {
    padding: 28px 20px 24px;
  }
  .di-auth__signup {
    grid-template-columns: 1fr;
  }
  .di-authbrand__body {
    padding: 28px 22px 26px;
  }
}
.di-pop__ar {
  color: var(--blue);
  font-weight: 700;
  transition: 0.18s;
}

.di-pop__card:hover .di-pop__ar {
  transform: translateX(4px);
}

/* search autocomplete dropdown (suggests only resolvable procedures) */
.di-procsug {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.di-procsug__list {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 360px;
  overflow: auto;
}

.di-procsug__list[hidden] {
  display: none;
}

.di-procsug__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  min-height: 44px;
}

.di-procsug__item:hover, .di-procsug__item.is-active {
  background: var(--tint);
}

.di-procsug__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.di-procsug__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.di-procsug__hint {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.di-procsug__docs {
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-top: 2px;
}

.di-pcat {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.di-pcat__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.di-pcat__name {
  font-size: 20px;
  color: var(--navy);
}

.di-pcat__cnt {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.di-pcat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.di-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.di-why__c {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  box-shadow: var(--sh-sm);
}

.di-why__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--tint);
  color: var(--blue);
  margin-bottom: 14px;
}

.di-why__c h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.di-why__c p {
  color: var(--ink2);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .di-pop {
    grid-template-columns: repeat(2, 1fr);
  }
  .di-why {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .di-prohero {
    padding: 36px 0 44px;
  }
  .di-prohero__h1 {
    font-size: 32px;
  }
  .di-prohero__lead {
    font-size: 16px;
  }
  .di-procfilter__in {
    height: 54px;
    font-size: 15px;
  }
  .di-pop {
    grid-template-columns: 1fr;
  }
  .di-why {
    grid-template-columns: 1fr;
  }
  .di-pcat__name {
    font-size: 18px;
  }
}