:root {
  --navy: #023881;
  --blue: #155bd8;
  --green: #10a254;
  --green-dark: #078743;
  --text: #16243a;
  --muted: #61708a;
  --soft: #f4f8ff;
  --border: #dce8f5;
  --white: #ffffff;
  --shadow: 0 16px 34px rgba(2, 56, 129, 0.08);
  --shadow-strong: 0 24px 56px rgba(2, 56, 129, 0.14);
  --whatsapp-icon: url("assets/whatsapp-logo/whatsapp-button-clean.png");
  --call-icon: url("assets/whatsapp-logo/call-button-clean.png");
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.top-strip {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white);
}

.top-strip-btn {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.top-strip-btn strong {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.top-wa-icon,
.wa-icon,
.bottom-action-wa {
  background: transparent var(--whatsapp-icon) center / contain no-repeat;
}

.top-wa-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-block;
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-text,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(2, 56, 129, 0.16);
}

.brand-copy,
.footer-brand span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.05;
  font-weight: 900;
}

.brand-copy small,
.footer-brand small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: #172033;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--navy);
}

.nav-actions,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav {
  display: none;
}

.mobile-page-menu {
  display: none;
}

.nav-wa,
.nav-call,
.nav-free-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
}

.nav-wa {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(18, 168, 82, 0.22);
}

.nav-call {
  color: var(--navy);
  background: var(--white);
}

.nav-wa::before,
.nav-call::before,
.nav-free-call::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-wa::before {
  background-image: var(--whatsapp-icon);
}

.nav-call::before,
.nav-free-call::before {
  background-image: var(--call-icon);
}

.mobile-nav-icon,
.mobile-menu-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: transparent;
}

.mobile-nav-icon img {
  width: 30px;
  height: 30px;
}

.mobile-menu-btn {
  align-content: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-breadcrumb {
  display: none;
}

@media (max-width: 900px) {
  .mobile-page-menu:not([hidden]) {
    width: min(720px, calc(100% - 24px));
    max-height: min(74vh, 560px);
    display: grid;
    gap: 0;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: var(--white);
    padding: 0;
    box-shadow: 0 18px 36px rgba(2, 56, 129, 0.16);
    overflow-y: auto;
  }

  .mobile-page-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: var(--white);
    color: var(--navy);
    padding: 0 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-page-menu a:first-child {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-page-menu a:hover {
    background: #edf6ff;
    color: var(--blue);
  }

  .mobile-page-menu a:first-child:hover {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-nav-icon {
    display: none;
  }
}

.section-kicker {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cbd9ea;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--navy);
  padding: 9px 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-heading {
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  margin-top: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 12px;
}

.wa-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.wa-btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 36px rgba(18, 168, 82, 0.22);
}

.wa-btn-light {
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cbd9ea;
}

.compliance-hero {
  padding: 56px 0 64px;
  background: linear-gradient(135deg, #f4f8ff, #ffffff 52%, #eefaf4);
}

.compliance-hero-grid {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
}

.compliance-hero h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  margin-top: 16px;
}

.hero-subheadline {
  max-width: 760px;
  color: #33425d;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
  margin-top: 20px;
}

.visible-disclosure {
  max-width: 820px;
  margin-top: 20px;
  border: 2px solid rgba(2, 56, 129, 0.18);
  border-left: 6px solid var(--green);
  border-radius: 12px;
  background: var(--white);
  color: #182942;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.visible-disclosure strong {
  color: var(--navy);
}

.compliance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.compliance-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid #d6e3f2;
  border-radius: 14px;
  background: #dfe9f5;
  box-shadow: var(--shadow-strong);
}

.compliance-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.12);
  transform-origin: center bottom;
}

.compliance-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  height: 96px;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.92), rgba(244, 248, 255, 0.52), rgba(244, 248, 255, 0));
  backdrop-filter: blur(10px);
}

.compliance-hero-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #263550;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.compliance-band,
.subpage-section,
.legal-band {
  padding: 70px 0;
  background: var(--white);
}

.compliance-band-soft,
.subpage-section-alt,
.legal-band-alt {
  background: var(--soft);
}

.compliance-split {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: start;
  margin: 0 auto;
}

.compliance-heading-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.compliance-heading-left h2 {
  max-width: 440px;
}

.compliance-copy-box,
.transparency-card,
.coordination-form,
.content-card,
.legal-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compliance-copy-box,
.content-card,
.legal-card {
  padding: 24px;
}

.compliance-copy-box p,
.transparency-card p,
.contact-compliance-grid p,
.content-card p,
.legal-card p {
  color: #33425d;
  font-size: 16px;
  line-height: 1.7;
}

.content-card p,
.legal-card p {
  font-size: 14.5px;
}

.mini-disclaimer,
.section-disclaimer {
  margin-top: 16px;
  border: 1px solid #f0d8ad;
  border-radius: 10px;
  background: #fff7e8;
  color: #4f3b15 !important;
  padding: 12px 14px;
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 700;
}

.compliance-card-grid {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px auto 0;
}

.compliance-card-grid article {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 14px 28px rgba(2, 56, 129, 0.07);
}

.compliance-card-icon {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}

.compliance-card-grid h3,
.content-card h2,
.content-card h3,
.legal-card h3 {
  color: var(--navy);
  line-height: 1.25;
}

.compliance-card-grid h3 {
  font-size: 18px;
}

.compliance-card-grid p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.section-disclaimer {
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
}

.treatment-chip-grid {
  width: min(1020px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 30px auto 0;
}

.treatment-chip-grid .treatment-chip {
  min-height: 96px;
  display: grid;
  grid-template-rows: 42px minmax(0, auto);
  place-items: center;
  gap: 8px;
  border: 1px solid #cbd9ea;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 10px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.treatment-chip-icon {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.treatment-chip-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.doctor-profile-disclaimer {
  width: min(1020px, calc(100% - 48px));
  margin: 22px auto 0;
  border: 1px solid #f2d69b;
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: #fff9ea;
  color: #64430b;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.doctor-profile-disclaimer strong {
  color: var(--navy);
}

.doctor-profile-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.doctor-profile-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(2, 56, 129, 0.07);
}

.doctor-profile-photo {
  width: 78px;
  height: 78px;
  display: block;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #eef5fb;
  object-fit: cover;
  object-position: top center;
}

.doctor-profile-card h3 {
  color: var(--navy);
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.25;
}

.doctor-specialty {
  flex: 1;
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.doctor-profile-link {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #bad2ed;
  border-radius: 7px;
  color: var(--navy);
  margin-top: 16px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.doctor-profile-link:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.doctor-profile-grid:not(.is-expanded) .doctor-profile-extra {
  display: none;
}

.doctor-show-more-btn {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #bad2ed;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  margin: 22px auto 0;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(2, 56, 129, 0.08);
}

.doctor-show-more-btn:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.transparency-card {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px;
  border-left: 6px solid var(--green);
}

.transparency-card h2,
.contact-compliance-grid h2,
.subpage-hero h1 {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin-top: 12px;
}

.contact-compliance-grid {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: start;
  margin: 0 auto;
}

.contact-compliance-grid a:not(.wa-btn),
.contact-facts a,
.legal-links a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coordination-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.coordination-form h3 {
  color: var(--navy);
  font-size: 22px;
}

.coordination-form label {
  display: grid;
  gap: 7px;
  color: #24324c;
  font-size: 13px;
  font-weight: 900;
}

.coordination-form input,
.coordination-form textarea {
  width: 100%;
  border: 1px solid #cbd9ea;
  border-radius: 8px;
  background: var(--white);
  color: #172033;
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 600;
}

.coordination-form input:focus,
.coordination-form textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 168, 82, 0.13);
}

.consent-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f7fbff;
  padding: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin-top: 2px;
}

.consent-row span {
  color: #33425d;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
}

.subpage-hero {
  padding: 70px 0 58px;
  background: linear-gradient(135deg, var(--soft), var(--white));
}

.subpage-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.subpage-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 16px;
}

.subpage-grid,
.legal-grid {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.content-card-wide {
  grid-column: 1 / -1;
}

.content-card h2 {
  font-size: 28px;
}

.content-card h3,
.legal-card h3 {
  font-size: 19px;
}

.contact-facts {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px auto 0;
}

.contact-facts span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  padding: 16px;
}

.contact-facts strong {
  color: var(--navy);
  font-size: 13px;
}

.contact-facts small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.final-cta {
  padding: 58px 0;
  background: var(--soft);
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 28px;
}

.final-cta-card h2 {
  font-size: 28px;
  line-height: 1.2;
}

.final-cta-card p {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  padding: 54px 0 24px;
  background: #071d3b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.footer p {
  margin-top: 12px;
}

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

.footer a {
  display: block;
  margin-top: 8px;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-height: 58px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  box-shadow: 0 18px 44px rgba(18, 168, 82, 0.36);
}

.sticky-wa span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.sticky-text-mobile {
  display: none;
}

.mobile-bottom-actions {
  display: none;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 10px;
    font-size: 12.5px;
  }

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

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

@media (max-width: 900px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .compliance-hero-grid,
  .compliance-split,
  .contact-compliance-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .treatment-chip-grid,
  .contact-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 700px) {
  .container,
  .nav-wrap,
  .compliance-hero-grid,
  .compliance-split,
  .compliance-card-grid,
  .treatment-chip-grid,
  .doctor-profile-grid,
  .doctor-profile-disclaimer,
  .section-disclaimer,
  .transparency-card,
  .contact-compliance-grid,
  .section-heading,
  .subpage-grid,
  .legal-grid {
    width: min(342px, calc(100% - 24px));
  }

  .top-strip-btn {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    justify-content: start;
    gap: 8px;
    min-height: 52px;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.3;
    text-align: left;
  }

  .top-strip-btn strong {
    display: none;
  }

  .top-wa-icon {
    width: 18px;
    height: 18px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .mobile-breadcrumb {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    background: #fbfdff;
    padding: 0 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-breadcrumb a {
    color: var(--navy);
  }

  .compliance-hero {
    padding: 30px 0 42px;
  }

  .compliance-hero h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-subheadline,
  .visible-disclosure,
  .compliance-copy-box p,
  .transparency-card p,
  .contact-compliance-grid p {
    font-size: 14px;
    line-height: 1.6;
  }

  .visible-disclosure,
  .compliance-copy-box,
  .transparency-card,
  .coordination-form,
  .content-card,
  .legal-card {
    border-radius: 12px;
    padding: 18px;
  }

  .compliance-actions {
    display: grid;
  }

  .compliance-actions .wa-btn,
  .contact-compliance-grid .wa-btn,
  .coordination-form .wa-btn {
    width: 100%;
    min-height: 44px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .compliance-band,
  .subpage-section,
  .legal-band {
    padding: 44px 0;
  }

  .compliance-card-grid,
  .treatment-chip-grid,
  .subpage-grid,
  .legal-grid,
  .contact-facts,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .doctor-profile-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .doctor-profile-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0 14px;
    align-items: start;
  }

  .doctor-profile-photo {
    width: 64px;
    height: 64px;
    grid-row: span 3;
  }

  .doctor-profile-card h3 {
    margin-top: 0;
    font-size: 16px;
  }

  .doctor-specialty {
    margin-top: 6px;
  }

  .doctor-profile-link {
    justify-self: start;
    margin-top: 12px;
  }

  .treatment-chip-grid .treatment-chip {
    min-height: 68px;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 10px 14px;
    text-align: left;
  }

  .treatment-chip-icon {
    width: 36px;
    height: 36px;
  }

  .subpage-hero {
    padding: 42px 0 34px;
  }

  .subpage-hero h1,
  .section-heading h2,
  .transparency-card h2,
  .contact-compliance-grid h2 {
    font-size: 26px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-wa {
    display: none;
  }

  .mobile-bottom-actions {
    position: fixed;
    left: 12px;
    bottom: 10px;
    z-index: 130;
    width: min(342px, calc(100% - 24px));
    min-height: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #dce8f5;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(2, 56, 129, 0.18);
  }

  .mobile-bottom-actions a,
  .mobile-bottom-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--navy);
    background: var(--white);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-bottom-actions a:first-child,
  .mobile-bottom-actions button:first-child {
    color: var(--white);
    background: var(--green);
  }

  .mobile-bottom-actions a:nth-child(2) {
    color: var(--white);
    background: var(--navy);
  }

  .bottom-action-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
  }

  .bottom-action-call {
    background: transparent var(--call-icon) center / contain no-repeat;
  }

  .bottom-action-help {
    border: 1.6px solid currentColor;
  }
}

@media (max-width: 900px) {
  .mobile-nav .mobile-nav-icon {
    display: none;
  }

  .mobile-nav {
    justify-content: flex-end;
  }

  .mobile-nav .mobile-menu-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    align-content: center;
    place-items: center;
    gap: 5px;
    background: transparent;
  }

  .mobile-nav .mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--blue);
  }

  .mobile-nav .mobile-menu-btn[aria-expanded="true"] span {
    opacity: 1;
    transform: none;
  }
}
