:root {
  --black: #050505;
  --black-2: #0a0a0b;
  --grey: #171719;
  --grey-2: #242428;
  --white: #f5f5f2;
  --muted: #aaa7a2;
  --red: #d80b18;
  --red-2: #ff2435;
  --red-dark: #6c0007;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(216,11,24,.17), transparent 26%, rgba(255,255,255,.025) 52%, transparent 70%),
    radial-gradient(circle at 18% 12%, rgba(216,11,24,.28), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(130,0,9,.24), transparent 30%),
    #050505;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: var(--red);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.38));
  border-bottom: 1px solid transparent;
  transition: .25s ease;
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5,5,5,.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #2a2a2d, var(--red) 48%, #680006);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 30px rgba(216,11,24,.45);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.brand strong { display: block; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.brand small { display: block; color: var(--muted); font-size: .72rem; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(245,245,242,.82);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: white;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 130px clamp(18px, 5vw, 70px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.56) 48%, rgba(0,0,0,.9)),
    linear-gradient(180deg, rgba(0,0,0,.18), #050505 92%),
    url("hero-garage.svg") center/cover no-repeat;
  transform: scale(1.04);
  animation: slowPush 16s ease-in-out infinite alternate;
}
.garage-beams {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 0 22%, rgba(255,36,53,.2) 25%, transparent 31% 58%, rgba(216,11,24,.16) 62%, transparent 69%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  mix-blend-mode: screen;
  opacity: .58;
  animation: redSweep 7.5s ease-in-out infinite alternate;
}
.smoke-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .55;
  background:
    radial-gradient(ellipse at 20% 78%, rgba(255,255,255,.09), transparent 32%),
    radial-gradient(ellipse at 72% 62%, rgba(255,36,53,.15), transparent 34%),
    radial-gradient(ellipse at 45% 42%, rgba(216,11,24,.16), transparent 30%),
    linear-gradient(100deg, transparent, rgba(255,36,53,.08), transparent);
  filter: blur(22px);
  animation: smoke 10s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #050505 68%);
}

.hero-content { max-width: 980px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-size: .76rem;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 10vw, 8.8rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(216,11,24,.22);
}
.hero-title {
  max-width: 980px;
  display: grid;
  gap: 12px;
  font-size: clamp(2.35rem, 6.6vw, 7.1rem);
  line-height: .92;
  text-wrap: balance;
}
.hero-title span {
  display: block;
  overflow-wrap: normal;
}
.hero-title span:first-child {
  font-size: clamp(2.05rem, 5.45vw, 5.55rem);
}
.hero-title span:last-child {
  color: rgba(245,245,242,.94);
  text-shadow: 0 0 44px rgba(216,11,24,.35);
}
.hero-title b {
  color: var(--red-2);
  font-weight: 900;
}
.hero-subtitle {
  margin: 22px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  color: rgba(245,245,242,.88);
}
.hero-slogan {
  margin: 8px 0 0;
  color: white;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions, .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin-top: 28px; }
.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line);
  color: white;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  border-radius: 5px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%);
  transition: transform .5s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(216,11,24,.28);
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-2), var(--red) 45%, #650006);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 18px 46px rgba(216,11,24,.36);
}
.btn-ghost { background: rgba(255,255,255,.075); }
.btn-metal { background: linear-gradient(135deg, #343439, #111 62%, #050505); }

.doctor-card {
  align-self: center;
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.doctor-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(255,36,53,.35), transparent, rgba(255,255,255,.08), transparent);
  animation: cardGlow 8s linear infinite;
  opacity: .42;
}
.doctor-card > * {
  position: relative;
  z-index: 1;
}
.doctor-feature {
  animation: doctorFloat 5.5s ease-in-out infinite alternate;
}
.turbo-spinner {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle, #050505 0 18%, #202024 19% 31%, transparent 32%),
    radial-gradient(circle, transparent 42%, rgba(255,36,53,.22) 43% 46%, transparent 47%);
  box-shadow: inset 0 0 34px rgba(255,36,53,.16), 0 0 50px rgba(216,11,24,.2);
  animation: turboSpin 2.6s linear infinite;
}
.turbo-spinner span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 48px;
  margin: -48px 0 0 -7px;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(#efeff0, #424248 58%, #080809);
  transform-origin: 50% 48px;
}
.turbo-spinner span:nth-child(1) { transform: rotate(0deg); }
.turbo-spinner span:nth-child(2) { transform: rotate(60deg); }
.turbo-spinner span:nth-child(3) { transform: rotate(120deg); }
.turbo-spinner span:nth-child(4) { transform: rotate(180deg); }
.turbo-spinner span:nth-child(5) { transform: rotate(240deg); }
.turbo-spinner span:nth-child(6) { transform: rotate(300deg); }
.mini-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--red-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}
.doctor-orb {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #f4f4f4 0 28%, #c8c8c8 29% 42%, #1a1a1c 43%);
  box-shadow: 0 0 35px rgba(216,11,24,.45);
}
.doctor-orb strong { color: #111; font-size: 1.2rem; }
.scope {
  position: absolute;
  width: 60px;
  height: 32px;
  border: 4px solid var(--red);
  border-top: 0;
  border-radius: 0 0 40px 40px;
  bottom: -10px;
}
.doctor-card p { margin: 0; color: var(--muted); }
.doctor-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.05;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 24px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--red-2);
  border-radius: 10px;
  animation: wheel 1.6s infinite;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #090909;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 70px);
  background: linear-gradient(90deg, transparent, rgba(255,36,53,.42), transparent);
}
.counter-card {
  min-height: 164px;
  padding: 28px 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    #080809;
  border-inline: 1px solid rgba(255,255,255,.06);
}
.counter-card strong {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .9;
  color: white;
  text-shadow: 0 0 36px rgba(216,11,24,.35);
}
.counter-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.trust-strip span {
  padding: 18px 14px;
  text-align: center;
  color: rgba(245,245,242,.84);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2, .copy-block h2, .contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: .95;
  letter-spacing: 0;
}
.section-heading p:not(.eyebrow), .copy-block p, .contact-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card, .review-card, .result-card, details, .case-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.service-card {
  min-height: 315px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card::before, .case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent, rgba(255,36,53,.12), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,36,53,.55);
  box-shadow: 0 26px 80px rgba(216,11,24,.16);
}
.service-card:hover::before, .case-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #101012;
  border: 1px solid rgba(255,36,53,.45);
  color: white;
  font-weight: 900;
  box-shadow: inset 0 0 24px rgba(216,11,24,.25);
  border-radius: 6px;
}
.service-card h3 { margin: 22px 0 8px; font-size: 1.35rem; line-height: 1.05; }
.service-card p { color: var(--muted); margin-bottom: auto; }
.service-card a {
  margin-top: 20px;
  color: var(--red-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: linear-gradient(180deg, #050505, #0b0b0c);
}

.cases {
  background:
    linear-gradient(180deg, #080809, #050505),
    radial-gradient(circle at 80% 20%, rgba(216,11,24,.24), transparent 34%);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.case-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease;
}
.case-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,36,53,.55);
}
.case-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.03;
}
.case-card p {
  color: var(--muted);
}
.case-card strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}
.case-tag {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255,36,53,.42);
  border-radius: 4px;
  color: var(--red-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .7rem;
}
.before-after-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.image-stage {
  min-height: 440px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #101012, #050505);
  border-radius: 8px;
  overflow: hidden;
}
.image-stage img { width: 100%; height: 100%; object-fit: cover; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.check-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--line);
  color: rgba(245,245,242,.86);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 10px;
  border-left: 3px solid var(--red-2);
  border-bottom: 3px solid var(--red-2);
  transform: rotate(-45deg);
}
blockquote {
  margin: 0;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,36,53,.55);
}
.result-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}
.result-card div { padding: 22px; }
.result-card span {
  color: var(--red-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}
.result-card h3 { margin: 8px 0; font-size: 1.5rem; }
.result-card p, .review-card figcaption, details p { color: var(--muted); }

.doctor-section {
  background:
    radial-gradient(circle at 20% 40%, rgba(216,11,24,.28), transparent 30%),
    linear-gradient(180deg, #050505, #0a0a0b);
}
.doctor-showcase {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #080809;
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
}
.doctor-showcase h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: .94;
}
.doctor-showcase p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}
.turbo-spinner-large {
  position: relative;
  inset: auto;
  top: auto;
  right: auto;
  width: 150px;
  height: 150px;
  opacity: 1;
}

.reviews {
  background:
    linear-gradient(180deg, #080809, #050505),
    radial-gradient(circle at 70% 30%, rgba(216,11,24,.18), transparent 34%);
}
.review-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}
.review-track {
  display: flex;
  transition: transform .55s ease;
}
.review-card {
  min-width: 100%;
  margin: 0;
  padding: clamp(28px, 5vw, 58px);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.review-card blockquote {
  max-width: 980px;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  line-height: 1.45;
  font-weight: 800;
}
.review-card figcaption { margin-top: 18px; font-weight: 800; }
.stars {
  color: var(--red-2);
  letter-spacing: .12em;
  font-size: 1rem;
  margin-bottom: 18px;
}
.carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}
.carousel-controls button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  background: rgba(0,0,0,.5);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 12px;
}
details { padding: 0 22px; }
summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  font-size: 1.08rem;
}
details p { margin: 0 0 22px; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 8px;
}
address { color: var(--muted); font-style: normal; margin-top: 18px; }
.booking-form { display: grid; gap: 12px; }
.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(245,245,242,.82);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.booking-form input, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0,0,0,.34);
  color: white;
  padding: 13px 14px;
  outline: none;
}
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--red-2); }
.map-placeholder {
  min-height: 420px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    #101012;
  background-size: 36px 36px;
}
.map-placeholder strong { color: white; font-size: 1.2rem; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px) 92px;
  border-top: 1px solid var(--line);
  background: #030303;
}
.footer p { color: var(--muted); margin: 4px 0 0; }
.footer-links a {
  color: rgba(245,245,242,.76);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
}

.sticky-whatsapp, .sticky-call {
  position: fixed;
  z-index: 14;
  right: 18px;
  bottom: 18px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--red-2), var(--red), #690006);
  color: white;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  box-shadow: 0 16px 44px rgba(216,11,24,.34);
}
.sticky-call { display: none; left: 18px; right: auto; }
.sticky-booking-bar {
  display: none;
}

.page-hero {
  min-height: 62svh;
  padding: 140px clamp(18px, 5vw, 70px) 70px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.62), rgba(0,0,0,.88)),
    url("hero-garage.svg") center/cover no-repeat;
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 7.5rem); max-width: 12ch; }
.content-band {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 6vw, 72px);
}
.spec-list {
  display: grid;
  gap: 12px;
}
.spec-list div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 8px;
}
.spec-list strong { display: block; margin-bottom: 6px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowPush {
  from { transform: scale(1.04) translateX(-8px); }
  to { transform: scale(1.09) translateX(8px); }
}
@keyframes smoke {
  from { transform: translate3d(-34px, 18px, 0) scale(1) rotate(-1deg); }
  to { transform: translate3d(38px, -14px, 0) scale(1.12) rotate(1deg); }
}
@keyframes redSweep {
  from { transform: translateX(-6%) skewX(-8deg); opacity: .42; }
  to { transform: translateX(6%) skewX(-8deg); opacity: .72; }
}
@keyframes turboSpin {
  to { transform: rotate(360deg); }
}
@keyframes doctorFloat {
  from { transform: translateY(0) rotateX(0); }
  to { transform: translateY(-10px) rotateX(2deg); }
}
@keyframes cardGlow {
  to { transform: rotate(360deg); }
}
@keyframes wheel {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    padding: 20px;
    background: rgba(5,5,5,.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .hero, .split-section, .contact, .contact-panel, .content-band {
    grid-template-columns: 1fr;
  }
  .hero { align-items: center; padding-top: 110px; }
  .doctor-card { max-width: 520px; }
  .service-grid, .review-grid, .case-grid, .before-after-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .doctor-showcase {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .doctor-showcase .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  .brand strong { font-size: .82rem; }
  .brand-mark { width: 40px; height: 40px; }
  h1 { font-size: clamp(2.8rem, 16vw, 4.7rem); max-width: 10ch; }
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 142px;
  }
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 3.6rem);
    line-height: .98;
    gap: 8px;
  }
  .hero-title span:first-child {
    font-size: clamp(1.48rem, 7.7vw, 2.6rem);
    line-height: 1.05;
  }
  .hero-actions { margin-bottom: 44px; }
  .hero-actions .btn { width: 100%; }
  .turbo-spinner {
    width: 84px;
    height: 84px;
    right: 18px;
    top: 18px;
    opacity: .78;
  }
  .turbo-spinner span {
    height: 34px;
    margin-top: -34px;
    transform-origin: 50% 34px;
  }
  .service-grid, .review-grid, .results-grid, .gallery-grid, .case-grid, .before-after-grid, .counters { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .image-stage { min-height: 300px; }
  .doctor-showcase {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .turbo-spinner-large {
    width: 112px;
    height: 112px;
  }
  .review-card {
    padding-bottom: 92px;
  }
  .carousel-controls {
    left: 18px;
    right: auto;
  }
  .footer { display: grid; padding-bottom: 112px; }
  .sticky-whatsapp, .sticky-call {
    display: none;
  }
  .sticky-booking-bar {
    position: fixed;
    z-index: 16;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    background: #050505;
    box-shadow: 0 18px 58px rgba(216,11,24,.34);
  }
  .sticky-booking-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--red-2), var(--red-dark));
    color: white;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
}

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