:root {
  --navy-950: #03152d;
  --navy-900: #06234a;
  --navy-800: #0a356b;
  --navy-700: #104a8c;
  --blue-100: #e8f3fb;
  --blue-50: #f4f9fd;
  --gold-500: #efae2f;
  --gold-400: #f6c65c;
  --gold-100: #fff1cf;
  --ink: #102139;
  --muted: #5f6f82;
  --white: #ffffff;
  --line: #dce6ef;
  --success: #25d366;
  --shadow-sm: 0 12px 34px rgba(3, 21, 45, 0.08);
  --shadow-lg: 0 28px 70px rgba(3, 21, 45, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: min(1160px, calc(100% - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-950);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--gold-400);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(3, 21, 45, 0.08);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(239, 174, 47, 0.45);
  border-radius: 50%;
  color: var(--gold-500);
  background: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 22px rgba(3, 21, 45, 0.18);
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  color: var(--navy-950);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  position: relative;
  color: #2e4058;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__lines::before {
  transform: translateY(-6px);
}

.menu-toggle__lines::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    background-color 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.tab-button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(239, 174, 47, 0.38);
  outline-offset: 3px;
}

.btn--gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 28px rgba(239, 174, 47, 0.25);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  box-shadow: 0 16px 34px rgba(239, 174, 47, 0.34);
}

.btn--navy {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 12px 28px rgba(3, 21, 45, 0.2);
}

.btn--outline {
  border-color: rgba(6, 35, 74, 0.2);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.8);
}

.btn--white {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(3, 21, 45, 0.15);
}

.btn__arrow {
  font-size: 1.15em;
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 88% 13%, rgba(239, 174, 47, 0.16), transparent 27%),
    radial-gradient(circle at 5% 90%, rgba(16, 74, 140, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(239, 174, 47, 0.19);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -250px;
  right: -160px;
  width: 630px;
  height: 630px;
}

.hero::after {
  top: -185px;
  right: -95px;
  width: 500px;
  height: 500px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
  content: "";
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.2vw, 4.75rem);
}

.hero h1 span {
  color: var(--navy-700);
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero__details li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #35485f;
  font-size: 0.87rem;
  font-weight: 750;
}

.hero__details li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-400);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 950;
}

.hero__visual {
  position: relative;
  padding: 18px 18px 30px;
}

.hero__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 174, 47, 0.6);
  border-radius: 50% 50% 24px 24px;
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.hero__frame::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 828 / 1248;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 215px;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  color: var(--navy-950);
  font-size: 0.94rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.floating-card--phone {
  right: -16px;
  bottom: 0;
}

.floating-card--place {
  top: 18%;
  left: -36px;
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.quick-strip__grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(239, 174, 47, 0.35);
  border-radius: var(--radius-md);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.quick-item {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 8px;
  padding: 26px 30px;
  color: var(--white);
}

.quick-item + .quick-item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.quick-item__number {
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quick-item strong {
  font-size: 1.02rem;
}

.quick-item span:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.section {
  padding: 110px 0;
}

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

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 174, 47, 0.17), transparent 24%),
    var(--navy-950);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-copy h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.split-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.section--navy .section-heading h2,
.section--navy .section-heading p,
.section--navy .eyebrow {
  color: var(--white);
}

.section--navy .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.service-tabs {
  display: flex;
  width: fit-content;
  gap: 8px;
  margin-bottom: 34px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-button {
  min-height: 47px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tab-button[aria-selected="true"] {
  color: var(--white);
  background: var(--navy-950);
}

.tab-panel[hidden] {
  display: none;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(3, 21, 45, 0.055);
  transition: transform 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 90px;
  height: 90px;
  border: 18px solid rgba(239, 174, 47, 0.09);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(239, 174, 47, 0.7);
  box-shadow: 0 20px 46px rgba(3, 21, 45, 0.11);
  transform: translateY(-5px);
}

.service-card__index {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.35;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.services-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 80px;
}

.feature-image {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(239, 174, 47, 0.58);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--gold-100), var(--white));
  box-shadow: var(--shadow-lg);
}

.feature-image::before {
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 58%;
  height: 44%;
  border-radius: 40px;
  background: var(--navy-950);
  content: "";
}

.feature-image img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 12px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.feature-list__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--gold-100);
  font-size: 0.74rem;
  font-weight: 950;
}

.feature-list strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.92rem;
}

.feature-list small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.mode-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
}

.mode-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border: 36px solid rgba(239, 174, 47, 0.1);
  border-radius: 50%;
  content: "";
}

.mode-card__index {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.mode-card h3 {
  margin: 64px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.mode-card p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.mode-card .btn {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

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

.patient-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.patient-card__shape {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(239, 174, 47, 0.45);
  border-radius: 50% 50% 50% 18px;
  color: var(--navy-950);
  background: var(--gold-100);
  font-size: 0.8rem;
  font-weight: 950;
  transform: rotate(-8deg);
}

.patient-card__shape span {
  transform: rotate(8deg);
}

.patient-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.35rem;
}

.patient-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  padding: 0 0 110px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(3, 21, 45, 0.98), rgba(10, 53, 107, 0.94)),
    var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 42px solid rgba(239, 174, 47, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-card__copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-card h2 {
  color: var(--white);
}

.cta-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-card__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

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

.contact-card {
  display: grid;
  min-height: 164px;
  align-content: start;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card span {
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy-950);
  font-size: 1.05rem;
  line-height: 1.45;
}

.contact-card a:hover {
  color: var(--navy-700);
}

.site-footer {
  padding: 42px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 32px;
}

.footer-brand .brand__mark {
  border-color: rgba(239, 174, 47, 0.5);
}

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

.footer-brand .brand__text small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  font-size: 0.82rem;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  color: #073617;
  background: var(--success);
  box-shadow: 0 18px 40px rgba(3, 21, 45, 0.24);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 22px 46px rgba(3, 21, 45, 0.3);
  transform: translateY(-3px);
}

.whatsapp-float__dot {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 28px;
  bottom: 92px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .nav-wrap {
    gap: 18px;
  }

  .site-nav__links {
    gap: 18px;
  }

  .site-nav .btn {
    display: none;
  }

  .hero__grid {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  }

  .floating-card--place {
    left: -18px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner p:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .site-nav.is-open {
    max-height: 520px;
    opacity: 1;
  }

  .site-nav__links {
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
  }

  .site-nav__links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__links a::after {
    display: none;
  }

  .hero {
    padding: 66px 0 82px;
  }

  .hero__grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .floating-card--place {
    left: -12px;
  }

  .quick-strip__grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 112px;
  }

  .quick-item + .quick-item {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

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

  .split-layout {
    gap: 56px;
  }

  .split-copy {
    order: -1;
  }

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

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

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
    --header-height: 70px;
  }

  .brand__text small {
    max-width: 175px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions {
    display: grid;
  }

  .hero__details {
    display: grid;
  }

  .hero__visual {
    padding-inline: 2px;
  }

  .hero__frame {
    border-radius: 180px 180px 22px 22px;
  }

  .floating-card {
    position: static;
    min-width: 0;
    margin-top: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .service-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .tab-button {
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .services-grid,
  .patients-grid,
  .contact-grid,
  .modes-grid {
    grid-template-columns: 1fr;
  }

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

  .mode-card {
    min-height: 286px;
    padding: 30px;
  }

  .cta-card {
    padding: 38px 24px;
  }

  .cta-card__actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }

  .whatsapp-float__label {
    display: none;
  }

  .whatsapp-float__dot {
    width: 32px;
    height: 32px;
  }

  .back-to-top {
    right: 19px;
    bottom: 80px;
  }
}
