:root {
  --black: #070706;
  --ink: #151412;
  --graphite: #26231f;
  --soft-black: #11100e;
  --ivory: #f7f3eb;
  --paper: #fffaf0;
  --muted: #bcb5a8;
  --gold: #b4975a;
  --gold-dark: #8b5e3c;
  --gold-mid: #ae855e;
  --gold-light: #d6b586;
  --clinical: #8fc5bd;
  --line: rgba(180, 151, 90, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  --scroll-progress: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 4px;
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--gold-light) 18%, #f7deb0 70%, transparent);
  box-shadow: 0 0 12px rgba(214, 181, 134, 0.28);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  color: var(--ivory);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 6, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.topline {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.topline a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.navbar,
.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ivory);
}

.brand-logo {
  display: block;
  width: 210px;
  height: auto;
}

.brand-legal-name {
  display: none;
}

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

.header-whatsapp {
  position: relative;
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  margin-left: 2px;
  padding: 0 17px;
  overflow: hidden;
  color: var(--gold-light);
  background: rgba(7, 7, 6, 0.2);
  border: 1px solid rgba(214, 181, 134, 0.38);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.header-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(214, 181, 134, 0.16), transparent);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
}

.header-whatsapp:hover {
  color: var(--ivory);
  background: rgba(214, 181, 134, 0.12);
  border-color: rgba(214, 181, 134, 0.62);
  transform: translateY(-1px);
}

.header-whatsapp:hover::before {
  transform: translateX(120%);
}

.header-whatsapp-full,
.header-whatsapp-short {
  position: relative;
  z-index: 1;
}

.header-whatsapp-short {
  display: none;
}

.header-whatsapp-dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(214, 181, 134, 0.58);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 50%;
  font-family: "Federo", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.brand strong {
  display: block;
  font-family: "Federo", Georgia, serif;
  font-size: 1.46rem;
  font-weight: 400;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu {
  position: relative;
  z-index: 3;
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 700;
}

.menu a {
  color: rgba(247, 243, 235, 0.8);
  transition: color 0.2s ease;
}

.language-picker {
  position: relative;
  z-index: 8;
  flex: 0 0 auto;
}

.language-picker summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  min-width: 82px;
  min-height: 38px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(214, 181, 134, 0.36);
  border-radius: 999px;
  color: rgba(247, 243, 235, 0.86);
  background: linear-gradient(135deg, rgba(214, 181, 134, 0.1), rgba(0, 0, 0, 0.24));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-picker summary::-webkit-details-marker {
  display: none;
}

.language-picker summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1px solid rgba(214, 181, 134, 0.86);
  border-bottom: 1px solid rgba(214, 181, 134, 0.86);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-picker[open] summary,
.language-picker summary:hover {
  border-color: rgba(214, 181, 134, 0.68);
  background: rgba(214, 181, 134, 0.12);
  color: var(--gold-light);
}

.language-picker[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-picker summary strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  border-radius: 999px;
  color: #080705;
  background: var(--gold);
  font-size: 0.72rem;
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 6px;
  width: max-content;
  min-width: 212px;
  padding: 8px;
  border: 1px solid rgba(214, 181, 134, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(30, 28, 24, 0.98), rgba(7, 7, 6, 0.98)),
    radial-gradient(circle at top right, rgba(214, 181, 134, 0.16), transparent 48%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.language-options a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid rgba(214, 181, 134, 0.12);
  border-radius: 10px;
  color: rgba(247, 243, 235, 0.8);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu .language-options a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 7px 10px;
  line-height: 1;
  white-space: nowrap;
}

  .menu .language-options a + a {
    margin-top: 0;
    border-top: 1px solid rgba(247, 243, 235, 0.08);
  }

.menu .language-options a::after {
  content: none;
}

.language-options a:hover {
  transform: translateX(2px);
  border-color: rgba(214, 181, 134, 0.62);
  background: rgba(214, 181, 134, 0.12);
}

.language-flag {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.flag-br {
  background: #169b62;
}

.flag-br::before {
  content: "";
  position: absolute;
  inset: 5px 3px;
  background: #ffdf00;
  transform: rotate(45deg);
}

.flag-br::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #002776;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 2px,
    #fff 2px 4px
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 11px;
  background: #3c3b6e;
}

.flag-us::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 0 #fff, 8px 0 #fff, 2px 4px #fff, 6px 4px #fff, 0 8px #fff, 4px 8px #fff, 8px 8px #fff;
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 28%, #f1bf00 28% 72%, #aa151b 72% 100%);
}

.flag-es::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 4px;
  height: 6px;
  border-radius: 1px;
  background: #c60b1e;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.language-options a > span:not(.language-flag) {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 800;
  min-width: 104px;
  white-space: nowrap;
}

.language-options a strong {
  color: var(--gold-light);
  font-size: 0.72rem;
}

.language-options a.is-active,
.language-options a[aria-current="page"] {
  border-color: rgba(214, 181, 134, 0.86);
  background: linear-gradient(135deg, rgba(214, 181, 134, 0.22), rgba(178, 139, 82, 0.1));
  box-shadow: 0 0 0 3px rgba(214, 181, 134, 0.12), 0 8px 18px rgba(0, 0, 0, 0.22);
}

.menu a:hover {
  color: var(--gold-light);
}

.menu-cta {
  display: none;
}

.nav-toggle {
  order: 4;
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ivory);
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

body.nav-open .nav-toggle span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 76vh;
  padding: 154px 0 66px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  top: 26%;
  right: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.55), transparent);
  box-shadow: 0 0 18px rgba(214, 181, 134, 0.2);
  filter: blur(0.2px);
  opacity: 0;
  transform: translateY(-45%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.9) 34%, rgba(214, 181, 134, 0.18) 48%, rgba(7, 7, 6, 0) 72%),
    linear-gradient(180deg, rgba(214, 181, 134, 0.1), transparent 46%);
  opacity: 0;
  transform: translateX(-108%);
}

.hero-media,
.hero-slide,
.hero-slide picture,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  transform-origin: 64% 44%;
  will-change: transform;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: 63% 42%;
  filter: saturate(0.72) contrast(1.08);
  transform: translateY(var(--hero-y, 0)) scale(1.04);
  will-change: transform;
}

.hero-slide:nth-child(1) img {
  object-position: 62% 45%;
}

.hero-slide:nth-child(2) img {
  object-position: 54% 48%;
}

.hero-slide:nth-child(3) img {
  object-position: 58% 50%;
}

.hero-slide:nth-child(4) img {
  object-position: 60% 48%;
}

.hero-slide:nth-child(5) img {
  object-position: 58% 50%;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 73% 36%, rgba(214, 181, 134, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.95) 0%, rgba(7, 7, 6, 0.7) 34%, rgba(7, 7, 6, 0.04) 77%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-insight {
  position: absolute;
  top: 29%;
  left: clamp(330px, 27vw, 440px);
  z-index: 4;
  width: min(54vw, 700px);
  height: 188px;
  pointer-events: none;
}

.hero-insight-line {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 218px);
  min-width: 380px;
  height: 132px;
  overflow: visible;
}

.hero-insight-base,
.hero-insight-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-insight-base {
  opacity: 0.28;
  stroke: rgba(214, 181, 134, 0.4);
  stroke-width: 0.72;
}

.hero-insight-path {
  opacity: 0.76;
  stroke: url("#heroInsightGradient");
  stroke-width: 1;
  stroke-dasharray: 680;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 5px rgba(214, 181, 134, 0.24));
}

.hero-insight-dot {
  fill: var(--gold-light);
  opacity: 0.95;
  filter: drop-shadow(0 0 11px rgba(214, 181, 134, 0.62));
  transform-box: fill-box;
  transform-origin: center;
}

.hero-insight-card {
  position: absolute;
  top: 92px;
  left: calc(100% - 248px);
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  width: 238px;
  min-height: 76px;
  padding: 10px 12px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.48);
  border: 1px solid rgba(214, 181, 134, 0.34);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-insight-thumb {
  position: relative;
  display: block;
  min-height: 52px;
  overflow: hidden;
  background: #15120f;
  border: 1px solid rgba(214, 181, 134, 0.16);
  border-radius: 4px;
  opacity: 0.9;
}

.hero-insight-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 62%;
  filter: grayscale(0.84) sepia(0.16) saturate(0.72) contrast(1.16) brightness(0.72);
  transform: scale(1.42);
}

.hero-insight-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 48%, rgba(214, 181, 134, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(247, 243, 235, 0.08), transparent 48%),
    rgba(7, 7, 6, 0.1);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-insight-thumb::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.76), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-insight-text {
  display: block;
  align-self: center;
}

.hero-insight-text strong {
  display: block;
  color: rgba(247, 243, 235, 0.88);
  font-family: "Federo", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.25;
}

.hero-insight-text span {
  display: block;
  margin-top: 4px;
  color: rgba(247, 243, 235, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-insight-text i {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 13px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.authority-band h2,
.final-cta h2 {
  max-width: 860px;
  font-family: "Federo", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  will-change: clip-path, opacity, filter;
}

.hero h1 span {
  display: inline;
}

.hero-line {
  max-width: 760px;
  margin-top: 18px;
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.03;
}

.hero-copy {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(247, 243, 235, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

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

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: rgba(247, 243, 235, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.hero-carousel-controls button {
  width: 34px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(247, 243, 235, 0.28);
  border: 0;
  border-radius: 999px;
  transition:
    width 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.hero-carousel-controls button.is-active {
  width: 54px;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(214, 181, 134, 0.32);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 48px;
  padding: 14px 20px;
  overflow: hidden;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.button:hover::after {
  transform: translateX(130%);
}

.button-primary {
  color: var(--black);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
}

.button-whatsapp {
  gap: 9px;
  background:
    linear-gradient(135deg, #dec092, var(--gold-light) 58%, #c39b6a),
    var(--gold-light);
  box-shadow: 0 14px 34px rgba(180, 151, 90, 0.2);
}

.button-whatsapp::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #38c878;
  border: 1px solid rgba(7, 7, 6, 0.18);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(56, 200, 120, 0.1), 0 0 14px rgba(56, 200, 120, 0.34);
}

.final-cta .button-action-marker {
  gap: 10px;
}

.button-green-cue {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #34e48a, #109657);
  border: 1px solid rgba(7, 7, 6, 0.18);
  border-radius: 3px;
  box-shadow: 0 0 0 5px rgba(52, 228, 138, 0.12), 0 0 18px rgba(52, 228, 138, 0.38);
  transform: rotate(45deg);
}

.final-cta .button-action-marker::after {
  z-index: 0;
}

.final-cta .button-action-marker {
  position: relative;
  z-index: 0;
}

.final-cta .button-action-marker > * {
  position: relative;
  z-index: 1;
}

.button-secondary {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.authority-band {
  color: var(--ivory);
  background: var(--black);
  border-top: 1px solid rgba(180, 151, 90, 0.32);
  border-bottom: 1px solid rgba(180, 151, 90, 0.32);
}

.authority-band,
.diagnostic-section,
.technology-section,
.treatment-pathway-section,
.proof-section,
.segments-section,
.second-opinion-section,
.premium-faq-section,
.reviews-section {
  display: none;
}

.signature-strip {
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(17, 16, 14, 0.98)),
    var(--black);
  border-top: 1px solid rgba(180, 151, 90, 0.28);
  border-bottom: 1px solid rgba(180, 151, 90, 0.22);
}

.signature-grid {
  display: grid;
  grid-template-columns: 0.72fr repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  padding: 0;
  background: rgba(180, 151, 90, 0.18);
}

.signature-grid > * {
  padding: 28px;
  background: rgba(7, 7, 6, 0.78);
}

.signature-grid article {
  position: relative;
  overflow: hidden;
}

.signature-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-light), rgba(180, 151, 90, 0));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.signature-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.8), transparent);
  transform: scaleX(0);
  transition: transform 0.9s ease;
}

.signature-grid article.is-visible::before,
.signature-grid article.is-visible::after {
  transform: scale(1);
}

.signature-grid article:nth-of-type(2)::before,
.signature-grid article:nth-of-type(2)::after {
  transition-delay: 0.12s;
}

.signature-grid article:nth-of-type(3)::before,
.signature-grid article:nth-of-type(3)::after {
  transition-delay: 0.24s;
}

.signature-grid article:nth-of-type(4)::before,
.signature-grid article:nth-of-type(4)::after {
  transition-delay: 0.36s;
}

.signature-grid .eyebrow {
  display: flex;
  align-items: center;
}

.signature-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 400;
}

.signature-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(247, 243, 235, 0.68);
  line-height: 1.55;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px 0;
}

.authority-band h2 {
  margin-top: 14px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.authority-item {
  position: relative;
  padding: 4px 0 0 22px;
  border-left: 1px solid var(--line);
}

.authority-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.authority-item.is-visible::after {
  transform: scaleY(1);
}

.authority-item span {
  display: block;
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 2.5rem;
}

.authority-item strong {
  display: block;
  margin-top: 22px;
  font-size: 1.08rem;
}

.authority-item p {
  margin-top: 10px;
  color: rgba(247, 243, 235, 0.68);
  line-height: 1.58;
}

.section {
  padding: 104px 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.sticky-copy h2,
.reviews-layout h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.6vw, 5rem);
}

.section-heading p:not(.eyebrow),
.sticky-copy p,
.reviews-layout p {
  color: #625b50;
  font-size: 1.02rem;
  line-height: 1.72;
}

.specialist-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.98), rgba(255, 250, 240, 0.96)),
    var(--ivory);
}

.specialist-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(180, 151, 90, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 151, 90, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.6;
}

.specialist-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.specialist-portrait {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(180, 151, 90, 0.28);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(7, 7, 6, 0.18);
}

.specialist-portrait picture,
.diagnostic-visual picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.specialist-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 48%;
  filter: saturate(0.9) contrast(1.06);
}

.specialist-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.66)),
    radial-gradient(circle at 62% 24%, rgba(214, 181, 134, 0.2), transparent 38%);
}

.specialist-portrait figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  padding: 18px;
  color: rgba(247, 243, 235, 0.86);
  background: rgba(7, 7, 6, 0.62);
  border: 1px solid rgba(214, 181, 134, 0.24);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.52;
  backdrop-filter: blur(14px);
}

.specialist-content h2 {
  max-width: 760px;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.55rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.specialist-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: #625b50;
  font-size: 1.03rem;
  line-height: 1.72;
}

.specialist-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.2);
  border: 1px solid rgba(180, 151, 90, 0.2);
  border-radius: 8px;
}

.specialist-credentials article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.78);
}

.specialist-credentials span {
  color: var(--gold);
  font-family: "Federo", Georgia, serif;
  font-size: 1.95rem;
  line-height: 1;
}

.specialist-credentials strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.22;
}

.specialist-credentials p {
  margin-top: 12px;
  color: #625b50;
  font-size: 0.92rem;
  line-height: 1.58;
}

.treatment-section {
  background: var(--ivory);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  perspective: 1200px;
}

.treatment-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
  border: 1px solid rgba(214, 181, 134, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.16);
  transform-style: preserve-3d;
}

.treatment-link {
  display: grid;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.treatment-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -8px;
}

.treatment-card::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 181, 134, 0.22), rgba(214, 181, 134, 0.07) 28%, transparent 58%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.05), rgba(7, 7, 6, 0) 48%),
    repeating-linear-gradient(90deg, rgba(214, 181, 134, 0.038) 0 1px, transparent 1px 86px);
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treatment-card:hover::after {
  opacity: 0.78;
  transform: translateY(0);
}

.treatment-card img,
.technical-visual {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.treatment-tech {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(7, 7, 6, 0.54);
  border: 1px solid rgba(214, 181, 134, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  opacity: 0;
  backdrop-filter: blur(14px);
  transform: translateY(12px);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.treatment-card:hover .treatment-tech,
.treatment-card:focus-within .treatment-tech {
  opacity: 1;
  transform: translateY(0);
}

.treatment-tech li {
  position: relative;
  min-height: 28px;
  padding: 7px 8px 7px 19px;
  color: rgba(247, 243, 235, 0.76);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(247, 243, 235, 0.06);
  border-radius: 5px;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.treatment-tech li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(214, 181, 134, 0.5);
  transform: translateY(-50%);
}

.treatment-card img,
.final-cta::before {
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.treatment-card:hover img {
  transform: scale(1.07);
}

.treatment-card,
.real-case-card,
.review-card,
.experience-steps article,
.segments article,
.technology-grid article,
.second-opinion-points article {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.treatment-card:hover,
.real-case-card:hover,
.review-card:hover,
.experience-steps article:hover,
.segments article:hover,
.technology-grid article:hover,
.second-opinion-points article:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 151, 90, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.treatment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 181, 134, 0.28);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card div:last-child {
  position: relative;
  z-index: 4;
  padding: 24px;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treatment-card:hover div:last-child {
  transform: translateY(-6px);
}

.treatment-card p {
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 1.7rem;
}

.treatment-card h3 {
  margin-top: 18px;
  font-family: "Federo", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 400;
}

.treatment-card span {
  display: block;
  margin-top: 12px;
  color: rgba(247, 243, 235, 0.74);
  line-height: 1.58;
}

.treatment-flow {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  margin-top: 0 !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 0.42s ease,
    margin-top 0.42s ease,
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treatment-card:hover .treatment-flow,
.treatment-card:focus-within .treatment-flow {
  max-height: 72px;
  margin-top: 16px !important;
  opacity: 1;
  transform: translateY(0);
}

.treatment-flow i {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 9px;
  color: rgba(247, 243, 235, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(214, 181, 134, 0.16);
  border-radius: 999px;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.treatment-card-gold .treatment-flow i {
  color: rgba(7, 7, 6, 0.72);
  background: rgba(7, 7, 6, 0.06);
  border-color: rgba(7, 7, 6, 0.12);
}

.treatment-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  color: var(--gold-light);
  background: rgba(214, 181, 134, 0.08);
  border: 1px solid rgba(214, 181, 134, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.treatment-card-dark {
  background: var(--graphite);
}

.treatment-card-gold {
  color: var(--black);
  background: var(--gold-light);
}

.treatment-card-gold p,
.treatment-card-gold span {
  color: rgba(7, 7, 6, 0.72);
}

.technical-visual {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(110deg, rgba(7, 7, 6, 0.9), rgba(38, 35, 31, 0.72)),
    repeating-linear-gradient(90deg, rgba(214, 181, 134, 0.2) 0 1px, transparent 1px 46px);
}

.technical-visual span {
  position: absolute;
  display: block;
  border-radius: 999px 999px 32px 32px;
  background: linear-gradient(180deg, #fff7df, #c7ad76);
  box-shadow: inset 0 -12px 20px rgba(139, 94, 60, 0.35), 0 20px 45px rgba(0, 0, 0, 0.35);
}

.technical-visual span:nth-child(1) {
  width: 74px;
  height: 116px;
  transform: translate(-62px, 16px) rotate(-6deg);
}

.technical-visual span:nth-child(2) {
  width: 84px;
  height: 132px;
  transform: translate(0, 6px);
}

.technical-visual span:nth-child(3) {
  width: 70px;
  height: 110px;
  transform: translate(68px, 20px) rotate(8deg);
}

.experience-section {
  color: var(--ivory);
  background: var(--black);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.sticky-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}

.experience-section h2,
.experience-section p {
  color: var(--ivory);
}

.experience-section .sticky-copy p {
  margin-top: 22px;
  color: rgba(247, 243, 235, 0.68);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.experience-steps {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 42px;
}

.experience-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 16px;
  width: 1px;
  background: rgba(214, 181, 134, 0.18);
}

.experience-steps::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 16px;
  width: 1px;
  height: calc(100% - 48px);
  background: linear-gradient(180deg, var(--gold-light), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s ease;
}

.experience-steps.is-visible::after {
  transform: scaleY(1);
}

.experience-steps article {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 151, 90, 0.2);
  border-radius: 8px;
}

.experience-steps article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -38px;
  z-index: 2;
  width: 25px;
  height: 25px;
  background: var(--black);
  border: 1px solid rgba(214, 181, 134, 0.34);
  border-radius: 50%;
}

.experience-steps article::after {
  content: "";
  position: absolute;
  top: 41px;
  left: -31px;
  z-index: 3;
  width: 11px;
  height: 11px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.experience-steps article.is-visible::after {
  opacity: 1;
  transform: scale(1);
}

.experience-steps span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-steps h3 {
  margin-top: 14px;
  font-size: 1.65rem;
}

.experience-steps p {
  margin-top: 12px;
  color: rgba(247, 243, 235, 0.64);
  line-height: 1.6;
}

.experience-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.72fr);
  gap: 18px;
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid rgba(214, 181, 134, 0.16);
}

.experience-cinema::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(210px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.experience-frame {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #070706;
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
}

.experience-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(247, 222, 176, 0.1);
  border-radius: 6px;
}

.experience-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04) 28%, rgba(7, 7, 6, 0.72)),
    radial-gradient(circle at 78% 18%, rgba(214, 181, 134, 0.18), transparent 34%);
}

.experience-frame picture,
.experience-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.experience-frame img,
.diagnostic-stack img,
.pathway-media > img,
.pathway-media-inset img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.07) brightness(0.99);
}

.experience-frame img {
  transition: transform 0.9s cubic-bezier(0.16, 0.9, 0.22, 1), filter 0.9s ease;
}

.experience-frame:hover img {
  filter: saturate(0.94) contrast(1.08) brightness(1.01);
  transform: scale(1.018);
}

.experience-frame-main {
  min-height: clamp(560px, 51vw, 740px);
}

.experience-frame-main img {
  object-position: 52% 45%;
  filter: saturate(1.02) contrast(1.09) brightness(1.06);
}

.experience-frame-main::after {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02) 40%, rgba(7, 7, 6, 0.5)),
    radial-gradient(circle at 78% 18%, rgba(214, 181, 134, 0.12), transparent 34%);
}

.experience-frame figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: grid;
  gap: 9px;
  max-width: 560px;
  padding: 18px 20px;
  color: var(--ivory);
  background: rgba(7, 7, 6, 0.54);
  border: 1px solid rgba(247, 222, 176, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.experience-frame figcaption span,
.experience-note > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-frame figcaption strong {
  max-width: 30ch;
  color: rgba(247, 243, 235, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.36rem);
  font-weight: 700;
  line-height: 1.24;
}

.experience-editorial {
  display: grid;
  gap: 18px;
  align-content: start;
}

.experience-note {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 14px 0 8px 26px;
  border-left: 1px solid rgba(214, 181, 134, 0.28);
}

.experience-note::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -4px;
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(214, 181, 134, 0.42);
}

.experience-note h3 {
  max-width: 12ch;
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2rem, 2.85vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.experience-note p {
  max-width: 40ch;
  color: rgba(247, 243, 235, 0.68);
  line-height: 1.7;
}

.experience-note-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.experience-note-signals span {
  min-height: 31px;
  padding: 8px 10px;
  color: rgba(247, 243, 235, 0.78);
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(214, 181, 134, 0.14);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.experience-frame-scan {
  min-height: 286px;
}

.experience-frame-scan img {
  object-position: 64% 46%;
}

.experience-frame-human {
  min-height: 332px;
  margin-left: 42px;
}

.experience-frame-human img {
  object-position: 58% 44%;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 14%, rgba(143, 197, 189, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(214, 181, 134, 0.16), transparent 34%),
    linear-gradient(145deg, #f8f3e9 0%, #efe5d3 48%, #11100e 48%, #070706 100%);
}

.diagnostic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 7, 6, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  opacity: 0.36;
}

.diagnostic-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(360px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.diagnostic-copy {
  display: grid;
  align-content: center;
  min-height: 620px;
  padding-right: clamp(0px, 3vw, 34px);
  color: var(--ink);
}

.diagnostic-copy h2 {
  max-width: 620px;
  margin-top: 14px;
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.55rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.diagnostic-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: #625b50;
  font-size: 1.03rem;
  line-height: 1.72;
}

.diagnostic-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
  margin-top: 28px;
}

.diagnostic-proof span {
  min-height: 34px;
  padding: 9px 12px;
  color: #3a332b;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(180, 151, 90, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(214, 181, 134, 0.28);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(7, 7, 6, 0.28);
}

.diagnostic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  filter: saturate(0.9) contrast(1.06);
}

.diagnostic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.62)),
    radial-gradient(circle at 70% 28%, rgba(214, 181, 134, 0.24), transparent 38%);
}

.diagnostic-screen {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.68);
  border: 1px solid rgba(214, 181, 134, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.diagnostic-screen span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-screen strong {
  font-family: "Federo", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.02;
}

.diagnostic-stack {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.24);
  border: 1px solid rgba(180, 151, 90, 0.24);
  border-radius: 8px;
}

.diagnostic-stack article {
  display: grid;
  grid-template-rows: 184px minmax(0, 1fr);
  min-height: 388px;
  background:
    linear-gradient(145deg, rgba(24, 22, 19, 0.98), rgba(7, 7, 6, 0.98)),
    var(--black);
}

.diagnostic-stack img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.diagnostic-stack article:nth-child(1) img {
  object-position: 50% 58%;
}

.diagnostic-stack article:nth-child(2) img {
  object-position: 64% 48%;
}

.diagnostic-stack article:nth-child(3) img {
  object-position: 62% 50%;
}

.diagnostic-stack div {
  padding: 24px;
}

.diagnostic-stack span {
  display: block;
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.diagnostic-stack h3 {
  margin-top: 16px;
  color: var(--ivory);
  font-size: 1.25rem;
  line-height: 1.16;
}

.diagnostic-stack p {
  margin-top: 12px;
  color: rgba(247, 243, 235, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.technology-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 18%, rgba(143, 197, 189, 0.12), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(214, 181, 134, 0.15), transparent 34%),
    linear-gradient(135deg, #11100e 0%, #070706 58%, #14110d 100%);
}

.technology-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.34), transparent);
}

.technology-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 58% 38%, #000, transparent 68%);
  opacity: 0.42;
}

.technology-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.technology-copy {
  display: grid;
  align-content: center;
  min-height: 600px;
  padding-right: clamp(0px, 3vw, 32px);
}

.technology-copy h2 {
  max-width: 720px;
  margin-top: 14px;
  color: var(--ivory);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.55rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.technology-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(247, 243, 235, 0.68);
  font-size: 1.03rem;
  line-height: 1.72;
}

.technology-definition {
  position: relative;
  max-width: 600px;
  margin-top: 30px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(214, 181, 134, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.technology-definition::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 222, 176, 0.78), transparent);
  opacity: 0.7;
}

.technology-definition span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.technology-definition strong {
  display: block;
  margin-top: 10px;
  color: var(--ivory);
  font-family: "Federo", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 400;
  line-height: 1.08;
}

.technology-definition p {
  margin-top: 12px;
  color: rgba(247, 243, 235, 0.68);
  line-height: 1.62;
}

.technology-visual {
  position: relative;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(214, 181, 134, 0.28);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.technology-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(247, 222, 176, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent, rgba(143, 197, 189, 0.16), transparent) 0 38% / 100% 1px no-repeat,
    linear-gradient(0deg, transparent, rgba(214, 181, 134, 0.14), transparent) 62% 0 / 1px 100% no-repeat;
  mix-blend-mode: screen;
}

.technology-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.02);
}

.technology-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02), rgba(7, 7, 6, 0.72)),
    radial-gradient(circle at 48% 36%, rgba(143, 197, 189, 0.14), transparent 36%);
}

.technology-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 18px;
  background: rgba(7, 7, 6, 0.66);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.technology-visual figcaption span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.technology-visual figcaption strong {
  color: rgba(247, 243, 235, 0.86);
  font-size: 1rem;
  line-height: 1.42;
}

.technology-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.24);
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
}

.technology-grid article {
  position: relative;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 7, 6, 0.58);
}

.technology-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.56), transparent);
  opacity: 0.68;
}

.technology-grid span {
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.technology-grid h3 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: 1.35rem;
  line-height: 1.15;
}

.technology-grid p {
  margin-top: 14px;
  color: rgba(247, 243, 235, 0.66);
  line-height: 1.62;
}

.assurance-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 181, 134, 0.16), transparent 34%),
    linear-gradient(135deg, #11100e 0%, #070706 58%, #17130e 100%);
}

.assurance-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.34), transparent);
}

.assurance-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.assurance-copy {
  max-width: 500px;
}

.assurance-copy h2 {
  margin-top: 14px;
  color: var(--ivory);
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
}

.assurance-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(247, 243, 235, 0.66);
  font-size: 1.03rem;
  line-height: 1.76;
}

.assurance-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.62);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.assurance-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 181, 134, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%);
  opacity: 0.72;
}

.assurance-panel-head,
.assurance-list {
  position: relative;
  z-index: 1;
}

.assurance-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(214, 181, 134, 0.18);
}

.assurance-panel-head span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assurance-panel-head strong {
  max-width: 220px;
  color: rgba(247, 243, 235, 0.82);
  font-family: "Federo", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.08;
  text-align: right;
}

.assurance-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(247, 243, 235, 0.09);
}

.assurance-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.assurance-list > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--gold-light);
  background: rgba(214, 181, 134, 0.08);
  border: 1px solid rgba(214, 181, 134, 0.18);
  border-radius: 50%;
  font-family: "Federo", Georgia, serif;
  font-size: 0.95rem;
}

.assurance-list h3 {
  color: var(--ivory);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.assurance-list p {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(247, 243, 235, 0.62);
  line-height: 1.62;
}

.treatment-pathway-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 181, 134, 0.16), transparent 32%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(135deg, #11100e 0%, #070706 56%, #17130e 100%);
}

.treatment-pathway-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.34), transparent);
}

.pathway-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1.08fr);
  gap: clamp(28px, 3vw, 42px);
  align-items: start;
}

.pathway-layout > *,
.pathway-showcase,
.pathway-case,
.pathway-media,
.pathway-content,
.pathway-columns,
.pathway-columns > div {
  min-width: 0;
}

.pathway-intro {
  position: sticky;
  top: 142px;
  align-self: start;
}

.pathway-intro h2 {
  margin-top: 14px;
  color: var(--ivory);
  font-size: clamp(2.45rem, 4.2vw, 4.7rem);
  line-height: 0.98;
}

.pathway-intro p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(247, 243, 235, 0.66);
  font-size: 1.02rem;
  line-height: 1.76;
}

.pathway-progress {
  position: relative;
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(247, 243, 235, 0.12);
  border-radius: 999px;
}

.pathway-progress span {
  display: block;
  width: var(--pathway-progress, 25%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), #f7deb0);
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(214, 181, 134, 0.44);
  transition: width 0.35s ease;
}

.pathway-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pathway-nav a {
  padding: 10px 12px;
  color: rgba(247, 243, 235, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(214, 181, 134, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.pathway-nav a:hover,
.pathway-nav a:focus-visible,
.pathway-nav a.is-active {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.pathway-showcase {
  display: grid;
  gap: 18px;
}

.pathway-case {
  scroll-margin-top: 126px;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(7, 7, 6, 0.64);
  border: 1px solid rgba(214, 181, 134, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.pathway-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.pathway-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
}

.pathway-media > img {
  object-fit: cover;
  object-position: center;
}

#treatment-ortodontia .pathway-media > img {
  object-position: 50% 48%;
}

#treatment-implantes .pathway-media > img {
  object-position: 50% 50%;
}

#treatment-design .pathway-media > img {
  object-position: 52% 48%;
}

#treatment-reabilitacao .pathway-media > img {
  object-fit: cover;
  object-position: 50% 42%;
}

.pathway-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(7, 7, 6, 0.64)),
    radial-gradient(circle at 52% 42%, rgba(214, 181, 134, 0.18), transparent 42%);
}

.pathway-media-inset {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(260px, calc(100% - 36px));
  min-height: 74px;
  padding: 8px 10px 8px 8px;
  color: var(--ivory);
  background: rgba(7, 7, 6, 0.64);
  border: 1px solid rgba(214, 181, 134, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.pathway-media-inset img {
  width: 74px;
  height: 58px;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(214, 181, 134, 0.18);
  border-radius: 5px;
  filter: saturate(0.8) contrast(1.08);
}

.pathway-media-inset span {
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.pathway-media figcaption {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--ivory);
  background: rgba(7, 7, 6, 0.56);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pathway-content {
  display: grid;
  align-content: center;
  padding: clamp(26px, 3.2vw, 46px);
}

.pathway-content h3 {
  max-width: 780px;
  margin-top: 12px;
  color: var(--ivory);
  font-size: clamp(2rem, 3.1vw, 3.45rem);
  line-height: 1;
}

.pathway-content > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(247, 243, 235, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

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

.pathway-columns div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(247, 243, 235, 0.08);
  border-radius: 8px;
}

.pathway-columns span {
  display: block;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-columns ul {
  display: grid;
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.pathway-columns li {
  position: relative;
  padding-left: 16px;
  color: rgba(247, 243, 235, 0.68);
  font-size: 0.9rem;
  line-height: 1.52;
}

.pathway-columns li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
}

.pathway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.pathway-actions .button {
  min-height: 46px;
  padding: 13px 17px;
  font-size: 0.82rem;
}

.pathway-secondary-link {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.pathway-campaign-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  color: rgba(247, 243, 235, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 181, 134, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.pathway-campaign-link:hover,
.pathway-campaign-link:focus-visible {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.pathway-testimonial {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr) minmax(150px, 0.34fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  color: var(--ivory);
  background:
    linear-gradient(140deg, rgba(247, 243, 235, 0.11), rgba(247, 243, 235, 0.035)),
    rgba(7, 7, 6, 0.46);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.pathway-testimonial-contrast {
  background:
    linear-gradient(140deg, rgba(214, 181, 134, 0.18), rgba(247, 243, 235, 0.035)),
    rgba(7, 7, 6, 0.58);
}

.pathway-testimonial span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.34;
  text-transform: uppercase;
}

.pathway-testimonial blockquote {
  margin: 0;
  color: rgba(247, 243, 235, 0.88);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.34rem, 2vw, 2rem);
  line-height: 1.18;
}

.pathway-testimonial strong {
  justify-self: end;
  max-width: 18ch;
  color: rgba(247, 243, 235, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
}

.first-visit-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(143, 197, 189, 0.11), transparent 34%),
    linear-gradient(180deg, #fffaf0, #f5ecdf);
}

.first-visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(180, 151, 90, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(180, 151, 90, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 42%, #000, transparent 70%);
  opacity: 0.58;
}

.first-visit-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.first-visit-copy {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding-right: clamp(0px, 3vw, 34px);
}

.first-visit-copy h2 {
  max-width: 700px;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.55rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.first-visit-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: #625b50;
  font-size: 1.03rem;
  line-height: 1.72;
}

.first-visit-copy .button {
  width: fit-content;
  margin-top: 30px;
}

.first-visit-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
  border: 1px solid rgba(180, 151, 90, 0.28);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(7, 7, 6, 0.22);
}

.first-visit-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.first-visit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: saturate(0.92) contrast(1.08);
}

.first-visit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02), rgba(7, 7, 6, 0.7)),
    radial-gradient(circle at 62% 24%, rgba(214, 181, 134, 0.22), transparent 40%);
}

.first-visit-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  padding: 18px;
  color: rgba(247, 243, 235, 0.84);
  background: rgba(7, 7, 6, 0.64);
  border: 1px solid rgba(214, 181, 134, 0.24);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.48;
  backdrop-filter: blur(14px);
}

.first-visit-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.24);
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
}

.first-visit-steps article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.82);
}

.first-visit-steps span {
  color: var(--gold);
  font-family: "Federo", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.first-visit-steps h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.16;
}

.first-visit-steps p {
  margin-top: 14px;
  color: #625b50;
  line-height: 1.62;
}

.proof-section {
  background: var(--paper);
}

.proof-heading {
  position: relative;
  grid-template-columns: 1fr 1fr;
  padding-top: 18px;
}

.proof-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(180px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.case-filter-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.62)),
    var(--paper);
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(7, 7, 6, 0.06);
}

.case-filter-panel > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-filter-panel p {
  grid-column: 1 / -1;
  max-width: 760px;
  color: #625b50;
  font-size: 0.92rem;
  line-height: 1.52;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-filters button {
  min-height: 38px;
  padding: 10px 13px;
  color: #42392f;
  background: rgba(180, 151, 90, 0.08);
  border: 1px solid rgba(180, 151, 90, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.case-filters button:hover,
.case-filters button:focus-visible,
.case-filters button.is-active {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.case-filters button:hover {
  transform: translateY(-1px);
}

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

.real-cases-grid.has-single-result {
  grid-template-columns: minmax(0, min(820px, 100%));
  justify-content: center;
}

.real-cases-grid.has-single-result .real-case-card {
  width: 100%;
}

.real-cases-grid.has-single-result .real-case-card-featured {
  grid-template-columns: minmax(0, 1fr);
}

.real-cases-grid.has-single-result .real-case-card-featured .real-case-visual {
  min-height: 500px;
}

.real-case-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(26, 22, 17, 0.98), rgba(6, 6, 5, 0.98)),
    var(--black);
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.real-case-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.real-case-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #050504;
}

.real-case-card-featured .real-case-visual {
  min-height: 520px;
}

.real-case-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: clip-path 0.85s cubic-bezier(0.16, 0.9, 0.22, 1), transform 0.85s ease, filter 0.85s ease;
}

.real-case-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.real-case-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.real-case-image-note {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  max-width: calc(100% - 36px);
  min-height: 30px;
  padding: 8px 10px;
  color: rgba(247, 243, 235, 0.84);
  background: rgba(7, 7, 6, 0.52);
  border: 1px solid rgba(247, 222, 176, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.72;
  transform: translateY(-3px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.real-case-card:hover .real-case-image-note {
  opacity: 1;
  transform: translateY(0);
}

.real-case-featured-photo {
  object-position: 50% 42%;
}

.real-case-comparison {
  --case-divider: 52%;
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  isolation: isolate;
  cursor: ew-resize;
}

.real-case-comparison::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(247, 222, 176, 0.14);
  border-radius: 6px;
}

.real-case-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.real-case-range:focus-visible {
  inset: auto 22px 22px;
  width: calc(100% - 44px);
  height: 28px;
  padding: 0 8px;
  accent-color: var(--gold-light);
  background: rgba(7, 7, 6, 0.68);
  border-radius: 999px;
  outline: 2px solid rgba(247, 222, 176, 0.86);
  outline-offset: 4px;
  opacity: 1;
}

.real-case-visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0) 54%, rgba(7, 7, 6, 0.34)),
    radial-gradient(circle at 72% 18%, rgba(214, 181, 134, 0.18), transparent 36%);
  pointer-events: none;
}

.real-case-before {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 6, 0.02), rgba(7, 7, 6, 0.45)),
    var(--case-before);
  filter: saturate(0.74) contrast(0.98) brightness(0.9);
}

.real-case-after {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.32)),
    var(--case-after);
  clip-path: inset(0 0 0 var(--case-divider, 52%));
  filter: saturate(0.92) contrast(1.08);
}

.real-case-card:hover .real-case-before {
  transform: scale(1.025);
}

.real-case-card:hover .real-case-after {
  transform: scale(1.035);
}

.real-case-split {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--case-divider, 52%);
  z-index: 4;
  width: 2px;
  background: linear-gradient(180deg, rgba(214, 181, 134, 0), var(--gold-light), rgba(214, 181, 134, 0));
  box-shadow: 0 0 30px rgba(214, 181, 134, 0.65);
  transform: translateX(-50%);
  transition: left 0.85s cubic-bezier(0.16, 0.9, 0.22, 1);
}

.real-case-comparison:hover .real-case-split span {
  transform: translate(-50%, -50%) scale(1.06);
}

.real-case-split span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--gold-light);
  border: 1px solid rgba(7, 7, 6, 0.18);
  border-radius: 50%;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease;
}

.real-case-split span::before,
.real-case-split span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}

.real-case-split span::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.real-case-split span::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.real-case-labels {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.real-case-labels span {
  padding: 8px 11px;
  color: var(--black);
  background: rgba(224, 193, 146, 0.94);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.real-case-content {
  display: grid;
  align-content: start;
  padding: 30px;
}

.real-case-card-featured .real-case-content {
  padding: 38px;
}

.real-case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--gold-light);
}

.real-case-topline span {
  font-family: "Federo", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.real-case-topline strong {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.real-case-content h3 {
  max-width: 11ch;
  margin-top: 24px;
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.real-case-card:not(.real-case-card-featured) .real-case-content h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

.real-case-editorial-lead {
  max-width: 38ch;
  margin-top: 20px;
  padding-left: 16px;
  color: rgba(247, 243, 235, 0.76);
  border-left: 1px solid rgba(214, 181, 134, 0.46);
  font-size: 0.98rem;
  line-height: 1.68;
}

.real-case-narrative {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.real-case-card-featured .real-case-narrative {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.real-case-narrative article {
  position: relative;
  min-height: 146px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(247, 243, 235, 0.1), rgba(247, 243, 235, 0.03)),
    rgba(8, 8, 7, 0.68);
  border: 1px solid rgba(214, 181, 134, 0.16);
  border-radius: 8px;
}

.real-case-narrative article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.56), transparent);
}

.real-case-narrative span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.real-case-narrative p {
  margin-top: 14px;
  color: rgba(247, 243, 235, 0.74);
  font-size: 0.88rem;
  line-height: 1.58;
}

.real-case-card:not(.real-case-card-featured) .real-case-narrative article:nth-child(3) {
  grid-column: 1 / -1;
}

.real-case-facts {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.16);
  border: 1px solid rgba(180, 151, 90, 0.16);
  border-radius: 8px;
}

.real-case-facts div {
  display: grid;
  grid-template-columns: minmax(118px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: rgba(8, 8, 7, 0.74);
}

.real-case-facts dt {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.real-case-facts dd {
  color: rgba(247, 243, 235, 0.76);
  font-size: 0.92rem;
  line-height: 1.52;
}

.real-case-story-link {
  justify-self: start;
  margin-top: 22px;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(214, 181, 134, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.real-case-story-link:hover,
.real-case-story-link:focus-visible {
  color: var(--ivory);
  border-color: rgba(247, 243, 235, 0.72);
}

.real-cases-note {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px 28px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 8px;
}

.real-cases-note strong {
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.real-cases-note p {
  max-width: 620px;
  color: rgba(7, 7, 6, 0.72);
  line-height: 1.55;
}

@media (min-width: 1041px) {
  .real-cases-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 22px;
    align-items: start;
  }

  .real-case-card-featured {
    grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
  }

  .real-case-card-featured .real-case-visual {
    min-height: 660px;
  }

  .real-case-featured-photo {
    display: none;
  }

  .real-case-comparison {
    display: block;
  }

  .real-case-card-featured .real-case-narrative {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .real-case-card-featured .real-case-narrative article {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 0;
    padding: 14px 16px;
  }

  .real-case-card-featured .real-case-narrative p {
    margin-top: 0;
  }

  .real-case-card-featured .real-case-facts {
    margin-top: 20px;
  }

  .real-case-card:not(.real-case-card-featured) .real-case-visual {
    min-height: 430px;
  }

  .real-case-card:nth-child(2) {
    margin-top: 36px;
  }

  .real-case-card:nth-child(3) {
    margin-top: -24px;
  }

  .real-case-card:nth-child(4) {
    margin-top: 10px;
  }

  .real-case-card-featured .real-case-content {
    align-content: center;
  }
}

.segments-section {
  color: var(--ivory);
  background: var(--graphite);
}

.segments-section h2,
.segments-section .section-heading p:not(.eyebrow) {
  color: var(--ivory);
}

.segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
}

.segments article {
  min-height: 250px;
  padding: 28px;
  background: rgba(7, 7, 6, 0.36);
}

.segments h3 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.segments p {
  margin-top: 18px;
  color: rgba(247, 243, 235, 0.66);
  line-height: 1.62;
}

.second-opinion-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 181, 134, 0.16), transparent 34%),
    linear-gradient(135deg, #090908 0%, #14120f 58%, #080807 100%);
}

.second-opinion-section::before {
  content: "";
  position: absolute;
  inset: 32px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.34), transparent);
}

.second-opinion-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.second-opinion-copy {
  display: grid;
  align-content: center;
  min-height: 560px;
  padding-right: clamp(0px, 3vw, 34px);
}

.second-opinion-copy h2 {
  max-width: 620px;
  margin-top: 14px;
  color: var(--ivory);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2.55rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.second-opinion-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(247, 243, 235, 0.68);
  font-size: 1.03rem;
  line-height: 1.72;
}

.second-opinion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.second-opinion-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(214, 181, 134, 0.28);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.second-opinion-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
  filter: saturate(0.84) contrast(1.08);
  transform: scale(1.01);
}

.second-opinion-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.72)),
    radial-gradient(circle at 42% 38%, rgba(143, 197, 189, 0.14), transparent 38%);
}

.second-opinion-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  max-width: 520px;
  padding: 18px;
  color: rgba(247, 243, 235, 0.82);
  background: rgba(7, 7, 6, 0.66);
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  backdrop-filter: blur(14px);
}

.second-opinion-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(180, 151, 90, 0.24);
  border: 1px solid rgba(180, 151, 90, 0.22);
  border-radius: 8px;
}

.second-opinion-points article {
  min-height: 210px;
  padding: 28px;
  background: rgba(7, 7, 6, 0.58);
}

.second-opinion-points span {
  color: var(--gold-light);
  font-family: "Federo", Georgia, serif;
  font-size: 2rem;
}

.second-opinion-points h3 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: 1.4rem;
  line-height: 1.15;
}

.second-opinion-points p {
  margin-top: 14px;
  color: rgba(247, 243, 235, 0.66);
  line-height: 1.62;
}

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

.premium-faq-heading {
  grid-template-columns: 0.8fr 1.25fr 0.95fr;
}

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

.premium-faq-group {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.94)),
    #fff;
  border: 1px solid rgba(21, 20, 18, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 7, 6, 0.05);
}

.premium-faq-group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 151, 90, 0.46), transparent);
}

.premium-faq-group > span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-faq-group details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 20, 18, 0.08);
}

.premium-faq-group summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  list-style: none;
}

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

.premium-faq-group summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--gold);
  background: rgba(180, 151, 90, 0.08);
  border: 1px solid rgba(180, 151, 90, 0.18);
  border-radius: 50%;
  font-family: "Federo", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease;
}

.premium-faq-group details[open] summary::after {
  content: "-";
  background: rgba(180, 151, 90, 0.14);
  transform: rotate(180deg);
}

.premium-faq-group details p {
  margin-top: 12px;
  color: #625b50;
  font-size: 0.92rem;
  line-height: 1.58;
}

.reviews-section {
  background: var(--ivory);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.reviews-layout p {
  margin-top: 20px;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(21, 20, 18, 0.08);
  border-radius: 8px;
}

.review-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card blockquote {
  margin-top: 18px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--ink);
  font-family: "Federo", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.2;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: #625b50;
  font-size: 0.86rem;
}

.review-card > p {
  max-width: 48ch;
  margin-top: 12px;
  color: #625b50;
  font-size: 0.92rem;
  line-height: 1.58;
}

.final-cta {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.46)),
    url("./assets/optimized/client-curated/hero-04-desktop-hq.webp") center / cover;
  opacity: 0.78;
}

.final-cta:hover::before {
  transform: scale(1.04);
}

.final-trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(34px, 4vw, 54px);
  overflow: hidden;
  background: rgba(214, 181, 134, 0.22);
  border: 1px solid rgba(214, 181, 134, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.final-trust-strip article {
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 156px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.64);
  backdrop-filter: blur(14px);
}

.final-trust-strip span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.final-trust-strip strong {
  max-width: 17ch;
  color: rgba(247, 243, 235, 0.9);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.28rem, 1.7vw, 1.75rem);
  font-weight: 400;
  line-height: 1.12;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-top: 16px;
  color: var(--ivory);
  font-size: clamp(3rem, 6.4vw, 6.5rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(247, 243, 235, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.consult-context {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 7, 6, 0.5);
  border: 1px solid rgba(214, 181, 134, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.consult-context span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consult-context strong {
  font-family: "Federo", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.04;
}

.consult-context p {
  max-width: none !important;
  margin-top: 0 !important;
  color: rgba(247, 243, 235, 0.68) !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.site-footer {
  padding: 44px 0;
  color: var(--ivory);
  background: var(--black);
  border-top: 1px solid rgba(180, 151, 90, 0.24);
}

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

.footer-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-grid p {
  margin-top: 10px;
  color: rgba(247, 243, 235, 0.68);
  line-height: 1.6;
}

.footer-grid a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: rgba(247, 243, 235, 0.72);
  border-top: 1px solid rgba(214, 181, 134, 0.16);
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-page {
  background: var(--ivory);
}

.legal-page .site-header {
  background: rgba(7, 7, 6, 0.94);
  border-bottom: 1px solid rgba(214, 181, 134, 0.18);
}

.legal-main {
  min-height: 70vh;
  padding: 190px 0 90px;
}

.legal-card {
  padding: clamp(32px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 243, 235, 0.92)),
    var(--paper);
  border: 1px solid rgba(180, 151, 90, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(7, 7, 6, 0.08);
}

.legal-card h1 {
  max-width: 860px;
  margin-top: 14px;
  font-family: "Federo", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.legal-card p {
  max-width: 760px;
  margin-top: 24px;
  color: #625b50;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.about-kicker,
.contact-intro {
  color: var(--gold-dark);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.15;
}

.legal-required,
.legal-card-about .legal-required {
  color: #453d33;
  font-weight: 650;
}

.about-premium-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(28px, 5vw, 48px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(180, 151, 90, 0.24);
}

.about-premium-copy p {
  margin-top: 0;
}

.about-section-copy {
  max-width: 900px;
  margin-top: clamp(30px, 5vw, 54px);
}

.about-section-copy h2 {
  color: var(--black);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.about-section-copy p {
  margin-top: 18px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(180, 151, 90, 0.28);
  border-bottom: 1px solid rgba(180, 151, 90, 0.28);
}

.about-feature {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(180, 151, 90, 0.24);
}

.about-feature:first-child {
  padding-left: 0;
}

.about-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-feature span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-feature strong {
  display: block;
  margin-top: 20px;
  color: var(--black);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.about-note {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 5vw, 48px);
  padding-top: 24px;
  border-top: 1px solid rgba(180, 151, 90, 0.18);
}

.about-note strong {
  color: var(--gold-dark);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
}

.about-note p {
  margin-top: 0;
  text-align: right;
}

.legal-card a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.legal-contact-list p {
  margin-top: 0;
}

.official-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(30px, 5vw, 54px);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.38);
  border: 1px solid rgba(180, 151, 90, 0.26);
  border-radius: 8px;
}

.official-card {
  min-height: 190px;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid rgba(180, 151, 90, 0.22);
  border-bottom: 1px solid rgba(180, 151, 90, 0.22);
}

.official-card:nth-child(2n) {
  border-right: 0;
}

.official-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.official-card span,
.contact-patient-note span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.official-card strong {
  display: block;
  margin-top: 18px;
  color: var(--black);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.official-card small {
  display: block;
  max-width: 340px;
  margin-top: 14px;
  color: #777065;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-patient-note {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 36px);
  margin-top: clamp(30px, 5vw, 52px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(180, 151, 90, 0.2);
}

.contact-patient-note strong {
  display: block;
  margin-top: 12px;
  color: var(--black);
  font-family: "Federo", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-patient-note p {
  margin-top: 0;
  font-size: 1rem;
}

.contact-patient-note .button {
  width: max-content;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about-premium-copy,
  .about-feature-grid,
  .official-card-grid,
  .contact-patient-note {
    grid-template-columns: 1fr;
  }

  .about-feature,
  .about-feature:first-child,
  .about-feature:last-child,
  .official-card,
  .official-card:nth-child(2n),
  .official-card:nth-last-child(-n + 2) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 151, 90, 0.22);
  }

  .about-feature:last-child,
  .official-card:last-child {
    border-bottom: 0;
  }

  .official-card-grid {
    padding: 0 22px;
  }

  .about-note {
    display: grid;
    align-items: start;
  }

  .about-note p {
    text-align: left;
  }

  .contact-patient-note .button {
    width: 100%;
    white-space: normal;
  }
}

.whatsapp-float {
  position: fixed;
  left: auto;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 222px;
  padding: 10px 12px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.92), rgba(7, 7, 6, 0.88)),
    var(--black);
  border: 1px solid rgba(214, 181, 134, 0.32);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(247, 243, 235, 0.05) inset;
  backdrop-filter: blur(14px);
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.has-page-scrolled .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover {
  border-color: rgba(214, 181, 134, 0.56);
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32), 0 0 22px rgba(214, 181, 134, 0.18);
}

.whatsapp-float-icon {
  display: none;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ivory);
  background: #0f7a49;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: 0 0 0 5px rgba(15, 122, 73, 0.12), 0 12px 24px rgba(7, 7, 6, 0.2);
}

.whatsapp-float span:last-child {
  display: grid;
  gap: 2px;
}

.whatsapp-float strong {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.whatsapp-float small {
  color: rgba(247, 243, 235, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
}

.language-switcher {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 997;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 94px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(214, 181, 134, 0.32);
  border-radius: 18px;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(18, 17, 15, 0.94), rgba(7, 7, 6, 0.88)),
    var(--black);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(247, 243, 235, 0.05) inset;
  backdrop-filter: blur(14px);
  cursor: pointer;
  list-style: none;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 1px solid rgba(214, 181, 134, 0.82);
  border-bottom: 1px solid rgba(214, 181, 134, 0.82);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  border-color: rgba(214, 181, 134, 0.62);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32), 0 0 22px rgba(214, 181, 134, 0.18);
}

.language-switcher summary:hover {
  transform: translateY(-2px);
}

.language-switcher[open] summary::after {
  transform: translateY(2px) rotate(225deg);
  border-color: rgba(214, 181, 134, 0.96);
}

.language-switcher-code {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switcher-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  display: grid;
  gap: 8px;
  min-width: 196px;
  max-width: calc(100vw - 44px);
  padding: 10px;
  border: 1px solid rgba(214, 181, 134, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(30, 28, 24, 0.98), rgba(7, 7, 6, 0.98)),
    radial-gradient(circle at top right, rgba(214, 181, 134, 0.18), transparent 48%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.language-switcher-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 181, 134, 0.12);
  border-radius: 14px;
  color: rgba(247, 243, 235, 0.84);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.language-switcher-link:hover {
  transform: translateX(2px);
  border-color: rgba(214, 181, 134, 0.56);
  background: rgba(214, 181, 134, 0.12);
  color: var(--gold-light);
}

.language-switcher-link > span:not(.language-flag) {
  flex: 1;
}

.language-switcher-link.is-active,
.language-switcher-link[aria-current="page"] {
  border-color: rgba(214, 181, 134, 0.86);
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(214, 181, 134, 0.22), rgba(178, 139, 82, 0.1));
  box-shadow: 0 0 0 3px rgba(214, 181, 134, 0.12), 0 8px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1040px) {
  .authority-grid,
  .signature-grid,
  .treatment-grid,
  .segments,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .specialist-layout,
  .split-layout,
  .assurance-layout,
  .diagnostic-layout,
  .technology-layout,
  .first-visit-layout,
  .second-opinion-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .real-cases-grid,
  .real-case-card-featured {
    grid-template-columns: 1fr;
  }

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

  .sticky-copy {
    position: static;
  }

  .experience-cinema {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 52px;
  }

  .experience-frame-main {
    min-height: 560px;
  }

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

  .experience-note {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .experience-frame-human {
    margin-left: 0;
  }

  .diagnostic-section {
    background:
      radial-gradient(circle at 18% 10%, rgba(143, 197, 189, 0.12), transparent 30%),
      linear-gradient(180deg, #f8f3e9 0%, #efe5d3 42%, #070706 42%, #070706 100%);
  }

  .diagnostic-copy {
    min-height: 0;
    padding: 0 0 18px;
  }

  .specialist-portrait {
    min-height: 520px;
  }

  .specialist-credentials,
  .premium-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-faq-heading {
    grid-template-columns: 1fr;
  }

  .diagnostic-visual {
    min-height: 520px;
  }

  .diagnostic-stack {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    left: 14px;
    right: auto;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .language-switcher summary {
    gap: 8px;
    min-width: 82px;
    min-height: 48px;
    padding: 0 14px 0 12px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(247, 243, 235, 0.05) inset;
  }

  .language-switcher-code {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .language-switcher-panel {
    bottom: calc(100% + 10px);
    min-width: 178px;
    padding: 8px;
    border-radius: 16px;
  }

  .language-switcher-link {
    min-height: 44px;
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .diagnostic-stack article {
    grid-template-columns: 180px 1fr;
  }

  .technology-copy {
    min-height: 0;
    padding: 0 0 18px;
  }

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

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

  .first-visit-copy {
    min-height: 0;
    padding: 0 0 18px;
  }

  .first-visit-visual {
    min-height: 500px;
  }

  .first-visit-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .second-opinion-copy {
    min-height: 0;
    padding: 0 0 18px;
  }

  .second-opinion-visual {
    min-height: 500px;
  }

  .second-opinion-points {
    grid-template-columns: 1fr;
  }

  .real-case-card-featured {
    grid-column: auto;
  }

  .hero-insight {
    top: 34%;
    left: clamp(250px, 24vw, 340px);
    width: min(68vw, 680px);
    height: 184px;
  }

  .hero-insight-line {
    width: calc(100% - 204px);
    min-width: 350px;
    height: 126px;
  }

  .hero-insight-card {
    top: 88px;
    left: calc(100% - 236px);
  }

  .treatment-tech {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 22px 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    backdrop-filter: none;
    transform: none;
  }

  .treatment-tech li {
    min-height: 0;
    padding: 6px 8px 6px 17px;
    color: rgba(247, 243, 235, 0.62);
    background: rgba(214, 181, 134, 0.075);
    border-color: rgba(214, 181, 134, 0.1);
    font-size: 0.59rem;
  }

  .treatment-tech li::before {
    left: 8px;
    width: 3px;
    height: 3px;
    box-shadow: none;
  }

  .treatment-card-gold .treatment-tech li {
    color: rgba(7, 7, 6, 0.62);
    background: rgba(7, 7, 6, 0.055);
    border-color: rgba(7, 7, 6, 0.08);
  }
}

@media (max-width: 820px) {
  .topline {
    justify-content: space-between;
    gap: 10px;
  }

  .navbar {
    gap: 12px;
  }

  body.nav-open .site-header {
    background: rgba(7, 7, 6, 0.94);
    border-bottom: 1px solid rgba(214, 181, 134, 0.14);
    backdrop-filter: blur(18px);
  }

  .brand,
  .header-whatsapp,
  .nav-toggle {
    position: relative;
    z-index: 103;
  }

  .header-whatsapp {
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 100dvh;
    padding: 128px clamp(20px, 7vw, 54px) 34px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.98), rgba(7, 7, 6, 0.94)),
      radial-gradient(circle at 18% 14%, rgba(214, 181, 134, 0.15), transparent 34%),
      radial-gradient(circle at 82% 20%, rgba(143, 197, 189, 0.09), transparent 30%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(-12px) scale(0.985);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(247, 243, 235, 0.09);
    border-radius: 0;
    color: rgba(247, 243, 235, 0.86);
    font-family: "Federo", Georgia, serif;
    font-size: clamp(1.55rem, 6vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
  }

  .menu a::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-left: 16px;
    border-top: 1px solid rgba(214, 181, 134, 0.72);
    border-right: 1px solid rgba(214, 181, 134, 0.72);
    transform: rotate(45deg);
  }

  .menu .language-picker {
    width: 100%;
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(247, 243, 235, 0.09);
  }

  .menu .language-picker summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 16px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(247, 243, 235, 0.86);
    font-family: "Federo", Georgia, serif;
    font-size: clamp(1.55rem, 6vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
  }

  .menu .language-picker summary::-webkit-details-marker {
    display: none;
  }

  .menu .language-picker summary::marker {
    content: "";
    font-size: 0;
  }

  .menu .language-options a::after {
    content: none;
  }

  .menu .language-picker summary::after {
    content: "";
    display: block;
    flex: 0 0 9px;
    align-self: center;
    width: 9px;
    height: 9px;
    margin-left: 16px;
    border-top: 1px solid rgba(214, 181, 134, 0.72);
    border-right: 1px solid rgba(214, 181, 134, 0.72);
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .menu .language-picker[open] summary {
    color: var(--gold-light);
  }

  .menu .language-picker[open] summary::after {
    transform: rotate(135deg);
    border-color: rgba(214, 181, 134, 0.96);
  }

  .menu .language-options {
    position: static;
    width: 100%;
    min-width: 0;
    margin: -2px 0 0;
    padding: 0 0 2px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
  }

  .menu .language-options a {
    min-height: 46px;
    padding: 12px 0 12px 14px;
    border: 0;
    border-left: 1px solid rgba(214, 181, 134, 0.18);
    border-radius: 0;
    background: transparent;
    color: rgba(247, 243, 235, 0.72);
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
  }

  .menu .menu-cta {
    display: flex;
    justify-content: center;
    min-height: 52px !important;
    margin-top: 18px;
    padding: 0 18px !important;
    color: var(--gold-light) !important;
    background: rgba(214, 181, 134, 0.08);
    border: 1px solid rgba(214, 181, 134, 0.28);
    border-radius: 999px;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .menu .menu-cta::after {
    display: none;
  }

  .legal-menu {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: static;
    z-index: auto;
    display: flex;
    min-height: auto;
    padding: 0;
    gap: 14px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-menu a {
    min-height: auto;
    padding: 0;
    border: 0;
    color: rgba(247, 243, 235, 0.78);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
  }

  .legal-menu a::after {
    display: none;
  }

  .legal-menu .language-picker {
    position: relative;
    width: auto;
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
  }

  .legal-menu .language-picker summary {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(214, 181, 134, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(247, 243, 235, 0.9);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
  }

  .legal-menu .language-picker summary::after {
    width: 8px;
    height: 8px;
    margin-left: 10px;
  }

  .legal-menu .language-picker[open] summary {
    background: rgba(214, 181, 134, 0.12);
  }

  .legal-menu .language-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: max-content;
    min-width: 172px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(214, 181, 134, 0.22);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.96), rgba(10, 9, 8, 0.94)),
      rgba(7, 7, 6, 0.94);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .legal-menu .language-options a {
    min-height: 40px;
    padding: 10px 12px;
    border: 0;
    border-left: 0;
    color: rgba(247, 243, 235, 0.82);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .legal-menu .language-options a:hover,
  .legal-menu .language-options a.is-active,
  .legal-menu .language-options a[aria-current="page"] {
    background: rgba(214, 181, 134, 0.1);
    color: var(--ivory);
  }

  .hero {
    min-height: 74vh;
    padding-top: 142px;
  }

  .hero-insight {
    top: 47%;
    left: 0;
    width: min(100vw, 620px);
    height: 174px;
  }

  .hero-insight-line {
    width: calc(100% - 172px);
    min-width: 300px;
    height: 116px;
  }

  .hero-insight-card {
    top: 86px;
    left: calc(100% - 214px);
  }

  .hero-slide img {
    object-position: 68% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.58)),
      linear-gradient(0deg, rgba(7, 7, 6, 0.9), rgba(7, 7, 6, 0.06) 48%);
  }

  .section {
    padding: 78px 0;
  }

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

  .assurance-layout {
    gap: 34px;
  }

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

@media (max-width: 620px) {
  .navbar,
  .section-shell,
  .hero-content {
    width: calc(100vw - 28px);
    max-width: 1180px;
  }

  .topline {
    display: none;
  }

  .navbar {
    min-height: 66px;
    gap: 8px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .brand-logo {
    width: 124px;
  }

  .brand-legal-name {
    max-width: 74px;
    margin-left: 8px;
    font-size: 0.6rem;
    line-height: 1.12;
  }

  .header-whatsapp {
    gap: 7px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .header-whatsapp-full {
    display: none;
  }

  .header-whatsapp-short {
    display: inline;
  }

  .header-whatsapp-dot {
    width: 6px;
    height: 6px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 9px 9px;
  }

  .menu {
    inset: 0;
    min-height: 100dvh;
    padding: 86px 18px 28px;
  }

  .menu a {
    min-height: 54px;
    padding: 14px 0;
  }

  .legal-menu {
    position: static;
    inset: auto;
    display: flex;
    align-content: normal;
    min-height: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    gap: 10px;
  }

  .legal-menu a {
    min-height: auto;
    padding: 0;
    font-size: 0.72rem;
  }

  .legal-main {
    padding: 104px 0 56px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .hero {
    --mobile-hero-card-height: clamp(560px, calc(100vh - 124px), 650px);
    display: grid;
    justify-items: center;
    align-items: start;
    min-height: auto;
    padding: 72px 0 30px;
    background:
      linear-gradient(180deg, #070706 0%, #100f0d 44%, #070706 100%),
      var(--black);
  }

  .hero::after {
    display: none;
  }

  .hero-media {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    z-index: 2;
    width: calc(100vw - 28px);
    max-width: 430px;
    height: var(--mobile-hero-card-height);
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
    background: var(--black);
    border: 1px solid rgba(214, 181, 134, 0.32);
    border-radius: 8px;
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(247, 222, 176, 0.08) inset,
      0 0 42px rgba(214, 181, 134, 0.08);
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }

  .hero-media::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(247, 222, 176, 0.1);
    border-radius: 6px;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(circle at 54% 52%, rgba(247, 222, 176, 0.18), rgba(247, 222, 176, 0.07) 17%, transparent 36%),
      radial-gradient(circle at 70% 36%, rgba(214, 181, 134, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(7, 7, 6, 0.02) 0%, rgba(7, 7, 6, 0.06) 28%, rgba(7, 7, 6, 0.56) 58%, rgba(7, 7, 6, 0.92) 100%),
      linear-gradient(90deg, rgba(7, 7, 6, 0.38), rgba(7, 7, 6, 0.04) 50%, rgba(7, 7, 6, 0.12)),
      linear-gradient(135deg, rgba(214, 181, 134, 0.14), transparent 34%);
  }

  .hero-slide img {
    object-position: center;
    filter: saturate(0.94) contrast(1.12) brightness(0.97);
    transform: scale(1);
  }

  .hero-slide:nth-child(1) img {
    object-position: 58% 38%;
  }

  .hero-slide:nth-child(2) img {
    object-position: 52% 43%;
  }

  .hero-slide:nth-child(3) img {
    object-position: 54% 44%;
  }

  .hero-slide:nth-child(4) img {
    object-position: 52% 42%;
  }

  .hero-slide:nth-child(5) img {
    object-position: 52% 45%;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    grid-area: 1 / 1;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: calc(100vw - 28px);
    max-width: 430px;
    height: var(--mobile-hero-card-height);
    min-height: 0;
    margin: 0 auto;
    padding: clamp(172px, 34vh, 238px) 22px 24px;
    text-align: center;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .hero-content > .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    max-width: 100%;
    min-height: 34px;
    padding: 8px 15px;
    color: rgba(247, 243, 235, 0.9);
    background: rgba(31, 28, 24, 0.38);
    border: 1px solid rgba(247, 222, 176, 0.16);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(16px);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
    text-transform: none;
  }

  .hero-content > .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(214, 181, 134, 0.58);
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 14px;
    overflow-wrap: break-word;
    font-size: 3rem;
    line-height: 1.02;
  }

  .assurance-panel {
    padding: 22px;
  }

  .assurance-panel-head {
    display: grid;
    gap: 10px;
  }

  .assurance-panel-head strong {
    max-width: none;
    font-size: 1.28rem;
    text-align: left;
  }

  .assurance-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .assurance-list > li > span {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  .hero h1 span {
    display: block;
  }

  .hero-line {
    max-width: 12ch;
    margin-top: 18px;
    color: rgba(247, 222, 176, 0.92);
    font-size: clamp(2rem, 10vw, 2.72rem);
    line-height: 1.02;
    text-shadow: 0 2px 18px rgba(7, 7, 6, 0.42);
  }

  .hero-copy {
    display: none;
  }

  .hero-insight {
    display: none;
  }

  .hero-insight-line {
    display: none;
  }

  .hero-insight::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 168px;
    left: 4px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 134, 0.72));
    transform: translateY(-50%);
  }

  .hero-insight-card {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    grid-template-columns: 44px 1fr;
    gap: 9px;
    width: 164px;
    min-height: 58px;
    padding: 8px 10px;
    border-color: rgba(214, 181, 134, 0.28);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero-insight-thumb {
    min-height: 40px;
  }

  .hero-insight-text strong {
    font-size: 0.78rem;
  }

  .hero-insight-text span {
    font-size: 0.55rem;
  }

  .hero-insight-text i {
    width: 42px;
    margin-top: 9px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
    max-width: 350px;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-signals {
    display: none;
  }

  .hero-carousel-controls {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    font-size: 0.84rem;
  }

  .hero .button-primary {
    box-shadow: 0 18px 44px rgba(214, 181, 134, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .hero .button-secondary {
    display: inline-flex;
    color: rgba(247, 243, 235, 0.86);
    background: rgba(7, 7, 6, 0.18);
    border-color: rgba(247, 243, 235, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    left: auto;
    width: 48px;
    height: 48px;
    justify-content: center;
    min-width: 0;
    padding: 0;
    border-color: rgba(214, 181, 134, 0.22);
  }

  .whatsapp-float-icon {
    display: grid;
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 0.62rem;
  }

  .whatsapp-float span:last-child {
    display: none;
  }

  .whatsapp-float small {
    display: none;
  }

  .whatsapp-float strong {
    font-size: 0.68rem;
  }

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

  .authority-grid,
  .signature-grid,
  .treatment-grid,
  .real-cases-grid,
  .segments,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .authority-item {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 64px 0;
  }

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

  .signature-grid > * {
    padding: 22px;
  }

  .signature-grid strong {
    font-size: 1.42rem;
  }

  .authority-grid {
    gap: 22px;
    padding: 42px 0;
  }

  .authority-band h2,
  .section-heading h2,
  .specialist-content h2,
  .technology-copy h2,
  .first-visit-copy h2,
  .sticky-copy h2,
  .reviews-layout h2,
  .assurance-copy h2,
  .diagnostic-copy h2,
  .second-opinion-copy h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 1.96rem;
    line-height: 1.03;
  }

  .signature-grid span,
  .signature-grid strong {
    max-width: 28ch;
    overflow-wrap: break-word;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading p:not(.eyebrow),
  .specialist-content > p:not(.eyebrow),
  .technology-copy > p:not(.eyebrow),
  .first-visit-copy > p:not(.eyebrow),
  .sticky-copy p,
  .reviews-layout p,
  .assurance-copy p:not(.eyebrow),
  .diagnostic-copy p:not(.eyebrow),
  .second-opinion-copy p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .diagnostic-section {
    background:
      linear-gradient(180deg, #f8f3e9 0%, #efe5d3 38%, #070706 38%, #070706 100%);
  }

  .case-filter-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

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

  .case-filters button {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
  }

  .experience-cinema {
    gap: 14px;
    margin-top: 42px;
    padding-top: 24px;
  }

  .experience-editorial {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-note {
    gap: 14px;
    padding: 10px 0 4px 18px;
  }

  .experience-note h3 {
    max-width: 100%;
    font-size: 1.92rem;
    line-height: 1.03;
  }

  .experience-note p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .experience-frame-main,
  .experience-frame-scan,
  .experience-frame-human {
    min-height: 0;
  }

  .experience-frame-main {
    aspect-ratio: 3 / 4;
  }

  .experience-frame-scan,
  .experience-frame-human {
    aspect-ratio: 4 / 5;
  }

  .experience-frame-main img {
    object-position: 52% 48%;
  }

  .experience-frame-scan img {
    object-position: 50% 44%;
  }

  .experience-frame-human img {
    object-position: 52% 44%;
  }

  .experience-frame figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 7px;
    padding: 14px 15px;
  }

  .experience-frame figcaption strong {
    font-size: 0.98rem;
    line-height: 1.24;
  }

  .diagnostic-proof span {
    min-height: 30px;
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .diagnostic-visual {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .diagnostic-visual img {
    object-position: 52% 42%;
  }

  .diagnostic-screen {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 15px;
  }

  .diagnostic-screen strong {
    font-size: 1.42rem;
  }

  .diagnostic-stack article {
    grid-template-columns: 1fr;
  }

  .diagnostic-stack img {
    height: 190px;
  }

  .technology-definition {
    padding: 18px;
  }

  .technology-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .technology-visual img {
    object-position: 52% 40%;
    transform: scale(1.01);
  }

  .technology-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px;
  }

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

  .technology-grid article {
    min-height: 0;
    padding: 24px;
  }

  .first-visit-copy .button {
    width: 100%;
    margin-top: 24px;
  }

  .first-visit-visual {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .first-visit-visual img {
    object-position: 52% 42%;
  }

  .first-visit-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px;
    font-size: 0.86rem;
  }

  .first-visit-steps {
    grid-template-columns: 1fr;
  }

  .first-visit-steps article {
    min-height: 0;
    padding: 24px;
  }

  .specialist-portrait {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .specialist-portrait img {
    object-position: 52% 42%;
  }

  .specialist-portrait figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px;
    font-size: 0.86rem;
  }

  .specialist-credentials,
  .premium-faq-grid {
    grid-template-columns: 1fr;
  }

  .specialist-credentials article,
  .premium-faq-group {
    padding: 20px;
  }

  .premium-faq-group {
    box-shadow: 0 16px 42px rgba(7, 7, 6, 0.055);
  }

  .premium-faq-group details {
    margin-top: 12px;
    padding-top: 12px;
  }

  .premium-faq-group summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 10px;
    font-size: 0.98rem;
  }

  .premium-faq-group details[open] {
    padding-bottom: 12px;
  }

  .premium-faq-group details p {
    padding-right: 8px;
    font-size: 0.9rem;
  }

  .second-opinion-actions {
    display: grid;
    align-items: stretch;
  }

  .second-opinion-visual {
    min-height: 360px;
  }

  .second-opinion-visual img {
    object-position: 52% 40%;
  }

  .second-opinion-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px;
    font-size: 0.88rem;
  }

  .second-opinion-points article {
    min-height: 0;
    padding: 24px;
  }

  .treatment-card {
    min-height: 0;
    box-shadow: 0 20px 58px rgba(7, 7, 6, 0.14);
  }

  .treatment-card::before {
    right: 18px;
    left: 18px;
    transform: scaleX(1);
  }

  .treatment-grid {
    gap: 14px;
  }

  .treatment-card img,
  .technical-visual {
    height: clamp(220px, 60vw, 278px);
    object-position: center;
  }

  .treatment-grid .treatment-card:nth-child(1) img {
    object-position: 52% 46%;
  }

  .treatment-grid .treatment-card:nth-child(2) img {
    object-position: 50% 42%;
  }

  .treatment-grid .treatment-card:nth-child(3) img {
    object-position: 50% 48%;
  }

  .treatment-grid .treatment-card:nth-child(4) img {
    object-position: 52% 42%;
  }

  .diagnostic-stack article:nth-child(1) img {
    object-position: 52% 38%;
  }

  .diagnostic-stack article:nth-child(2) img {
    object-position: 50% 42%;
  }

  .diagnostic-stack article:nth-child(3) img {
    object-position: 50% 44%;
  }

  .treatment-card div:last-child {
    padding: 22px;
    transform: none !important;
  }

  .treatment-card h3 {
    margin-top: 14px;
    font-size: 1.85rem;
  }

  .treatment-card p {
    font-size: 1.42rem;
  }

  .treatment-card span {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .treatment-flow {
    max-height: none;
    margin-top: 14px !important;
    opacity: 1;
    transform: none;
  }

  .treatment-flow i {
    min-height: 26px;
    padding: 6px 8px;
    font-size: 0.58rem;
  }

  .treatment-card .treatment-cta {
    margin-top: 16px;
    font-size: 0.66rem;
  }

  .real-case-visual,
  .real-case-card-featured .real-case-visual {
    min-height: 280px;
  }

  .real-case-content,
  .real-case-card-featured .real-case-content,
  .experience-steps article,
  .review-card,
  .real-cases-note {
    padding: 24px;
  }

  .real-case-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .real-case-narrative,
  .real-case-card-featured .real-case-narrative {
    grid-template-columns: 1fr;
  }

  .real-case-narrative article {
    min-height: 0;
  }

  .real-case-content h3,
  .real-case-card:not(.real-case-card-featured) .real-case-content h3 {
    max-width: 12ch;
    font-size: 2rem;
    line-height: 1.03;
  }

  .real-case-topline span {
    font-size: 1.62rem;
  }

  .real-case-labels {
    inset: auto 14px 14px;
  }

  .real-case-labels span {
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .real-case-image-note {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    opacity: 1;
    transform: none;
  }

  .real-case-card:nth-child(2) .real-case-photo {
    object-position: 50% 42%;
  }

  .real-case-card:nth-child(3) .real-case-photo {
    object-position: 50% 38%;
  }

  .real-cases-note {
    display: grid;
  }

  .segments article {
    min-height: 0;
    padding: 24px;
  }

  .review-card blockquote {
    font-size: 1.42rem;
    line-height: 1.24;
  }

  .review-card > p {
    font-size: 0.9rem;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.84), rgba(7, 7, 6, 0.58) 44%, rgba(7, 7, 6, 0.9)),
      url("./assets/optimized/client-curated/hero-04-mobile-hq.webp") 50% 34% / cover;
    opacity: 0.84;
  }

  .final-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
  }

  .final-trust-strip article {
    gap: 12px;
    align-content: start;
    min-height: 132px;
    padding: 16px;
  }

  .final-trust-strip strong {
    max-width: none;
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .final-cta h2 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .experience-steps {
    padding-left: 34px;
  }

  .experience-steps::before,
  .experience-steps::after {
    left: 12px;
  }

  .experience-steps article::before {
    left: -33px;
  }

  .experience-steps article::after {
    left: -26px;
  }
}

@media (max-width: 380px) {
  .hero {
    --mobile-hero-card-height: clamp(530px, calc(100vh - 134px), 590px);
    padding-top: 70px;
  }

  .navbar,
  .section-shell {
    width: calc(100vw - 24px);
    max-width: 1180px;
  }

  .hero-media,
  .hero-content {
    width: calc(100vw - 24px);
    max-width: 430px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-whatsapp {
    padding: 0 8px;
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-line {
    font-size: 1.96rem;
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .authority-band h2,
  .section-heading h2,
  .specialist-content h2,
  .technology-copy h2,
  .first-visit-copy h2,
  .sticky-copy h2,
  .reviews-layout h2,
  .assurance-copy h2,
  .diagnostic-copy h2,
  .second-opinion-copy h2 {
    font-size: 1.82rem;
  }

  .final-cta h2 {
    font-size: 2.18rem;
  }

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

  .final-trust-strip article {
    min-height: 0;
  }
}

@media (max-width: 340px) {
  .header-whatsapp {
    width: 36px;
    padding: 0;
  }

  .header-whatsapp-short {
    display: none;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-line {
    font-size: 1.86rem;
  }

  .hero-signals {
    grid-template-columns: 1fr;
  }
}

@supports (height: 100svh) {
  @media (max-width: 620px) {
    .hero {
      --mobile-hero-card-height: clamp(560px, calc(100svh - 124px), 650px);
    }
  }

  @media (max-width: 380px) {
    .hero {
      --mobile-hero-card-height: clamp(530px, calc(100svh - 134px), 590px);
    }
  }
}

@media (max-width: 1040px) {
  .pathway-layout {
    grid-template-columns: 1fr;
  }

  .pathway-intro {
    position: static;
    max-width: 760px;
  }

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

  .pathway-media,
  .pathway-media img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .pathway-intro h2 {
    max-width: 100%;
    font-size: 2.1rem;
  }

  .pathway-nav {
    position: sticky;
    top: 76px;
    z-index: 5;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -14px;
    padding: 10px 14px;
    overflow-x: auto;
    background: rgba(7, 7, 6, 0.82);
    border: 1px solid rgba(214, 181, 134, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(14px);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

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

  .pathway-nav a {
    display: inline-flex;
    flex: 0 0 min(168px, 46vw);
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 8px;
    scroll-snap-align: start;
    text-align: center;
  }

  .pathway-case {
    scroll-margin-top: 116px;
    min-height: 0;
  }

  .pathway-media,
  .pathway-media img {
    min-height: 260px;
  }

  .pathway-media figcaption {
    top: 14px;
    right: 14px;
    bottom: auto;
    font-size: 0.64rem;
  }

  .pathway-media-inset {
    left: 14px;
    bottom: 14px;
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 66px;
    width: min(250px, calc(100% - 28px));
  }

  .pathway-media-inset img {
    width: 64px;
    height: 50px;
    min-height: 0;
    max-height: 50px;
  }

  .pathway-content {
    padding: 24px;
  }

  .pathway-content h3 {
    font-size: 1.86rem;
  }

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

  .pathway-columns div {
    padding: 16px;
  }

  .pathway-actions {
    display: grid;
  }

  .pathway-actions .button {
    width: 100%;
    white-space: normal;
  }

  .pathway-testimonial {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .pathway-testimonial blockquote {
    font-size: 1.32rem;
    line-height: 1.24;
  }

  .pathway-testimonial strong {
    justify-self: start;
    max-width: none;
    text-align: left;
  }
}

@media (hover: none) and (pointer: coarse) {
  .treatment-card:hover,
  .real-case-card:hover,
  .review-card:hover,
  .experience-steps article:hover,
  .segments article:hover,
  .technology-grid article:hover,
  .second-opinion-points article:hover {
    transform: none;
  }

  .treatment-card:hover img {
    transform: none;
  }

  .experience-frame:hover img {
    filter: saturate(0.9) contrast(1.07) brightness(0.99);
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: heroSlowZoom 10s ease-in-out infinite alternate;
  }

  .hero::after {
    animation: heroCinematicWipe 1.45s cubic-bezier(0.16, 0.9, 0.22, 1) 0.08s both;
  }

  .hero-slide.is-active {
    animation: heroSlideUnveil 1.25s cubic-bezier(0.16, 0.9, 0.22, 1) both;
  }

  .hero.is-wave-sweeping .hero-insight-path {
    animation: heroInsightDraw 2.45s cubic-bezier(0.16, 0.9, 0.22, 1) both;
  }

  .hero.is-wave-sweeping .hero-insight-dot {
    animation:
      heroInsightDot 2.45s cubic-bezier(0.16, 0.9, 0.22, 1) both,
      heroInsightPulse 2.8s ease-in-out 2.45s infinite;
  }

  .hero.is-wave-sweeping .hero-insight-card {
    animation: heroInsightCard 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) 1.05s both;
  }

  .hero-content > *:not(.sr-only) {
    opacity: 0;
    transform: translateY(28px);
    animation: heroReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  .hero-content > *:nth-child(1) {
    animation-delay: 0.12s;
  }

  .hero-content > *:nth-child(2) {
    animation-delay: 0.24s;
  }

  .hero-content > *:nth-child(3) {
    animation-delay: 0.36s;
  }

  .hero-content > *:nth-child(4) {
    animation-delay: 0.48s;
  }

  .hero-content > *:nth-child(5) {
    animation-delay: 0.6s;
  }

  .hero-content > *:nth-child(6) {
    animation-delay: 0.72s;
  }

  .hero-content > *:nth-child(7) {
    animation-delay: 0.84s;
  }

  .hero-content > *:nth-child(8) {
    animation-delay: 0.96s;
  }

  .hero-content h1:not(.sr-only) {
    transform: none;
    animation: heroTitleMask 1.05s cubic-bezier(0.16, 0.9, 0.22, 1) 0.22s both;
  }

  .js .reveal {
    --reveal-x: 0px;
    --reveal-y: 22px;
    --reveal-scale: 1;
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
    transition:
      opacity 0.68s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.68s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.8s cubic-bezier(0.16, 0.9, 0.22, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
  }

  .js .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  .js .section-heading.reveal,
  .js .pathway-intro.reveal,
  .js .final-cta-inner.reveal {
    --reveal-y: 18px;
  }

  .js .specialist-portrait.reveal,
  .js .experience-frame-main.reveal,
  .js .diagnostic-visual.reveal,
  .js .first-visit-visual.reveal,
  .js .second-opinion-visual.reveal {
    --reveal-x: -20px;
    --reveal-y: 0px;
  }

  .js .technology-visual.reveal,
  .js .experience-note.reveal,
  .js .diagnostic-copy.reveal,
  .js .first-visit-copy.reveal,
  .js .second-opinion-copy.reveal {
    --reveal-x: 20px;
    --reveal-y: 0px;
  }

  .js .treatment-card.reveal,
  .js .real-case-card.reveal,
  .js .review-card.reveal,
  .js .premium-faq-group.reveal,
  .js .final-trust-strip article.reveal {
    --reveal-y: 20px;
    --reveal-scale: 0.985;
  }

  .technical-visual span {
    animation: toothFloat 4.8s ease-in-out infinite;
  }

  .technical-visual span:nth-child(2) {
    animation-delay: 0.45s;
  }

  .technical-visual span:nth-child(3) {
    animation-delay: 0.9s;
  }

  body.has-page-scrolled .whatsapp-float {
    animation: whatsappFloatIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 720px) {
  .js .reveal.reveal {
    --reveal-x: 0px;
  }
}

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

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleMask {
  0% {
    clip-path: inset(0 100% 0 0);
    filter: blur(2px);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes heroCinematicWipe {
  0% {
    opacity: 1;
    transform: translateX(-108%);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(108%);
  }
}

@keyframes heroSlideUnveil {
  0% {
    clip-path: inset(7% 0 0 0);
    filter: saturate(0.56) contrast(1.12) brightness(0.82);
  }

  100% {
    clip-path: inset(0);
    filter: none;
  }
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes heroScan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-42%);
  }

  18% {
    opacity: 0.08;
  }

  42% {
    opacity: 0.24;
  }

  58% {
    opacity: 0.1;
  }

  70% {
    opacity: 0;
    transform: translateY(62%);
  }
}

@keyframes heroInsightDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 680;
  }

  18% {
    opacity: 0.72;
  }

  76% {
    opacity: 0.72;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.68;
    stroke-dashoffset: 0;
  }
}

@keyframes heroInsightDot {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  52% {
    opacity: 0;
  }

  74% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 0.78;
    transform: scale(1);
  }
}

@keyframes heroInsightPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    filter: drop-shadow(0 0 7px rgba(214, 181, 134, 0.34));
  }

  46% {
    opacity: 1;
    transform: scale(1.22);
    filter: drop-shadow(0 0 13px rgba(214, 181, 134, 0.58));
  }
}

@keyframes heroInsightCard {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes realCaseAfterSweep {
  0% {
    clip-path: inset(0 0 0 58%);
  }

  18% {
    clip-path: inset(0 0 0 58%);
  }

  52% {
    clip-path: inset(0 0 0 40%);
  }

  76% {
    clip-path: inset(0 0 0 40%);
  }

  100% {
    clip-path: inset(0 0 0 58%);
  }
}

@keyframes realCaseDividerSweep {
  0% {
    left: 58%;
  }

  18% {
    left: 58%;
  }

  52% {
    left: 40%;
  }

  76% {
    left: 40%;
  }

  100% {
    left: 58%;
  }
}

@keyframes toothFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes whatsappFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.premium-popup-open {
  overflow: hidden;
}

.premium-popup {
  position: fixed;
  inset: 0;
  z-index: 1700;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.premium-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.premium-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.76), rgba(6, 5, 4, 0.88)),
    radial-gradient(circle at 20% 18%, rgba(214, 181, 134, 0.16), transparent 30%);
  backdrop-filter: blur(18px);
}

.premium-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(214, 181, 134, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 15, 12, 0.98), rgba(10, 9, 8, 0.96));
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.premium-popup__media {
  position: relative;
  min-height: clamp(380px, 62vh, 660px);
  margin: 0;
  background: #0b0a09;
}

.premium-popup__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.38)),
    linear-gradient(90deg, rgba(7, 7, 6, 0), rgba(7, 7, 6, 0.18));
  pointer-events: none;
}

.premium-popup__media picture,
.premium-popup__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.premium-popup__media img {
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.premium-popup__copy {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--ivory);
}

.premium-popup__eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-popup__title {
  margin: 0;
  color: var(--ivory);
  font-family: "Federo", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.premium-popup__text {
  margin: 0;
  max-width: 32rem;
  color: rgba(247, 243, 235, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.premium-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.premium-popup__primary,
.premium-popup__secondary {
  min-width: min(100%, 240px);
}

.premium-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 181, 134, 0.2);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(7, 7, 6, 0.42);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.premium-popup__close:hover {
  transform: translateY(-1px);
  background: rgba(18, 16, 13, 0.74);
  border-color: rgba(214, 181, 134, 0.34);
}

.premium-popup__close span {
  font-size: 1.65rem;
  line-height: 1;
}

@media (max-width: 880px) {
  .premium-popup {
    padding: 16px;
  }

  .premium-popup__dialog {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    max-height: min(88vh, 860px);
    overflow-y: auto;
  }

  .premium-popup__media {
    min-height: 280px;
  }

  .premium-popup__copy {
    gap: 16px;
    padding: 24px 20px 22px;
  }

  .premium-popup__title {
    font-size: clamp(1.8rem, 7.6vw, 2.7rem);
  }

  .premium-popup__text {
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .premium-popup__actions {
    flex-direction: column;
  }

  .premium-popup__primary,
  .premium-popup__secondary {
    width: 100%;
    min-width: 0;
  }
}



.footer-policy-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-left: 0.45rem;
}

.footer-policy-links a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .footer-policy-links {
    display: flex;
    margin-top: 8px;
    margin-left: 0;
  }
}
