:root {
  --bg: #050509;
  --bg-2: #0b0b0f;
  --panel: #101017;
  --panel-2: #15151c;
  --ink: #f8fafc;
  --muted: #aeb7c3;
  --soft: #778391;
  --gold: #c29e75;
  --gold-2: #e0c39d;
  --line: rgba(255,255,255,.1);
  --glass: rgba(255,255,255,.055);
  --shadow: 0 26px 80px rgba(0,0,0,.54);
  --radius: 18px;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(194,158,117,.18), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(148,163,184,.16), transparent 28rem),
    linear-gradient(180deg, #15151c 0%, #0b0b0f 38%, #050509 100%);
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 22rem),
    transparent;
}

.mobile-quick {
  display: none;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.5);
}
.mobile-quick a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  font-size: .86rem;
  font-weight: 800;
}
.mobile-quick a:first-child { background: var(--gold); color: #fff; }
.mobile-quick a + a { border-left: 1px solid var(--line); color: var(--ink); }

.topbar {
  position: relative;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #cbd5e1;
  font-size: .82rem;
}
.topbar div { display: flex; align-items: center; gap: 14px; min-width: 0; }
.topbar a { color: var(--gold-2); font-weight: 850; }
.mini-ico {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold);
}
.mini-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }

.header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(5,5,9,.78);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.mark {
  width: 28px;
  height: 46px;
  color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(194,158,117,.28));
}
.mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; }
.brand b {
  display: block;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand span span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
  font-size: .9rem;
  font-weight: 750;
}
.nav a {
  position: relative;
  color: #cbd5e1;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); opacity: 1; }

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}
.lang button {
  min-width: 36px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #cbd5e1;
  background: transparent;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 900;
}
.lang button.is-active { color: #0b0b0f; background: var(--gold); }

.menu { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; }
.menu span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #fff; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.dark {
  color: #fff;
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(135deg, #111827, #050509);
  box-shadow: 0 14px 30px rgba(0,0,0,.34);
}
.btn.gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #9f7650);
  box-shadow: 0 12px 30px rgba(194,158,117,.2);
}
.btn.light {
  color: #f8fafc;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}
.btn.light:hover { background: rgba(255,255,255,.09); }
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 24px 130px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 2%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(194,158,117,.08);
  filter: blur(34px);
}
.hero-copy { position: relative; z-index: 4; max-width: 610px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: .9;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.6vw, 4.1rem);
  line-height: 1.02;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 850;
}
p { color: var(--muted); line-height: 1.78; }
.hero-copy > p:not(.eyebrow) { max-width: 520px; font-size: 1.04rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-media {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  border-top-left-radius: 220px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,5,9,.9) 0%, rgba(5,5,9,.42) 28%, rgba(5,5,9,0) 56%),
    linear-gradient(0deg, rgba(5,5,9,.35), transparent 42%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-card {
  position: absolute;
  z-index: 4;
  right: 28px;
  top: 34px;
  width: 210px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: rgba(16,16,23,.62);
  box-shadow: 0 18px 50px rgba(0,0,0,.36);
  backdrop-filter: blur(16px);
}
.hero-card strong { display: block; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 500; }
.hero-card span { display: block; margin-top: 8px; color: #d1d5db; font-size: .82rem; line-height: 1.5; }
.spine-orbit {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 34px;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(194,158,117,.4);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(5,5,9,.42);
  backdrop-filter: blur(12px);
}
.spine-orbit::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(194,158,117,.34);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.spine-orbit svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 2; }
@keyframes spin { to { transform: rotate(360deg); } }

.stats {
  position: absolute;
  z-index: 8;
  left: 24px;
  right: 24px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: linear-gradient(135deg, #101017, #07070b);
  box-shadow: 0 22px 60px rgba(0,0,0,.42);
}
.stats div { padding: 24px 28px; }
.stats div + div { border-left: 1px solid rgba(255,255,255,.1); }
.stats strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 500;
}
.stats span { color: #aeb7c3; font-size: .86rem; }

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 24px;
}
.section-head { max-width: 820px; margin-bottom: 30px; }
.section-head.center { margin-inline: auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 18px 52px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.service-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194,158,117,.34);
  box-shadow: 0 24px 66px rgba(0,0,0,.42);
}
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(194,158,117,.24);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(194,158,117,.09);
}
.service-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { flex: 1; font-size: .92rem; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.meta span {
  padding: 7px 10px;
  border: 1px solid rgba(194,158,117,.18);
  border-radius: 999px;
  color: #e8d4b8;
  background: rgba(194,158,117,.08);
  font-size: .76rem;
  font-weight: 850;
}
.inline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.inline-list a {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: #e5e7eb;
  font-weight: 850;
}

.pain-finder {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 220px 1.08fr;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(194,158,117,.17), transparent 22rem),
    linear-gradient(135deg, #101017, #050509);
  box-shadow: var(--shadow);
}
.pain-finder::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(194,158,117,.14), rgba(148,163,184,.1), transparent);
  transform: translateY(-35%);
  animation: sweep 12s ease-in-out infinite alternate;
}
@keyframes sweep { to { transform: translateY(28%); } }
.pain-finder > * { position: relative; z-index: 2; }
.pain-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.pain-buttons button {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-weight: 850;
}
.pain-buttons button.is-active { color: #050509; background: var(--gold); }
.pain-figure {
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px solid rgba(194,158,117,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}
.pain-figure svg { width: 116px; height: 116px; fill: none; stroke: var(--gold); stroke-width: 1.45; filter: drop-shadow(0 0 18px rgba(194,158,117,.22)); }
.pain-result {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
}
.pain-result a {
  display: inline-flex;
  margin: 8px 8px 0 0;
  padding: 10px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(194,158,117,.22);
  font-weight: 850;
}

.feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: stretch;
}
.feature-img {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { padding: 42px; }

.dark-tech {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  max-width: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 50%, rgba(194,158,117,.2), transparent 22rem),
    linear-gradient(135deg, #101017, #050509);
}
.tech-list { display: grid; gap: 12px; }
.tech-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.tech-list strong { color: var(--gold); }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.gallery-side { display: grid; gap: 16px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review { padding: 26px; transition: transform .22s ease, box-shadow .22s ease; }
.review:hover { transform: translateY(-5px); box-shadow: 0 22px 58px rgba(0,0,0,.4); }
.stars { color: var(--gold); letter-spacing: .08em; }
.review blockquote { margin: 16px 0; color: #e5e7eb; line-height: 1.68; }
.review small { color: var(--soft); }

.faq { display: grid; gap: 10px; }
details {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
summary { cursor: pointer; padding: 20px 22px; font-weight: 850; }
details p { margin: 0; padding: 0 22px 22px; }

.appointment {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(194,158,117,.18), transparent 24rem),
    linear-gradient(135deg, #111827, #050509);
  box-shadow: var(--shadow);
}
.booking { display: grid; gap: 14px; }
.booking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.booking input, .booking select, .booking textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 0 15px;
  color: #fff;
  background: rgba(255,255,255,.06);
  outline: none;
}
.booking input:focus, .booking select:focus, .booking textarea:focus { border-color: rgba(194,158,117,.52); }
.booking textarea { min-height: 108px; padding-top: 14px; resize: vertical; }
.booking option { color: #050509; }
.booking .btn, .booking-note { grid-column: 1 / -1; }
.booking-note { min-height: 22px; margin: 0; color: #e5e7eb; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.contact-card { padding: 34px; }
.contact-lines { display: grid; gap: 12px; margin: 22px 0; }
.contact-lines a, .contact-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.contact-lines span span, .contact-lines a span { color: var(--muted); text-align: right; }
.map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  filter: grayscale(.2) contrast(1.02);
}
.map iframe { width: 100%; height: 100%; border: 0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { padding: 24px; }
.blog-card span { color: var(--gold); font-size: .76rem; font-weight: 900; text-transform: uppercase; }

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px 44px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; color: #cbd5e1; font-size: .88rem; font-weight: 760; }
.footer small { color: var(--soft); }

.sticky-mobile {
  position: fixed;
  z-index: 100;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(5,5,9,.94);
  box-shadow: 0 18px 48px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}
.sticky-mobile a,
.sticky-mobile button {
  display: grid;
  min-height: 60px;
  place-items: center;
  gap: 3px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: .66rem;
  font-weight: 900;
  cursor: pointer;
}
.sticky-mobile a + a,
.sticky-mobile button { border-left: 1px solid rgba(255,255,255,.1); }
.sticky-mobile button { color: #050509; background: var(--gold); }
.sticky-mobile svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.contact-pop {
  position: fixed;
  z-index: 99;
  right: 12px;
  bottom: 84px;
  display: none;
  min-width: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(16,16,23,.96);
  box-shadow: 0 18px 48px rgba(0,0,0,.44);
  backdrop-filter: blur(14px);
}
.contact-pop.is-open { display: block; }
.contact-pop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 850;
}
.contact-pop a + a { border-top: 1px solid rgba(255,255,255,.1); }
.contact-pop .ui-ico { color: var(--gold); }

.float-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(10,10,10,.92);
  box-shadow: 0 12px 34px rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
}
.float-whatsapp b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  font-size: 1.4rem;
  animation: wppGlow 1.4s ease-in-out infinite;
}
@keyframes wppGlow {
  0%,100% { box-shadow: 0 0 16px rgba(37,211,102,.55); }
  50% { box-shadow: 0 0 34px rgba(37,211,102,.95); }
}

.service-hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 30px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}
.service-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps div { counter-increment: step; padding: 24px; }
.steps div::before { content: "0" counter(step); display: block; margin-bottom: 14px; color: var(--gold); font-weight: 900; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags span {
  padding: 10px 12px;
  border: 1px solid rgba(194,158,117,.18);
  border-radius: 999px;
  color: #e8d4b8;
  background: rgba(194,158,117,.08);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .topbar { display: none; }
  .mobile-quick { display: flex; }
  .header { grid-template-columns: auto 1fr auto auto; }
  .nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(16,16,23,.96);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .menu { display: block; }
  .header-book { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 24px; }
  .hero-media { order: -1; min-height: 430px; border-top-left-radius: 120px; }
  .stats { position: static; grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .services-grid, .reviews, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-finder, .feature, .dark-tech, .appointment, .contact-grid, .service-hero { grid-template-columns: 1fr; }
  .pain-figure { display: none; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .header { min-height: 72px; padding: 12px 16px; }
  .brand { min-width: 0; }
  .brand b { font-size: 1.15rem; }
  .brand span span { display: none; }
  .lang { position: static; }
  .lang button { min-width: 31px; height: 30px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero { padding: 0 16px 42px; }
  .hero-media { min-height: 330px; border-radius: 24px; border-top-left-radius: 92px; }
  .hero-card, .spine-orbit { display: none; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div { padding: 18px; }
  .stats strong { font-size: 1.7rem; }
  .section { padding: 52px 16px; }
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }
  .service-card { min-width: 286px; scroll-snap-align: start; }
  .inline-list, .booking-grid, .detail-grid { grid-template-columns: 1fr; }
  .pain-finder, .feature-copy, .appointment { padding: 24px; }
  .gallery { grid-template-columns: 1fr; }
  .reviews, .blog-grid { grid-template-columns: 1fr; }
  .contact-lines a, .contact-lines span { display: grid; }
  .contact-lines span span, .contact-lines a span { text-align: left; }
  .map { min-height: 330px; }
  .footer { grid-template-columns: 1fr; padding: 30px 16px; }
  .footer nav { justify-content: flex-start; }
  .sticky-mobile { display: grid; }
  .float-whatsapp { display: none; }
  .service-hero { padding: 28px 16px; }
  .service-hero img { height: 330px; }
}

/* Bangs-inspired production layer */
.top-mobile {
  display: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0d0d12;
}
.top-mobile a {
  flex: 1;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 850;
}
.top-mobile a:first-child { background: var(--gold); color: #fff; }
.top-mobile a:last-child { color: #fff; background: #101017; }
.ui-ico {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.top-mobile .ui-ico { width: 22px; height: 22px; }
.bangs-head {
  min-height: 86px;
  background: rgba(5,5,9,.96);
}
.bangs-brand b {
  font-size: 1.78rem;
  letter-spacing: .05em;
}
.langdrop {
  position: relative;
  z-index: 120;
}
.lang-current {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font-weight: 900;
}
.lang-current span { font-size: 1.08rem; }
.lang-current i { color: #cbd5e1; font-style: normal; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(16,16,23,.98);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  backdrop-filter: blur(16px);
}
.langdrop.is-open .lang-menu { display: block; }
.lang-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 40px 1fr;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 12px 14px;
  color: #e5e7eb;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover { background: rgba(255,255,255,.06); }
.lang-menu small { color: #94a3b8; }

.bangs-hero {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
}
.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.08);
}
.hero-shade {
  background:
    linear-gradient(90deg, #050509 0%, rgba(5,5,9,.92) 28%, rgba(5,5,9,.38) 48%, rgba(5,5,9,0) 66%),
    linear-gradient(0deg, rgba(5,5,9,.42), rgba(5,5,9,0) 46%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 70px 24px;
}
.hero-stack {
  max-width: 670px;
  text-align: left;
}
.hero-pill,
.dark-pill,
.light-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-pill {
  margin-bottom: 28px;
  border: 1px solid rgba(194,158,117,.28);
  padding: 9px 16px;
  color: var(--gold-2);
  background: rgba(194,158,117,.1);
}
.hero-pill span,
.dark-pill span,
.light-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-stack h1 {
  max-width: 780px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.hero-stack h1::first-line { color: #fff; }
.hero-stack h1 { color: var(--gold-2); }
.hero-stack > p {
  max-width: 680px;
  color: #e5e7eb;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.directions {
  display: inline-grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  margin-top: 28px;
  color: #fff;
}
.directions span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(0,0,0,.34);
  font-size: 1.35rem;
}
.directions small { color: #cbd5e1; }
.directions .ui-ico { width: 26px; height: 26px; }
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 610px;
  margin-top: 58px;
}
.hero-features div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
}
.hero-features i {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(194,158,117,.36);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(194,158,117,.08);
  font-style: normal;
}
.hero-features svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-features b {
  color: #fff;
  font-size: .94rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-features span {
  color: #d1d5db;
  font-size: .88rem;
  line-height: 1.55;
}

.about-light {
  color: #0f172a;
  background: linear-gradient(0deg, #f7f2ec, #e4d4c3);
}
.pain-section { padding-top: 54px; }
.about-wrap {
  max-width: 1280px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 80px 24px;
}
.about-light p { color: #475569; }
.light-pill {
  border: 1px solid rgba(15,23,42,.08);
  padding: 8px 14px;
  color: #64748b;
  background: rgba(255,255,255,.68);
}
.about-photo {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15,23,42,.24);
}
.about-photo img { width: 100%; height: 480px; object-fit: cover; }
.about-light .pain-buttons button {
  color: #0f172a;
  border-color: rgba(15,23,42,.12);
  background: rgba(255,255,255,.62);
}
.about-light .pain-buttons button.is-active {
  color: #fff;
  background: #0b1118;
}
.about-light .pain-result {
  margin-top: 18px;
  border-color: rgba(15,23,42,.1);
  color: #0f172a;
  background: rgba(255,255,255,.48);
}
.about-light .pain-result a {
  color: #fff;
  background: #0b1118;
}

.services-bangs {
  position: relative;
  overflow: hidden;
  padding: 82px 24px;
  background: #0c0c12;
}
.services-bangs::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(194,158,117,.16), rgba(148,163,184,.14), transparent);
  animation: sweep 14s ease-in-out infinite alternate;
}
.services-bangs > * {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.dark-pill {
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 14px;
  color: #cbd5e1;
  background: rgba(255,255,255,.05);
}
.section-line {
  position: relative;
  display: grid;
  place-items: center;
  margin: 18px auto;
  color: var(--gold);
}
.section-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.1);
}
.section-line svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  padding: 5px;
  background: #0c0c12;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194,158,117,.62);
  box-shadow: 0 28px 70px rgba(0,0,0,.58);
}
.service-photo {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-photo-card:hover img { transform: scale(1.045); }
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.64), rgba(0,0,0,.08));
}
.service-photo span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(194,158,117,.38);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(5,5,9,.72);
  backdrop-filter: blur(10px);
}
.service-photo svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}
.service-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.service-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: .9rem;
}
.service-copy a {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #0b1118;
  background: var(--gold);
  font-weight: 900;
}

.photo-feed {
  color: #0f172a;
  background: linear-gradient(0deg, #f7f2ec, #e4d4c3);
  padding: 82px 24px;
}
.feed-head {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin: 0 auto 34px;
}
.feed-head p { max-width: 680px; color: #475569; }
.feed-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}
.feed-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 18px;
  background: #cbd5e1;
  box-shadow: 0 18px 45px rgba(15,23,42,.16);
}
.feed-item.wide { grid-column: span 2; }
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.feed-item:hover img { transform: scale(1.045); }
.feed-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.34), transparent 54%);
}
.feed-item span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(11,17,24,.68);
  backdrop-filter: blur(8px);
}
.feed-item svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.reviews-bangs {
  position: relative;
  overflow: hidden;
  padding: 82px 24px;
  background: #0c0c12;
}
.review-stars {
  color: #fbbf24;
  letter-spacing: .12em;
}
.review-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.review-viewport {
  overflow: hidden;
}
.review-track {
  display: flex;
  transition: transform .5s ease;
}
.review-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.review-card span {
  color: #fbbf24;
  font-size: .86rem;
  letter-spacing: .06em;
}
.review-card p {
  color: #e5e7eb;
  font-size: .9rem;
}
.review-card small { color: #94a3b8; }
.review-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-size: 1.5rem;
}
.review-nav.prev { left: -54px; }
.review-nav.next { right: -54px; }

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.contact-actions a {
  display: grid;
  gap: 7px;
  min-height: 116px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.contact-actions i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(194,158,117,.12);
  font-style: normal;
}
.contact-actions span {
  color: #94a3b8;
  font-size: .82rem;
}
.hours {
  margin: 18px 0 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.hours summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}
.hours summary b { color: var(--gold-2); }
.hours div { padding: 0 18px 16px; }
.hours p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hours p.today {
  color: #fff;
}
.hours p.today b {
  color: var(--gold-2);
}

@media (max-width: 1120px) {
  .top-mobile { display: flex; }
  .bangs-head {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 96px;
    gap: 12px;
  }
  .bangs-brand b {
    font-size: clamp(1.35rem, 5.6vw, 2rem);
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .bangs-brand .mark,
  .bangs-brand span span {
    display: none;
  }
  .hero-inner {
    justify-content: center;
    text-align: center;
    padding: 72px 24px;
  }
  .hero-stack { text-align: center; }
  .hero-pill { margin-inline: auto; }
  .directions { margin-inline: auto; }
  .hero-features {
    margin-inline: auto;
    text-align: left;
  }
  .about-wrap { grid-template-columns: 1fr; }
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .review-nav { display: none; }
}

@media (max-width: 760px) {
  .top-mobile a { min-height: 62px; }
  .bangs-head {
    min-height: 90px;
    padding-inline: 18px;
  }
  .bangs-brand {
    min-width: 0;
    overflow: hidden;
  }
  .bangs-brand b {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(1.2rem, 5.8vw, 1.72rem);
    letter-spacing: .055em;
  }
  .langdrop {
    justify-self: center;
  }
  .lang-current {
    min-height: 54px;
    padding-inline: 13px;
    font-size: .9rem;
  }
  .menu {
    width: 54px;
    height: 54px;
  }
  .bangs-hero,
  .hero-inner {
    min-height: calc(100vh - 166px);
  }
  .hero-bg img {
    object-position: 70% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5,5,9,.96) 0%, rgba(5,5,9,.72) 46%, rgba(5,5,9,.1) 100%),
      linear-gradient(0deg, rgba(5,5,9,.58), rgba(5,5,9,.06) 54%);
  }
  .hero-inner {
    padding: 58px 24px 92px;
  }
  .hero-stack h1 {
    max-width: 560px;
    margin-inline: auto;
    font-size: clamp(2.45rem, 9vw, 3.55rem);
    line-height: 1.08;
  }
  .hero-stack > p {
    max-width: 520px;
    margin-inline: auto;
    font-size: 1rem;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .directions {
    justify-content: center;
  }
  .directions small {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 54px;
  }
  .hero-features div {
    grid-template-columns: 42px 1fr;
  }
  .hero-features span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .about-wrap,
  .services-bangs,
  .photo-feed,
  .reviews-bangs {
    padding-inline: 16px;
  }
  .about-photo img {
    height: 320px;
  }
  .service-photo-grid {
    grid-template-columns: 1fr;
  }
  .service-photo {
    height: 350px;
  }
  .feed-head {
    display: grid;
  }
  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feed-item,
  .feed-item.wide {
    grid-column: span 1;
    min-height: 168px;
  }
  .review-slide {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

/* Final polish overrides */
.app-ico {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.hero-features div {
  align-items: center;
}
.hero-features i {
  grid-row: auto;
}
.hero-features span {
  display: none;
}
.contact-actions .app-ico {
  width: 26px;
  height: 26px;
}
.sticky-mobile a,
.sticky-mobile button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sticky-mobile .app-ico {
  width: 21px;
  height: 21px;
}
.contact-pop .app-ico {
  width: 24px;
  height: 24px;
}

@media (max-width: 760px) {
  .bangs-brand b {
    max-width: 46vw;
    font-size: clamp(1.12rem, 5.2vw, 1.58rem);
    letter-spacing: .035em;
  }
  .lang-current {
    min-height: 50px;
    padding-inline: 12px;
    gap: 7px;
    font-size: .86rem;
  }
  .lang-current span {
    font-size: .95rem;
  }
  .menu {
    width: 50px;
    height: 50px;
  }
  .hero-features {
    margin-top: 44px;
  }
  .hero-features b {
    font-size: .86rem;
  }
}
