:root {
  --bg: #f0f8f9;
  --bg-strong: #e0eff2;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fcfdfd;
  --text: #0d3d47;
  --muted: #4a6b78;
  --line: rgba(13, 61, 71, 0.1);
  --accent: #0ba5b8;
  --accent-dark: #0a8fa6;
  --brand-cyan: #17b8c9;
  --brand-cyan-dark: #0fa5b8;
  --brand-teal: #0ba5b8;
  --brand-light-teal: #d4f1f6;
  --shadow: 0 24px 60px rgba(13, 61, 71, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --site-width: min(1160px, calc(100vw - 32px));
  --hero-clone-nav-height: 102px;
  --hero-clone-nav-height-mobile: 86px;
  --hero-clone-nav-height-mobile-sm: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hero-clone-nav-height) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23, 184, 201, 0.08), transparent 34%),
    radial-gradient(circle at right 12%, rgba(11, 165, 184, 0.12), transparent 22%),
    linear-gradient(180deg, #f0f8f9 0%, #f5fafb 44%, #fcfdfd 100%);
  line-height: 1.6;
}

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

li {
  margin: 0;
  list-style-position: inside;
}

h4 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.site-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(240, 248, 249, 0.92);
  border-bottom: 1px solid rgba(11, 165, 184, 0.12);
  display: block;
}

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

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 112px;
}

.brand-mark {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.mobile-call-button {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(16, 33, 40, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--brand-cyan-dark);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
}

.main-nav a,
.footer-column a {
  color: var(--text);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-link {
  font-weight: 800;
  color: var(--brand-cyan-dark);
}

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

.phone-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--accent-dark);
}

.eyebrow,
.hero-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero {
  position: relative;
  padding: 12px 0 28px;
  background: transparent;
}

.hero-band {
  position: relative;
  width: min(calc(100vw - 44px), 1540px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 184, 201, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 31%, rgba(117, 223, 238, 0.26), rgba(117, 223, 238, 0) 30%),
    radial-gradient(circle at 86% 34%, rgba(17, 198, 219, 0.16), rgba(17, 198, 219, 0) 20%),
    linear-gradient(90deg, rgba(231, 248, 251, 0.98) 0%, rgba(255, 255, 255, 0.98) 38%, rgba(246, 252, 254, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(10, 74, 91, 0.12);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 57% 22%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 8%),
    radial-gradient(circle at 18% 78%, rgba(95, 227, 242, 0.16), rgba(95, 227, 242, 0) 20%);
  pointer-events: none;
}

.hero-reference-picture {
  display: block;
  width: 100%;
  aspect-ratio: 1536 / 986;
}

.hero-reference-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-copy,
.bio-panel,
.cta-panel,
.info-card,
.metrics article,
.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 56px), 1480px);
  margin: 0 auto;
  padding: 30px 0 22px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 10px;
  align-items: end;
  min-height: clamp(760px, 88vh, 900px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  padding: 0 8px 8px 6px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #62d9ec, #0faac2);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(15, 165, 184, 0.22);
}

.hero-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hero-heading {
  margin: 20px 0 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-heading-desktop {
  max-width: 7.3ch;
  font-size: clamp(4.1rem, 5vw, 5.8rem);
}

.hero-heading-mobile,
.hero-text-mobile {
  display: none;
}

.hero-line {
  display: block;
}

.hero-line-dark {
  color: #0b3c49;
}

.hero-line-accent {
  color: var(--brand-cyan-dark);
}

.hero-text {
  max-width: 28ch;
  margin: 18px 0 0;
  color: rgba(34, 68, 78, 0.9);
  font-size: clamp(1.1rem, 1.22vw, 1.34rem);
  line-height: 1.46;
}

.hero-text strong {
  color: var(--brand-cyan-dark);
}

.hero-divider {
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15b8c9, #0f9cb4);
}

.hero-benefits-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-benefit-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 8px;
  text-align: center;
}

.hero-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(17, 168, 187, 0.16);
}

.hero-benefit-icon {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-cyan-dark);
  border: 1.5px solid rgba(17, 168, 187, 0.75);
}

.hero-benefit-icon svg {
  width: 36px;
  height: 36px;
}

.hero-benefit-item strong {
  font-size: 0.98rem;
  line-height: 1.18;
  color: #0c5d71;
}

.hero-offer-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.55fr;
  align-items: stretch;
  max-width: 760px;
  margin-top: 24px;
  padding: 32px 22px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #037f97, #10b4ca);
  box-shadow: 0 30px 60px rgba(8, 129, 150, 0.24);
  overflow: hidden;
}

.hero-offer-ribbon {
  position: absolute;
  top: 0;
  left: 24px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 28px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(135deg, #ffd94d, #ffb317);
  color: #6b4a00;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-offer-column {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 0 12px;
  color: #fff;
}

.hero-offer-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: rgba(255, 255, 255, 0.32);
}

.hero-offer-column-discount {
  justify-content: flex-start;
}

.hero-offer-column-discount strong {
  font-size: clamp(3.5rem, 3.9vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-offer-column-treatment {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
  font-size: clamp(1.02rem, 1.34vw, 1.28rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-offer-column-consultation {
  justify-content: flex-start;
  gap: 18px;
}

.hero-offer-gift {
  display: inline-flex;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0ea8c1;
}

.hero-offer-gift svg {
  width: 48px;
  height: 48px;
}

.hero-offer-copy {
  display: grid;
  gap: 8px;
}

.hero-offer-copy strong {
  font-size: clamp(1.24rem, 1.48vw, 1.7rem);
  line-height: 1.12;
}

.hero-offer-copy span {
  font-size: 0.98rem;
  line-height: 1.3;
}

.hero-actions-reference {
  display: flex;
  gap: 14px;
  max-width: 760px;
  margin-top: 16px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.hero-cta-primary {
  flex: 1 1 0;
  color: #fff;
  background: linear-gradient(135deg, #ffb51b, #ff8f00);
  box-shadow: 0 18px 36px rgba(255, 159, 17, 0.28);
}

.hero-cta-primary svg {
  width: 22px;
  height: 22px;
}

.hero-cta-secondary {
  flex: 0 0 290px;
  color: var(--brand-cyan-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1.5px solid rgba(17, 168, 187, 0.7);
}

.hero-cta-secondary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-trust-strip {
  max-width: 1280px;
  margin-top: 18px;
  padding: 18px 22px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 168, 187, 0.12);
  box-shadow: 0 18px 36px rgba(13, 61, 71, 0.06);
}

.hero-trust-strip-title {
  display: none;
}

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

.hero-trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  color: #244852;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(17, 168, 187, 0.14);
}

.hero-trust-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan-dark);
}

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

.hero-visual-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  align-self: stretch;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  min-height: 780px;
  height: 100%;
  background:
    radial-gradient(ellipse at 68% 96%, rgba(120, 73, 48, 0.42), rgba(186, 124, 91, 0.18) 28%, rgba(255, 233, 220, 0.04) 52%, rgba(255, 233, 220, 0) 76%);
  border: 0;
  overflow: hidden;
}

.hero-visual-wrap::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 10%;
  width: min(88%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(36, 210, 230, 0.34), rgba(36, 210, 230, 0.12) 46%, rgba(36, 210, 230, 0.03) 60%, rgba(36, 210, 230, 0) 76%);
  z-index: 0;
  filter: blur(2px);
}

.hero-visual-wrap::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  width: 36%;
  height: 48%;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.18) 54%, rgba(255, 255, 255, 0) 80%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.1) 0 10px, rgba(255, 255, 255, 0) 10px 32px);
  opacity: 0.26;
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 42%);
  z-index: 0;
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 56% 38%, rgba(36, 210, 230, 0.12), rgba(36, 210, 230, 0.03) 20%, rgba(36, 210, 230, 0) 36%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 2% -3% 14%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(118, 67, 43, 0.44), rgba(181, 112, 80, 0.2) 32%, rgba(236, 184, 154, 0.08) 54%, rgba(255, 233, 220, 0) 80%);
  filter: blur(26px);
  z-index: 1;
  pointer-events: none;
}

.hero-visual-card img {
  position: absolute;
  right: -64px;
  bottom: -10px;
  width: auto;
  height: 104%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  z-index: 2;
}

.hero-expertise-badge {
  position: absolute;
  right: 8%;
  bottom: 13%;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 144px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82), rgba(214, 245, 249, 0.7));
  border: 5px solid rgba(124, 223, 233, 0.62);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.22),
    0 22px 50px rgba(13, 61, 71, 0.16);
  color: #0c4857;
  text-align: center;
}

.hero-expertise-stars {
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: var(--brand-cyan-dark);
}

.hero-expertise-badge strong {
  margin-top: 6px;
  font-size: 1.34rem;
  line-height: 1.02;
}

.hero-expertise-badge span:last-child {
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.15;
}

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

.doctor-badge-section {
  padding: 32px 0;
  text-align: center;
}

.doctor-badge-container img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.trust-badges-section {
  padding: 24px 0;
  text-align: center;
}

.trust-badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

.trust-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.trust-badge-link img {
  max-width: 100%;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.trust-badge-link-certificate img {
  width: min(100%, 560px);
  max-height: none;
}

.hero-copy>h1:not(.hero-heading),
.section-heading h2,
.cta-panel h2,
.bio-panel h3 {
  margin: 14px 0 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-heading h2,
.cta-panel h2,
.bio-panel h3 {
  font-family: "Marcellus", serif;
}

.hero-badge {
  padding-top: 0;
  display: block;
  margin-top: 40px;
}

.before-after-carousel {
  position: relative;
  margin-top: 30px;
  padding: 0 10px;
}

.before-after-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 12px;
  scrollbar-width: none;
}

.before-after-track::-webkit-scrollbar {
  display: none;
}

.before-after-slide {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  width: min(32vw, 320px);
  min-width: 320px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
  scroll-snap-align: center;
}

.before-after-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(13, 61, 71, 0.16);
}

.before-after-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.before-after-label {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
  pointer-events: none;
}

.before-after-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.before-after-carousel .carousel-arrow-prev {
  left: -14px;
}

.before-after-carousel .carousel-arrow-next {
  right: -14px;
}

.before-after-carousel .carousel-arrow {
  opacity: 0.95;
}

.before-after-label span {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.gallery-caption {
  margin-top: 22px !important;
}

.clinic-gallery {
  padding: 88px 0 0;
}

.clinic-images-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.clinic-image-card {
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.clinic-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(13, 61, 71, 0.16);
}

.clinic-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recovery-candidacy {
  padding: 88px 0 0;
}

.recovery-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.recovery-cta {
  margin-top: 30px;
}

.hero-badge img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-cyan));
  color: #f8fffe;
}

.button-secondary {
  border: 1px solid rgba(16, 33, 40, 0.14);
  background: rgba(255, 255, 255, 0.68);
}

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

.metrics article,
.info-card,
.timeline-item,
.bio-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.metrics article {
  padding: 24px;
}

.metrics strong {
  display: block;
  font-size: 2rem;
  font-family: "Marcellus", serif;
  color: var(--brand-cyan-dark);
}

.metrics span,
.info-card p,
.bio-copy p,
.timeline-item p,
.cta-panel p,
.bio-panel p {
  color: var(--muted);
}

.association-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.association-card {
  padding: 26px 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.association-card img {
  display: none;
}

.association-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.bio-section,
.timeline,
.cta {
  padding: 88px 0 0;
}

.associations-section,
.certificates-section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 760px;
}

.whatsapp-icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.results-video-embed {
  position: relative;
  display: block;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.results-video-embed img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.results-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

.results-video-embed:hover .results-video-play,
.results-video-embed:focus-visible .results-video-play {
  background: rgba(0, 0, 0, 0.75);
}

.bio-grid,
.memberships-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 24px;
  margin-top: 30px;
  align-items: start;
}

.bio-copy {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
  align-content: start;
}

.bio-copy p {
  margin: 0;
}

.bio-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.bio-highlight {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.bio-highlight h3 {
  margin: 10px 0 12px;
  font-family: "Marcellus", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.12;
}

.bio-highlight p {
  color: var(--muted);
}

.bio-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(235, 255, 242, 0.96), rgba(230, 250, 239, 0.88));
  border: 1px solid rgba(37, 211, 102, 0.18);
  box-shadow: var(--shadow);
}

.bio-whatsapp-copy {
  max-width: 760px;
}

.bio-whatsapp-cta h3 {
  margin: 0 0 12px;
  font-family: "Marcellus", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  line-height: 1.2;
}

.bio-whatsapp-cta p {
  margin: 0;
  color: var(--muted);
}

.whatsapp-cta-button {
  margin-top: 22px;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1fb956);
  color: #fff;
}

.bio-panel {
  padding: 28px;
}

.bio-panel h3 {
  font-size: 2rem;
}

.bio-photo-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.72);
}

.bio-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.expertise,
.memberships {
  padding: 88px 0 0;
  background: rgba(246, 250, 252, 0.78);
  border-radius: 40px;
  margin: 0 -20px;
  padding: 88px 20px 32px;
}

.memberships .site-shell {
  padding: 0;
}

.section-heading+.membership-list {
  margin-top: 24px;
}

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

.membership-list span {
  display: block;
  min-height: auto;
  padding: 20px 22px;
  border: 1px solid rgba(11, 165, 184, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(13, 61, 71, 0.06);
  font-weight: 700;
  color: var(--brand-cyan-dark);
}

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

.service-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-ribbon span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent-dark);
  font-weight: 700;
}

.info-card {
  padding: 24px;
}

.info-card h3,
.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
}

.timeline-year {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: var(--brand-cyan-dark);
}

.membership-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
}

.membership-list span {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  color: var(--brand-cyan-dark);
}

.video-showcase {
  width: 100%;
  padding: 88px 0 0;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.video-showcase-copy {
  max-width: 980px;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.video-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.video-placeholder-card {
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-embed-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: rgba(0, 0, 0, 0.08);
}

.video-embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.certificate-intro {
  max-width: 860px;
  margin-top: 24px;
}

.certificate-intro p {
  margin: 0;
  color: var(--muted);
}

.certificate-carousel {
  position: relative;
  margin-top: 28px;
}

.certificate-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 8px;
  scrollbar-width: none;
}

.certificate-track::-webkit-scrollbar {
  display: none;
}

.certificate-card {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  cursor: pointer;
  scroll-snap-align: start;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.doctor-profile {
  margin: 40px 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.doctor-profile-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
}

.doctor-photo {
  width: 100%;
  max-width: 260px;
  box-shadow: var(--shadow);
}

.doctor-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.doctor-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.doctor-title {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-description {
  margin: 0 0 20px 0;
  line-height: 1.6;
  color: var(--muted);
}

.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doctor-credentials span {
  padding: 6px 12px;
  background: rgba(11, 165, 184, 0.1);
  border: 1px solid rgba(11, 165, 184, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.doctor-cv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #058ea0;
  background: linear-gradient(135deg, #09aec3, #067c8b);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.doctor-cv-button:hover,
.doctor-cv-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(6, 124, 139, 0.35);
  filter: brightness(1.05);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 150, 160, 0.92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.carousel-arrow-prev {
  left: -10px;
}

.carousel-arrow-next {
  right: -10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 18, 22, 0.88);
  z-index: 300;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.contact-section {
  padding: 88px 0 0;
}

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

.contact-map {
  margin-top: 40px;
  text-align: center;
}

.contact-map iframe {
  max-width: 100%;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 10px 0 10px;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.contact-card a {
  color: var(--brand-cyan-dark);
  font-weight: 700;
}

.cta {
  padding-bottom: 60px;
}

.cta-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(135deg, rgba(201, 166, 75, 0.18), rgba(37, 200, 210, 0.1));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  margin-top: 24px;
  padding: 34px 0 18px;
  background: linear-gradient(180deg, rgba(212, 241, 246, 0.92), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(11, 165, 184, 0.14);
}

#footer-tr {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand p,
.footer-column p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-brand-head {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-dark);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 22, 18, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .brand-logo {
    width: 230px;
  }

  .footer-logo {
    width: 210px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .footer-grid,
  .association-grid,
  .video-showcase-grid,
  .bio-grid,
  .memberships-grid,
  .card-grid,
  .metrics,
  .contact-grid,
  .before-after-carousel,
  .clinic-images-grid,
  .recovery-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-profile-content {
    grid-template-columns: 160px 1fr;
    gap: 24px;
  }

  .hero-copy {
    padding: 34px 0 24px;
  }

  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
  }

  .hero-content {
    max-width: none;
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-heading,
  .hero-text {
    max-width: none;
  }

  .hero-offer-panel {
    grid-template-columns: 0.85fr 0.95fr 1.35fr;
  }

  .hero-visual-wrap {
    position: relative;
    inset: auto;
    order: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    width: 100%;
    margin: 0;
  }

  .hero-visual-card {
    position: relative;
    inset: auto;
    min-height: 520px;
    background:
      radial-gradient(ellipse at 69% 102%, rgba(120, 73, 48, 0.5), rgba(186, 124, 91, 0.22) 30%, rgba(255, 233, 220, 0) 58%);
    overflow: hidden;
  }

  .hero-visual-card img {
    display: block;
    right: 50%;
    bottom: 0;
    width: auto;
    height: 100%;
    max-width: none;
    transform: translateX(50%);
  }

  .hero-expertise-badge {
    right: 6%;
    bottom: 8%;
    width: 156px;
  }

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

  .hero-trust-item:nth-child(2)::after {
    display: none;
  }

  .video-embed-frame {
    min-height: 280px;
  }

  .certificate-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .before-after-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .before-after-carousel {
    padding: 0;
  }

  .doctor-profile {
    padding: 24px;
  }

  .doctor-profile-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .doctor-photo {
    margin: 0 auto;
    max-width: 180px;
  }

  .hero {
    padding-top: 0;
  }

  .before-after-track {
    grid-auto-columns: minmax(100%, 100%);
    padding: 4px 0 8px;
  }

  .header-bar {
    grid-template-columns: 1fr auto auto;
    min-height: 96px;
    padding: 14px 0;
  }

  .brand-logo {
    width: 170px;
  }

  .footer-logo {
    width: 180px;
  }

  .mobile-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16b6c9, #079ab1);
    color: #fff;
    box-shadow: 0 14px 28px rgba(11, 165, 184, 0.22);
  }

  .mobile-call-button .phone-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: currentColor;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #16b6c9, #079ab1);
    box-shadow: 0 14px 28px rgba(11, 165, 184, 0.22);
  }

  .menu-toggle span {
    width: 18px;
    background: #fff;
  }

  .footer-grid,
  .association-grid,
  .video-showcase-grid,
  .bio-grid,
  .memberships-grid,
  .card-grid,
  .metrics,
  .contact-grid,
  .timeline-item,
  .before-after-carousel,
  .clinic-images-grid,
  .recovery-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .site-header.is-open .main-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
    padding: 16px 18px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 165, 184, 0.12);
  }

  .hero-copy,
  .cta-panel,
  .metrics article,
  .info-card,
  .timeline-item,
  .bio-panel,
  .contact-card {
    padding: 22px;
  }

  .hero-copy {
    width: min(calc(100% - 20px), 1400px);
    padding: 0 0 24px;
  }

  .hero-layout {
    gap: 0;
    min-height: 0;
  }

  .bio-highlight {
    padding: 22px;
  }

  .bio-whatsapp-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .bio-photo-panel img {
    min-height: 360px;
  }

  .hero-content {
    order: 2;
    padding: 20px 22px 0;
  }

  .hero-heading-desktop,
  .hero-text-desktop,
  .hero-expertise-badge {
    display: none;
  }

  .hero-heading-mobile,
  .hero-text-mobile {
    display: block;
  }

  .hero-heading-mobile {
    max-width: 6.1ch;
    margin-top: 22px;
    font-size: clamp(4rem, 14vw, 5.8rem);
  }

  .hero-text-mobile {
    max-width: 10.5ch;
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.42;
  }

  .hero-divider {
    width: 76px;
    margin-top: 18px;
  }

  .hero-pill {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .hero-visual-wrap {
    position: relative;
    order: 1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 10px;
  }

  .hero-visual-card {
    min-height: 392px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background:
      radial-gradient(ellipse at 68% 102%, rgba(120, 73, 48, 0.42), rgba(186, 124, 91, 0.18) 30%, rgba(255, 233, 220, 0) 58%);
  }

  .hero-visual-card img {
    display: block;
    right: 50%;
    bottom: 0;
    width: auto;
    height: 100%;
    max-width: 132%;
    transform: translateX(50%);
  }

  .hero-benefits-panel {
    margin-top: 26px;
    padding: 20px 6px;
    border-radius: 24px;
  }

  .hero-benefit-item {
    gap: 10px;
    padding: 0 10px;
  }

  .hero-benefit-icon {
    width: 54px;
    height: 54px;
  }

  .hero-benefit-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-benefit-item strong {
    font-size: 0.76rem;
    line-height: 1.18;
  }

  .hero-offer-panel {
    grid-template-columns: 0.84fr 0.92fr 1.24fr;
    margin-top: 26px;
    padding: 34px 14px 18px;
    border-radius: 24px;
  }

  .hero-offer-ribbon {
    left: 16px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 0.74rem;
  }

  .hero-offer-column {
    min-height: 118px;
    padding: 0 8px;
  }

  .hero-offer-column-discount strong {
    font-size: 3.1rem;
  }

  .hero-offer-column-treatment {
    font-size: 0.88rem;
  }

  .hero-offer-column-consultation {
    gap: 12px;
  }

  .hero-offer-gift {
    width: 58px;
    height: 58px;
  }

  .hero-offer-gift svg {
    width: 32px;
    height: 32px;
  }

  .hero-offer-copy {
    gap: 6px;
  }

  .hero-offer-copy strong {
    font-size: 0.96rem;
  }

  .hero-offer-copy span {
    font-size: 0.8rem;
  }

  .hero-actions-reference {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .hero-cta {
    width: 100%;
    min-height: 58px;
  }

  .hero-trust-strip {
    margin-top: 20px;
    padding: 18px 14px 20px;
    border-radius: 24px;
  }

  .hero-trust-strip-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
    color: #0c5d71;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .hero-trust-strip-title span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 168, 187, 0.3);
  }

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

  .hero-trust-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    font-size: 0.72rem;
    text-align: center;
  }

  .hero-trust-item::after {
    display: none;
  }

  .hero-trust-icon {
    width: 30px;
    height: 30px;
  }

  .hero-trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .doctor-badge-container img {
    max-height: 70px;
  }

  .trust-badges-container {
    gap: 24px;
  }

  .trust-badge-link img {
    max-height: 56px;
  }

  .trust-badge-link-certificate img {
    max-height: none;
    width: min(100%, 340px);
  }

  .contact-map iframe {
    height: 280px;
  }

  .section-heading h2,
  .bio-panel h3 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .bio-section,
  .timeline,
  .expertise,
  .associations-section,
  .certificates-section,
  .recovery-candidacy,
  .contact-section,
  .memberships,
  .video-showcase,
  .cta {
    padding-top: 72px;
  }

  .timeline-year {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-band {
    width: min(calc(100vw - 8px), 1030px);
    border-radius: 34px;
  }

  .video-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .video-embed-frame {
    min-height: 0;
  }

  .certificate-track {
    grid-auto-columns: 100%;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .carousel-arrow-prev {
    left: 6px;
  }

  .carousel-arrow-next {
    right: 6px;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  #footer-tr {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(16, 33, 40, 0.08);
    box-shadow: 0 -10px 30px rgba(16, 33, 40, 0.08);
    backdrop-filter: blur(14px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  #footer-tr a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.92rem;
  }

  #footer-tr .left a {
    color: #1fb956;
  }

  #footer-tr .right a {
    color: var(--brand-cyan-dark);
  }

  .dotposition,
  .dotpositionright {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(31, 185, 86, 0.12);
    flex: 0 0 auto;
  }

  .dotpositionright {
    background: rgba(14, 150, 160, 0.12);
  }

  .dotposition svg,
  .dotpositionright svg {
    width: 18px;
    height: 18px;
  }
}

/* Final hero rendering: exact desktop/mobile reference artwork */
.site-header {
  display: none !important;
}

.hero {
  padding: 10px 0 12px;
}

.hero-band {
  width: min(calc(100vw - 28px), 1536px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero-band::before {
  display: none;
}

.hero-reference-picture {
  display: block;
  width: 100%;
  aspect-ratio: 1536 / 1024;
}

.hero-reference-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#footer-tr {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    padding: 8px 0 10px;
  }

  .hero-band {
    width: min(calc(100vw - 8px), 1024px);
  }

  .hero-reference-picture {
    aspect-ratio: 1024 / 1536;
  }
}

/* Hero clone: desktop + mobile reference recreation */
.site-header {
  display: none !important;
}

#footer-tr {
  display: none !important;
}

body {
  padding-bottom: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

body.hero-mobile-menu-open {
  overflow: hidden;
}

.hero-clone {
  padding: var(--hero-clone-nav-height) 0 24px;
}

.hero-clone-navshell {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 180;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-clone-frame {
  position: relative;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 184, 201, 0.2);
  border-radius: 0;
  background:
    radial-gradient(circle at 11% 44%, rgba(111, 223, 240, 0.24), rgba(111, 223, 240, 0) 26%),
    radial-gradient(circle at 91% 51%, rgba(43, 198, 222, 0.13), rgba(43, 198, 222, 0) 20%),
    linear-gradient(145deg, #eefbfd 0%, #f9fefe 36%, #f7fcfd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-clone-topbar {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 102px;
  width: 100%;
  padding: 0 48px 0 54px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 184, 201, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 26px rgba(7, 70, 85, 0.06);
}

.hero-clone-brand img {
  width: 160px;
  height: auto;
  display: block;
}

.hero-clone-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.hero-clone-nav a {
  font-size: 0.98rem;
  font-weight: 700;
  color: #123e49;
}

.hero-clone-topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-clone-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-cyan-dark);
  font-size: 0.97rem;
  font-weight: 800;
}

.hero-clone-phone svg,
.hero-clone-mobile-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-clone-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #19b7ca, #12a4bc);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(17, 168, 187, 0.22);
}

.hero-clone-mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.hero-clone-mobile-panel {
  display: none;
}

.hero-clone-mobile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #16b6c9, #079ab1);
  color: #fff;
  box-shadow: 0 16px 28px rgba(11, 165, 184, 0.26);
  cursor: pointer;
}

.hero-clone-menu {
  flex-direction: column;
  gap: 4px;
}

.hero-clone-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

.hero-clone-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: stretch;
  min-height: 980px;
  width: min(100%, 1536px);
  margin: 0 auto;
  overflow: hidden;
}

.hero-clone-copy {
  position: relative;
  z-index: 2;
  padding: 52px 18px 0 82px;
}

.hero-clone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #62d9ec, #17abc0);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 18px 32px rgba(14, 165, 184, 0.18);
}

.hero-clone-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hero-clone-heading {
  margin: 26px 0 0;
  font-size: clamp(4.65rem, 5.85vw, 6.25rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: #083d49;
}

.hero-clone-heading span {
  display: block;
}

.hero-clone-heading-desktop span:first-child,
.hero-clone-heading-desktop span:last-child {
  white-space: nowrap;
}

.hero-clone-heading-desktop span:first-child {
  display: inline-block;
}

.hero-clone-heading-mobile span:last-child {
  white-space: nowrap;
}

.hero-clone-heading .accent {
  color: var(--brand-cyan-dark);
}

.hero-clone-heading-mobile,
.hero-clone-text-mobile,
.hero-clone-trust-title {
  display: none;
}

.hero-clone-text {
  max-width: 34ch;
  margin: 24px 0 0;
  font-size: calc(1rem + 2px);
  line-height: 1.5;
  color: rgba(32, 68, 78, 0.88);
}

.hero-clone-text-desktop {
  max-width: 38ch;
  font-size: 1.24rem;
  line-height: 1.45;
}

.hero-clone-text strong {
  color: var(--brand-cyan-dark);
  font-weight: 700;
}

.hero-clone-divider {
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15b8c9, #0f9cb4);
}

.hero-clone-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin-top: 26px;
}

.hero-clone-benefit {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 8px;
  text-align: center;
}

.hero-clone-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(17, 168, 187, 0.15);
}

.hero-clone-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 168, 187, 0.7);
  color: var(--brand-cyan-dark);
}

.hero-clone-benefit-icon svg {
  width: 40px;
  height: 40px;
}

.hero-clone-benefit strong {
  max-width: 9ch;
  font-size: 0.98rem;
  line-height: 1.18;
  color: #0c5d71;
}

.hero-clone-offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.75fr;
  align-items: stretch;
  max-width: 640px;
  margin-top: 28px;
  padding: 32px 22px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, #03849e, #12b6cb);
  box-shadow: 0 28px 54px rgba(8, 129, 150, 0.24);
}

.hero-clone-offer-ribbon {
  position: absolute;
  top: 0;
  left: 26px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 30px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(135deg, #ffd54f, #ffbe2f);
  color: #725100;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-clone-offer-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 0 14px;
  color: #fff;
}

.hero-clone-offer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: rgba(255, 255, 255, 0.34);
}

.hero-clone-offer-discount {
  justify-content: center;
}

.hero-clone-offer-discount strong {
  font-size: clamp(calc(4rem - 1px), calc(4.6vw - 1px), calc(4.8rem - 1px));
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-align: center;
}

.hero-clone-offer-discount .up-to {
  display: block;
  margin-bottom: 2px;
  font-size: 0.28em;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.hero-clone-offer-discount .discount-main {
  display: block;
}

.hero-clone-offer-treatment {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
}

.hero-clone-offer-treatment strong {
  font-size: 1.04rem;
  line-height: 1.1;
}

.hero-clone-offer-consult {
  justify-content: flex-start;
  gap: 18px;
}

.hero-clone-gift-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0ea8c1;
}

.hero-clone-gift-icon svg {
  width: 46px;
  height: 46px;
}

.hero-clone-offer-copy {
  display: grid;
  gap: 8px;
}

.hero-clone-offer-copy strong {
  font-size: 1.16rem;
  line-height: 1.08;
}

.hero-clone-offer-copy span {
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-clone-actions {
  display: flex;
  gap: 16px;
  max-width: 640px;
  margin-top: 18px;
}

.hero-clone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.hero-clone-cta-primary {
  flex: 1 1 0;
  background: linear-gradient(135deg, #ffba22, #ff9807);
  color: #fff;
  box-shadow: 0 20px 34px rgba(255, 162, 17, 0.28);
}

.hero-clone-cta-primary svg {
  width: 22px;
  height: 22px;
}

.hero-clone-cta-secondary {
  flex: 0 0 296px;
  border: 1.5px solid rgba(17, 168, 187, 0.68);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-cyan-dark);
}

.hero-clone-cta-secondary svg {
  width: 20px;
  height: 20px;
}

.hero-clone-visual {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
}

.hero-clone-visual-bg {
  position: absolute;
  right: 1%;
  top: -1%;
  width: min(98%, 740px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(18, 196, 220, 0.86), rgba(18, 196, 220, 0.34) 50%, rgba(18, 196, 220, 0.1) 66%, rgba(18, 196, 220, 0) 78%);
  opacity: 0.9;
  filter: blur(8px);
}

.hero-clone-visual-rays {
  position: absolute;
  right: -4%;
  top: 0;
  width: 38%;
  height: 50%;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.24) 48%, rgba(255, 255, 255, 0) 80%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.18) 0 10px, rgba(255, 255, 255, 0) 10px 34px);
  opacity: 0.55;
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 45%);
}

.hero-clone-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 -2% 5%;
  height: 24%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 63, 0.42), rgba(177, 118, 88, 0.16) 34%, rgba(243, 206, 183, 0.04) 56%, rgba(255, 255, 255, 0) 76%);
  filter: blur(30px);
  opacity: 0.92;
}

.hero-clone-visual img {
  position: absolute;
  right: calc(-6% - 75px);
  top: 35px;
  bottom: auto;
  width: auto;
  height: 104%;
  max-width: none;
  display: block;
  z-index: 2;
}

.hero-clone-badge {
  position: absolute;
  right: 8%;
  bottom: 9%;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(214, 245, 249, 0.72));
  border: 5px solid rgba(124, 223, 233, 0.65);
  color: #0c4857;
  text-align: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.22), 0 24px 50px rgba(13, 61, 71, 0.14);
}

.hero-clone-badge .stars {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--brand-cyan-dark);
}

.hero-clone-badge strong {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 0.98;
}

.hero-clone-badge span:last-child {
  margin-top: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.14;
}

.hero-clone-trust {
  width: min(calc(100% - 152px), 1384px);
  margin: 34px auto 30px;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 168, 187, 0.12);
  box-shadow: 0 18px 36px rgba(13, 61, 71, 0.06);
}

.hero-clone-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-clone-trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  color: #244852;
}

.hero-clone-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(17, 168, 187, 0.14);
}

.hero-clone-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--brand-cyan-dark);
}

.hero-clone-trust-icon svg {
  width: 34px;
  height: 34px;
}

.hero-clone-trust-item strong {
  font-size: 0.96rem;
  line-height: 1.24;
}

@media (max-width: 1100px) {
  .hero-clone-navshell {
    width: 100%;
  }

  .hero-clone-topbar {
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
    padding: 0 28px 0 36px;
  }

  .hero-clone-nav {
    gap: 24px;
  }

  .hero-clone-body {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    min-height: 760px;
  }

  .hero-clone-visual img {
    right: calc(-4% - 75px);
    width: auto;
    height: 102%;
  }

  .hero-clone-copy {
    padding-left: 40px;
  }

  .hero-clone-heading {
    font-size: clamp(3.9rem, 5vw, 5.15rem);
  }

  .hero-clone-text,
  .hero-clone-benefits,
  .hero-clone-offer,
  .hero-clone-actions {
    max-width: 100%;
  }

  .hero-clone-trust {
    width: min(calc(100% - 72px), 1320px);
    margin: 28px auto 28px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: calc(var(--hero-clone-nav-height-mobile) + 10px);
  }

  .hero-clone {
    padding: var(--hero-clone-nav-height-mobile) 0 20px;
  }

  .hero-clone-navshell {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 58, 72, 0.08);
  }

  .hero-clone-frame {
    width: 100%;
    border-radius: 0;
    background:
      radial-gradient(circle at 18% 60%, rgba(111, 223, 240, 0.2), rgba(111, 223, 240, 0) 30%),
      linear-gradient(160deg, #eefbfd 0%, #fbfefe 42%, #f8fcfd 100%);
  }

  .hero-clone-topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 86px;
    padding: 0 14px 0 16px;
  }

  .hero-clone-brand img {
    width: 132px;
  }

  .hero-clone-nav,
  .hero-clone-topbar-actions {
    display: none;
  }

  .hero-clone-mobile-actions {
    display: flex;
    gap: 10px;
  }

  .hero-clone-mobile-panel {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    z-index: 60;
    display: grid;
    gap: 16px;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 0;
    border-radius: 0 0 24px 24px;
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 24px 44px rgba(7, 70, 85, 0.12);
    opacity: 0;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .hero-clone-navshell.is-menu-open .hero-clone-mobile-panel {
    max-height: calc(100vh - 86px);
    padding: 16px 18px 20px;
    border-color: rgba(17, 184, 201, 0.12);
    opacity: 1;
  }

  .hero-clone-mobile-nav {
    display: grid;
    gap: 10px;
  }

  .hero-clone-mobile-nav a,
  .hero-clone-mobile-panel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 18px;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: center;
  }

  .hero-clone-mobile-nav a {
    background: rgba(12, 168, 191, 0.08);
    color: #0e4f5e;
  }

  .hero-clone-mobile-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-clone-mobile-panel-link {
    background: linear-gradient(135deg, #ffba22, #ff9807);
    color: #fff;
    box-shadow: 0 14px 24px rgba(255, 162, 17, 0.2);
  }

  .hero-clone-mobile-panel-link-secondary {
    background: rgba(255, 255, 255, 0.94);
    border: 1.5px solid rgba(17, 168, 187, 0.68);
    color: var(--brand-cyan-dark);
    box-shadow: none;
  }

  .hero-clone-body {
    position: relative;
    display: block;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    overflow-x: clip;
    isolation: isolate;
  }

  .hero-clone-copy {
    position: relative;
    z-index: 2;
    padding: 18px 14px 0;
    width: 100%;
    max-width: none;
  }

  .hero-clone-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  .hero-clone-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, rgba(238, 251, 253, 0.85) 0%, rgba(238, 251, 253, 0.42) 56%, rgba(238, 251, 253, 0) 100%);
    z-index: 3;
    pointer-events: none;
  }

  .hero-clone-visual-bg {
    top: 7%;
    right: -18%;
    width: 94%;
    opacity: 0.62;
  }

  .hero-clone-visual-rays {
    right: -16%;
    top: 4%;
    width: 48%;
    height: 42%;
    opacity: 0.32;
  }

  .hero-clone-visual::after,
  .hero-clone-badge {
    display: none;
  }

  .hero-clone-visual img {
    position: absolute;
    top: 8px;
    right: -325px;
    width: min(153vw, 720px);
    height: auto;
    max-height: 1058px;
    max-width: none;
    transform: none;
    object-fit: contain;
    object-position: right top;
  }

  .hero-clone-pill {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .hero-clone-heading-desktop,
  .hero-clone-text-desktop {
    display: none;
  }

  .hero-clone-heading-mobile,
  .hero-clone-text-mobile,
  .hero-clone-trust-title {
    display: block;
  }

  .hero-clone-heading-mobile {
    position: relative;
    z-index: 2;
    max-width: 52%;
    margin-top: 16px;
    font-size: clamp(2.8rem, 10vw, 3.7rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }

  .hero-clone-text-mobile {
    position: relative;
    z-index: 2;
    max-width: 48%;
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.42;
    padding: 8px 8px 8px 0;
    background: transparent;
    border-radius: 0;
  }

  .hero-clone-divider {
    max-width: 45%;
    width: 78px;
    margin-top: 18px;
  }

  .hero-clone-benefits {
    display: none;
  }

  .hero-clone-benefit {
    gap: 10px;
    padding: 0 10px;
  }

  .hero-clone-benefit-icon {
    width: 56px;
    height: 56px;
  }

  .hero-clone-benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-clone-benefit strong {
    font-size: 0.74rem;
  }

  .hero-clone-offer {
    position: relative;
    z-index: 2;
    grid-template-columns: 0.98fr 0.78fr 0.94fr;
    width: 100%;
    max-width: none;
    margin-top: 46px;
    padding: 32px 10px 14px;
    border-radius: 24px;
  }

  .hero-clone-offer-ribbon {
    left: 16px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 0.74rem;
  }

  .hero-clone-offer-col {
    min-height: 104px;
    padding: 0 6px;
  }

  .hero-clone-offer-discount strong {
    font-size: 3.2rem;
  }

  .hero-clone-offer-treatment strong {
    font-size: 0.74rem;
  }

  .hero-clone-offer-consult {
    gap: 8px;
  }

  .hero-clone-gift-icon {
    width: 48px;
    height: 48px;
  }

  .hero-clone-gift-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-clone-offer-copy strong {
    font-size: 0.56rem;
    line-height: 1.06;
  }

  .hero-clone-offer-copy span {
    font-size: 0.5rem;
    line-height: 1.18;
  }

  .hero-clone-actions {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .hero-clone-cta {
    width: 100%;
    min-height: 58px;
  }

  .hero-clone-cta-secondary {
    display: none;
  }

  .hero-clone-trust {
    width: calc(100% - 40px);
    margin: 10px auto 22px;
    padding: 18px 14px 20px;
    border-radius: 24px;
  }

  .hero-clone-trust-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #0c5d71;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hero-clone-trust-title span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(17, 168, 187, 0.28);
  }

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

  .hero-clone-trust-item {
    flex-direction: column;
    gap: 10px;
    padding: 0 8px;
    text-align: center;
  }

  .hero-clone-trust-item strong {
    font-size: 0.74rem;
    line-height: 1.16;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: calc(var(--hero-clone-nav-height-mobile-sm) + 10px);
  }

  .hero-clone {
    padding-top: var(--hero-clone-nav-height-mobile-sm);
  }

  .hero-clone-topbar {
    min-height: 76px;
    padding: 0 16px 0 12px;
  }

  .hero-clone-brand img {
    width: 84px;
  }

  .hero-clone-mobile-actions {
    gap: 6px;
  }

  .hero-clone-mobile-icon {
    width: 40px;
    height: 40px;
  }

  .hero-clone-navshell.is-menu-open .hero-clone-mobile-panel {
    padding: 14px 14px 18px;
    max-height: calc(100vh - 76px);
  }

  .hero-clone-mobile-panel {
    top: 76px;
    padding: 0 14px;
  }

  .hero-clone-mobile-panel-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-clone-body {
    min-height: 640px;
  }

  .hero-clone-copy {
    padding: 14px 12px 0;
    width: 100%;
    max-width: none;
  }

  .hero-clone-pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.69rem;
  }

  .hero-clone-heading-mobile {
    max-width: 52%;
    font-size: clamp(2.55rem, 10.6vw, 3.2rem);
  }

  .hero-clone-text-mobile {
    max-width: 48%;
    font-size: 0.92rem;
    line-height: 1.4;
    padding: 6px 8px 6px 0;
  }

  .hero-clone-visual {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero-clone-visual-bg {
    right: -24%;
    width: 96%;
  }

  .hero-clone-visual img {
    top: 10px;
    right: -205px;
    width: min(153vw, 639px);
    height: auto;
    max-height: 968px;
    max-width: none;
    transform: none;
    object-fit: contain;
    object-position: right top;
  }

  .hero-clone-benefits {
    display: none;
  }

  .hero-clone-benefit {
    padding: 0 4px;
  }

  .hero-clone-benefit-icon {
    width: 48px;
    height: 48px;
  }

  .hero-clone-benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-clone-benefit strong {
    font-size: 0.66rem;
  }

  .hero-clone-offer {
    grid-template-columns: 0.98fr 0.82fr 1fr;
    margin-top: 42px;
    padding: 28px 6px 12px;
  }

  .hero-clone-offer-ribbon {
    left: 12px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .hero-clone-offer-col {
    min-height: 102px;
    padding: 0 4px;
  }

  .hero-clone-offer-discount strong {
    font-size: 2.5rem;
  }

  .hero-clone-offer-treatment strong {
    font-size: 0.64rem;
  }

  .hero-clone-gift-icon {
    width: 44px;
    height: 44px;
  }

  .hero-clone-gift-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-clone-offer-copy strong {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .hero-clone-offer-copy span {
    font-size: 0.54rem;
    line-height: 1.18;
  }

  .hero-clone-cta {
    min-height: 54px;
    font-size: 0.9rem;
  }

  .hero-clone-trust-grid {
    gap: 4px;
  }

  .hero-clone-trust-item {
    gap: 8px;
    padding: 0 4px;
  }

  .hero-clone-trust-icon {
    width: 30px;
    height: 30px;
  }

  .hero-clone-trust-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-clone-trust-item strong {
    font-size: 0.64rem;
  }
}

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8cb, #0f9db3);
  color: #fff;
  box-shadow: 0 18px 34px rgba(14, 150, 160, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 165;
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: 128px;
  }

  #footer-tr {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    max-width: calc(100vw - 24px);
    z-index: 160;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }

  #footer-tr .left,
  #footer-tr .right {
    min-width: 0;
  }

  #footer-tr a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 10px;
    min-height: 60px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
    box-shadow: 0 14px 26px rgba(10, 48, 60, 0.18);
  }

  #footer-tr span {
    display: block;
    min-width: 0;
    white-space: nowrap;
  }

  #footer-tr .left a {
    background: linear-gradient(135deg, #24d267, #16b84d);
    color: #fff !important;
  }

  #footer-tr .right a {
    background: linear-gradient(135deg, #18b6ca, #0f9cb3);
    color: #fff !important;
  }

  .dotposition,
  .dotpositionright {
    margin: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.18);
  }

  .dotposition svg,
  .dotpositionright svg {
    width: 17px;
    height: 17px;
  }

  .scroll-top-button {
    right: 14px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  body.hero-mobile-menu-open #footer-tr {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.hero-mobile-menu-open .scroll-top-button {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }
}

@media (max-width: 540px) {
  #footer-tr {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    max-width: calc(100vw - 20px);
    gap: 8px;
  }

  #footer-tr a {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .dotposition,
  .dotpositionright {
    width: 30px;
    height: 30px;
  }

  .dotposition svg,
  .dotpositionright svg {
    width: 16px;
    height: 16px;
  }

  .scroll-top-button {
    right: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
}
