:root {
  --ink: #09091c;
  --muted: #62637a;
  --line: #ececf5;
  --page: #ffffff;
  --card: #ffffff;
  --purple: #007c74;
  --purple-2: #00a39a;
  --pink: #0fb7a6;
  --blue: #3067ff;
  --green: #2dcc7f;
  --orange: #ff8a1e;
  --soft-purple: #eaf8f7;
  --soft-blue: #edf2ff;
  --soft-green: #eafaf2;
  --soft-pink: #edfdfb;
  --soft-orange: #fff4e9;
  --shadow: 0 18px 50px rgba(24, 24, 62, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f7fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1580px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3.8vw, 58px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(236, 236, 245, 0.72);
  border-bottom: 0;
  box-shadow: 0 16px 42px rgba(24, 24, 62, 0.06);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.header-actions,
.location-select,
.login-button,
.search-field,
.popular-searches,
.hero-stats,
.service-strip,
.section-heading,
.text-link,
.consult-banner,
.consult-list li,
.number-band,
.review-person,
.store-buttons,
.footer form {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
  align-self: start;
  padding-top: 10px;
}

.brand-logo {
  display: block;
  width: clamp(224px, 18vw, 320px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
  transform: translateY(-6px);
}

.brand-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #0b2850;
  background: linear-gradient(135deg, #08c7ee 0%, #73f18e 100%);
  border: 1px solid rgba(5, 214, 222, 0.45);
  border-radius: 15px;
  box-shadow: 0 0 28px rgba(0, 204, 221, 0.32), inset 0 0 18px rgba(255, 255, 255, 0.25);
  transform: none;
}

.brand-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 3;
  opacity: 0.42;
  transform: none;
}

.disha-mark span {
  position: absolute;
  width: 23px;
  height: 23px;
  border: 3px solid rgba(8, 36, 78, 0.58);
  border-radius: 50%;
}

.disha-mark span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 9px;
  height: 3px;
  background: rgba(8, 36, 78, 0.58);
  border-radius: 999px;
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand small {
  color: #1b5875;
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
}

.nav-links {
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(236, 236, 245, 0.74);
  border-radius: 18px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 clamp(10px, 0.85vw, 15px);
  color: #101022;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--purple);
  background: rgba(0, 124, 116, 0.08);
  border-color: rgba(0, 124, 116, 0.12);
  box-shadow: 0 8px 20px rgba(0, 124, 116, 0.08);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--purple);
  background: var(--soft-purple);
  border-color: rgba(0, 124, 116, 0.16);
}

.header-actions {
  justify-content: end;
  gap: 14px;
}

.location-select,
.login-button {
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.location-select {
  color: #15152d;
  background: #ffffff;
  border: 1px solid var(--line);
}

.location-select svg {
  color: var(--purple);
}

.login-button,
.black-button {
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 124, 116, 0.22);
}

.login-button svg {
  color: #ffffff;
}

.black-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 950;
  white-space: nowrap;
}

main {
  max-width: 1580px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.08);
}

main > section,
.footer {
  scroll-margin-top: 132px;
}

.black-button.full {
  width: 100%;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 4vw, 70px);
  max-width: none;
  min-height: 700px;
  margin: 0 auto;
  padding: 38px clamp(34px, 5.8vw, 92px) 38px;
  background:
    radial-gradient(circle at 72% 46%, rgba(0, 124, 116, 0.13), transparent 34%),
    radial-gradient(circle at 2% 92%, rgba(0, 160, 149, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.65), transparent 62%),
    radial-gradient(circle at 62% 22%, rgba(0, 124, 116, 0.08), transparent 20%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 6;
  max-width: 690px;
  padding-top: 0;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 14px;
  color: var(--purple);
  background: rgba(0, 124, 116, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1.15;
}

.hero-copy h1 span {
  white-space: nowrap;
}

h1 span,
.section-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, #007c74, #00a39a);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 22px;
  color: #66677f;
  font-size: 18px;
  line-height: 1.65;
}

.hero-mini-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
}

.hero-mini-features span {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
}

.hero-mini-features svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 9px;
}

.hero-mini-features span:nth-child(2) svg {
  color: var(--green);
  background: var(--soft-green);
}

.hero-mini-features span:nth-child(3) svg {
  color: var(--orange);
  background: var(--soft-orange);
}

.hero-mini-features strong {
  min-width: 0;
  font-size: 12px;
  line-height: 1.25;
}

.hero-mini-features small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-search {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(205px, 0.72fr) minmax(205px, 0.72fr) auto;
  gap: 14px;
  width: min(1040px, calc(100vw - 220px));
  max-width: none;
  margin-top: 34px;
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.12);
  backdrop-filter: blur(16px);
}

.search-field {
  gap: 12px;
  min-height: 56px;
  padding: 0 17px;
  background: #ffffff;
  border: 1px solid #e6e7f0;
  border-radius: 10px;
}

.search-field svg {
  flex: 0 0 auto;
  color: var(--purple);
}

.search-field input,
.search-field select,
.booking-drawer input,
.booking-drawer select,
.booking-drawer textarea,
.footer input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-field select {
  appearance: none;
  font-weight: 800;
}

.popular-searches {
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  font-size: 13px;
}

.popular-searches strong {
  margin-right: 6px;
}

.popular-searches button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 14px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 608px;
  z-index: 2;
}

.hero-orbit {
  position: absolute;
  inset: 12px 135px 58px -38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 124, 116, 0.24) 0 31%, rgba(0, 124, 116, 0.08) 32% 55%, transparent 56%),
    linear-gradient(145deg, rgba(0, 124, 116, 0.16), rgba(255, 255, 255, 0));
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 124, 116, 0.18);
  border-radius: 50%;
}

.hero-orbit::before {
  inset: -22px;
}

.hero-orbit::after {
  inset: 42px;
}

.hero-doctor-frame {
  position: absolute;
  z-index: 3;
  right: 210px;
  bottom: -10px;
  width: min(445px, 58vw);
  height: 628px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 250px 250px 22px 22px;
  box-shadow: none;
}

.hero-doctor-frame:hover {
  transform: translateY(-3px);
}

.hero-doctor {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-doctor.is-changing {
  opacity: 0.28;
  transform: scale(1.03);
}

.hero-feature {
  position: absolute;
  z-index: 5;
  right: 16px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  width: 230px;
  min-height: 126px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-feature.video {
  top: 72px;
}

.hero-feature.verified {
  top: 220px;
}

.hero-feature.secure {
  top: 368px;
}

.hero-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-feature small {
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.feature-icon,
.stat-icon,
.strip-icon,
.circle-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.purple {
  color: var(--purple);
  background: var(--soft-purple);
}

.pink {
  color: var(--pink);
  background: var(--soft-pink);
}

.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.green {
  color: var(--green);
  background: var(--soft-green);
}

.orange {
  color: var(--orange);
  background: var(--soft-orange);
}

.hero-stats,
.service-strip,
.content-section,
.consult-banner,
.number-band,
.app-banner,
.footer {
  max-width: 1360px;
  margin: 0 auto;
}

.hero-stats {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1420px;
  min-height: 160px;
  margin-top: -70px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.12);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 84px;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 0 28px;
}

.hero-stats article:first-child {
  padding-left: 0;
  grid-template-columns: 82px minmax(0, 1fr) 84px;
}

.hero-stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: linear-gradient(180deg, transparent, #dadbea, transparent);
}

.number-band article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 15px;
  align-items: center;
}

.stat-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(24, 24, 62, 0.08);
}

.hero-stats .stat-icon svg {
  width: 34px;
  height: 34px;
}

.hero-stats strong,
.number-band strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.stat-copy {
  min-width: 0;
}

.hero-stats small,
.number-band small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.hero-stats small b {
  display: block;
  color: #363753;
  font-weight: 950;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin: 9px 0 8px;
  color: var(--orange);
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.sparkline {
  align-self: end;
  width: 82px;
  height: 34px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline path {
  stroke: currentColor;
}

.purple-line {
  color: var(--purple);
}

.green-line {
  color: var(--green);
}

.blue-line {
  color: var(--blue);
}

.service-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1420px;
  min-height: 138px;
  margin-top: 40px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 124, 116, 0.25);
  border-radius: 17px;
  box-shadow: 0 24px 70px rgba(0, 124, 116, 0.1);
  backdrop-filter: blur(16px);
}

.service-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.service-strip article:last-child {
  border-right: 0;
}

.strip-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.service-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.service-strip small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 12px;
  font-weight: 800;
}

.content-section {
  padding: 34px clamp(22px, 5vw, 78px) 0;
}

.specialty-section {
  position: relative;
  max-width: 1480px;
  padding-top: 62px;
  padding-bottom: 28px;
}

.specialty-section::after {
  content: "";
  position: absolute;
  right: 74px;
  top: 40px;
  width: 88px;
  height: 88px;
  opacity: 0.22;
  background-image: radial-gradient(rgba(0, 124, 116, 0.45) 1px, transparent 1px);
  background-size: 9px 9px;
  pointer-events: none;
}

.doctors-section {
  padding-top: 50px;
  padding-bottom: 18px;
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.doctors-heading {
  align-items: flex-start;
  margin-bottom: 20px;
}

.doctors-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.doctors-heading p {
  margin: 12px 0 0;
  font-weight: 700;
}

.doctors-heading .text-link {
  margin-top: 8px;
  font-size: 18px;
}

.heading-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 13px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px solid rgba(0, 124, 116, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  gap: 9px;
  color: var(--purple);
  background: transparent;
  border: 0;
  font-weight: 1000;
  white-space: nowrap;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.medicine-store-section {
  max-width: 1480px;
  padding-top: 54px;
}

.medicine-store-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 20px;
}

.medicine-search-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 204, 127, 0.16), transparent 28%),
    radial-gradient(circle at 2% 100%, rgba(0, 124, 116, 0.13), transparent 30%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.09);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  color: #0b8d59;
  background: #ecfff5;
  border: 1px solid rgba(45, 204, 127, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.medicine-search-card h3 {
  max-width: 600px;
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.medicine-search-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.medicine-search-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(236, 236, 245, 0.92);
  border-radius: 14px;
}

.medicine-search-form label {
  display: grid;
  gap: 8px;
}

.medicine-search-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.medicine-search-form input,
.medicine-search-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 10px;
  outline: 0;
  font-weight: 850;
}

.medicine-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.medicine-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  color: var(--muted);
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.medicine-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--purple);
}

.medicine-card-grid {
  display: grid;
  gap: 16px;
}

.medicine-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 148px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 52px rgba(24, 24, 62, 0.08);
}

.medicine-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.medicine-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.25;
}

.medicine-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.medicine-card button,
.medicine-card a {
  grid-column: 2;
  justify-self: start;
  min-height: 34px;
  padding: 0 13px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px solid rgba(0, 124, 116, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.medicine-store-compact {
  max-width: 1360px;
  padding-top: 54px;
}

.medicine-store-link-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(190px, 0.28fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 220px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 124, 116, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f1fbfa 100%);
  border: 1px solid rgba(0, 124, 116, 0.15);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(9, 50, 59, 0.09);
  overflow: hidden;
}

.medicine-store-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 124, 116, 0.28);
  box-shadow: 0 28px 74px rgba(9, 50, 59, 0.13);
}

.medicine-store-link-card .section-kicker {
  position: absolute;
  top: 24px;
  left: clamp(24px, 4vw, 44px);
}

.medicine-cta-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-top: 34px;
}

.medicine-cta-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #101525;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.medicine-cta-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 750;
}

.medicine-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.medicine-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  color: #006d66;
  background: #ffffff;
  border: 1px solid rgba(0, 124, 116, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.medicine-cta-points svg {
  width: 16px;
  height: 16px;
}

.medicine-cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 124, 116, 0.22);
}

.medicine-cta-action svg {
  width: 19px;
  height: 19px;
}

.medicine-cta-visual {
  display: grid;
  grid-template-columns: repeat(2, 74px);
  gap: 14px;
  align-items: center;
  justify-content: end;
}

.medicine-cta-visual svg {
  width: 74px;
  height: 74px;
  padding: 18px;
  color: #007c74;
  background: #ffffff;
  border: 1px solid rgba(0, 124, 116, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(9, 50, 59, 0.08);
}

.medicine-cta-visual svg:first-child {
  grid-row: span 2;
  width: 100px;
  height: 100px;
  padding: 24px;
}

.hospital-section {
  max-width: 1480px;
  padding-top: 56px;
}

.hospital-heading {
  align-items: flex-start;
}

.hospital-heading p {
  max-width: 680px;
  margin: 12px 0 0;
  font-weight: 700;
}

.hospital-shell {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 94% 0%, rgba(48, 103, 255, 0.12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(0, 124, 116, 0.12), transparent 32%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.09);
}

.hospital-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hospital-status-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(24, 24, 62, 0.06);
}

.hospital-status-card.urgent {
  border-color: rgba(255, 138, 30, 0.28);
}

.hospital-icon,
.hospital-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hospital-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
}

.hospital-status-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.25;
}

.hospital-status-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.hospital-status-card b {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.hospital-status-card em {
  grid-column: 3;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.hospital-search {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hospital-search label {
  display: grid;
  gap: 8px;
}

.hospital-search span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.hospital-search select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 9px;
  outline: 0;
  font-weight: 850;
}

.hospital-search .purple-button {
  align-self: end;
  min-height: 48px;
  padding-inline: 20px;
}

.hospital-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.hospital-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(24, 24, 62, 0.06);
}

.hospital-card-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.hospital-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.hospital-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.3;
}

.hospital-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 9px;
  color: #0f9b56;
  background: #edfff5;
  border: 1px solid rgba(45, 204, 127, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.live-pill.soon {
  color: #a4600a;
  background: #fff6e8;
  border-color: rgba(255, 138, 30, 0.28);
}

.live-pill svg {
  width: 14px;
  height: 14px;
}

.bed-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bed-metrics span {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  color: var(--muted);
  background: #f7fafb;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 850;
}

.bed-metrics b {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.availability-bar {
  height: 8px;
  overflow: hidden;
  background: #eeeef8;
  border-radius: 999px;
}

.availability-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--purple));
  border-radius: inherit;
}

.book-bed {
  min-height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 950;
}

.book-bed.coming-soon {
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px solid rgba(0, 124, 116, 0.16);
  box-shadow: none;
}

.page-hero {
  display: grid;
  gap: 24px;
  padding: 58px clamp(24px, 5vw, 78px) 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 124, 116, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.page-hero h1,
.store-hero h1,
.auth-copy h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

.page-hero p,
.store-hero p,
.auth-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
}

.page-search {
  position: static;
  width: 100%;
  max-width: 1180px;
  margin: 0;
}

.login-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(9, 9, 28, 0.46);
  backdrop-filter: blur(10px);
}

.login-choice-modal.open {
  display: grid;
}

.last-consultation-shortcut {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  grid-template-columns: 34px auto;
  column-gap: 10px;
  align-items: center;
  min-width: 188px;
  padding: 12px 16px;
  color: #ffffff;
  background: #09091c;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(9, 9, 28, 0.28);
  text-align: left;
}

.last-consultation-shortcut svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
}

.last-consultation-shortcut span {
  font-size: 13px;
  font-weight: 950;
}

.last-consultation-shortcut small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.login-choice-card {
  position: relative;
  width: min(620px, 100%);
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(9, 9, 28, 0.22);
}

.login-choice-card h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.login-choice-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 750;
}

.login-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.login-choice-grid button,
.login-choice-grid a,
.auth-split a,
.auth-split span {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 20px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(24, 24, 62, 0.07);
}

.login-choice-grid svg,
.auth-split svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.login-choice-grid strong,
.auth-split strong {
  font-size: 18px;
}

.login-choice-grid small,
.auth-split small {
  color: var(--muted);
  font-weight: 800;
}

.store-main,
.doctor-dashboard-main,
.auth-main {
  max-width: 1580px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: 58px clamp(24px, 5vw, 78px) 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 204, 127, 0.14), transparent 28%),
    radial-gradient(circle at 4% 100%, rgba(0, 124, 116, 0.12), transparent 28%),
    #ffffff;
}

.store-search {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(200px, 0.35fr) auto;
  gap: 14px;
  max-width: 1100px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.store-search label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #e7e7f3;
  border-radius: 10px;
}

.store-search input,
.store-search select {
  width: 100%;
  min-height: 52px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 10px;
  outline: 0;
  font-weight: 850;
}

.store-search label input {
  min-height: 0;
  border: 0;
}

.store-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 340px;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 58px) 58px;
}

.store-sidebar,
.cart-panel,
.dashboard-panel,
.doctor-login-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(24, 24, 62, 0.08);
}

.store-sidebar,
.cart-panel {
  align-self: start;
  position: sticky;
  top: 104px;
  padding: 20px;
}

.store-category-list {
  display: grid;
  gap: 10px;
}

.store-category-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 900;
}

.store-category-list button.active {
  color: var(--purple);
  background: var(--soft-purple);
  border-color: rgba(0, 124, 116, 0.2);
}

.prescription-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  background: #f6fbfb;
  border: 1px solid rgba(0, 124, 116, 0.16);
  border-radius: 14px;
}

.prescription-panel > svg {
  width: 30px;
  height: 30px;
  color: var(--purple);
}

.prescription-panel small {
  color: var(--muted);
  font-weight: 800;
}

.prescription-panel label {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--purple);
  background: #ffffff;
  border: 1px dashed rgba(0, 124, 116, 0.32);
  border-radius: 10px;
  font-weight: 950;
}

.prescription-panel input {
  display: none;
}

.store-products-section .section-heading {
  margin-bottom: 18px;
}

.store-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-product-card {
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(24, 24, 62, 0.07);
}

.store-product-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 16px;
}

.store-product-icon.wellness,
.store-product-icon.devices {
  color: var(--green);
  background: var(--soft-green);
}

.store-product-icon.baby {
  color: var(--orange);
  background: var(--soft-orange);
}

.store-product-copy span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
}

.store-product-copy h3 {
  margin: 8px 0 6px;
  font-size: 21px;
  line-height: 1.16;
}

.store-product-copy small {
  color: var(--muted);
  font-weight: 800;
}

.store-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.store-product-bottom strong {
  font-size: 22px;
}

.store-product-bottom button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  border-radius: 10px;
  font-weight: 950;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-head h3 {
  margin: 0;
  font-size: 24px;
}

.cart-head button {
  color: var(--purple);
  background: var(--soft-purple);
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cart-empty,
.appointment-empty {
  padding: 18px;
  color: var(--muted);
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #f7fbfb;
  border-radius: 12px;
}

.cart-item small {
  color: var(--muted);
  font-weight: 800;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-stepper button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  font-weight: 1000;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary small {
  color: var(--muted);
  font-weight: 900;
}

.cart-checkout {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cart-checkout input,
.cart-checkout textarea,
.doctor-login-card input,
.doctor-login-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 10px;
  outline: 0;
  font-weight: 850;
}

.cart-checkout textarea {
  min-height: 82px;
  padding-top: 12px;
  resize: vertical;
}

.auth-main {
  background: #ffffff;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 34px;
  padding: 70px clamp(24px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 124, 116, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.auth-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-top: 26px;
}

.doctor-login-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.doctor-login-card h2 {
  margin: 0;
  font-size: 30px;
}

.doctor-login-card label {
  display: grid;
  gap: 8px;
}

.doctor-login-card label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.form-hint,
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.doctor-dashboard-main {
  background: #ffffff;
}

.doctor-dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 42px clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 90% 0%, rgba(45, 204, 127, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.dashboard-doctor-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboard-doctor-card img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.dashboard-doctor-card h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 56px);
}

.dashboard-doctor-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 58px);
}

.dashboard-metrics article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(24, 24, 62, 0.07);
}

.dashboard-metrics strong {
  display: block;
  font-size: 30px;
}

.dashboard-metrics small {
  color: var(--muted);
  font-weight: 850;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 58px) 58px;
}

.dashboard-panel {
  padding: 22px;
}

.dashboard-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-filter button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 950;
}

.dashboard-filter button.active {
  color: var(--purple);
  background: var(--soft-purple);
  border-color: rgba(0, 124, 116, 0.2);
}

.appointment-list,
.doctor-review-list {
  display: grid;
  gap: 14px;
}

.doctor-appointment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px;
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.appointment-main h3 {
  margin: 10px 0 6px;
  font-size: 22px;
}

.appointment-main p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.appointment-status {
  display: inline-flex;
  min-height: 26px;
  padding: 0 10px;
  align-items: center;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.appointment-status.completed {
  color: #0f9b56;
  background: #edfff5;
}

.appointment-status.cancelled {
  color: #b42318;
  background: #fff0f0;
}

.appointment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.appointment-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.appointment-meta svg {
  width: 16px;
  height: 16px;
}

.appointment-actions {
  display: grid;
  gap: 8px;
  align-content: center;
}

.appointment-actions button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 950;
}

.doctor-review-card {
  padding: 16px;
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.doctor-review-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.doctor-review-card span {
  color: var(--orange);
  letter-spacing: 0;
}

.doctor-review-card p {
  color: var(--muted);
  font-weight: 800;
}

.services-main {
  max-width: 1580px;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  gap: 34px;
  padding: 58px clamp(24px, 5vw, 78px) 42px;
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 103, 255, 0.12), transparent 30%),
    radial-gradient(circle at 12% 95%, rgba(0, 124, 116, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.services-hero-copy h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
}

.services-hero-copy p {
  max-width: 760px;
  font-size: 18px;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--purple);
  background: #ffffff;
  border: 1px solid rgba(0, 124, 116, 0.28);
  border-radius: 8px;
  font-weight: 950;
}

.location-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 24, 62, 0.1);
  backdrop-filter: blur(18px);
}

.location-panel-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
}

.location-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.location-panel small {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 800;
}

.nearby-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.nearby-mini-grid span,
.language-card {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nearby-mini-grid b {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.nearby-mini-grid small {
  font-size: 11px;
}

.language-card {
  display: grid;
  gap: 12px;
}

.language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.language-options button,
.nearby-filter button {
  min-height: 34px;
  padding: 0 13px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.language-options button.active,
.nearby-filter button.active {
  color: #ffffff;
  background: var(--purple);
}

.services-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 78px) 0;
}

.mega-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mega-service-card {
  display: grid;
  gap: 16px;
  min-height: 310px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(24, 24, 62, 0.07);
}

.mega-service-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.mega-service-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.mega-service-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-service-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.mega-service-card li svg {
  flex: 0 0 auto;
  color: var(--green);
}

.mega-service-card button,
.nearby-provider-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: end;
  min-height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 950;
}

.service-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 20px;
}

.service-request-card,
.upload-record-card,
.feature-depth-card {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(24, 24, 62, 0.07);
}

.service-request-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.service-request-form label {
  display: grid;
  gap: 8px;
}

.service-request-form label.full {
  grid-column: 1 / -1;
}

.service-request-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.service-request-form input,
.service-request-form select,
.service-request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 9px;
  outline: 0;
  resize: vertical;
  font-weight: 800;
}

.upload-record-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.upload-drop {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px dashed rgba(0, 124, 116, 0.45);
  border-radius: 14px;
  text-align: center;
  font-weight: 950;
}

.upload-drop input {
  display: none;
}

.records-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.record-stack,
.reminder-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.record-stack span,
.reminder-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--muted);
  background: #f7fafb;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 850;
}

.plan-price {
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, var(--soft-orange), #ffffff);
  border-radius: 12px;
}

.plan-price strong {
  display: block;
  font-size: 28px;
}

.nearby-services-section {
  padding-bottom: 58px;
}

.nearby-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.nearby-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nearby-provider-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(24, 24, 62, 0.07);
}

.nearby-provider-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.nearby-provider-head strong {
  display: block;
  margin-bottom: 4px;
}

.nearby-provider-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nearby-provider-head em {
  color: #d34f4f;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.nearby-provider-head em.open {
  color: #0f9b56;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-tags span {
  min-height: 28px;
  padding: 6px 10px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.specialty-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.specialty-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 206px;
  padding: 24px 18px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 12px 38px rgba(24, 24, 62, 0.06);
}

.circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.specialty-card strong {
  margin-top: 2px;
  font-size: 17px;
}

.specialty-card small {
  color: var(--muted);
  max-width: 130px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.specialty-card em {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 50%;
  font-style: normal;
}

.specialty-card em svg {
  width: 15px;
  height: 15px;
}

.specialty-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.specialty-dots span {
  width: 30px;
  height: 5px;
  background: #e6e5ee;
  border-radius: 999px;
}

.specialty-dots .active {
  width: 34px;
  background: var(--purple);
}

.pink-text {
  color: var(--pink);
}

.purple-text {
  color: var(--purple);
}

.green-text {
  color: var(--green);
}

.orange-text {
  color: var(--orange);
}

.blue-text {
  color: var(--blue);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.doctor-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(190px, 0.86fr) minmax(190px, 0.86fr) minmax(120px, 0.45fr) minmax(130px, 0.45fr);
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(36, 32, 92, 0.08);
}

.toolbar-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 0 17px;
  background: #ffffff;
  border: 1px solid #e7e7f3;
  border-radius: 8px;
}

.toolbar-field svg {
  flex: 0 0 auto;
  color: var(--purple);
}

.toolbar-field input,
.toolbar-field select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 800;
}

.toolbar-field select {
  appearance: none;
}

.filter-button,
.purple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.filter-button {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e7e7f3;
}

.purple-button {
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  box-shadow: 0 12px 28px rgba(0, 124, 116, 0.25);
}

.doctor-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  min-height: 286px;
  padding: 22px 22px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 24, 62, 0.07);
  overflow: hidden;
}

.doctor-card::after,
.doctor-help-card::after,
.doctor-perks-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -1px;
  top: -1px;
  width: 46px;
  height: 46px;
  background: linear-gradient(45deg, transparent 49%, #eaf8f7 50%);
  border-top-right-radius: 8px;
  pointer-events: none;
}

.doctor-card > * {
  position: relative;
  z-index: 1;
}

.doctor-photo {
  align-self: start;
  width: 118px;
  height: 148px;
  overflow: hidden;
  background: #f3f3f8;
  border-radius: 8px;
}

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

.doctor-info {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.doctor-info h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: none;
  padding-right: 30px;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.verified-badge {
  color: var(--blue);
  fill: currentColor;
  flex: 0 0 auto;
}

.doctor-info small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.favorite-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #535570;
  background: transparent;
  border: 0;
}

.doctor-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 9px;
  color: #0f9b56;
  background: #ffffff;
  border: 1px solid rgba(45, 204, 127, 0.28);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.doctor-status span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.specialty-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: start;
  min-height: 26px;
  padding: 0 10px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.doctor-rating,
.doctor-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.doctor-rating .star {
  color: var(--orange);
  fill: currentColor;
}

.doctor-assurance svg {
  width: 16px;
  height: 16px;
  color: #007c74;
}

.doctor-assurance strong {
  color: #243044;
  font-size: 12px;
}

.doctor-assurance span {
  color: var(--muted);
}

.experience {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  max-width: none;
  line-height: 1.35;
}

.next-slot {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.next-slot strong {
  color: #10a66a;
  font-size: inherit;
}

.doctor-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.doctor-bottom span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.doctor-fee {
  min-width: 0;
}

.fee-offer {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  flex-wrap: wrap;
}

.fee-offer s {
  color: #8b95a7;
  font-size: 14px;
  font-weight: 900;
  text-decoration-thickness: 2px;
}

.doctor-bottom strong {
  display: block;
  color: #007c74;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 1000;
}

.doctor-fee em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 5px;
  padding: 4px 8px;
  color: #006d66;
  background: #eaf8f7;
  border: 1px solid rgba(0, 124, 116, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.book-now {
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(0, 124, 116, 0.24);
}

.doctor-help-card,
.doctor-perks-card,
.doctor-empty {
  position: relative;
  min-height: 286px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 24, 62, 0.07);
  overflow: hidden;
}

.doctor-help-card {
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 92% 96%, rgba(0, 124, 116, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eaf8f7 100%);
}

.help-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #00a39a);
  border-radius: 8px;
}

.doctor-help-card h3,
.doctor-empty h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.doctor-help-card p,
.doctor-empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.outline-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--purple);
  background: #ffffff;
  border: 1px solid var(--purple);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
}

.doctor-perks-card {
  display: grid;
  gap: 18px;
}

.doctor-perks-card div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  align-items: start;
}

.doctor-perks-card svg {
  grid-row: span 2;
  color: var(--purple);
}

.doctor-perks-card strong {
  font-size: 13px;
  line-height: 1.3;
}

.doctor-perks-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

.doctor-empty {
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.consult-banner {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(260px, 0.9fr) minmax(230px, 0.45fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 210px;
  margin-top: 34px;
  padding: 0 56px;
  overflow: hidden;
  background: linear-gradient(100deg, #eaf8f7, #ffffff 58%, #edfdfb);
  border-radius: 18px;
}

.phone-mock {
  position: relative;
  align-self: end;
  width: 170px;
  height: 195px;
  margin-top: 18px;
  overflow: hidden;
  background: #111;
  border: 8px solid #171726;
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  transform: rotate(-7deg);
}

.phone-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-actions {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.call-actions span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
}

.call-actions .end {
  background: #ff2c2c;
}

.consult-copy p {
  max-width: 460px;
  margin-bottom: 0;
}

.consult-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.consult-list li {
  gap: 10px;
  font-weight: 900;
}

.consult-list svg {
  color: var(--purple);
}

.number-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 116px;
  margin-top: 18px;
  padding: 22px 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(24, 24, 62, 0.06);
}

.number-band article {
  border-right: 1px solid var(--line);
}

.number-band article:last-child {
  border-right: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  min-height: 178px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(24, 24, 62, 0.05);
}

.review-card p {
  min-height: 74px;
  margin-bottom: 18px;
  color: #29293f;
  font-size: 14px;
}

.review-person {
  gap: 12px;
}

.review-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person span {
  color: var(--orange);
  font-size: 13px;
}

.app-banner {
  display: grid;
  grid-template-columns: 210px 1fr auto 112px;
  gap: 32px;
  align-items: center;
  min-height: 145px;
  margin-top: 34px;
  padding: 0 40px;
  overflow: hidden;
  background: linear-gradient(100deg, #fff1e8, #fff 48%, #fff1e8);
  border-radius: 18px;
}

.app-phone {
  align-self: end;
  width: 120px;
  height: 130px;
  padding: 12px;
  margin-left: 36px;
  background: #111;
  border-radius: 28px 28px 0 0;
  transform: rotate(-10deg);
}

.mini-screen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #f6fbfb, #ffffff);
  border-radius: 18px 18px 0 0;
}

.mini-screen span {
  background: var(--soft-purple);
  border-radius: 8px;
}

.store-buttons {
  gap: 14px;
}

.store-buttons button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: #ffffff;
  background: #111;
  border: 0;
  border-radius: 9px;
  text-align: left;
  font-size: 11px;
  line-height: 1.1;
}

.store-buttons strong {
  font-size: 16px;
}

.qr-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 92px;
  height: 92px;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #111;
}

.qr-box span {
  background: #111;
}

.qr-box span:nth-child(3n) {
  background: var(--green);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 0.8fr) 1.2fr;
  gap: 36px;
  padding: 34px clamp(22px, 5vw, 78px) 44px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer .brand-logo {
  width: min(290px, 100%);
  max-height: 70px;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer h3 {
  font-size: 15px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer form {
  gap: 8px;
  margin-top: 12px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.footer form button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: #111;
  border: 0;
  border-radius: 10px;
}

.booking-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: end;
  background: rgba(9, 9, 28, 0.36);
  backdrop-filter: blur(7px);
}

.booking-drawer.open {
  display: flex;
}

.drawer-card {
  position: relative;
  width: min(460px, 100%);
  height: 100%;
  padding: 34px;
  background: #ffffff;
  box-shadow: -20px 0 50px rgba(9, 9, 28, 0.15);
}

.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--soft-purple);
  border: 0;
  border-radius: 10px;
}

.booking-drawer form {
  display: grid;
  gap: 15px;
}

.booking-drawer label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.booking-drawer input,
.booking-drawer select,
.booking-drawer textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  resize: vertical;
}

.consult-room {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(9, 9, 28, 0.5);
  backdrop-filter: blur(8px);
}

.consult-room.open {
  display: grid;
}

.consult-room-card {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(236, 236, 245, 0.86);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(9, 9, 28, 0.24);
}

.consult-room-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.consult-room-head h2 {
  margin-bottom: 6px;
}

.consult-room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
}

.video-panel,
.chat-panel {
  min-width: 0;
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.video-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  gap: 14px;
  padding: 14px;
}

.doctor-video {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(0, 124, 116, 0.16), transparent 32%),
    #eef8f6;
  border-radius: 14px;
}

.doctor-video img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.doctor-video .remote-video,
.doctor-dashboard-remote video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #111827;
}

.doctor-video.has-remote > img {
  display: none;
}

.video-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(9, 9, 28, 0.72);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.video-overlay span,
.call-status,
.chat-online,
.video-controls button {
  display: inline-flex;
  align-items: center;
}

.video-overlay span {
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
}

.patient-video {
  position: absolute;
  right: 30px;
  bottom: 96px;
  width: 180px;
  height: 128px;
  overflow: hidden;
  background: #111827;
  border: 3px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(9, 9, 28, 0.22);
}

.patient-video video,
.patient-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.patient-video video {
  object-fit: cover;
}

.patient-fallback {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #11bfa6);
}

.patient-fallback svg {
  width: 34px;
  height: 34px;
  opacity: 0.8;
}

.patient-fallback span {
  position: absolute;
  bottom: 14px;
  font-weight: 950;
}

.patient-video.has-camera .patient-fallback {
  display: none;
}

.patient-video small {
  position: absolute;
  left: 10px;
  bottom: 8px;
  z-index: 2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.call-status {
  gap: 8px;
  color: #087443;
  font-size: 13px;
  font-weight: 950;
}

.call-status span,
.chat-online span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45, 204, 127, 0.14);
}

.video-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.video-controls button {
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 950;
}

.video-controls button.active {
  color: #ffffff;
  background: #09091c;
  border-color: #09091c;
}

.video-controls .end-call {
  color: #ffffff;
  background: #ef4444;
  border-color: #ef4444;
}

.chat-panel {
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr) auto;
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chat-online {
  gap: 7px;
  color: #087443;
  font-size: 12px;
  font-weight: 950;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: auto;
}

.message {
  display: grid;
  gap: 4px;
  max-width: 86%;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.message.patient {
  justify-self: end;
  color: #ffffff;
  background: var(--purple);
  border-color: var(--purple);
}

.message strong {
  font-size: 12px;
}

.message span {
  font-size: 13px;
  line-height: 1.45;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  padding: 14px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
}

.chat-form button {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #09091c;
  border: 0;
  border-radius: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  max-width: min(430px, calc(100vw - 40px));
  padding: 15px 18px;
  color: #ffffff;
  background: #111;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

svg {
  width: 20px;
  height: 20px;
}

button,
.specialty-card,
.doctor-card,
.doctor-help-card,
.doctor-perks-card,
.medicine-card,
.hospital-card,
.hospital-status-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

button:hover,
.specialty-card:hover,
.doctor-card:hover,
.doctor-help-card:hover,
.doctor-perks-card:hover,
.medicine-card:hover,
.hospital-card:hover,
.hospital-status-card:hover {
  transform: translateY(-2px);
}

@media (min-width: 1341px) and (max-width: 1460px) {
  .site-header {
    gap: 12px;
    padding-inline: 20px;
  }

  .brand-logo {
    width: 210px;
    max-height: 56px;
  }

  .nav-links {
    gap: 4px;
    padding: 5px;
  }

  .nav-links a {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .nav-links a[href="#reviews"] {
    display: none;
  }

  .nav-links a[href="admin.html"] {
    display: none;
  }

  .login-button {
    justify-content: center;
    width: 48px;
    min-width: 48px;
    padding-inline: 0;
    font-size: 0;
  }
}

@media (max-width: 1320px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand-logo {
    width: clamp(198px, 16vw, 230px);
    max-height: 58px;
  }

  .nav-links {
    gap: 5px;
    padding: 5px;
  }

  .nav-links a {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .location-select,
  .login-button {
    padding-inline: 12px;
    font-size: 13px;
  }

  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .doctors-section {
    padding-inline: 16px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding: 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero-section,
  .consult-banner,
  .app-banner,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    padding-inline: 42px;
  }

  .hero-art {
    min-height: 590px;
  }

  .hero-doctor-frame {
    right: clamp(120px, 18vw, 210px);
  }

  .hero-search {
    width: min(930px, calc(100vw - 84px));
  }

  .hero-search,
  .hero-stats,
  .service-strip,
  .doctor-grid,
  .number-band,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialty-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-stats {
    margin-inline: 16px;
    margin-top: -44px;
    padding: 24px;
  }

  .hero-stats article {
    padding: 18px;
  }

  .hero-stats article:nth-child(2)::after {
    display: none;
  }

  .service-strip {
    margin-inline: 16px;
  }

  .medicine-store-shell {
    grid-template-columns: 1fr;
  }

  .medicine-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .doctor-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hospital-status-grid,
  .hospital-list {
    grid-template-columns: 1fr;
  }

  .hospital-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero,
  .service-workspace,
  .store-layout,
  .auth-shell,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .store-sidebar,
  .cart-panel {
    position: static;
  }

  .store-product-grid,
  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-service-grid,
  .records-plans-grid,
  .nearby-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolbar-search,
  .purple-button {
    grid-column: 1 / -1;
  }

  .service-strip article,
  .number-band article {
    border-right: 0;
  }

  .consult-banner,
  .app-banner {
    padding: 28px;
  }

  .phone-mock,
  .app-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  body,
  main {
    background: #ffffff;
  }

  main,
  .site-header {
    border-inline: 0;
    box-shadow: none;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(168px, 52vw, 214px);
    max-height: 48px;
    transform: translateY(-4px);
  }

  .nav-links {
    border-radius: 15px;
  }

  .nav-links a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .header-actions .location-select {
    display: none;
  }

  .login-button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 16px 20px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1,
  h1 {
    font-size: 42px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-trust {
    margin-bottom: 18px;
  }

  .hero-mini-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-search {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
  }

  .hero-search,
  .hero-stats,
  .service-strip,
  .doctor-grid,
  .number-band,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    margin-top: -24px;
    padding: 18px;
  }

  .hero-stats article {
    grid-template-columns: 64px 1fr;
    padding: 18px 0;
  }

  .hero-stats article:first-child {
    grid-template-columns: 64px 1fr;
  }

  .hero-stats article::after {
    display: none;
  }

  .hero-stats .stat-icon {
    width: 58px;
    height: 58px;
  }

  .sparkline {
    display: none;
  }

  .doctor-toolbar {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .medicine-store-section {
    padding-top: 36px;
  }

  .medicine-search-card {
    padding: 18px;
  }

  .medicine-search-form,
  .medicine-card-grid {
    grid-template-columns: 1fr;
  }

  .medicine-card {
    min-height: 0;
  }

  .hospital-shell {
    padding: 16px;
  }

  .hospital-status-card {
    grid-template-columns: 52px 1fr;
  }

  .hospital-status-card b,
  .hospital-status-card em {
    grid-column: 2;
  }

  .hospital-search,
  .hospital-list {
    grid-template-columns: 1fr;
  }

  .hospital-card-head {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .live-pill {
    justify-self: start;
    grid-column: 2;
  }

  .services-hero {
    padding: 36px 16px 24px;
  }

  .page-hero,
  .store-hero,
  .auth-shell,
  .doctor-dashboard-hero {
    padding: 34px 16px 24px;
  }

  .page-hero h1,
  .store-hero h1,
  .auth-copy h1 {
    font-size: 40px;
  }

  .store-search,
  .store-product-grid,
  .auth-split,
  .login-choice-grid,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .store-layout,
  .dashboard-grid {
    padding-inline: 16px;
  }

  .doctor-dashboard-hero,
  .dashboard-doctor-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .doctor-appointment-card {
    grid-template-columns: 1fr;
  }

  .appointment-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-hero-copy h1 {
    font-size: 40px;
  }

  .nearby-mini-grid,
  .mega-service-grid,
  .records-plans-grid,
  .nearby-provider-grid,
  .service-request-form {
    grid-template-columns: 1fr;
  }

  .nearby-provider-head {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .nearby-provider-head em {
    justify-self: start;
    grid-column: 2;
  }

  .services-section {
    padding-inline: 16px;
  }

  .toolbar-search,
  .purple-button {
    grid-column: auto;
  }

  .hero-art {
    min-height: 540px;
  }

  .hero-orbit {
    inset: 26px 42px 46px 0;
  }

  .hero-doctor-frame {
    right: 34px;
    width: 320px;
    height: 500px;
  }

  .hero-feature {
    right: 6px;
    width: 210px;
    min-height: 102px;
    padding: 16px;
  }

  .hero-feature.video {
    top: 28px;
  }

  .hero-feature.verified {
    top: 155px;
  }

  .hero-feature.secure {
    top: 282px;
  }

  .hero-stats,
  .content-section {
    padding-inline: 16px;
  }

  .service-strip {
    margin-inline: 16px;
    padding: 14px;
  }

  .service-strip article {
    padding: 14px 6px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .doctor-card {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .doctor-photo {
    width: 94px;
    height: 124px;
  }

  .doctor-bottom {
    grid-template-columns: 1fr;
  }

  .book-now {
    width: 100%;
  }

  .consult-banner,
  .number-band,
  .app-banner {
    margin-inline: 16px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    padding-inline: 16px;
  }

  .consult-room {
    align-items: end;
    padding: 10px;
  }

  .consult-room-card {
    max-height: 94vh;
    padding: 14px;
    border-radius: 18px;
  }

  .consult-room-head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .consult-room-grid {
    grid-template-columns: 1fr;
  }

  .video-panel {
    grid-template-rows: minmax(260px, 1fr) auto;
  }

  .doctor-video,
  .doctor-video img {
    min-height: 260px;
  }

  .video-overlay {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .patient-video {
    right: 22px;
    bottom: 92px;
    width: 126px;
    height: 92px;
    border-radius: 12px;
  }

  .video-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-panel {
    grid-template-rows: auto minmax(240px, 34vh) auto;
  }

  .chat-head {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.medicine-page {
  --medicine: #008b83;
  --medicine-dark: #006c66;
  --medicine-soft: #eaf8f7;
  --medicine-line: #dcebea;
  --medicine-shadow: 0 18px 46px rgba(9, 50, 59, 0.08);
  background: #f6fbfb;
}

body.medicine-page .site-header {
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
  gap: 10px;
  max-width: none;
  min-height: 92px;
  padding-inline: clamp(18px, 2.6vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border-inline: 0;
  border-top: 0;
  border-bottom: 1px solid #e5eeee;
  box-shadow: 0 12px 32px rgba(14, 43, 50, 0.06);
}

body.medicine-page .brand-logo {
  width: clamp(190px, 14vw, 250px);
  max-height: 64px;
}

body.medicine-page .nav-links {
  background: transparent;
  border: 0;
  gap: 4px;
  min-width: 0;
}

body.medicine-page .nav-links a {
  min-height: 44px;
  padding-inline: clamp(8px, 0.72vw, 12px);
  color: #101525;
  font-size: 12.5px;
  border-radius: 8px;
}

body.medicine-page .nav-links a:hover,
body.medicine-page .nav-links a.active {
  color: var(--medicine);
  background: linear-gradient(180deg, #f3fffe, #e9f8f7);
  border-color: rgba(0, 139, 131, 0.18);
  box-shadow: 0 10px 28px rgba(0, 139, 131, 0.1);
}

body.medicine-page .location-select {
  min-height: 54px;
  padding-inline: 14px;
  color: #162536;
  border-radius: 8px;
  border-color: var(--medicine-line);
  box-shadow: 0 10px 26px rgba(9, 50, 59, 0.04);
}

body.medicine-page .location-select svg,
body.medicine-page .section-kicker svg {
  color: var(--medicine);
}

body.medicine-page .medicine-admin-link {
  min-height: 54px;
  padding-inline: 14px;
  color: var(--medicine);
  background: #ffffff;
  border: 1px solid var(--medicine-line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(9, 50, 59, 0.04);
}

body.medicine-page .medicine-admin-link svg {
  color: var(--medicine);
}

.medicine-store-page {
  max-width: none;
  background: #ffffff;
  border-inline: 0;
  box-shadow: none;
}

body.medicine-page .store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  min-height: 500px;
  padding: 48px clamp(28px, 5.5vw, 108px) 28px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f7fbfb 100%);
  border-bottom: 1px solid #e7eeee;
}

body.medicine-page .store-hero-copy {
  max-width: 960px;
}

body.medicine-page .hero-trust {
  color: var(--medicine);
  background: var(--medicine-soft);
  border: 1px solid rgba(0, 139, 131, 0.16);
}

body.medicine-page .store-hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  color: #101525;
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

body.medicine-page .store-hero p {
  max-width: 660px;
  margin: 0;
  color: #5e667c;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 750;
}

body.medicine-page .store-search {
  grid-template-columns: minmax(280px, 1fr) minmax(210px, 0.38fr) 118px;
  gap: 10px;
  width: min(100%, 1010px);
  max-width: none;
  margin-top: 30px;
  padding: 10px;
  border-color: var(--medicine-line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(9, 50, 59, 0.08);
}

body.medicine-page .store-search label,
body.medicine-page .store-search input,
body.medicine-page .store-search select {
  min-height: 58px;
  border-color: #dce7e7;
  border-radius: 8px;
}

body.medicine-page .store-search label {
  padding-inline: 18px;
}

body.medicine-page .store-search label svg {
  color: #596178;
}

body.medicine-page .store-search input,
body.medicine-page .store-search select {
  color: #202638;
  font-size: 15px;
  font-weight: 850;
}

body.medicine-page .store-search label input {
  min-height: 0;
  padding: 0;
}

.medicine-search-button,
.medicine-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #009a91, #00786f);
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 139, 131, 0.24);
}

.store-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 4vw, 64px);
  max-width: 860px;
  margin-top: 26px;
}

.store-benefits span {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.store-benefits i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--medicine);
  background: var(--medicine-soft);
  border: 1px solid rgba(0, 139, 131, 0.16);
  border-radius: 8px;
}

.store-benefits svg {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--medicine);
  background: var(--medicine-soft);
  border: 1px solid rgba(0, 139, 131, 0.16);
  border-radius: 8px;
}

.store-benefits strong {
  color: #111629;
  font-size: 14px;
  font-weight: 950;
}

.store-benefits small {
  color: #606b82;
  font-size: 13px;
  font-weight: 800;
}

.store-hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.store-hero-visual img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 36px rgba(9, 50, 59, 0.08));
}

body.medicine-page .store-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 390px;
  gap: 18px;
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 18px clamp(20px, 3.6vw, 72px) 56px;
  background: #f7fafb;
}

body.medicine-page .store-sidebar,
body.medicine-page .cart-panel,
body.medicine-page .store-products-section {
  background: #ffffff;
  border: 1px solid #e2eaeb;
  border-radius: 8px;
  box-shadow: var(--medicine-shadow);
}

body.medicine-page .store-sidebar,
body.medicine-page .cart-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 18px;
}

body.medicine-page .store-sidebar h2 {
  margin: 0 0 16px;
  color: #111629;
  font-size: 19px;
  line-height: 1;
}

body.medicine-page .store-category-list {
  gap: 8px;
}

body.medicine-page .store-category-list button {
  min-height: 44px;
  justify-content: flex-start;
  color: #3c465d;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
}

body.medicine-page .store-category-list button svg {
  width: 21px;
  height: 21px;
  color: #687287;
}

body.medicine-page .store-category-list button.active {
  color: var(--medicine);
  background: var(--medicine-soft);
  border: 0;
}

body.medicine-page .store-category-list button.active svg {
  color: var(--medicine);
}

body.medicine-page .store-products-section {
  min-width: 0;
  padding: 20px;
}

body.medicine-page .store-products-section .section-heading {
  align-items: start;
  margin-bottom: 18px;
}

body.medicine-page .store-products-section h2 {
  margin: 0 0 8px;
  color: #111629;
  font-size: 32px;
  line-height: 1.08;
}

body.medicine-page .store-products-section p {
  margin: 0;
  color: #5e667c;
  font-size: 15px;
  font-weight: 750;
}

body.medicine-page .store-count {
  margin-top: 10px;
  color: #111629;
  font-size: 14px;
}

body.medicine-page .store-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.medicine-page .store-product-card {
  min-height: 300px;
  gap: 18px;
  padding: 16px;
  border-color: #e2eaeb;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(9, 50, 59, 0.06);
}

body.medicine-page .store-product-icon {
  width: 64px;
  height: 64px;
  color: var(--medicine);
  background: var(--medicine-soft);
  border-radius: 8px;
}

body.medicine-page .store-product-icon.daily,
body.medicine-page .store-product-icon.diabetes {
  color: var(--medicine);
  background: var(--medicine-soft);
}

body.medicine-page .store-product-icon.wellness,
body.medicine-page .store-product-icon.ayurveda {
  color: #24a96a;
  background: #eaf8ef;
}

body.medicine-page .store-product-icon.baby,
body.medicine-page .store-product-icon.personal {
  color: #e16d29;
  background: #fff2e8;
}

body.medicine-page .store-product-icon.devices,
body.medicine-page .store-product-icon.elderly {
  color: #2d68ff;
  background: #edf3ff;
}

body.medicine-page .store-product-copy span {
  color: var(--medicine);
  font-size: 13px;
}

body.medicine-page .store-product-copy h3 {
  min-height: 48px;
  margin: 10px 0 8px;
  color: #111629;
  font-size: 20px;
}

body.medicine-page .store-product-copy small {
  color: #666f85;
  font-size: 14px;
}

body.medicine-page .store-product-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 10px;
}

body.medicine-page .store-product-bottom strong {
  align-self: center;
  color: #0b0d1e;
  font-size: 22px;
}

.product-stepper {
  display: inline-grid;
  grid-template-columns: 34px 36px 34px;
  height: 46px;
  overflow: hidden;
  border: 1px solid #dce6e8;
  border-radius: 8px;
}

.product-stepper button,
.product-stepper span {
  display: grid;
  place-items: center;
  min-width: 0;
  color: #172034;
  background: #ffffff;
  border: 0;
  font-size: 14px;
  font-weight: 950;
}

.product-stepper button + span,
.product-stepper span + button {
  border-left: 1px solid #dce6e8;
}

body.medicine-page .store-product-bottom button[data-add-product] {
  min-height: 46px;
  min-width: 84px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #009a91, #00786f);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 139, 131, 0.22);
}

.view-products-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(260px, 100%);
  min-height: 52px;
  margin: 28px auto 0;
  color: #101525;
  background: #ffffff;
  border: 1px solid #dce6e8;
  border-radius: 8px;
  font-weight: 950;
}

body.medicine-page .cart-head h3 {
  margin-top: 6px;
  color: #111629;
  font-size: 22px;
}

body.medicine-page .section-kicker {
  color: var(--medicine);
  background: transparent;
  padding: 0;
}

body.medicine-page .cart-head button {
  color: var(--medicine);
  background: transparent;
  padding: 0;
}

body.medicine-page .cart-empty {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 88px;
  color: #5f687e;
  background: #fbfcfd;
  border-color: #e2eaeb;
  border-radius: 8px;
}

body.medicine-page .cart-empty svg {
  width: 32px;
  height: 32px;
  color: var(--medicine);
}

body.medicine-page .cart-item {
  background: #fbfcfd;
  border: 1px solid #e2eaeb;
  border-radius: 8px;
}

body.medicine-page .cart-summary {
  border-top-color: #e2eaeb;
}

body.medicine-page .cart-checkout input,
body.medicine-page .cart-checkout textarea {
  border-color: #dce6e8;
  border-radius: 8px;
}

.prescription-upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding-inline: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #009a91, #00786f);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 139, 131, 0.2);
}

.prescription-upload-button input {
  display: none;
}

.prescription-upload-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prescription-note {
  display: block;
  color: #72798c;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.medicine-submit-button {
  gap: 10px;
}

@media (max-width: 1360px) {
  body.medicine-page .store-layout {
    grid-template-columns: 250px minmax(0, 1fr) 360px;
    padding-inline: 24px;
  }

  body.medicine-page .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.medicine-page .store-product-bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 1080px) {
  body.medicine-page .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 10px;
  }

  body.medicine-page .brand {
    justify-self: center;
  }

  body.medicine-page .header-actions {
    justify-content: center;
  }

  body.medicine-page .store-hero {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  .store-hero-visual {
    min-height: 280px;
    order: -1;
  }

  .store-benefits {
    grid-template-columns: 1fr;
  }

  body.medicine-page .store-layout {
    grid-template-columns: 1fr;
  }

  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  body.medicine-page .site-header {
    min-height: 72px;
    padding-inline: 14px;
  }

  body.medicine-page .brand-logo {
    width: min(220px, 72vw);
  }

  body.medicine-page .nav-links {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body.medicine-page .header-actions {
    width: 100%;
  }

  body.medicine-page .medicine-admin-link {
    min-height: 42px;
    padding-inline: 12px;
  }

  body.medicine-page .store-hero {
    min-height: auto;
    padding: 24px 16px;
  }

  body.medicine-page .store-hero h1 {
    font-size: 38px;
  }

  body.medicine-page .store-hero p {
    font-size: 16px;
  }

  body.medicine-page .store-search {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  body.medicine-page .store-layout {
    padding: 14px 14px 36px;
  }

  body.medicine-page .store-layout,
  body.medicine-page .store-products-section,
  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.medicine-page .store-product-grid {
    grid-template-columns: 1fr;
  }

  body.medicine-page .store-products-section,
  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    padding: 14px;
  }

  .store-hero-visual {
    min-height: 220px;
  }
}

@media (max-width: 340px) {
  body.medicine-page .store-layout {
    padding-right: 8px;
    padding-left: 8px;
  }

  body.medicine-page .store-products-section,
  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    padding-right: 10px;
    padding-left: 10px;
  }
}

body.home-page {
  --home-teal: #007c74;
  --home-teal-dark: #00635d;
  --home-soft: #eaf8f7;
  --home-line: #e0e9ea;
  --home-shadow: 0 20px 55px rgba(9, 50, 59, 0.08);
  background: #ffffff;
}

body.home-page .site-header {
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  gap: 10px;
  max-width: none;
  min-height: 92px;
  padding-inline: clamp(18px, 3.2vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 10px 30px rgba(14, 43, 50, 0.05);
}

body.home-page .brand {
  align-self: center;
  padding-top: 0;
}

body.home-page .brand-logo {
  width: clamp(210px, 15vw, 292px);
  max-height: 68px;
  transform: translateY(-3px);
}

body.home-page .nav-links {
  min-width: 0;
  gap: 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.home-page .nav-links a {
  min-height: 42px;
  padding-inline: clamp(8px, 0.82vw, 14px);
  color: #101525;
  font-size: 13px;
  border-radius: 8px;
}

body.home-page .nav-links a:hover,
body.home-page .nav-links a.active {
  color: var(--home-teal);
  background: var(--home-soft);
  border-color: rgba(0, 124, 116, 0.14);
  box-shadow: 0 10px 25px rgba(0, 124, 116, 0.08);
}

body.home-page .location-select {
  min-height: 52px;
  color: #172034;
  background: #ffffff;
  border-color: var(--home-line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 50, 59, 0.04);
}

body.home-page .location-select svg {
  color: var(--home-teal);
}

body.home-page .home-user-button {
  display: grid;
  place-items: center;
  width: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  background: linear-gradient(135deg, #008e84, #006d66);
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(0, 124, 116, 0.22);
}

body.home-page main {
  max-width: none;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

body.home-page .hero-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.05fr);
  gap: 34px;
  min-height: 650px;
  padding: 40px clamp(34px, 5.8vw, 98px) 116px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  border-bottom: 1px solid var(--home-line);
}

body.home-page .hero-section::before {
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 124, 116, 0.08), transparent 31%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), transparent 64%);
}

body.home-page .hero-copy {
  max-width: 760px;
  padding-top: 0;
}

body.home-page .hero-trust {
  min-height: 34px;
  margin-bottom: 26px;
  color: var(--home-teal);
  background: var(--home-soft);
  border: 1px solid rgba(0, 124, 116, 0.14);
  font-size: 14px;
  font-weight: 950;
}

body.home-page .hero-trust svg {
  color: var(--home-teal);
}

body.home-page .hero-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #101525;
  font-size: clamp(48px, 4.25vw, 66px);
  line-height: 1.12;
}

body.home-page .hero-copy h1 span {
  color: var(--home-teal);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

body.home-page .hero-copy > p {
  max-width: 670px;
  margin-bottom: 26px;
  color: #646c82;
  font-size: 18px;
  line-height: 1.55;
}

body.home-page .hero-mini-features {
  max-width: 760px;
  gap: 22px;
}

body.home-page .hero-mini-features svg {
  color: var(--home-teal);
  background: var(--home-soft);
  border-radius: 8px;
}

body.home-page .hero-mini-features span:nth-child(2) svg,
body.home-page .hero-mini-features span:nth-child(3) svg {
  color: var(--home-teal);
  background: var(--home-soft);
}

body.home-page .hero-mini-features strong {
  color: #111629;
  font-size: 13px;
}

body.home-page .hero-mini-features small {
  color: #5f687c;
  font-size: 13px;
}

body.home-page .hero-search {
  grid-template-columns: minmax(260px, 1.2fr) minmax(200px, 0.78fr) minmax(200px, 0.78fr) 210px;
  width: min(1060px, calc(100vw - 230px));
  margin-top: 34px;
  padding: 24px;
  border-color: var(--home-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(9, 50, 59, 0.12);
}

body.home-page .search-field {
  min-height: 58px;
  border-color: #dce7e7;
  border-radius: 8px;
}

body.home-page .search-field svg {
  color: var(--home-teal);
}

body.home-page .black-button {
  min-height: 58px;
  background: linear-gradient(135deg, #008e84, #006d66);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 124, 116, 0.24);
}

body.home-page .popular-searches {
  gap: 12px;
  padding-top: 18px;
}

body.home-page .popular-searches button {
  min-height: 34px;
  color: var(--home-teal);
  background: var(--home-soft);
  border: 1px solid rgba(0, 124, 116, 0.14);
  font-size: 13px;
}

body.home-page .hero-art {
  min-height: 590px;
}

body.home-page .hero-orbit {
  inset: 0 154px 36px -24px;
  background:
    radial-gradient(circle, rgba(0, 124, 116, 0.16) 0 35%, rgba(0, 124, 116, 0.06) 36% 58%, transparent 59%);
}

body.home-page .hero-orbit::before,
body.home-page .hero-orbit::after {
  border-color: rgba(0, 124, 116, 0.13);
}

body.home-page .hero-doctor-frame {
  right: clamp(34px, 4vw, 78px);
  bottom: -116px;
  width: min(510px, 58vw);
  height: 650px;
  border-radius: 45% 45% 12px 12px;
}

@media (min-width: 1341px) {
  body.home-page .hero-section {
    min-height: 620px;
    padding-bottom: 92px;
  }

  body.home-page .hero-art {
    min-height: 540px;
  }

  body.home-page .hero-doctor-frame {
    right: clamp(34px, 4.5vw, 66px);
    bottom: -42px;
    width: min(420px, 32vw);
    height: 540px;
  }

  body.home-page .hero-orbit {
    inset: 0 112px 28px -4px;
  }

  body.home-page .hero-feature {
    right: 0;
    width: 238px;
    min-height: 118px;
    padding: 18px;
  }

  body.home-page .hero-feature.video {
    top: 74px;
  }

  body.home-page .hero-feature.verified {
    top: 214px;
  }

  body.home-page .hero-feature.secure {
    top: 354px;
  }
}

body.home-page .hero-doctor {
  object-position: center top;
}

body.home-page .hero-feature {
  right: 40px;
  grid-template-columns: 66px 1fr;
  width: 250px;
  min-height: 130px;
  padding: 22px;
  border-color: var(--home-line);
  border-radius: 16px;
  box-shadow: var(--home-shadow);
}

body.home-page .hero-feature.video {
  top: 76px;
}

body.home-page .hero-feature.verified {
  top: 230px;
}

body.home-page .hero-feature.secure {
  top: 386px;
}

body.home-page .feature-icon {
  width: 60px;
  height: 60px;
  color: var(--home-teal);
  background: var(--home-soft);
  border-radius: 16px;
}

body.home-page .hero-feature strong {
  color: #101525;
  font-size: 15px;
  line-height: 1.25;
}

body.home-page .hero-feature small {
  color: #626b80;
  font-size: 14px;
}

body.home-page .hero-stats {
  max-width: min(1400px, calc(100vw - 190px));
  min-height: 174px;
  margin-top: -130px;
  padding: 34px 32px;
  border-color: var(--home-line);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(9, 50, 59, 0.12);
}

body.home-page .hero-stats article {
  grid-template-columns: 86px minmax(0, 1fr) 88px;
}

body.home-page .hero-stats .stat-icon {
  width: 78px;
  height: 78px;
}

body.home-page .stat-icon.green {
  color: var(--home-teal);
  background: var(--home-soft);
}

body.home-page .hero-stats small b {
  color: #283044;
}

body.home-page .green-line {
  color: #21c975;
}

body.home-page .service-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  max-width: none;
  min-height: 286px;
  margin-top: 58px;
  padding: 48px clamp(26px, 4.5vw, 82px) 104px;
  background:
    linear-gradient(180deg, rgba(250, 255, 255, 0.98) 0%, rgba(244, 253, 252, 0.92) 100%);
  border: 0;
  border-radius: 0;
  box-shadow:
    0 16px 34px rgba(9, 50, 59, 0.06),
    0 26px 34px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  backdrop-filter: none;
}

body.home-page .service-strip::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 46px;
  width: 116px;
  height: 78px;
  opacity: 0.52;
  background-image: radial-gradient(rgba(0, 124, 116, 0.34) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  pointer-events: none;
}

body.home-page .service-strip::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -78px;
  width: 360px;
  height: 230px;
  opacity: 0.42;
  background:
    repeating-radial-gradient(ellipse at 78% 92%, transparent 0 22px, rgba(0, 124, 116, 0.14) 23px 24px, transparent 25px 34px);
  pointer-events: none;
}

body.home-page .service-strip article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 15px;
  min-width: 0;
  min-height: 112px;
  padding: 0 clamp(18px, 2.4vw, 36px);
  text-align: center;
  border-right: 1px solid rgba(19, 56, 63, 0.11);
}

body.home-page .service-strip article:last-child {
  border-right: 0;
}

body.home-page .strip-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  box-shadow:
    0 12px 24px rgba(0, 124, 116, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

body.home-page .strip-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.3;
}

body.home-page .service-strip strong {
  display: block;
  margin: 0 0 10px;
  color: #101525;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

body.home-page .service-strip small {
  display: block;
  max-width: 148px;
  margin: 0 auto;
  color: #687185;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.home-help-widget {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #008e84, #006d66);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(0, 124, 116, 0.28);
}

.home-help-widget svg {
  width: 30px;
  height: 30px;
}

.home-help-widget span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.home-help-widget strong {
  font-size: 14px;
  line-height: 1;
}

.home-help-widget small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1340px) {
  body.home-page .site-header {
    grid-template-columns: minmax(180px, auto) 1fr;
  }

  body.home-page .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  body.home-page .hero-section {
    grid-template-columns: 1fr;
    padding-bottom: 44px;
  }

  body.home-page .hero-search {
    width: 100%;
  }

  body.home-page .hero-art {
    min-height: 560px;
  }

  body.home-page .hero-doctor-frame {
    right: clamp(170px, 25vw, 340px);
    bottom: -40px;
  }

  body.home-page .hero-feature {
    right: clamp(20px, 8vw, 120px);
  }

  body.home-page .hero-stats {
    max-width: calc(100vw - 48px);
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .hero-stats article:nth-child(2)::after {
    display: none;
  }

  body.home-page .service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
    padding-block: 42px 82px;
  }

  body.home-page .service-strip article {
    min-height: 128px;
    padding-block: 12px;
  }

  body.home-page .service-strip article:nth-child(3) {
    border-right: 0;
  }

  .medicine-store-link-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .medicine-cta-visual {
    display: none;
  }
}

@media (max-width: 760px) {
  body.home-page .site-header {
    min-height: 72px;
    padding-inline: 14px;
  }

  body.home-page .brand-logo {
    width: min(228px, 72vw);
    max-height: 54px;
  }

  body.home-page .header-actions {
    justify-content: center;
    width: 100%;
  }

  body.home-page .home-user-button {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  body.home-page .nav-links a[href="admin.html"] {
    display: none;
  }

  body.home-page .hero-section {
    grid-template-columns: 1fr;
    padding: 22px 16px 22px;
  }

  body.home-page .hero-art {
    order: -1;
    min-height: 320px;
  }

  body.home-page .hero-orbit {
    inset: 10px 18px 24px 18px;
  }

  body.home-page .hero-doctor-frame {
    right: 50%;
    bottom: 0;
    width: min(310px, 76vw);
    height: 320px;
    transform: translateX(50%);
  }

  body.home-page .hero-doctor-frame:hover {
    transform: translateX(50%);
  }

  body.home-page .hero-feature {
    display: none;
  }

  body.home-page .hero-trust {
    margin-bottom: 18px;
  }

  body.home-page .hero-copy h1 {
    font-size: 42px;
  }

  body.home-page .hero-mini-features,
  body.home-page .hero-search,
  body.home-page .hero-stats {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-search {
    width: 100%;
    padding: 14px;
  }

  body.home-page .hero-stats {
    max-width: none;
    margin: 0 16px;
    padding: 18px;
  }

  body.home-page .hero-stats article,
  body.home-page .hero-stats article:first-child {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 16px 0;
  }

  body.home-page .hero-stats article::after {
    display: none;
  }

  body.home-page .hero-stats .stat-icon {
    width: 58px;
    height: 58px;
  }

  body.home-page .service-strip {
    grid-template-columns: 1fr;
    padding: 30px 18px 66px;
  }

  body.home-page .service-strip article {
    grid-template-columns: 54px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: auto;
    padding: 18px 4px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(19, 56, 63, 0.11);
  }

  body.home-page .service-strip article:last-child {
    border-bottom: 0;
  }

  body.home-page .service-strip small {
    max-width: none;
    margin: 0;
  }

  .medicine-store-compact {
    padding-top: 34px;
  }

  .medicine-store-link-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .medicine-store-link-card .section-kicker {
    position: static;
    justify-self: start;
  }

  .medicine-cta-copy {
    padding-top: 0;
  }

  .medicine-cta-copy h2 {
    font-size: 30px;
  }

  .medicine-cta-copy p {
    font-size: 15px;
  }

  .medicine-cta-action {
    width: 100%;
    white-space: normal;
  }

  .home-help-widget {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 14px;
  }

  .home-help-widget span {
    display: none;
  }
}

/* Production responsive hardening */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img,
video,
svg,
canvas {
  max-width: 100%;
}

img,
video {
  height: auto;
  display: block;
}

svg {
  height: auto;
  display: block;
}

input,
select,
textarea,
button {
  max-width: 100%;
  font-size: max(16px, 1rem);
}

button,
.black-button,
.purple-button,
.book-now,
.filter-button,
.login-button,
.location-select,
.text-link,
.medicine-cta-action,
.store-product-bottom button,
.mega-service-card button,
.nearby-provider-card button {
  min-height: 44px;
}

.site-header,
main,
.hero-section,
.page-hero,
.store-hero,
.services-hero,
.doctor-dashboard-main,
.doctor-login-main,
.hero-stats,
.service-strip,
.content-section,
.doctors-section,
.specialty-section,
.medicine-store-section,
.hospital-section,
.consult-banner,
.number-band,
.app-banner,
.footer,
.store-layout,
.services-layout,
.dashboard-panel,
.doctor-dashboard-hero {
  width: 100%;
  max-width: min(100%, 1200px);
  margin-right: auto;
  margin-left: auto;
}

.hero-section,
.page-hero,
.store-hero,
.services-hero,
.doctor-dashboard-hero,
.content-section,
.doctors-section,
.specialty-section,
.medicine-store-section,
.hospital-section,
.consult-banner,
.number-band,
.app-banner,
.footer,
.store-layout,
.services-layout {
  padding-right: clamp(16px, 4vw, 48px);
  padding-left: clamp(16px, 4vw, 48px);
}

.site-header,
.nav-links,
.header-actions,
.hero-copy,
.hero-art,
.hero-search,
.doctor-toolbar,
.doctor-grid,
.specialty-grid,
.medicine-store-link-card,
.medicine-store-shell,
.hospital-shell,
.hospital-status-grid,
.hospital-search,
.hospital-list,
.consult-banner,
.number-band,
.store-layout,
.store-product-grid,
.store-search,
.services-layout,
.service-grid,
.mega-service-grid,
.nearby-grid,
.nearby-provider-grid,
.doctor-dashboard-hero,
.dashboard-metrics,
.appointment-list,
.doctor-review-list,
.footer,
.booking-drawer,
.drawer-card,
.consult-room-card,
.consult-room-grid {
  min-width: 0;
}

h1 {
  font-size: clamp(2rem, 7vw, 4.5rem);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.55rem, 4.5vw, 3.4rem);
  overflow-wrap: anywhere;
}

h3 {
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  overflow-wrap: anywhere;
}

p,
small,
span,
strong,
button,
a,
label,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.specialty-grid,
.doctor-grid,
.hospital-status-grid,
.hospital-list,
.medicine-card-grid,
.store-product-grid,
.service-grid,
.mega-service-grid,
.nearby-grid,
.nearby-provider-grid,
.dashboard-metrics,
.appointment-list,
.doctor-review-list,
.metric-grid,
.number-band,
.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.doctor-toolbar,
.hero-search,
.page-search,
.store-search,
.medicine-search-form,
.hospital-search,
.service-request-form,
.filters-panel {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.search-field,
.toolbar-field,
.store-search label,
.medicine-search-form label,
.hospital-search label,
.booking-drawer label,
.drawer-card input,
.drawer-card select,
.drawer-card textarea,
.chat-form input,
.doctor-login-card input,
.doctor-login-card select {
  width: 100%;
  min-width: 0;
}

.hero-doctor-frame,
.hero-doctor,
.store-hero-visual,
.medicine-cta-visual,
.phone-mock,
.app-phone,
.dashboard-doctor-card img,
.doctor-photo,
.doctor-photo img {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px clamp(16px, 4vw, 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(168px, 34vw, 230px);
    transform: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    overflow: visible;
    gap: 6px;
  }

  .nav-links a {
    flex: 0 1 auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
    white-space: normal;
  }

  .header-actions {
    justify-content: flex-end;
    min-width: 0;
  }

  .hero-section,
  .page-hero,
  .store-hero,
  .services-hero,
  .doctor-dashboard-hero,
  .consult-banner,
  .store-layout,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .hero-search,
  body.home-page .hero-search {
    width: 100%;
  }

  .hero-art {
    min-height: clamp(320px, 58vw, 560px);
  }

  body.home-page .hero-doctor-frame,
  .hero-doctor-frame {
    right: 50%;
    bottom: 0;
    width: min(430px, 82vw);
    height: clamp(320px, 62vw, 540px);
    transform: translateX(50%);
  }

  body.home-page .hero-doctor-frame:hover,
  .hero-doctor-frame:hover {
    transform: translateX(50%);
  }

  .hero-feature {
    display: none;
  }

  .doctor-card {
    grid-template-columns: minmax(88px, 112px) minmax(0, 1fr);
  }

  .doctor-bottom {
    grid-template-columns: 1fr;
  }

  .book-now,
  .purple-button,
  .black-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    width: min(224px, 74vw);
    max-height: 56px;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
  }

  .location-select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .login-button {
    flex: 0 0 auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .nav-links a {
    justify-content: center;
    min-width: 0;
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }

  .hero-section,
  body.home-page .hero-section,
  .page-hero,
  .store-hero,
  .services-hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero-copy h1,
  body.home-page .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-mini-features {
    grid-template-columns: 1fr;
  }

  .hero-search,
  .doctor-toolbar,
  .store-search,
  .medicine-search-form,
  .hospital-search,
  .service-request-form,
  .filters-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hero-art {
    order: -1;
  }

  .service-strip,
  body.home-page .service-strip {
    max-width: 100%;
  }

  .medicine-store-link-card {
    grid-template-columns: 1fr;
  }

  .medicine-cta-action {
    width: 100%;
  }

  .consult-room {
    padding: 8px;
  }

  .consult-room-card {
    width: 100%;
    max-height: 94vh;
    overflow-y: auto;
  }

  .consult-room-grid {
    grid-template-columns: 1fr;
  }

  .booking-drawer {
    align-items: flex-end;
  }

  .drawer-card {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    overflow-y: auto;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header,
  .hero-section,
  .page-hero,
  .store-hero,
  .services-hero,
  .doctor-dashboard-hero,
  .content-section,
  .doctors-section,
  .specialty-section,
  .medicine-store-section,
  .hospital-section,
  .consult-banner,
  .number-band,
  .app-banner,
  .footer,
  .store-layout,
  .services-layout {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .location-select {
    width: 100%;
  }

  .doctor-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .doctor-photo {
    width: 86px;
    height: 112px;
  }

  .doctor-info h3 {
    font-size: 18px;
  }

  .specialty-grid,
  .doctor-grid,
  .hospital-status-grid,
  .hospital-list,
  .medicine-card-grid,
  .store-product-grid,
  .service-grid,
  .mega-service-grid,
  .nearby-grid,
  .nearby-provider-grid,
  .dashboard-metrics,
  .appointment-list,
  .doctor-review-list,
  .metric-grid,
  .number-band {
    grid-template-columns: 1fr;
  }

  .hero-stats article,
  body.home-page .hero-stats article,
  .number-band article,
  .hospital-status-card,
  .hospital-card-head,
  .store-product-card,
  .doctor-appointment-card,
  .doctor-review-card {
    min-width: 0;
  }

  .home-help-widget {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 340px) {
  .site-header,
  .hero-section,
  .page-hero,
  .store-hero,
  .services-hero,
  .content-section,
  .footer {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    width: 100%;
    height: 190px;
  }
}

/* Final mobile QA fixes */
input,
select,
textarea,
.doctor-toolbar input,
.doctor-toolbar select,
.hero-search input,
.hero-search select,
.store-search input,
.store-search select,
.service-request-form input,
.service-request-form select,
.service-request-form textarea {
  font-size: 16px !important;
}

.popular-searches button,
body.home-page .popular-searches button,
.language-options button,
.nearby-filter button,
.dashboard-filter button,
.specialty-card,
.outline-purple {
  min-height: 44px;
}

@media (max-width: 768px) {
  .hero-stats,
  body.home-page .hero-stats {
    width: auto;
    max-width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .popular-searches {
    display: grid;
    grid-template-columns: 1fr;
  }

  .popular-searches strong {
    text-align: center;
  }

  .nav-links a {
    min-height: 44px;
  }
}

.booking-drawer {
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(9, 9, 28, 0.42);
  backdrop-filter: blur(9px);
}

.drawer-card {
  align-self: center;
  width: min(420px, calc(100% - 28px));
  height: auto;
  max-height: calc(100dvh - 28px);
  margin: 14px 14px 14px 0;
  overflow-y: auto;
  padding: 26px 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(236, 236, 245, 0.94);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(9, 9, 28, 0.22);
}

.drawer-close {
  top: 14px;
  right: clamp(14px, 6vw, 88px);
  z-index: 2;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: #f4f7fb;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
}

.drawer-close svg {
  width: 18px;
  height: 18px;
}

.drawer-headline {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0 34px 18px 0;
}

.drawer-calendar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--purple);
  background: var(--soft-purple);
  border-radius: 10px;
}

.drawer-calendar svg {
  width: 22px;
  height: 22px;
}

.drawer-card .eyebrow {
  display: block;
  margin: 0 0 5px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.drawer-card h2 {
  margin: 0;
  color: #0d1021;
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 1.02;
}

.drawer-card #drawerSubtitle {
  margin: 6px 0 0;
  color: #697084;
  font-size: 12px;
  font-weight: 850;
}

.booking-drawer form {
  gap: 12px;
}

.booking-drawer label span {
  margin-bottom: 6px;
  color: #62677a;
  font-size: 12px;
}

.booking-drawer input,
.booking-drawer select,
.booking-drawer textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e2e7f0;
  border-radius: 9px;
  box-shadow: none;
  font-size: 16px;
}

.booking-drawer textarea {
  min-height: 82px;
  resize: none;
}

.booking-secure-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  color: #2f5f8c;
  background: #edf8ff;
  border: 1px solid #d9eefb;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-secure-note svg {
  width: 18px;
  height: 18px;
  color: var(--purple);
}

.drawer-card .black-button.full,
.drawer-card #confirmBookingButton {
  min-height: 52px;
  color: #ffffff;
  background: var(--purple);
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(0, 124, 116, 0.22);
}

.booking-payment-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #6a7185;
  font-size: 11px;
  font-weight: 850;
}

.booking-payment-note span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.booking-payment-note svg {
  width: 14px;
  height: 14px;
  color: var(--purple);
}

@media (max-width: 768px) {
  .booking-drawer {
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: rgba(9, 9, 28, 0.34);
  }

  .drawer-card {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 22px 18px 18px;
    border: 0;
    border-radius: 0;
  }

  .drawer-close {
    right: 14px;
  }

  .drawer-headline {
    grid-template-columns: 38px minmax(0, 1fr);
    margin-right: 36px;
  }

  .drawer-calendar {
    width: 38px;
    height: 38px;
  }

  .drawer-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }
}

@media (max-width: 390px) {
  .drawer-card {
    padding-inline: 15px;
  }

  .booking-drawer form {
    gap: 10px;
  }

  .booking-drawer input,
  .booking-drawer select,
  .booking-drawer textarea {
    min-height: 46px;
  }
}

@media (max-width: 900px) {
  body.home-page .hero-search {
    grid-template-columns: 1fr;
  }

  body.home-page .popular-searches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(145px, 100%), 1fr));
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }

  body.home-page .popular-searches strong {
    text-align: center;
  }
}

@media (max-width: 480px) {
  body.home-page .hero-section {
    gap: 18px;
  }

  body.home-page .hero-art {
    min-height: 232px;
  }

  body.home-page .hero-doctor-frame {
    width: min(238px, 70vw);
    height: 240px;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  body.home-page .hero-copy > p {
    font-size: 0.98rem;
  }
}

@media (max-width: 340px) {
  body.home-page .hero-art {
    min-height: 218px;
  }

  body.home-page .hero-doctor-frame {
    width: min(220px, 70vw);
    height: 226px;
  }

  body.home-page .hero-copy h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1341px) and (max-width: 1460px) {
  body.home-page .site-header {
    grid-template-columns: minmax(198px, auto) minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 34px;
  }

  body.home-page .brand-logo {
    width: 190px;
  }

  body.home-page .nav-links {
    justify-content: flex-start;
    gap: 2px;
  }

  body.home-page .nav-links a {
    min-height: 38px;
    padding-inline: 7px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav-links a {
    min-height: 44px;
  }

  .home-help-widget {
    position: static;
    width: calc(100% - 28px);
    min-height: 50px;
    margin: 14px auto 0;
    padding: 0 14px;
    justify-content: center;
  }

  .home-help-widget span {
    display: grid;
  }

  .home-help-widget svg {
    width: 24px;
    height: 24px;
  }
}

/* Launch and auth states */
.soon-nav,
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 24px;
  padding: 3px 9px;
  color: var(--purple);
  background: var(--soft-purple);
  border: 1px solid rgba(0, 124, 116, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.soon-nav {
  min-height: 18px;
  padding: 2px 6px;
  font-size: 10px;
}

.coming-soon-badge svg {
  width: 14px;
  height: 14px;
}

button:disabled,
.store-buttons button:disabled,
.product-stepper button:disabled,
.store-product-bottom button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none !important;
}

.reviews-launch-section {
  padding-top: 34px;
}

.review-launch-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f3fbfa);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.review-launch-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 20px;
}

.review-launch-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.auth-provider-panel,
.auth-phone-form {
  display: grid;
  gap: 12px;
}

.auth-provider-panel {
  margin-bottom: 16px;
  padding: 14px;
  background: #f8fcfb;
  border: 1px solid rgba(0, 124, 116, 0.12);
  border-radius: 14px;
}

.auth-provider-button,
.auth-phone-form {
  width: 100%;
}

.auth-provider-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
}

.auth-provider-button svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.auth-provider-button span,
.auth-provider-button strong,
.auth-provider-button small {
  display: block;
}

.auth-provider-button small,
.auth-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.auth-phone-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-top: 14px;
}

.auth-phone-form.compact {
  margin-top: 0;
}

.auth-phone-form label {
  display: grid;
  gap: 7px;
}

.auth-phone-form label span {
  color: #5c6178;
  font-size: 12px;
  font-weight: 900;
}

.auth-phone-form input {
  min-height: 48px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.auth-phone-form .black-button,
.auth-phone-form .outline-action {
  min-height: 48px;
  white-space: nowrap;
}

.login-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
}

@media (max-width: 768px) {
  .auth-phone-form,
  .auth-phone-form.compact,
  .review-launch-card {
    grid-template-columns: 1fr;
  }

  .review-launch-card .text-link,
  .auth-phone-form .black-button,
  .auth-phone-form .outline-action {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body.home-page .nav-links a[href="admin.html"] {
    display: none !important;
  }
}

/* Home page final launch hero */
body.home-page {
  --home-frame: min(1320px, calc(100% - 24px));
  --home-teal: #007c74;
  --home-teal-dark: #006d66;
  --home-mint: #eaf8f7;
  --home-line: #dfeaec;
  --home-ink: #101525;
  background: #f5f8f8;
}

.home-topbar,
body.home-page .site-header,
body.home-page main {
  width: var(--home-frame);
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.home-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 26px;
  padding: 0 36px;
  color: #233247;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-bottom: 0;
  font-size: 11px;
  font-weight: 850;
}

.home-topbar span:nth-child(2) {
  color: #1c2739;
  text-align: center;
}

.home-topbar span:last-child {
  text-align: right;
}

.home-topbar strong {
  display: inline-grid;
  place-items: center;
  min-height: 17px;
  margin-right: 6px;
  padding: 0 8px;
  color: #ffffff;
  background: var(--home-teal);
  border-radius: 3px;
  font-size: 10px;
}

.home-topbar b {
  color: var(--home-teal-dark);
}

body.home-page .site-header {
  position: sticky;
  top: 0;
  grid-template-columns: 212px minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 72px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--home-line);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.home-page .brand-logo {
  width: 188px;
  max-height: 54px;
  transform: translateY(-3px);
}

body.home-page .nav-links {
  justify-content: center;
  gap: 4px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

body.home-page .nav-links a {
  min-height: 32px;
  padding: 0 10px;
  color: #12192a;
  font-size: 11px;
  font-weight: 950;
  border-radius: 7px;
}

body.home-page .nav-links a[href="services.html#plans"] {
  display: none;
}

body.home-page .header-actions {
  gap: 12px;
}

body.home-page .location-select {
  min-height: 46px;
  padding: 0 18px;
  color: var(--home-teal-dark);
  border-color: var(--home-line);
  border-radius: 8px;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(9, 50, 59, 0.04);
}

body.home-page .home-user-button {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 8px;
}

body.home-page main {
  overflow: visible;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-top: 0;
  box-shadow: 0 22px 60px rgba(9, 50, 59, 0.12);
}

body.home-page .hero-section {
  position: relative;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(575px, 1fr) minmax(410px, 0.78fr);
  gap: 24px;
  min-height: 520px;
  margin: 0;
  padding: 50px clamp(50px, 6.7vw, 104px) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 124, 116, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  border: 0;
}

body.home-page .hero-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 142px;
  width: 396px;
  height: 410px;
  opacity: 0.42;
  background-image: radial-gradient(rgba(0, 124, 116, 0.25) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  pointer-events: none;
}

body.home-page .hero-copy {
  z-index: 2;
  max-width: 680px;
  padding-top: 0;
}

body.home-page .hero-trust {
  min-height: 28px;
  margin-bottom: 20px;
  padding: 0 12px;
  color: var(--home-teal);
  background: var(--home-mint);
  border: 1px solid rgba(0, 124, 116, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

body.home-page .hero-trust svg {
  width: 16px;
  height: 16px;
}

body.home-page .hero-copy h1 {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--home-ink);
  font-size: clamp(2.9rem, 3.85vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

body.home-page .hero-copy h1 span {
  color: var(--home-teal);
}

body.home-page .hero-copy > p {
  max-width: 600px;
  margin: 0 0 24px;
  color: #677085;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 750;
}

body.home-page .hero-search {
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.45fr) minmax(132px, 0.45fr) 152px;
  gap: 0;
  width: min(625px, 100%);
  margin: 0;
  padding: 9px;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(9, 50, 59, 0.1);
}

body.home-page .hero-search .search-field {
  min-height: 42px;
  padding: 0 12px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
  box-shadow: none;
}

body.home-page .hero-search .search-field:first-child {
  border-radius: 6px 0 0 6px;
}

body.home-page .hero-search .search-field:nth-child(3) {
  border-right: 0;
}

body.home-page .hero-search input,
body.home-page .hero-search select {
  font-size: 11px;
  font-weight: 850;
}

body.home-page .hero-search svg {
  width: 16px;
  height: 16px;
  color: #718093;
}

body.home-page .hero-search .black-button {
  min-height: 42px;
  padding: 0 16px;
  background: linear-gradient(135deg, #008e84, #006d66);
  border-radius: 6px;
  font-size: 11px;
}

body.home-page .popular-searches {
  display: none;
}

body.home-page .hero-mini-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 22px;
}

body.home-page .hero-mini-features span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
}

body.home-page .hero-mini-features svg {
  width: 34px;
  height: 34px;
  padding: 9px;
  color: var(--home-teal);
  background: var(--home-mint);
  border-radius: 8px;
}

body.home-page .hero-mini-features strong {
  color: #182132;
  font-size: 10px;
  line-height: 1.1;
}

body.home-page .hero-mini-features small {
  color: #6d7485;
  font-size: 9px;
  line-height: 1.25;
}

body.home-page .hero-art {
  z-index: 2;
  min-height: 420px;
}

body.home-page .hero-orbit {
  inset: 0 34px 18px -22px;
  background:
    radial-gradient(circle, rgba(0, 124, 116, 0.16) 0 42%, rgba(0, 124, 116, 0.07) 43% 61%, transparent 62%);
  border-radius: 50%;
}

body.home-page .hero-orbit::before,
body.home-page .hero-orbit::after {
  border-color: rgba(0, 124, 116, 0.12);
}

body.home-page .hero-doctor-frame {
  right: 78px;
  bottom: -86px;
  width: min(342px, 30vw);
  height: 500px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 48% 48% 0 0;
  box-shadow: none;
}

body.home-page .hero-doctor-frame:hover {
  transform: none;
}

body.home-page .hero-doctor {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03);
}

body.home-page .hero-feature {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  width: 158px;
  min-height: 86px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(9, 50, 59, 0.1);
}

body.home-page .hero-feature.video {
  top: 82px;
  right: 22px;
}

body.home-page .hero-feature.verified {
  top: 214px;
  right: -10px;
  width: 180px;
}

body.home-page .hero-feature.secure {
  display: none;
}

body.home-page .feature-icon {
  width: 42px;
  height: 42px;
  color: var(--home-teal);
  background: var(--home-mint);
  border-radius: 9px;
}

body.home-page .feature-icon svg {
  width: 22px;
  height: 22px;
}

body.home-page .hero-feature strong {
  color: #101525;
  font-size: 13px;
  line-height: 1.15;
}

body.home-page .hero-feature small {
  color: #667085;
  font-size: 10px;
  line-height: 1.35;
}

body.home-page .hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1040px, calc(100% - 120px));
  max-width: 1040px;
  min-height: 96px;
  margin: -58px auto 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  box-shadow: 0 18px 52px rgba(9, 50, 59, 0.12);
}

body.home-page .hero-stats article,
body.home-page .hero-stats article:first-child {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px 14px;
  background: #f8fcfc;
  border: 1px solid #edf4f4;
  border-radius: 8px;
}

body.home-page .hero-stats article::after {
  display: none;
}

body.home-page .hero-stats .stat-icon {
  width: 42px;
  height: 42px;
  color: var(--home-teal);
  background: var(--home-mint);
  border-radius: 8px;
}

body.home-page .hero-stats .stat-icon svg {
  width: 21px;
  height: 21px;
}

body.home-page .hero-stats strong {
  margin: 0 0 4px;
  color: var(--home-teal);
  font-size: 12px;
  line-height: 1.2;
}

body.home-page .hero-stats small {
  color: #667085;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
}

body.home-page .service-strip {
  margin-top: 64px;
}

body.home-page .home-help-widget {
  right: max(28px, calc((100vw - 1320px) / 2 + 38px));
  bottom: 52px;
  min-height: 58px;
  padding: 10px 18px;
  border-radius: 12px;
}

@media (max-width: 1180px) {
  body.home-page .site-header {
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: auto;
    padding-block: 10px;
  }

  body.home-page .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body.home-page .hero-section {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  body.home-page .hero-copy {
    max-width: 720px;
  }

  body.home-page .hero-art {
    min-height: 420px;
  }

  body.home-page .hero-doctor-frame {
    right: 50%;
    bottom: -62px;
    width: min(380px, 60vw);
    height: 490px;
    transform: translateX(50%);
  }

  body.home-page .hero-feature.video {
    right: clamp(18px, 12vw, 190px);
  }

  body.home-page .hero-feature.verified {
    right: clamp(4px, 8vw, 140px);
  }

  body.home-page .hero-stats {
    width: min(1040px, calc(100% - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-page {
    --home-frame: 100%;
  }

  .home-topbar {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
    padding: 7px 14px;
    text-align: center;
  }

  .home-topbar span:last-child {
    text-align: center;
  }

  body.home-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  body.home-page .brand-logo {
    width: min(190px, 62vw);
  }

  body.home-page .header-actions {
    grid-column: 2;
  }

  body.home-page .location-select {
    display: none;
  }

  body.home-page .nav-links {
    grid-column: 1 / -1;
    order: 3;
  }

  body.home-page .hero-section {
    gap: 18px;
    min-height: auto;
    padding: 26px 16px 72px;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  body.home-page .hero-copy > p {
    font-size: 0.98rem;
  }

  body.home-page .hero-search {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  body.home-page .hero-search .search-field,
  body.home-page .hero-search .search-field:first-child,
  body.home-page .hero-search .search-field:nth-child(3) {
    min-height: 48px;
    border: 1px solid var(--home-line);
    border-radius: 8px;
  }

  body.home-page .hero-search input,
  body.home-page .hero-search select {
    font-size: 16px;
  }

  body.home-page .hero-mini-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .hero-art {
    order: -1;
    min-height: 300px;
  }

  body.home-page .hero-orbit {
    inset: 8px 28px 4px;
  }

  body.home-page .hero-doctor-frame {
    right: 50%;
    bottom: -28px;
    width: min(270px, 72vw);
    height: 330px;
    transform: translateX(50%);
  }

  body.home-page .hero-feature {
    display: none;
  }

  body.home-page .hero-stats {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -42px;
    padding: 12px;
  }

  body.home-page .service-strip {
    margin-top: 42px;
  }

  body.home-page .home-help-widget {
    position: static;
    width: calc(100% - 28px);
    margin: 18px auto 0;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  body.home-page .hero-mini-features {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-art {
    min-height: 260px;
  }

  body.home-page .hero-doctor-frame {
    width: min(238px, 72vw);
    height: 286px;
  }
}

.mobile-menu-toggle,
.mobile-rating-band {
  display: none;
}

.mobile-line {
  display: none;
}

body.home-page .hero-copy {
  grid-area: copy;
}

body.home-page .hero-art {
  grid-area: art;
}

body.home-page .hero-mini-features {
  grid-area: features;
}

body.home-page .hero-search {
  grid-area: search;
}

body.home-page .hero-section {
  align-content: start;
  grid-template-areas:
    "copy art"
    "search art"
    "features art";
}

@media (max-width: 760px) {
  body.home-page {
    --home-frame: 100%;
    background: #ffffff;
  }

  .home-topbar {
    display: none;
  }

  body.home-page .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    min-height: 76px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 0;
    border-bottom: 1px solid #e7eeee;
    box-shadow: 0 8px 26px rgba(9, 50, 59, 0.06);
  }

  body.home-page .brand {
    min-width: 0;
  }

  body.home-page .brand-logo {
    width: min(160px, 44vw);
    max-height: 48px;
    transform: translateY(-2px);
  }

  body.home-page .header-actions {
    display: flex;
    grid-column: 2;
    justify-content: flex-end;
    gap: 8px;
    width: auto;
  }

  body.home-page .location-select {
    display: inline-flex;
    gap: 6px;
    min-height: 40px;
    max-width: 142px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 10px;
    box-shadow: 0 8px 20px rgba(9, 50, 59, 0.08);
  }

  body.home-page .location-select span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .location-select svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  body.home-page .home-user-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    color: #172034;
    background: transparent;
    border: 0;
    border-radius: 8px;
  }

  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  body.home-page .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    order: 3;
    padding: 8px 0 0;
    overflow: visible;
  }

  body.home-nav-open .nav-links {
    display: grid;
  }

  body.home-page .nav-links a {
    min-height: 38px;
    background: #f8fcfc;
    border: 1px solid #e7eeee;
  }

  body.home-page main {
    width: 100%;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }

  body.home-page .hero-section {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(142px, 0.86fr);
    grid-template-areas:
      "copy art"
      "features features"
      "search search";
    gap: 10px 8px;
    width: 100%;
    min-height: auto;
    padding: 16px 14px 10px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 30%, rgba(0, 124, 116, 0.12), transparent 30%),
      #ffffff;
  }

  body.home-page .hero-section::before {
    top: 78px;
    right: auto;
    left: -8px;
    width: 190px;
    height: 320px;
    opacity: 0.38;
    background-size: 11px 11px;
  }

  body.home-page .hero-copy {
    min-width: 0;
    max-width: none;
    padding-top: 0;
  }

  body.home-page .hero-trust {
    min-height: 24px;
    margin: 0 0 12px;
    padding: 0 10px;
    font-size: 9px;
  }

  body.home-page .hero-trust svg {
    width: 14px;
    height: 14px;
  }

  body.home-page .hero-copy h1 {
    margin-bottom: 10px;
    font-size: clamp(1.48rem, 6.35vw, 1.95rem);
    line-height: 1.08;
  }

  body.home-page .hero-copy > p {
    max-width: 180px;
    margin-bottom: 0;
    color: #667085;
    font-size: 10px;
    line-height: 1.45;
  }

  body.home-page .hero-art {
    min-height: 214px;
    order: initial;
  }

  body.home-page .hero-orbit {
    inset: 8px 0 4px -8px;
    background:
      radial-gradient(circle, rgba(0, 124, 116, 0.14) 0 44%, rgba(0, 124, 116, 0.06) 45% 63%, transparent 64%);
  }

  body.home-page .hero-doctor-frame {
    right: 0;
    bottom: -6px;
    width: min(168px, 45vw);
    height: 224px;
    border-radius: 48% 48% 0 0;
    transform: none;
  }

  body.home-page .hero-doctor-frame:hover {
    transform: none;
  }

  body.home-page .hero-feature {
    display: none;
  }

  body.home-page .hero-mini-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 2px 0 0;
    padding: 10px 8px;
    background: #ffffff;
    border: 1px solid #e7eeee;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(9, 50, 59, 0.09);
  }

  body.home-page .hero-mini-features span {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    min-height: 52px;
    padding: 0 8px;
    border-right: 1px solid #e8eeee;
  }

  body.home-page .hero-mini-features span:nth-child(4) {
    display: none;
  }

  body.home-page .hero-mini-features span:nth-child(3) {
    border-right: 0;
  }

  body.home-page .hero-mini-features svg {
    width: 28px;
    height: 28px;
    padding: 7px;
    border-radius: 7px;
  }

  body.home-page .hero-mini-features strong {
    font-size: 8.5px;
    line-height: 1.15;
  }

  body.home-page .hero-mini-features small {
    font-size: 8px;
    line-height: 1.25;
  }

  body.home-page .hero-search {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 8px;
    width: 100%;
    margin: 2px 0 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e7eeee;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(9, 50, 59, 0.1);
  }

  body.home-page .hero-search .search-main,
  body.home-page .hero-search .black-button {
    grid-column: 1 / -1;
  }

  body.home-page .hero-search .search-field,
  body.home-page .hero-search .search-field:first-child,
  body.home-page .hero-search .search-field:nth-child(3) {
    min-height: 44px;
    gap: 6px;
    padding: 0 8px;
    border: 1px solid #e5eeee;
    border-radius: 8px;
  }

  body.home-page .hero-search input,
  body.home-page .hero-search select {
    font-size: 12px;
  }

  body.home-page .hero-search select {
    font-size: 10px;
    font-weight: 900;
  }

  body.home-page .hero-search .search-field svg {
    width: 14px;
    height: 14px;
  }

  body.home-page .desktop-inline {
    display: none;
  }

  body.home-page .mobile-line {
    display: inline;
  }

  body.home-page .hero-search .black-button {
    min-height: 44px;
    font-size: 12px;
  }

  .mobile-rating-band {
    display: grid;
    grid-template-columns: minmax(94px, 1fr) minmax(0, 0.8fr) minmax(0, 0.78fr);
    gap: 10px;
    align-items: center;
    margin: 12px 14px 10px;
    padding: 16px 14px;
    background: linear-gradient(135deg, #f2fbfa, #ffffff);
    border: 1px solid #e7eeee;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(9, 50, 59, 0.08);
  }

  .mobile-rating-band .avatar-stack {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .mobile-rating-band img,
  .mobile-rating-band .avatar-stack span {
    width: 34px;
    height: 34px;
    margin-right: -10px;
    object-fit: cover;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(9, 50, 59, 0.12);
  }

  .mobile-rating-band .avatar-stack span {
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #ffb52e;
  }

  .mobile-rating-band .avatar-stack svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .mobile-rating-band > div:not(.avatar-stack) {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .mobile-rating-band > div:nth-child(2) {
    padding-right: 10px;
    border-right: 1px solid #dfeaec;
  }

  .mobile-rating-band strong {
    color: var(--home-teal);
    font-size: 17px;
    line-height: 1;
  }

  .mobile-rating-band div:last-child strong {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    color: #101525;
  }

  .mobile-rating-band div:last-child svg {
    width: 14px;
    height: 14px;
    color: #ffb52e;
    fill: currentColor;
  }

  .mobile-rating-band small {
    color: #667085;
    font-size: 10px;
    font-weight: 800;
  }

  body.home-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 0 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.home-page .hero-stats article,
  body.home-page .hero-stats article:first-child {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    min-height: 84px;
    padding: 14px 12px;
    background: #ffffff;
    border: 1px solid #e7eeee;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(9, 50, 59, 0.08);
  }

  body.home-page .hero-stats .stat-icon {
    width: 38px;
    height: 38px;
  }

  body.home-page .hero-stats strong {
    font-size: 11px;
  }

  body.home-page .hero-stats small {
    font-size: 10px;
  }

  body.home-page .service-strip {
    margin-top: 30px;
  }

  body.home-page .home-help-widget {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 35;
    width: auto;
    min-height: 48px;
    margin: 0;
    padding: 8px 13px;
    border-radius: 14px;
  }

  body.home-page .home-help-widget span {
    display: grid;
  }

  body.home-page .home-help-widget svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 390px) {
  body.home-page .hero-section {
    grid-template-columns: minmax(0, 0.98fr) minmax(132px, 0.78fr);
    padding-inline: 12px;
  }

  body.home-page .brand-logo {
    width: min(150px, 43vw);
  }

  body.home-page .location-select {
    max-width: 134px;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.82rem);
  }

  body.home-page .hero-copy > p {
    max-width: 166px;
    font-size: 9.5px;
  }

  body.home-page .hero-art {
    min-height: 206px;
  }

  body.home-page .hero-doctor-frame {
    width: min(156px, 43vw);
    height: 214px;
  }

  body.home-page .hero-mini-features {
    padding-inline: 6px;
  }

  body.home-page .hero-mini-features span {
    grid-template-columns: 26px minmax(0, 1fr);
    padding-inline: 6px;
  }

  .mobile-rating-band {
    margin-inline: 12px;
    padding-inline: 12px;
  }

  body.home-page .hero-stats {
    margin-inline: 12px;
  }
}

@media (max-width: 760px) {
  body.home-page .desktop-break {
    display: none;
  }

  body.home-page .specialty-section,
  body.home-page .doctors-section,
  body.home-page .consult-banner,
  body.home-page .number-band {
    display: none;
  }

  body.home-page .service-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 22px 0 0;
    padding: 12px 8px 14px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.home-page .service-strip::before,
  body.home-page .service-strip::after {
    display: none;
  }

  body.home-page .service-strip article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    min-height: 58px;
    padding: 0 2px;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.home-page .strip-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
  }

  body.home-page .strip-icon svg {
    width: 15px;
    height: 15px;
  }

  body.home-page .service-strip strong {
    max-width: 54px;
    color: #0c1728;
    font-size: 7.8px;
    line-height: 1.15;
  }

  body.home-page .service-strip small {
    display: none;
  }

  body.home-page .medicine-store-compact,
  body.home-page .hospital-section,
  body.home-page .reviews-launch-section {
    width: 100%;
    max-width: none;
    padding: 10px 10px 0;
  }

  body.home-page .medicine-store-link-card {
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 10px;
    min-height: 222px;
    padding: 16px;
    background:
      radial-gradient(circle at 88% 18%, rgba(0, 124, 116, 0.12), transparent 28%),
      linear-gradient(135deg, #f5fbfa 0%, #ffffff 100%);
    border-color: #dfeeee;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(9, 50, 59, 0.08);
  }

  body.home-page .medicine-store-link-card .section-kicker {
    position: static;
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 22px;
    margin: 0;
    padding: 0 9px;
    font-size: 8.5px;
  }

  body.home-page .medicine-cta-copy {
    gap: 8px;
    padding-top: 0;
  }

  body.home-page .medicine-cta-copy h2 {
    max-width: 210px;
    font-size: 23px;
    line-height: 1.08;
  }

  body.home-page .medicine-cta-copy p {
    max-width: 218px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  body.home-page .medicine-cta-action {
    justify-self: start;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 10px;
  }

  body.home-page .medicine-cta-points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 4px;
  }

  body.home-page .medicine-cta-points span {
    justify-content: center;
    min-height: 31px;
    padding: 0 6px;
    background: #f7fcfb;
    border-color: #dfeeee;
    border-radius: 8px;
    font-size: 8.5px;
    line-height: 1.1;
  }

  body.home-page .medicine-cta-points svg {
    width: 13px;
    height: 13px;
  }

  body.home-page .medicine-cta-visual {
    grid-column: 2;
    grid-row: 2 / 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: end;
    align-self: center;
  }

  body.home-page .medicine-cta-visual svg,
  body.home-page .medicine-cta-visual svg:first-child {
    width: 48px;
    height: 48px;
    padding: 13px;
    border-radius: 14px;
  }

  body.home-page .hospital-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-bottom: 10px;
  }

  body.home-page .hospital-heading .section-kicker {
    min-height: 22px;
    margin-bottom: 9px;
    padding: 0 9px;
    font-size: 8.5px;
  }

  body.home-page .hospital-heading h2 {
    font-size: 23px;
    line-height: 1.08;
  }

  body.home-page .hospital-heading h2 span {
    display: block;
    color: var(--home-teal);
  }

  body.home-page .hospital-heading p {
    max-width: 260px;
    margin-top: 8px;
    color: #667085;
    font-size: 10px;
    line-height: 1.45;
  }

  body.home-page .hospital-heading .text-link {
    align-self: start;
    margin-top: 24px;
    font-size: 9px;
  }

  body.home-page .hospital-shell {
    padding: 12px;
    background: #ffffff;
    border-color: #dfeeee;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(9, 50, 59, 0.08);
  }

  body.home-page .hospital-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.home-page .hospital-status-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 7px;
    min-height: 128px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  body.home-page .hospital-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  body.home-page .hospital-icon svg {
    width: 15px;
    height: 15px;
  }

  body.home-page .hospital-status-card strong {
    font-size: 9.5px;
    line-height: 1.2;
  }

  body.home-page .hospital-status-card small,
  body.home-page .hospital-status-card em {
    font-size: 7.5px;
    line-height: 1.25;
  }

  body.home-page .hospital-status-card b {
    font-size: 18px;
    line-height: 1;
  }

  body.home-page .hospital-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e7eeee;
    border-radius: 10px;
  }

  body.home-page .hospital-search label {
    gap: 4px;
  }

  body.home-page .hospital-search label span {
    font-size: 8px;
  }

  body.home-page .hospital-search select {
    min-height: 34px;
    padding: 0 7px;
    border-radius: 7px;
    font-size: 8.5px;
  }

  body.home-page .hospital-search button {
    grid-column: 1 / -1;
    min-height: 36px;
    border-radius: 8px;
    font-size: 9px;
  }

  body.home-page .hospital-list {
    display: none;
  }

  body.home-page .reviews-launch-section {
    padding-top: 10px;
  }

  body.home-page .reviews-launch-section .section-heading {
    display: none;
  }

  body.home-page .review-launch-card {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 12px;
    background: #f5fbfa;
    border-color: #dfeeee;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(9, 50, 59, 0.06);
  }

  body.home-page .review-launch-card .hospital-icon {
    width: 32px;
    height: 32px;
  }

  body.home-page .review-launch-card strong {
    margin-bottom: 2px;
    font-size: 10.5px;
  }

  body.home-page .review-launch-card p {
    font-size: 8.5px;
    line-height: 1.35;
  }

  body.home-page .review-launch-card .text-link {
    font-size: 8.5px;
  }

  body.home-page .app-banner {
    grid-template-columns: 74px minmax(0, 1fr) 96px 58px;
    gap: 8px;
    min-height: 98px;
    margin: 10px 10px 0;
    padding: 10px;
    border-radius: 12px;
  }

  body.home-page .app-phone {
    width: 56px;
    height: 78px;
    margin-left: 4px;
    padding: 6px;
    border-radius: 13px 13px 0 0;
  }

  body.home-page .mini-screen {
    gap: 4px;
    padding: 6px;
    border-radius: 9px 9px 0 0;
  }

  body.home-page .app-banner h2 {
    font-size: 12.5px;
    line-height: 1.14;
  }

  body.home-page .app-banner p {
    margin: 4px 0 0;
    font-size: 8.5px;
    line-height: 1.35;
  }

  body.home-page .store-buttons {
    display: grid;
    gap: 6px;
  }

  body.home-page .store-buttons button {
    min-height: 28px;
    padding: 0 7px;
    border-radius: 6px;
    font-size: 6.5px;
  }

  body.home-page .store-buttons svg {
    width: 12px;
    height: 12px;
  }

  body.home-page .store-buttons strong {
    font-size: 8px;
  }

  body.home-page .qr-box {
    width: 52px;
    height: 52px;
    gap: 2px;
    padding: 5px;
    border-width: 1px;
  }

  body.home-page .footer {
    grid-template-columns: 1.1fr repeat(2, 0.72fr);
    gap: 12px;
    padding: 16px 12px 74px;
    background: #ffffff;
  }

  body.home-page .footer .brand-logo {
    width: 115px;
  }

  body.home-page .footer p {
    font-size: 8.5px;
    line-height: 1.4;
  }

  body.home-page .footer h3 {
    margin: 0 0 6px;
    font-size: 9.5px;
  }

  body.home-page .footer a {
    margin-bottom: 5px;
    font-size: 8px;
  }

  body.home-page .newsletter {
    grid-column: 1 / -1;
  }

  body.home-page .footer form {
    padding: 5px;
  }

  body.home-page .footer form input {
    min-height: 34px;
    font-size: 12px;
  }

  body.home-page .footer form button {
    width: 34px;
    height: 34px;
  }
}

/* Final app/footer presentation */
body.home-page .reviews-launch-section {
  max-width: 1320px;
  padding-top: 26px;
}

body.home-page .reviews-launch-section .section-heading {
  display: none;
}

body.home-page .review-launch-card {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  min-height: 92px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fcfb 100%);
  border-color: #dfeeee;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(9, 50, 59, 0.06);
}

body.home-page .app-banner {
  grid-template-columns: minmax(230px, 0.75fr) minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 1320px;
  min-height: 520px;
  margin: 34px auto 0;
  padding: 38px 52px;
  background:
    radial-gradient(circle at 14% 90%, rgba(0, 124, 116, 0.13), transparent 28%),
    radial-gradient(circle at 72% 20%, rgba(15, 183, 166, 0.12), transparent 30%),
    linear-gradient(135deg, #f5fcfb 0%, #ffffff 48%, #f3fbfa 100%);
  border: 1px solid #dfeeee;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(9, 50, 59, 0.08);
}

body.home-page .app-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

body.home-page .app-copy h2 {
  margin: 0;
  max-width: 260px;
  color: #132036;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  line-height: 1.02;
}

body.home-page .app-copy > strong {
  color: var(--home-teal);
  font-size: 18px;
}

body.home-page .app-copy p {
  max-width: 285px;
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 800;
}

body.home-page .app-banner .store-buttons {
  display: grid;
  gap: 10px;
  justify-content: start;
  margin-top: 10px;
}

body.home-page .app-banner .store-buttons button {
  width: 184px;
  min-height: 48px;
  padding: 0 14px;
  background: #111827;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
}

body.home-page .app-phone-large {
  display: block;
  align-self: center;
  justify-self: center;
  width: 245px;
  height: 445px;
  margin: 0;
  padding: 12px;
  background: #0b1017;
  border-radius: 42px;
  box-shadow: 0 22px 54px rgba(9, 50, 59, 0.18);
  transform: none;
}

body.home-page .app-phone-large .mini-screen {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  height: 100%;
  padding: 28px 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fdfc 62%, #dff6f1 63%, #bceee4 82%, #72d7c9 100%);
  border-radius: 32px;
}

body.home-page .app-phone-large .mini-screen span {
  background: transparent;
}

body.home-page .phone-speaker {
  position: absolute;
  top: 10px;
  width: 62px;
  height: 15px;
  background: #0b1017 !important;
  border-radius: 999px;
}

body.home-page .app-phone-large img {
  width: 156px;
  max-width: 100%;
}

body.home-page .app-phone-large small {
  color: #546070;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

body.home-page .phone-wave {
  position: absolute;
  inset: auto -20px 0;
  height: 105px;
  background:
    radial-gradient(ellipse at 30% 15%, rgba(255,255,255,0.9), transparent 40%),
    linear-gradient(165deg, rgba(0, 124, 116, 0.05), rgba(0, 124, 116, 0.26));
  border-radius: 50% 50% 0 0;
}

body.home-page .app-feature-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.home-page .app-feature-list li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5eeee;
}

body.home-page .app-feature-list li:last-child {
  border-bottom: 0;
}

body.home-page .app-feature-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--home-teal);
  background: var(--home-mint);
  border-radius: 999px;
}

body.home-page .app-feature-list svg {
  width: 22px;
  height: 22px;
}

body.home-page .app-feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: #223047;
  font-size: 15px;
}

body.home-page .app-feature-list small {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

body.home-page .footer {
  width: var(--home-frame);
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(130px, 0.86fr)) minmax(210px, 1.15fr);
  gap: 32px;
  padding: 44px 44px 24px;
  background: #ffffff;
  border: 1px solid #dfeeee;
  border-top: 0;
  box-shadow: 0 22px 60px rgba(9, 50, 59, 0.09);
}

body.home-page .footer .brand-logo {
  width: 210px;
}

body.home-page .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

body.home-page .footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: #667085;
  background: #f2f7f7;
  border: 1px solid #e1eeee;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

body.home-page .footer-social svg {
  width: 15px;
  height: 15px;
}

body.home-page .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
  margin-top: 16px;
  color: #8a92a3;
  border-top: 1px solid #e7eeee;
  font-size: 12px;
  font-weight: 800;
}

body.home-page .footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

body.home-page .footer-bottom a {
  margin: 0;
  color: #8a92a3;
  font-size: 12px;
}

/* Mobile drawer + hospital responsive polish */
.mobile-menu-backdrop,
.mobile-drawer {
  display: none;
}

body.home-page .hospital-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(300px, 24vw);
  min-width: 230px;
  height: 190px;
  margin-left: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 124, 116, 0.13), transparent 56%),
    linear-gradient(135deg, rgba(238, 251, 249, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid #dfeeee;
  border-radius: 28px;
}

body.home-page .hospital-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background-image: radial-gradient(rgba(0, 124, 116, 0.16) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}

body.home-page .hospital-bed-illustration {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 132px;
  height: 92px;
  color: var(--home-teal);
  background: #ffffff;
  border: 1px solid #dfeeee;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(9, 50, 59, 0.12);
}

body.home-page .hospital-bed-illustration svg {
  width: 74px;
  height: 74px;
}

body.home-page .hospital-monitor,
body.home-page .hospital-shield,
body.home-page .hospital-oxygen {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #dfeeee;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(9, 50, 59, 0.1);
}

body.home-page .hospital-monitor {
  left: 18px;
  top: 18px;
  color: #0b7d75;
}

body.home-page .hospital-shield {
  right: 26px;
  top: 44px;
  color: #0fa77b;
}

body.home-page .hospital-oxygen {
  right: 18px;
  bottom: 24px;
  color: #0b9488;
}

body.home-page .hospital-monitor svg,
body.home-page .hospital-shield svg,
body.home-page .hospital-oxygen svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 761px) {
  body.home-page .hospital-heading {
    grid-template-columns: minmax(0, 1fr) auto minmax(230px, 300px);
    align-items: center;
  }

  body.home-page .hospital-heading .text-link {
    white-space: nowrap;
  }

  body.home-page .hospital-hero-visual {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  body.home-nav-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    pointer-events: none;
    background: rgba(13, 18, 32, 0.58);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .mobile-drawer {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    z-index: 81;
    display: flex;
    flex-direction: column;
    width: min(292px, calc(100vw - 54px));
    max-height: calc(100dvh - 32px);
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff;
    border: 1px solid #dfeeee;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 28px 70px rgba(9, 50, 59, 0.25);
    transform: translateX(calc(-100% - 34px));
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
  }

  body.home-nav-open .mobile-menu-backdrop {
    pointer-events: auto;
    opacity: 1;
  }

  body.home-nav-open .mobile-drawer {
    transform: translateX(0);
  }

  body.home-page .nav-links,
  body.home-nav-open .nav-links {
    display: none;
  }

  .mobile-drawer-logo {
    display: flex;
    align-items: center;
    min-height: 54px;
    margin-bottom: 12px;
  }

  .mobile-drawer-logo img {
    width: 178px;
    max-width: 100%;
  }

  .drawer-profile-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 10px;
    text-align: left;
    background: #f7fcfb;
    border: 1px solid #dfeeee;
    border-radius: 8px;
  }

  .drawer-profile-card > span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--home-teal);
    border-radius: 999px;
  }

  .drawer-profile-card > span svg {
    width: 22px;
    height: 22px;
  }

  .drawer-profile-card strong {
    color: #152238;
    font-size: 13px;
    line-height: 1.1;
  }

  .drawer-profile-card small {
    grid-column: 2;
    color: #667085;
    font-size: 9px;
    font-weight: 800;
  }

  .drawer-profile-card > svg {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 16px;
    height: 16px;
    color: var(--home-teal);
  }

  .drawer-section {
    display: grid;
    gap: 3px;
    padding: 16px 0 10px;
    border-bottom: 1px solid #e7eeee;
  }

  .drawer-section:last-child {
    border-bottom: 0;
  }

  .drawer-section h2 {
    margin: 0 0 7px;
    color: var(--home-teal);
    font-size: 9px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .drawer-section a,
  .drawer-logout {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 40px;
    padding: 0 8px;
    color: #1b2638;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
  }

  .drawer-section a.active {
    color: var(--home-teal);
    background: linear-gradient(90deg, #eaf8f6, #ffffff);
  }

  .drawer-section a svg,
  .drawer-logout svg {
    width: 19px;
    height: 19px;
    color: var(--home-teal);
  }

  .drawer-section a svg:last-child {
    width: 14px;
    height: 14px;
    color: #405064;
  }

  .drawer-section a em {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    color: var(--home-teal);
    background: #dff6f1;
    border-radius: 50%;
    font-size: 9px;
    font-style: normal;
  }

  .drawer-logout {
    margin-top: 6px;
    color: #ef4444;
    background: #fff2f2;
    border: 1px solid #ffe1e1;
  }

  .drawer-logout svg {
    color: #ef4444;
  }

  body.home-page .review-launch-card {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 70px;
  }

  body.home-page .app-banner {
    grid-template-columns: 0.92fr 1.05fr;
    gap: 10px;
    width: auto;
    max-width: none;
    min-height: 300px;
    margin: 10px 10px 0;
    padding: 16px 12px;
    border-radius: 12px;
  }

  body.home-page .app-copy {
    gap: 7px;
    align-self: center;
  }

  body.home-page .app-copy h2 {
    max-width: 120px;
    font-size: 21px;
  }

  body.home-page .app-copy > strong {
    font-size: 12px;
  }

  body.home-page .app-copy p {
    max-width: 128px;
    font-size: 8.8px;
    line-height: 1.45;
  }

  body.home-page .app-banner .store-buttons {
    gap: 6px;
    margin-top: 5px;
  }

  body.home-page .app-banner .store-buttons button {
    width: 118px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 6.8px;
    border-radius: 6px;
  }

  body.home-page .app-banner .store-buttons strong {
    font-size: 8px;
  }

  body.home-page .app-phone-large {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 122px;
    height: 220px;
    padding: 6px;
    border-radius: 23px;
  }

  body.home-page .app-phone-large .mini-screen {
    gap: 6px;
    padding: 18px 8px;
    border-radius: 18px;
  }

  body.home-page .phone-speaker {
    top: 6px;
    width: 42px;
    height: 10px;
  }

  body.home-page .app-phone-large img {
    width: 86px;
  }

  body.home-page .app-phone-large small {
    font-size: 7px;
  }

  body.home-page .phone-wave {
    height: 56px;
  }

  body.home-page .app-feature-list {
    grid-column: 1 / -1;
    gap: 0;
    margin-top: 4px;
  }

  body.home-page .app-feature-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    min-height: 43px;
    padding: 7px 0;
  }

  body.home-page .app-feature-list span {
    width: 30px;
    height: 30px;
  }

  body.home-page .app-feature-list svg {
    width: 15px;
    height: 15px;
  }

  body.home-page .app-feature-list strong {
    margin-bottom: 1px;
    font-size: 9.5px;
  }

  body.home-page .app-feature-list small {
    font-size: 7.6px;
  }

  body.home-page .footer {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 22px 18px 92px;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  body.home-page .footer-brand,
  body.home-page .newsletter {
    grid-column: 1 / -1;
  }

  body.home-page .footer .brand-logo {
    width: 160px;
  }

  body.home-page .footer p {
    max-width: 230px;
    font-size: 10.5px;
  }

  body.home-page .footer h3 {
    font-size: 12px;
  }

  body.home-page .footer a {
    font-size: 10px;
  }

  body.home-page .footer-social a {
    width: 28px;
    height: 28px;
  }

  body.home-page .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    font-size: 9.5px;
  }

  body.home-page .footer-bottom span:last-child {
    gap: 14px;
  }

  body.home-page .footer-bottom a {
    font-size: 9.5px;
  }
}

@media (max-width: 760px) {
  body.home-page .hospital-section {
    padding: 14px 10px 0;
  }

  body.home-page .hospital-heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 8px;
    margin-bottom: 10px;
    padding: 0;
  }

  body.home-page .hospital-heading .section-kicker {
    min-height: 26px;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 9px;
  }

  body.home-page .hospital-heading h2 {
    max-width: 205px;
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.05;
  }

  body.home-page .hospital-heading p {
    max-width: 205px;
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.5;
  }

  body.home-page .hospital-heading .text-link {
    min-height: 42px;
    margin-top: 48px;
    padding: 0 11px;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid #dfeeee;
    border-radius: 9px;
    box-shadow: 0 8px 20px rgba(9, 50, 59, 0.08);
  }

  body.home-page .hospital-hero-visual {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: min(150px, 40vw);
    min-width: 124px;
    height: 120px;
    margin: -18px 2px 0 0;
    border-radius: 20px;
  }

  body.home-page .hospital-hero-visual::before {
    inset: 12px;
    background-size: 8px 8px;
  }

  body.home-page .hospital-bed-illustration {
    width: 86px;
    height: 58px;
    border-radius: 12px;
  }

  body.home-page .hospital-bed-illustration svg {
    width: 48px;
    height: 48px;
  }

  body.home-page .hospital-monitor,
  body.home-page .hospital-shield,
  body.home-page .hospital-oxygen {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }

  body.home-page .hospital-monitor {
    left: 10px;
    top: 10px;
  }

  body.home-page .hospital-shield {
    right: 11px;
    top: 25px;
  }

  body.home-page .hospital-oxygen {
    right: 9px;
    bottom: 16px;
  }

  body.home-page .hospital-monitor svg,
  body.home-page .hospital-shield svg,
  body.home-page .hospital-oxygen svg {
    width: 16px;
    height: 16px;
  }

  body.home-page .hospital-shell {
    padding: 10px;
    border-radius: 12px;
  }

  body.home-page .hospital-status-grid {
    gap: 8px;
  }

  body.home-page .hospital-status-card {
    min-height: 136px;
    padding: 10px 8px;
  }

  body.home-page .hospital-search {
    margin-top: 12px;
  }
}

@media (max-width: 360px) {
  .mobile-drawer {
    left: 10px;
    width: calc(100vw - 38px);
    padding: 15px;
  }

  .mobile-drawer-logo img {
    width: 156px;
  }

  .drawer-section a,
  .drawer-logout {
    min-height: 38px;
    font-size: 11px;
  }

  body.home-page .hospital-heading {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.75fr);
  }

  body.home-page .hospital-heading h2,
  body.home-page .hospital-heading p {
    max-width: 188px;
  }

  body.home-page .hospital-heading .text-link {
    padding-inline: 9px;
    font-size: 8px;
  }

  body.home-page .hospital-hero-visual {
    min-width: 112px;
    height: 108px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.home-page .reviews-launch-section {
    width: 100%;
    padding-inline: 24px;
  }

  body.home-page .review-launch-card,
  body.home-page .app-banner,
  body.home-page .footer {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  body.home-page .app-banner {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
    gap: 22px;
    min-height: auto;
    padding: 34px;
  }

  body.home-page .app-copy h2 {
    max-width: 360px;
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  body.home-page .app-phone-large {
    width: 218px;
    height: 392px;
  }

  body.home-page .app-feature-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
  }

  body.home-page .app-feature-list li {
    min-height: 76px;
    padding: 14px;
    border: 1px solid #e5eeee;
    border-radius: 12px;
  }

  body.home-page .footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  body.home-page .footer-brand,
  body.home-page .newsletter,
  body.home-page .footer-bottom {
    grid-column: 1 / -1;
  }
}

/* Production responsive cleanup: shared pages */
body:not(.home-page):not(.medicine-page) .site-header {
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) auto;
  gap: clamp(10px, 1.4vw, 18px);
  width: 100%;
  max-width: min(100%, 1320px);
  min-height: 76px;
  padding-inline: clamp(14px, 3vw, 34px);
}

body:not(.home-page):not(.medicine-page) .brand {
  align-self: center;
  min-width: 0;
  padding-top: 0;
}

body:not(.home-page):not(.medicine-page) .brand-logo {
  width: clamp(145px, 12vw, 205px);
  max-height: 58px;
  transform: none;
}

body:not(.home-page):not(.medicine-page) .nav-links {
  min-width: 0;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

body:not(.home-page):not(.medicine-page) .nav-links a {
  min-height: 40px;
  padding-inline: clamp(8px, 0.8vw, 13px);
  white-space: nowrap;
  font-size: clamp(11px, 0.86vw, 13px);
}

body:not(.home-page):not(.medicine-page) .header-actions {
  min-width: 0;
}

body:not(.home-page):not(.medicine-page) .location-select,
body:not(.home-page):not(.medicine-page) .login-button {
  min-height: 44px;
  padding-inline: 14px;
  white-space: nowrap;
}

.services-main {
  width: 100%;
  max-width: min(100%, 1360px);
  margin-inline: auto;
}

.services-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 4vw, 64px);
  width: 100%;
  overflow: hidden;
}

.services-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5.1vw, 4.8rem);
  line-height: 1.08;
}

.mega-service-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

@media (max-width: 1120px) {
  body:not(.home-page):not(.medicine-page) .site-header {
    grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
  }

  body:not(.home-page):not(.medicine-page) .header-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }

  body:not(.home-page):not(.medicine-page) .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-hero {
    grid-template-columns: 1fr;
    padding-inline: clamp(18px, 4vw, 34px);
  }
}

@media (max-width: 760px) {
  body:not(.home-page):not(.medicine-page) .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px 12px;
  }

  body:not(.home-page):not(.medicine-page) .brand {
    justify-self: center;
  }

  body:not(.home-page):not(.medicine-page) .nav-links {
    width: 100%;
    padding-bottom: 4px;
  }

  body:not(.home-page):not(.medicine-page) .header-actions {
    width: 100%;
  }

  body:not(.home-page):not(.medicine-page) .location-select,
  body:not(.home-page):not(.medicine-page) .login-button {
    flex: 1 1 auto;
    min-width: 0;
  }

  .services-main {
    border-inline: 0;
  }

  .services-hero {
    padding: 28px 16px;
  }

  .services-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }
}

/* Home mobile cut fixes */
@media (max-width: 480px) {
  body.home-page .hospital-search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-page .hospital-search label {
    min-width: 0;
  }

  body.home-page .hospital-search select {
    min-width: 0;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10.5px;
  }

  body.home-page .hospital-search button {
    grid-column: 1 / -1;
  }

  body.home-page .app-banner {
    grid-template-columns: 1fr;
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 12px 10px 0;
    padding: 16px;
  }

  body.home-page .app-copy h2 {
    max-width: none;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  body.home-page .app-copy p {
    max-width: none;
    font-size: 11px;
  }

  body.home-page .app-banner .store-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .app-banner .store-buttons button {
    width: 100%;
  }

  body.home-page .app-phone-large {
    grid-column: auto;
    grid-row: auto;
    width: 132px;
    height: 238px;
    justify-self: center;
  }

  body.home-page .app-feature-list {
    grid-column: auto;
  }

  body.home-page .app-feature-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  body.home-page .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 16px;
  }

  body.home-page .newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 340px) {
  body.home-page .hospital-search {
    grid-template-columns: 1fr;
  }

  body.home-page .hospital-search select {
    font-size: 12px;
    padding-inline: 10px;
  }

  body.home-page .footer {
    grid-template-columns: 1fr;
  }
}

/* Medicine store commerce layout */
body.medicine-page .store-product-card {
  cursor: pointer;
}

.medicine-mrp {
  color: #8a92a3;
  font-size: 12px;
  font-weight: 800;
  text-decoration: line-through;
}

.medicine-discount {
  color: var(--medicine);
  font-size: 12px;
  font-weight: 950;
}

.medicine-launch-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  background: rgba(10, 20, 32, 0.46);
  opacity: 0;
  transition: opacity 180ms ease;
}

.medicine-launch-modal.show {
  pointer-events: auto;
  opacity: 1;
}

.medicine-launch-dialog {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  padding: 26px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dfeeee;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(9, 50, 59, 0.25);
}

.medicine-launch-dialog .store-product-icon {
  justify-self: center;
}

.medicine-launch-dialog h2 {
  margin: 0;
  color: #101525;
  font-size: 24px;
  line-height: 1.15;
}

.medicine-launch-dialog p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.medicine-launch-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #101525;
  background: #f4f8f8;
  border: 1px solid #e1eeee;
  border-radius: 50%;
}

@media (min-width: 1081px) {
  body.medicine-page .site-header {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  }

  body.medicine-page .store-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

@media (max-width: 900px) {
  body.medicine-page .site-header {
    grid-template-columns: minmax(145px, auto) auto;
    align-items: center;
    min-height: 72px;
  }

  body.medicine-page .brand {
    justify-self: start;
    padding-top: 0;
  }

  body.medicine-page .brand-logo {
    width: min(170px, 45vw);
    transform: none;
  }

  body.medicine-page .nav-links {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 2px;
  }

  body.medicine-page .header-actions {
    justify-self: end;
    width: auto;
  }

  body.medicine-page .location-select {
    display: none;
  }

  body.medicine-page .medicine-admin-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  body.medicine-page .store-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 12px 12px;
  }

  body.medicine-page .store-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  body.medicine-page .store-hero p {
    font-size: 13px;
  }

  .store-hero-visual {
    min-height: 150px;
    order: -1;
  }

  .store-hero-visual img {
    max-height: 190px;
    object-fit: contain;
  }

  body.medicine-page .store-search {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 8px;
  }

  body.medicine-page .store-search label,
  body.medicine-page .store-search input,
  body.medicine-page .store-search select,
  .medicine-search-button {
    min-height: 46px;
    font-size: 14px;
  }

  .store-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-benefits span {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e2eaeb;
    border-radius: 8px;
  }

  .store-benefits svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .store-benefits strong {
    font-size: 10px;
  }

  .store-benefits small {
    font-size: 9px;
  }

  body.medicine-page .store-layout {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    position: static;
  }

  body.medicine-page .store-category-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  body.medicine-page .store-category-list button {
    display: grid;
    justify-items: center;
    min-height: 82px;
    padding: 8px 4px;
    text-align: center;
    font-size: 10px;
    border: 1px solid #e2eaeb;
  }

  body.medicine-page .store-category-list button svg {
    width: 24px;
    height: 24px;
  }

  body.medicine-page .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.medicine-page .store-products-section,
  body.medicine-page .store-sidebar,
  body.medicine-page .cart-panel {
    padding: 12px;
  }

  body.medicine-page .store-products-section h2 {
    font-size: 20px;
  }

  body.medicine-page .store-product-card {
    min-height: 0;
    gap: 8px;
    padding: 10px;
  }

  body.medicine-page .store-product-icon {
    width: 50px;
    height: 50px;
  }

  body.medicine-page .store-product-copy span,
  body.medicine-page .store-product-copy small {
    font-size: 10px;
  }

  body.medicine-page .store-product-copy h3 {
    min-height: 38px;
    margin: 6px 0 4px;
    font-size: 12px;
    line-height: 1.22;
  }

  body.medicine-page .store-product-bottom {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body.medicine-page .store-product-bottom strong {
    font-size: 14px;
  }

  .medicine-mrp,
  .medicine-discount {
    font-size: 9px;
  }

  .product-stepper {
    display: none;
  }

  body.medicine-page .store-product-bottom button[data-add-product] {
    min-height: 32px;
    min-width: 0;
    font-size: 10px;
  }

  body.medicine-page .cart-panel {
    display: none;
  }
}

@media (max-width: 360px) {
  body.medicine-page .store-category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.medicine-page .store-product-grid {
    gap: 8px;
  }
}

/* Hospital bed support board */
body.home-page .hospital-board-section {
  width: var(--home-frame);
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 0 20px;
}

body.home-page .hospital-board {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfeeee;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(9, 50, 59, 0.09);
}

body.home-page .hospital-board .hospital-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body.home-page .hospital-board .hospital-status-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon copy soon"
    "icon link link";
  align-items: center;
  gap: 12px 22px;
  min-height: 164px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid #bddfdc;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(9, 50, 59, 0.08);
}

body.home-page .hospital-board .hospital-status-card.urgent {
  border-color: #f4d9b5;
}

body.home-page .hospital-board .hospital-icon {
  grid-area: icon;
  width: 68px;
  height: 68px;
  color: #008a80;
  background: #e8f8f6;
  border-radius: 18px;
}

body.home-page .hospital-board .hospital-icon.orange {
  color: #ff8a1e;
  background: #fff1df;
}

body.home-page .hospital-board .hospital-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.4;
}

body.home-page .hospital-board .hospital-status-card div {
  grid-area: copy;
  min-width: 0;
}

body.home-page .hospital-board .hospital-status-card strong {
  display: block;
  max-width: 230px;
  color: #070a1c;
  font-size: clamp(1.18rem, 1.7vw, 1.58rem);
  line-height: 1.13;
  font-weight: 950;
}

body.home-page .hospital-board .hospital-status-card small {
  display: block;
  margin-top: 10px;
  color: #60657a;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

body.home-page .hospital-board .hospital-status-card b {
  grid-area: soon;
  color: #070a1c;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
  text-align: right;
}

body.home-page .hospital-board .hospital-status-card em {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: #00a26f;
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
}

body.home-page .hospital-board .hospital-status-card.urgent em {
  color: #f08a18;
}

body.home-page .hospital-board .hospital-status-card em svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

body.home-page .hospital-board .hospital-search {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 1.05fr 1fr;
  align-items: end;
  gap: clamp(16px, 2vw, 32px);
  margin: 0;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid #e1e9ed;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(9, 50, 59, 0.06);
}

body.home-page .hospital-board .hospital-search label {
  display: grid;
  gap: 10px;
}

body.home-page .hospital-board .hospital-search label span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #008a80;
  font-size: 14px;
  font-weight: 950;
}

body.home-page .hospital-board .hospital-search label span svg {
  width: 18px;
  height: 18px;
}

body.home-page .hospital-board .hospital-search select {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  color: #111525;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 950;
  outline: 0;
}

body.home-page .hospital-board .hospital-search .purple-button {
  min-height: 58px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #009687, #00786f);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 16px 30px rgba(0, 124, 116, 0.2);
}

body.home-page .hospital-board .hospital-search .purple-button svg {
  width: 22px;
  height: 22px;
}

body.home-page .hospital-board .hospital-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

body.home-page .hospital-board .hospital-card {
  display: grid;
  gap: 24px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #e1e9ed;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(9, 50, 59, 0.08);
}

body.home-page .hospital-board .hospital-card-head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

body.home-page .hospital-board .hospital-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

body.home-page .hospital-board .hospital-card-head strong {
  display: block;
  color: #111525;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.15;
  font-weight: 950;
}

body.home-page .hospital-board .hospital-card-head small {
  display: block;
  margin-top: 8px;
  color: #5f637a;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

body.home-page .hospital-board .live-pill.soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 13px;
  color: #b66a0e;
  background: #fff6e8;
  border: 1px solid #f4d9b5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

body.home-page .hospital-board .live-pill.soon svg {
  width: 14px;
  height: 14px;
}

body.home-page .hospital-board .bed-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.home-page .hospital-board .bed-metrics span {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px 16px;
  color: #35394e;
  background: #f4fbfa;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}

body.home-page .hospital-board .bed-metrics b {
  color: #050819;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

body.home-page .hospital-board .availability-bar {
  height: 10px;
  overflow: hidden;
  background: #eeeef8;
  border-radius: 999px;
}

body.home-page .hospital-board .availability-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #12b886, #008a80);
  border-radius: inherit;
}

body.home-page .hospital-board .availability-label {
  margin-top: -14px;
  color: #12a978;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

body.home-page .hospital-board .book-bed {
  min-height: 58px;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, #008f83, #00766e);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 124, 116, 0.18);
  font-size: 18px;
  font-weight: 950;
}

@media (max-width: 1180px) {
  body.home-page .hospital-board .hospital-status-grid,
  body.home-page .hospital-board .hospital-list {
    grid-template-columns: 1fr;
  }

  body.home-page .hospital-board .hospital-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.home-page .hospital-board-section {
    width: min(100%, calc(100% - 20px));
    padding: 18px 0 12px;
  }

  body.home-page .hospital-board {
    gap: 16px;
    padding: 14px;
    border-radius: 18px;
  }

  body.home-page .hospital-board .hospital-status-grid,
  body.home-page .hospital-board .hospital-list,
  body.home-page .hospital-board .hospital-search {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.home-page .hospital-board .hospital-status-card {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: 118px;
    padding: 16px;
    border-radius: 14px;
  }

  body.home-page .hospital-board .hospital-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  body.home-page .hospital-board .hospital-icon svg {
    width: 24px;
    height: 24px;
  }

  body.home-page .hospital-board .hospital-status-card strong {
    font-size: 15px;
  }

  body.home-page .hospital-board .hospital-status-card small {
    margin-top: 5px;
    font-size: 12px;
  }

  body.home-page .hospital-board .hospital-status-card b {
    font-size: 28px;
  }

  body.home-page .hospital-board .hospital-status-card em {
    justify-self: start;
    font-size: 12px;
  }

  body.home-page .hospital-board .hospital-search {
    padding: 14px;
    border-radius: 14px;
  }

  body.home-page .hospital-board .hospital-search select,
  body.home-page .hospital-board .hospital-search .purple-button {
    min-height: 48px;
    font-size: 15px;
  }

  body.home-page .hospital-board .hospital-card {
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
  }

  body.home-page .hospital-board .hospital-card-head {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
  }

  body.home-page .hospital-board .hospital-logo {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  body.home-page .hospital-board .hospital-card-head strong {
    font-size: 16px;
  }

  body.home-page .hospital-board .hospital-card-head small,
  body.home-page .hospital-board .live-pill.soon {
    font-size: 11px;
  }

  body.home-page .hospital-board .bed-metrics {
    gap: 8px;
  }

  body.home-page .hospital-board .bed-metrics span {
    min-height: 62px;
    padding: 11px;
    font-size: 11px;
  }

  body.home-page .hospital-board .bed-metrics b {
    font-size: 22px;
  }

  body.home-page .hospital-board .availability-label {
    margin-top: -8px;
    font-size: 13px;
  }

  body.home-page .hospital-board .book-bed {
    min-height: 48px;
    font-size: 15px;
  }
}

/* Online consultation board */
body.home-page .consultation-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(360px, 0.78fr) minmax(285px, 0.42fr) minmax(210px, 0.32fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: var(--home-frame);
  max-width: 1320px;
  min-height: 430px;
  margin: 34px auto 0;
  padding: 52px clamp(34px, 5vw, 70px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 1% 88%, rgba(15, 183, 166, 0.14), transparent 26%),
    radial-gradient(circle at 78% 8%, rgba(0, 124, 116, 0.08), transparent 28%),
    linear-gradient(135deg, #eefbf9 0%, #ffffff 54%, #f3fbfa 100%);
  border: 1px solid #dfeeee;
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(9, 50, 59, 0.07);
}

body.home-page .consultation-board::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 124, 116, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(0, 124, 116, 0.025),
    0 0 0 86px rgba(0, 124, 116, 0.018);
}

body.home-page .consultation-board::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 76px;
  width: 100px;
  height: 110px;
  opacity: 0.42;
  background-image: radial-gradient(#0fb7a6 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

body.home-page .consultation-phone {
  position: relative;
  z-index: 1;
  align-self: end;
  width: clamp(190px, 18vw, 260px);
  height: clamp(318px, 30vw, 420px);
  margin: 0 0 -22px;
  overflow: hidden;
  background: #0b6f68;
  border: 12px solid #08776f;
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 24px 55px rgba(0, 124, 116, 0.22);
  transform: rotate(-7deg);
}

body.home-page .consultation-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .consultation-board .call-actions {
  left: 22px;
  right: 22px;
  bottom: 28px;
  gap: 14px;
}

body.home-page .consultation-board .call-actions span {
  width: 44px;
  height: 44px;
  background: #19b985;
  box-shadow: 0 8px 20px rgba(0, 124, 116, 0.16);
}

body.home-page .consultation-board .call-actions span:first-child {
  color: #009687;
  background: #ffffff;
}

body.home-page .consultation-board .call-actions .end {
  background: #ff332f;
}

body.home-page .consultation-board .consult-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

body.home-page .consultation-board .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-height: 36px;
  padding: 0 16px;
  color: #008a80;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #d8eeee;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(9, 50, 59, 0.06);
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 950;
  text-transform: uppercase;
}

body.home-page .consultation-board .eyebrow svg {
  width: 18px;
  height: 18px;
}

body.home-page .consultation-board .consult-copy h2 {
  max-width: 600px;
  margin: 0;
  color: #09091c;
  font-size: clamp(2.8rem, 4.8vw, 4.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

body.home-page .consultation-board .consult-copy p {
  max-width: 540px;
  margin: 0;
  color: #676b80;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.58;
  font-weight: 760;
}

body.home-page .consult-trust-row {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 360px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #e1e9ed;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(9, 50, 59, 0.07);
}

body.home-page .consult-trust-row span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px 18px;
}

body.home-page .consult-trust-row span + span {
  border-left: 1px solid #e7eeee;
}

body.home-page .consult-trust-row svg {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #008a80;
  background: #e4f7f4;
  border-radius: 12px;
}

body.home-page .consult-trust-row strong {
  color: #3f4658;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 950;
}

body.home-page .consultation-board .consult-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 0 0 0 34px;
  margin: 0;
  list-style: none;
  border-left: 1px solid #dfe7ea;
}

body.home-page .consultation-board .consult-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 12px 0;
  border-bottom: 1px solid #dfe7ea;
}

body.home-page .consultation-board .consult-list li:last-child {
  border-bottom: 0;
}

body.home-page .consultation-board .consult-list li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, #009b8e, #00796f);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 124, 116, 0.18);
}

body.home-page .consultation-board .consult-list svg {
  width: 22px;
  height: 22px;
  color: currentColor;
}

body.home-page .consultation-board .consult-list strong {
  display: block;
  color: #121525;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

body.home-page .consultation-board .consult-list small {
  display: block;
  margin-top: 6px;
  color: #62667b;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

body.home-page .consultation-board .consult-list em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 0 8px;
  color: #008a80;
  background: #dff7f3;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  vertical-align: middle;
}

body.home-page .consult-action-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
}

body.home-page .consult-action-panel .black-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  min-height: 72px;
  padding: 0 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #009b8e, #00786f);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 124, 116, 0.2);
  font-size: 18px;
  font-weight: 950;
}

body.home-page .consult-action-panel .black-button span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #008a80;
  background: #ffffff;
  border-radius: 999px;
}

body.home-page .consult-action-panel small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #85899a;
  font-size: 15px;
  font-weight: 850;
}

body.home-page .consult-action-panel small svg {
  width: 18px;
  height: 18px;
  color: #008a80;
}

body.home-page .consult-feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--home-frame);
  max-width: 1320px;
  min-height: 210px;
  margin: 26px auto 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfeeee;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(9, 50, 59, 0.08);
}

body.home-page .consult-feature-band article {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 10px 22px;
  align-content: center;
  min-height: 210px;
  padding: 34px 44px;
  border-right: 1px solid #dfe7ea;
}

body.home-page .consult-feature-band article:last-child {
  border-right: 0;
}

body.home-page .consult-feature-band .stat-icon {
  grid-row: 1 / span 3;
  width: 76px;
  height: 76px;
  border-radius: 999px;
}

body.home-page .consult-feature-band strong {
  color: #121525;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
  font-weight: 950;
}

body.home-page .consult-feature-band small {
  max-width: 170px;
  color: #5f6378;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 760;
}

body.home-page .consult-feature-band em {
  position: absolute;
  right: 32px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 46px;
  color: #008a80;
  background: #e7f8f5;
  border-radius: 999px;
}

body.home-page .consult-feature-band article:nth-child(3) em {
  color: #3067ff;
  background: #edf2ff;
}

body.home-page .consult-feature-band article:nth-child(4) em {
  color: #ff8a1e;
  background: #fff4e9;
}

body.home-page .consult-feature-band em svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

@media (max-width: 1180px) {
  body.home-page .consultation-board {
    grid-template-columns: minmax(210px, 0.44fr) minmax(0, 1fr);
    gap: 28px;
    padding-bottom: 28px;
  }

  body.home-page .consultation-board .consult-list,
  body.home-page .consult-action-panel {
    grid-column: 2;
  }

  body.home-page .consult-feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .consult-feature-band article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  body.home-page .consultation-board,
  body.home-page .consult-feature-band {
    display: grid !important;
  }

  body.home-page .consultation-board {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 20px));
    min-height: 0;
    gap: 18px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  body.home-page .consultation-board::before,
  body.home-page .consultation-board::after {
    display: none;
  }

  body.home-page .consultation-phone {
    justify-self: center;
    width: 180px;
    height: 250px;
    margin: 0;
    border-width: 8px;
    border-radius: 34px;
    transform: rotate(-4deg);
  }

  body.home-page .consultation-board .call-actions {
    bottom: 18px;
  }

  body.home-page .consultation-board .call-actions span {
    width: 34px;
    height: 34px;
  }

  body.home-page .consultation-board .eyebrow {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  body.home-page .consultation-board .consult-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  body.home-page .consultation-board .consult-copy p {
    font-size: 15px;
  }

  body.home-page .consult-trust-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  body.home-page .consult-trust-row span + span {
    border-top: 1px solid #e7eeee;
    border-left: 0;
  }

  body.home-page .consultation-board .consult-list,
  body.home-page .consultation-board .consult-action-panel {
    grid-column: auto;
  }

  body.home-page .consultation-board .consult-list {
    padding-left: 0;
    border-left: 0;
  }

  body.home-page .consultation-board .consult-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 72px;
    gap: 12px;
  }

  body.home-page .consultation-board .consult-list li > span {
    width: 40px;
    height: 40px;
  }

  body.home-page .consultation-board .consult-list strong {
    font-size: 14px;
  }

  body.home-page .consultation-board .consult-list small {
    font-size: 12px;
  }

  body.home-page .consult-action-panel .black-button {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    font-size: 15px;
  }

  body.home-page .consult-action-panel .black-button span {
    width: 36px;
    height: 36px;
  }

  body.home-page .consult-feature-band {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 20px));
    min-height: 0;
    margin-top: 14px;
    border-radius: 18px;
  }

  body.home-page .consult-feature-band article {
    grid-template-columns: 58px minmax(0, 1fr) 52px;
    min-height: 104px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid #dfe7ea;
  }

  body.home-page .consult-feature-band article:last-child {
    border-bottom: 0;
  }

  body.home-page .consult-feature-band .stat-icon {
    width: 52px;
    height: 52px;
  }

  body.home-page .consult-feature-band strong {
    font-size: 18px;
  }

  body.home-page .consult-feature-band small {
    font-size: 13px;
  }

  body.home-page .consult-feature-band em {
    position: static;
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: end;
    width: 44px;
    height: 36px;
  }
}

/* Doctors page premium search hero */
body.doctors-page {
  background: #f7fbfb;
}

body.doctors-page .site-header {
  width: min(100%, calc(100% - 24px));
  max-width: 1500px;
  min-height: 110px;
  margin: 12px auto 0;
  padding: 0 clamp(28px, 3.5vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfeeee;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 18px 48px rgba(9, 50, 59, 0.06);
}

body.doctors-page .brand-logo {
  width: clamp(188px, 15vw, 238px);
}

body.doctors-page .nav-links {
  gap: clamp(14px, 1.7vw, 30px);
}

body.doctors-page .nav-links a {
  min-height: 48px;
  padding: 0 16px;
  color: #080b1d;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 950;
}

body.doctors-page .nav-links a.active {
  color: #007c74;
  background: #e6f7f4;
  box-shadow: none;
}

body.doctors-page .location-select {
  min-height: 52px;
  padding: 0 18px;
  background: #ffffff;
  border-color: #dfe6ef;
  border-radius: 13px;
}

body.doctors-page .doctors-user-button {
  width: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #009c8f, #00776e);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 124, 116, 0.2);
}

body.doctors-page main {
  max-width: 1500px;
}

body.doctors-page .doctors-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  grid-template-areas:
    "copy art"
    "search search"
    "secure secure";
  gap: 22px 40px;
  width: min(100%, calc(100% - 24px));
  max-width: 1500px;
  min-height: 750px;
  margin: 0 auto 34px;
  padding: clamp(54px, 5vw, 72px) clamp(48px, 6vw, 86px) 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 28%, rgba(0, 124, 116, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fdfc 0%, #ffffff 48%, #f5fbfa 100%);
  border: 1px solid #dfeeee;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 22px 58px rgba(9, 50, 59, 0.07);
}

body.doctors-page .doctors-page-hero::after {
  content: "";
  position: absolute;
  right: 78px;
  top: 70px;
  width: 120px;
  height: 180px;
  opacity: 0.26;
  background-image: radial-gradient(#0fb7a6 1.2px, transparent 1.2px);
  background-size: 14px 14px;
}

body.doctors-page .doctors-hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 26px;
  max-width: 820px;
}

body.doctors-page .doctors-hero-copy .hero-trust {
  justify-self: start;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  color: #007c74;
  background: rgba(234, 248, 247, 0.94);
  border: 1px solid #d8eeee;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(9, 50, 59, 0.05);
  font-size: 15px;
  font-weight: 950;
}

body.doctors-page .doctors-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #09091c;
  font-size: clamp(3.5rem, 6vw, 6.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

body.doctors-page .doctors-hero-copy p {
  max-width: 740px;
  margin: 0;
  color: #676b80;
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  line-height: 1.62;
  font-weight: 760;
}

body.doctors-page .doctors-hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 840px;
}

body.doctors-page .doctors-hero-features span {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

body.doctors-page .doctors-hero-features svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  padding: 13px;
  color: #008a80;
  background: #e4f7f4;
  border-radius: 999px;
}

body.doctors-page .doctors-hero-features strong {
  color: #007c74;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

body.doctors-page .doctors-hero-features small {
  color: #667085;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

body.doctors-page .doctors-hero-art {
  grid-area: art;
  position: relative;
  z-index: 2;
  min-height: 450px;
}

body.doctors-page .doctor-blob {
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: min(520px, 100%);
  height: 430px;
  background:
    radial-gradient(circle at 52% 30%, rgba(0, 124, 116, 0.14), transparent 46%),
    #d9f1ec;
  border-radius: 42% 28% 38% 44%;
  transform: rotate(7deg);
}

body.doctors-page .doctors-hero-art > img {
  position: absolute;
  right: 70px;
  bottom: 0;
  z-index: 2;
  width: min(420px, 74%);
  max-height: 470px;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  filter: drop-shadow(0 24px 36px rgba(9, 50, 59, 0.16));
}

body.doctors-page .doctor-float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 14px 16px;
  color: #121525;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e4ecef;
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(9, 50, 59, 0.12);
  backdrop-filter: blur(12px);
}

body.doctors-page .doctor-float-card strong {
  color: #007c74;
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
}

body.doctors-page .doctor-float-card small {
  color: #242a3c;
  font-size: 11px;
  font-weight: 850;
}

body.doctors-page .doctor-float-card svg {
  width: 24px;
  height: 24px;
  color: #008a80;
}

body.doctors-page .doctor-float-card.patients {
  left: 8px;
  top: 86px;
  grid-template-columns: auto auto;
  align-items: center;
}

body.doctors-page .doctor-float-card.patients small {
  grid-column: 1 / -1;
}

body.doctors-page .mini-avatars {
  display: flex;
}

body.doctors-page .mini-avatars img {
  width: 24px;
  height: 24px;
  margin-right: -7px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
}

body.doctors-page .doctor-float-card.rating {
  left: -6px;
  top: 210px;
  grid-template-columns: 28px auto;
  align-items: center;
}

body.doctors-page .doctor-float-card.rating small,
body.doctors-page .doctor-float-card.support small {
  grid-column: 1 / -1;
}

body.doctors-page .doctor-float-card.support {
  left: -18px;
  top: 330px;
  grid-template-columns: 28px auto;
  align-items: center;
  min-width: 110px;
}

body.doctors-page .doctors-page-hero .page-search {
  grid-area: search;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(230px, 0.65fr) minmax(250px, 0.75fr) minmax(220px, 0.38fr);
  gap: 0;
  width: min(100%, 1310px);
  max-width: none;
  margin: 12px auto 0;
  padding: 20px 26px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e2eaee;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(9, 50, 59, 0.09);
  backdrop-filter: blur(16px);
}

body.doctors-page .doctors-page-hero .search-field {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0 24px;
  background: transparent;
  border: 0;
  border-right: 1px solid #e2e8ef;
  border-radius: 0;
}

body.doctors-page .doctors-page-hero .search-field svg {
  width: 24px;
  height: 24px;
  color: #008a80;
}

body.doctors-page .field-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

body.doctors-page .field-copy strong {
  color: #60657a;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

body.doctors-page .field-copy input,
body.doctors-page .field-copy select {
  min-height: 28px;
  color: #0a0d20;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 950;
}

body.doctors-page .field-copy input::placeholder {
  color: #8a8e9d;
}

body.doctors-page .doctors-page-hero .page-search .black-button {
  align-self: center;
  justify-self: stretch;
  min-height: 74px;
  margin-left: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #009b8e, #00766e);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 124, 116, 0.2);
  font-size: 18px;
  font-weight: 950;
}

body.doctors-page .doctors-popular-searches {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin: 16px -26px 0;
  padding: 0 26px;
  background: #f9fbff;
  border-top: 1px solid #edf1f5;
}

body.doctors-page .doctors-popular-searches strong {
  color: #151827;
  font-size: 13px;
  font-weight: 950;
}

body.doctors-page .doctors-popular-searches button {
  min-height: 34px;
  padding: 0 18px;
  color: #1c2133;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: none;
}

body.doctors-page .doctors-popular-searches button:last-child {
  color: #007c74;
  border-color: transparent;
  background: transparent;
}

body.doctors-page .doctors-secure-note {
  grid-area: secure;
  z-index: 3;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  color: #707586;
  font-size: 14px;
  font-weight: 850;
}

body.doctors-page .doctors-secure-note svg {
  width: 18px;
  height: 18px;
  color: #008a80;
}

body.doctors-page .doctors-secure-note b {
  color: #a4a8b5;
}

@media (max-width: 1180px) {
  body.doctors-page .doctors-page-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "copy"
      "search"
      "secure";
  }

  body.doctors-page .doctors-hero-art {
    min-height: 390px;
    order: -1;
  }

  body.doctors-page .doctors-hero-art > img {
    right: 50%;
    width: min(360px, 58%);
    transform: translateX(50%);
  }

  body.doctors-page .doctor-blob {
    right: 50%;
    width: min(520px, 86%);
    transform: translateX(50%) rotate(7deg);
  }

  body.doctors-page .doctor-float-card.patients {
    left: 10%;
  }

  body.doctors-page .doctor-float-card.rating {
    left: 8%;
  }

  body.doctors-page .doctor-float-card.support {
    left: 12%;
  }

  body.doctors-page .doctors-page-hero .page-search {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  body.doctors-page .doctors-page-hero .page-search .black-button {
    grid-column: 1 / -1;
    margin: 16px 0 0;
  }
}

@media (max-width: 760px) {
  body.doctors-page .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 12px 16px;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  body.doctors-page .brand-logo {
    width: min(180px, 44vw);
  }

  body.doctors-page .nav-links {
    display: none;
  }

  body.doctors-page .location-select {
    min-height: 44px;
    max-width: 160px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.doctors-page .doctors-user-button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  body.doctors-page .doctors-page-hero {
    width: min(100%, calc(100% - 20px));
    min-height: 0;
    margin-top: 10px;
    padding: 18px;
    border: 1px solid #dfeeee;
    border-radius: 18px;
  }

  body.doctors-page .doctors-page-hero::after {
    display: none;
  }

  body.doctors-page .doctors-hero-copy {
    gap: 14px;
  }

  body.doctors-page .doctors-hero-copy .hero-trust {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  body.doctors-page .doctors-hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  body.doctors-page .doctors-hero-copy p {
    font-size: 15px;
  }

  body.doctors-page .doctors-hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.doctors-page .doctors-hero-features span {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
  }

  body.doctors-page .doctors-hero-features svg {
    width: 36px;
    height: 36px;
    padding: 9px;
  }

  body.doctors-page .doctors-hero-features strong {
    font-size: 11px;
  }

  body.doctors-page .doctors-hero-features small {
    font-size: 10px;
  }

  body.doctors-page .doctors-hero-art {
    min-height: 280px;
  }

  body.doctors-page .doctor-blob {
    height: 250px;
  }

  body.doctors-page .doctors-hero-art > img {
    width: min(240px, 72%);
    max-height: 280px;
  }

  body.doctors-page .doctor-float-card {
    min-width: 94px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  body.doctors-page .doctor-float-card strong {
    font-size: 13px;
  }

  body.doctors-page .doctor-float-card small {
    font-size: 9px;
  }

  body.doctors-page .doctor-float-card.patients {
    left: 2px;
    top: 28px;
  }

  body.doctors-page .doctor-float-card.rating {
    left: 2px;
    top: 118px;
  }

  body.doctors-page .doctor-float-card.support {
    left: 12px;
    top: 202px;
  }

  body.doctors-page .doctors-page-hero .page-search {
    grid-template-columns: 1fr;
    margin-top: 4px;
    padding: 12px;
    border-radius: 14px;
  }

  body.doctors-page .doctors-page-hero .search-field {
    min-height: 56px;
    padding: 0 10px;
    border-right: 0;
    border-bottom: 1px solid #edf1f5;
  }

  body.doctors-page .field-copy strong {
    font-size: 11px;
  }

  body.doctors-page .field-copy input,
  body.doctors-page .field-copy select {
    font-size: 16px;
  }

  body.doctors-page .doctors-page-hero .page-search .black-button {
    min-height: 52px;
    margin: 12px 0 0;
    font-size: 15px;
  }

  body.doctors-page .doctors-popular-searches {
    align-items: flex-start;
    margin: 12px -12px 0;
    padding: 12px;
  }

  body.doctors-page .doctors-popular-searches button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  body.doctors-page .doctors-secure-note {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
  }
}
