:root {
  --navy: #221972;
  --navy-dark: #171151;
  --blue: #347fc7;
  --blue-bright: #68abe3;
  --green: #25b963;
  --green-dark: #15934a;
  --yellow: #4b93db;
  --ice: #f3f8fc;
  --ice-deep: #e5f0f9;
  --white: #ffffff;
  --ink: #332d72;
  --muted: #666679;
  --line: #dce8f1;
  --shadow: 0 24px 70px rgba(34, 25, 114, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 94px;
}

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

.topbar {
  background: var(--navy-dark);
  color: #dcecf8;
  font-size: 13px;
}

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

.topbar p {
  margin: 0;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-phone svg,
.topbar-phone i {
  width: 11px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(213, 229, 240, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand img {
  width: 205px;
  height: auto;
}

.brand span {
  padding: 5px 10px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
  color: #244f76;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 56px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.button span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
}

.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.button-whatsapp {
  background: var(--green);
  box-shadow: 0 15px 32px rgba(18, 169, 111, 0.24);
  color: var(--white);
}

.button-whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 36px rgba(18, 169, 111, 0.32);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-yellow {
  background: var(--yellow);
  box-shadow: 0 15px 32px rgba(52, 127, 199, 0.22);
  color: var(--white);
}

.button-yellow span {
  background: rgba(255, 255, 255, 0.18);
}

.button-block {
  width: 100%;
}

.mobile-nav {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  top: 56px;
  right: 0;
  width: min(300px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.mobile-nav-panel a svg,
.mobile-nav-panel a i {
  width: 16px;
}

.mobile-nav-panel a:hover {
  background: var(--ice);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: linear-gradient(135deg, #f9fcfe 0%, var(--ice) 60%, #eaf6fc 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -300px;
  left: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(8, 114, 206, 0.12);
}

.hero-glow-two {
  right: -180px;
  bottom: -310px;
  width: 700px;
  height: 700px;
  background: rgba(74, 171, 232, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid #bfdef2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(52, 127, 199, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  color: var(--navy-dark);
  font-size: clamp(46px, 4.25vw, 64px);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
}

.phone-link-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

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

.phone-link-copy small {
  color: var(--muted);
  font-size: 13px;
}

.phone-link strong {
  color: var(--navy);
  font-size: 20px;
}

.hero-checks {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: #3a6285;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-checks span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #dceffb;
  color: var(--blue);
}

.hero-checks span svg,
.hero-checks span i {
  width: 11px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-stage {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ice-deep);
  box-shadow: var(--shadow);
}

.hero-image-stage::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.25), transparent 28%);
  content: "";
}

.hero-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.shape {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.shape-blue {
  top: -30px;
  left: -45px;
  width: 190px;
  height: 190px;
  border: 38px solid var(--blue-bright);
}

.shape-green {
  right: -45px;
  bottom: -45px;
  width: 180px;
  height: 180px;
  border: 35px solid #b9d9f2;
}

.network-badge {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 24px;
  width: 116px;
  height: 116px;
  border: 7px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  transform: rotate(-7deg);
}

.network-badge strong {
  font-size: 24px;
  line-height: 1;
}

.network-badge span {
  width: 90px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.results-section {
  padding: 100px 0 110px;
  overflow: hidden;
  background: var(--ice);
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.results-heading h2 {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--navy-dark);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.slider-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--white);
  color: var(--navy);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.slider-controls button:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.slider-controls svg,
.slider-controls i {
  width: 17px;
}

.cases-rail {
  width: min(1240px, calc(100% - 48px));
  margin: 46px auto 0;
  padding: 0 0 22px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  touch-action: pan-x;
}

.cases-rail::-webkit-scrollbar {
  display: none;
}

.clinical-case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(34, 25, 114, 0.07);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.clinical-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
}

.clinical-compare figure {
  margin: 0;
  background: var(--navy-dark);
}

.clinical-image-wrap {
  position: relative;
  height: clamp(220px, 25vw, 310px);
  overflow: hidden;
}

.clinical-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.clinical-image-wrap > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(23, 17, 81, 0.84);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clinical-image-wrap > .after-label {
  background: rgba(52, 127, 199, 0.9);
}

.clinical-case-copy {
  padding: 22px 28px 25px;
}

.clinical-case-copy > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.clinical-case-copy h3 {
  margin: 6px 0 7px;
  color: var(--navy-dark);
  font-size: 26px;
  letter-spacing: -.035em;
}

.clinical-case-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.results-disclaimer {
  margin-top: 4px;
}

.results-disclaimer p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.testimonial-shell {
  margin-top: 72px;
  padding: 46px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 68px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.testimonial-copy h3 {
  max-width: 690px;
  margin: 14px 0 20px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.testimonial-copy p {
  max-width: 610px;
  margin: 0;
  color: #d7e9f6;
  font-size: 18px;
  line-height: 1.68;
}

.testimonial-video-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: #070713;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.testimonial-video-wrap video {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: contain;
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  min-height: 152px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 31px 26px;
  border-left: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item:last-child {
  border-right: 1px solid rgba(255,255,255,.16);
}

.trust-item > strong {
  color: #72c5ff;
  font-size: clamp(34px, 3.3vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.trust-item span {
  display: grid;
  color: #cfe3f3;
  font-size: 13px;
}

.trust-item span b {
  color: var(--white);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.difference-panel h2,
.unit-copy h2,
.faq-heading h2,
.location-copy h2,
.final-cta h2 {
  margin: 12px 0 0;
  color: var(--navy-dark);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.split-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
}

.split-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.treatments-section {
  background: var(--white);
}

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

.treatment-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.treatment-card:hover {
  border-color: #a9d5ef;
  box-shadow: 0 18px 45px rgba(3, 57, 105, 0.09);
  transform: translateY(-5px);
}

.treatment-number {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.treatment-card h3 {
  margin: 29px 0 10px;
  color: var(--navy-dark);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.treatment-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link span {
  margin-left: 6px;
}

.treatment-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ice);
  color: #456783;
}

.treatment-note > span {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
}

.treatment-note > span svg,
.treatment-note > span i {
  width: 12px;
}

.treatment-note p {
  margin: 0;
}

.case-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.case-section::before {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 95px solid rgba(66, 166, 239, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.case-section .container {
  position: relative;
  z-index: 1;
}

.case-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
}

.case-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.case-heading > p {
  margin: 0 0 5px;
  color: #cfe3f3;
  font-size: 18px;
  line-height: 1.65;
}

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

.case-photo {
  margin: 0;
}

.case-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #112f4d;
}

.case-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.case-label {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 82px;
  padding: 9px 16px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(3, 41, 79, 0.82);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-photo-after .case-label {
  background: rgba(7, 133, 88, 0.9);
}

.case-photo figcaption {
  padding: 14px 5px 0;
  color: #afc9dd;
  font-size: 13px;
}

.case-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.case-footer > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.case-pill {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(66, 166, 239, .16);
  color: #a9ddff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-footer p {
  max-width: 650px;
  margin: 0;
  color: #cfe3f3;
  font-size: 14px;
}

.case-footer .button {
  flex: 0 0 auto;
}

.difference-section {
  background: var(--ice);
}

.difference-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 22px;
}

.difference-panel {
  min-height: 605px;
  padding: 54px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 92% 10%, rgba(157, 208, 240, .34) 0 10%, transparent 10.5%),
    linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}

.section-kicker.light {
  color: #9edaff;
}

.difference-panel h2,
.location-copy h2,
.final-cta h2 {
  color: var(--white);
}

.difference-panel p {
  max-width: 500px;
  margin: 24px 0 32px;
  color: #d7e9f6;
  font-size: 18px;
  line-height: 1.68;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefits-list article {
  min-height: 292px;
  padding: 30px;
  border: 1px solid #d6e7f2;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.benefits-list article > span {
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 900;
}

.benefits-list h3 {
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.benefits-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.63;
}

.unit-section {
  overflow: hidden;
  background: var(--white);
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 92px;
}

.unit-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: var(--ice-deep);
}

.unit-visual::before {
  position: absolute;
  top: -95px;
  right: -90px;
  width: 255px;
  height: 255px;
  z-index: 2;
  border: 45px solid rgba(104, 171, 227, 0.46);
  border-radius: 50%;
  content: "";
}

.unit-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.unit-mark {
  width: 270px;
  height: 270px;
  border: 54px solid var(--white);
  border-top-width: 72px;
  border-radius: 45% 45% 50% 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  opacity: .9;
  transform: rotate(-8deg);
}

.unit-quote {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 30px;
  padding: 20px 24px;
  border-radius: 18px;
  display: grid;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--navy);
  transform: rotate(2deg);
}

.unit-quote span {
  font-size: 14px;
}

.unit-quote strong {
  font-size: 22px;
}

.unit-copy > p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.rt-card {
  margin: 30px 0 18px;
  padding: 21px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  display: grid;
  background: var(--ice);
}

.rt-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rt-card strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 20px;
}

.rt-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.instagram-link {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.instagram-link:hover {
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

.instagram-icon {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 28px;
}

.instagram-icon svg,
.instagram-icon i {
  width: 23px;
}

.external-link-icon {
  width: 15px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.instagram-link > span:nth-child(2) {
  display: grid;
}

.instagram-link small {
  color: var(--muted);
}

.instagram-link strong {
  color: var(--navy);
}

.faq-section {
  background: var(--ice);
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 125px;
}

.faq-heading p {
  max-width: 430px;
  margin: 22px 0 15px;
  color: var(--muted);
  line-height: 1.68;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.inline-link-icon {
  width: 15px;
  margin-left: 6px;
  display: inline-grid;
  place-items: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--blue);
  font-size: 24px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 25px;
  padding-right: 38px;
  color: var(--muted);
  line-height: 1.7;
}

.location-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.location-section::after {
  position: absolute;
  right: -170px;
  bottom: -300px;
  width: 680px;
  height: 680px;
  border: 100px solid rgba(66, 166, 239, 0.12);
  border-radius: 50%;
  content: "";
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 100px;
}

.location-copy address {
  margin: 25px 0;
  color: #d1e7f6;
  font-size: 19px;
  font-style: normal;
  line-height: 1.7;
}

.location-contacts {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-contacts a {
  min-width: 220px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
}

.location-contacts a > span {
  display: grid;
}

.location-contact-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  color: #9fc8e6;
}

.whatsapp-contact-icon {
  color: #61d58f;
}

.location-contacts small {
  color: #9fc8e6;
}

.location-contacts strong {
  color: var(--white);
  font-size: 18px;
}

.hours-card {
  padding: 44px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hours-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  font-size: 31px;
}

.hours-card h3 {
  margin: 7px 0 26px;
  color: var(--navy-dark);
  font-size: 30px;
  letter-spacing: -0.035em;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours-card dt {
  color: var(--muted);
}

.hours-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.hours-card > p {
  margin: 22px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.final-cta {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.final-cta h2 {
  max-width: 800px;
  font-size: clamp(36px, 4.2vw, 60px);
}

.final-cta .button {
  flex-shrink: 0;
}

footer {
  padding: 72px 0 22px;
  background: #f9fcfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 52px;
}

.footer-brand .footer-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-link svg,
.footer-contact-link i {
  width: 13px;
  color: var(--blue);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 16px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #7990a4;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(3, 57, 105, .28);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp svg,
.floating-whatsapp i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 27px;
}

.wp-content {
  max-width: 900px;
}

.wp-content h1 {
  margin: 0 0 28px;
  color: var(--navy-dark);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.wp-content p,
.wp-content li {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-stage {
    right: 0;
    width: 100%;
    height: 500px;
  }

  .testimonial-shell {
    padding: 40px;
    gap: 42px;
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.16);
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .difference-panel {
    padding: 42px;
  }

  .unit-grid,
  .faq-grid,
  .location-grid {
    gap: 55px;
  }
}

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

  .topbar-inner {
    padding: 7px 0;
  }

  .topbar p {
    max-width: 430px;
  }

  .topbar-links a:last-child,
  .topbar-links span {
    display: none;
  }

  .hero {
    padding: 50px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(46px, 9vw, 67px);
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-stage {
    right: 0;
    left: 0;
    width: 100%;
    height: 480px;
  }

  .results-section {
    padding: 84px 0 90px;
  }

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

  .testimonial-shell {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 36px;
  }

  .testimonial-video-wrap {
    width: min(100%, 480px);
  }

  .section {
    padding: 84px 0;
  }

  .split-heading,
  .case-heading,
  .difference-grid,
  .unit-grid,
  .faq-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .case-heading {
    gap: 24px;
  }

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

  .difference-grid {
    gap: 16px;
  }

  .difference-panel {
    min-height: 490px;
  }

  .unit-grid {
    gap: 50px;
  }

  .unit-visual {
    min-height: 500px;
  }

  .faq-grid {
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .location-grid {
    gap: 50px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .topbar {
    display: none;
  }

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

  .brand img {
    width: 164px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12.7vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone-link {
    text-align: center;
  }

  .hero-checks {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-image-stage {
    height: 360px;
    border-radius: 24px;
  }

  .hero-image {
    right: 0;
    width: 100%;
    object-position: 54% center;
  }

  .results-section {
    padding: 72px 0;
  }

  .results-heading {
    flex-direction: column;
    gap: 24px;
  }

  .results-heading h2 {
    font-size: 40px;
  }

  .slider-controls button {
    width: 44px;
    height: 44px;
  }

  .cases-rail {
    width: calc(100% - 24px);
    margin-top: 34px;
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .clinical-case-card {
    border-radius: 22px;
  }

  .clinical-compare {
    grid-template-columns: 1fr;
  }

  .clinical-image-wrap {
    height: 220px;
  }

  .clinical-case-copy {
    padding: 22px;
  }

  .clinical-case-copy h3 {
    font-size: 24px;
  }

  .testimonial-shell {
    margin-top: 52px;
    padding: 26px;
    border-radius: 24px;
  }

  .testimonial-copy h3 {
    font-size: 36px;
  }

  .testimonial-copy p {
    font-size: 16px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .network-badge {
    top: 16px;
    left: 16px;
    width: 92px;
    height: 92px;
  }

  .network-badge strong {
    font-size: 20px;
  }

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

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    min-height: 106px;
    padding: 22px 18px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .trust-item > strong {
    min-width: 100px;
    font-size: 40px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .difference-panel h2,
  .unit-copy h2,
  .faq-heading h2,
  .location-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .treatments-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .case-comparison {
    grid-template-columns: 1fr;
  }

  .case-footer,
  .case-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-footer {
    gap: 24px;
  }

  .treatment-card {
    min-height: 240px;
  }

  .treatment-note {
    align-items: flex-start;
  }

  .difference-panel {
    min-height: 520px;
    padding: 31px;
  }

  .benefits-list article {
    min-height: 240px;
  }

  .unit-visual {
    min-height: 420px;
  }

  .unit-mark {
    width: 210px;
    height: 210px;
    border-width: 42px;
    font-size: 110px;
  }

  .unit-quote {
    right: 14px;
    bottom: 16px;
  }

  .faq-list details {
    padding-inline: 18px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .hours-card {
    padding: 28px;
  }

  .location-contacts {
    flex-direction: column;
  }

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

  .footer-brand .footer-logo {
    width: 180px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
