:root {
  --ink: #14202b;
  --muted: #627080;
  --paper: #f8f2ec;
  --surface: #fffaf6;
  --rose: #c85d78;
  --teal: #0f8f8d;
  --gold: #c28b34;
  --navy: #20384a;
  --mint: #dff3ee;
  --shadow: 18px 18px 45px rgba(102, 76, 63, .16), -18px -18px 45px rgba(255, 255, 255, .8);
  --glass: rgba(255, 255, 255, .58);
}

* {
  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(--ink);
  background:
    linear-gradient(135deg, rgba(223, 243, 238, .7), transparent 34%),
    linear-gradient(315deg, rgba(246, 211, 184, .6), transparent 36%),
    var(--paper);
  line-height: 1.6;
}

body.gallery-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 32, 43, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 43, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

img {
  display: block;
  max-width: 100%;
}
.nav-links .nav-cta {
    position: static; 
    background: transparent;
    box-shadow: none;
    margin-left: 20px;
    padding: 8px 15px;
    border: 1px solid #25d366;
    border-radius: 5px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #0fa747;
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: rgba(255, 250, 246, .76);
  box-shadow: 0 20px 60px rgba(32, 56, 74, .13);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  box-shadow: inset 4px 4px 8px rgba(177, 143, 125, .16), inset -4px -4px 8px white;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: .98rem;
  line-height: 1.1;
}

.brand small {
  max-width: 240px;
  color: var(--muted);
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #3b4b5a;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
  transform: translateY(-2px);
}

.nav-links .nav-cta {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15, 143, 141, .28);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: inset 5px 5px 10px rgba(177, 143, 125, .18), inset -5px -5px 10px white;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero,
.section,
.consultation {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(410px, 1.26fr);
  align-items: center;
  gap: 76px;
  padding: 72px 0 56px;
}

.hero-copy {
  padding: 8px 0 8px 2px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.3vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 500px;
  color: #425263;
  font-size: clamp(1rem, 1.25vw, 1.05rem);
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--rose), #e08667);
  box-shadow: 0 16px 34px rgba(200, 93, 120, .3);
}

.button.ghost {
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-row div,
.floating-card,
.procedure-card,
.tech-card,
.timeline-item,
.quote-card,
.price-list,
.package-grid article,
.safety-card,
.consult-card,
details,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 250, 246, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-row div {
  min-height: 118px;
  padding: 18px;
  border-radius: 24px;
}

.stat-row strong {
  display: block;
  color: var(--rose);
  font-size: 2rem;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

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

.glass-frame {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  overflow: hidden;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, .74);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(223,243,238,.5));
  box-shadow: 34px 34px 80px rgba(74, 52, 47, .18), -20px -20px 62px rgba(255, 255, 255, .78);
}

.glass-frame img {
  width: 100%;
  height: min(82vh, 700px);
  object-fit: cover;
  object-position: center top;
}

.doctor-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 26px;
  color: white;
  background: rgba(20, 32, 43, .68);
  backdrop-filter: blur(14px);
}

.doctor-badge strong,
.doctor-badge span {
  display: block;
}

.doctor-badge span {
  color: rgba(255, 255, 255, .78);
}

.floating-card {
  position: absolute;
  max-width: 210px;
  padding: 18px;
  border-radius: 24px;
  animation: float 5s ease-in-out infinite;
}

.floating-card span {
  color: var(--rose);
  font-weight: 900;
}

.floating-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.card-a {
  top: 32px;
  left: 0;
}

.card-b {
  right: -6px;
  bottom: 86px;
  animation-delay: -1.8s;
}

.section {
  padding: 88px 0;
}

.section.muted {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, .34);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.intro-grid,
.compare,
.price-layout,
.lower-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.glass-panel {
  padding: 34px;
  border-radius: 30px;
  font-size: 1.1rem;
}

.soft-list {
  display: grid;
  gap: 14px;
}

.soft-list div {
  padding: 20px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 8px 8px 18px rgba(177, 143, 125, .16), inset -8px -8px 18px white;
}

.soft-list span {
  color: var(--gold);
  font-weight: 900;
}

.soft-list strong {
  display: block;
  font-size: 1.2rem;
}

.soft-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.procedure-card {
  min-height: 430px;
  padding: 24px;
  border-radius: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.procedure-card:hover {
  transform: translateY(-8px);
  box-shadow: 22px 28px 50px rgba(70, 52, 45, .2), -18px -18px 40px rgba(255, 255, 255, .7);
}

.icon-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  font-weight: 900;
}

.procedure-card p,
.timeline-item p,
.quote-card p,
.safety-card p,
details p {
  color: var(--muted);
}

.procedure-card ul {
  padding-left: 18px;
  color: #405263;
}

.procedure-card li + li {
  margin-top: 8px;
}

.lower-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lower-layout .glass-panel,
.tech-card {
  min-height: 330px;
}

.tech-card {
  padding: 30px;
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(145deg, rgba(15, 143, 141, .9), rgba(32, 56, 74, .9)),
    var(--teal);
}

.tech-card .eyebrow,
.tech-card p {
  color: rgba(255, 255, 255, .78);
}

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

.mini-grid span {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
  color: #405263;
  font-size: .86rem;
  font-weight: 800;
}

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

.recovery-strip div {
  padding: 18px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 8px 8px 18px rgba(177, 143, 125, .16), inset -8px -8px 18px white;
}

.recovery-strip strong,
.recovery-strip span {
  display: block;
}

.recovery-strip strong {
  color: var(--rose);
  margin-bottom: 4px;
}

.recovery-strip span {
  color: var(--muted);
  font-size: .9rem;
}

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

.knowledge-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 250, 246, .8);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .72);
}

.knowledge-card p:last-child {
  margin-bottom: 0;
}

.knowledge-card details {
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(223, 243, 238, .42);
}

.knowledge-card details p {
  margin-top: 10px;
}
.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 100%;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0dcd5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1ccc0;
    border-radius: 8px;
    background: #fdfcf9;
    font-family: inherit;
}

.contact-form button {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #333;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
.seo-quick-grid,
.contact-grid,
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

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

.seo-quick-card,
.contact-card,
.seo-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 250, 246, .82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .7);
}

.contact-card h3,
.seo-card h3,
.seo-quick-card h3 {
  margin-bottom: 10px;
}

.contact-card p,
.seo-card p,
.seo-quick-card p {
  margin-bottom: 0;
}

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

.gallery-template-note {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(223, 243, 238, .42);
  color: var(--muted);
}

.gallery-template-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.gallery-template-note p {
  margin-bottom: 0;
}

.gallery-template-note code {
  color: var(--rose);
  font-weight: 900;
}

.patient-gallery {
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 250, 246, .7);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .75);
}

.patient-gallery + .patient-gallery {
  margin-top: 22px;
}

.patient-gallery .results-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.patient-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.patient-gallery-head span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(167, 86, 83, .1);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.patient-gallery-head h3,
.patient-gallery-head p {
  margin-bottom: 0;
}

.patient-gallery-head p {
  max-width: 320px;
  color: var(--muted);
}

.result-card {
  appearance: none;
  width: 100%;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 250, 246, .82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .7);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.result-card:hover,
.result-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 20px 20px 42px rgba(74, 52, 47, .18), -14px -14px 36px rgba(255, 255, 255, .72);
}

.result-card:focus-visible {
  outline: 3px solid rgba(167, 86, 83, .35);
  outline-offset: 4px;
}

.result-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.result-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.result-card-placeholder {
  display: grid;
  align-content: center;
  min-height: 178px;
  cursor: default;
  border-style: dashed;
  background: rgba(255, 255, 255, .48);
  box-shadow: inset 8px 8px 18px rgba(177, 143, 125, .12), inset -8px -8px 18px rgba(255, 255, 255, .78);
}

.result-card-placeholder:hover,
.result-card-placeholder:focus-visible {
  transform: none;
  box-shadow: inset 8px 8px 18px rgba(177, 143, 125, .12), inset -8px -8px 18px rgba(255, 255, 255, .78);
}

.result-card-placeholder span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rose);
  background: rgba(200, 93, 120, .1);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.result-card h3 {
  margin-bottom: 8px;
}

.result-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.result-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(223, 243, 238, .42);
  color: var(--muted);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(25, 20, 24, .82);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.gallery-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  background: white;
}

.gallery-lightbox figcaption {
  margin-top: 12px;
  color: white;
  text-align: center;
  font-weight: 800;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.contact-band,
.contact-process,
.price-notes,
.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-band div,
.contact-process div,
.price-notes div,
.contact-steps article {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: inset 8px 8px 18px rgba(177, 143, 125, .16), inset -8px -8px 18px white;
}

.contact-band strong,
.contact-process strong,
.price-notes strong,
.contact-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
}

.contact-band span,
.contact-process p,
.price-notes p,
.contact-steps p {
  display: block;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-slab {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq-slab details {
  padding: 20px 22px;
}

.compare {
  align-items: center;
}

.slider-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  box-shadow: 24px 24px 55px rgba(74, 52, 47, .2), -18px -18px 45px rgba(255, 255, 255, .65);
  background: var(--surface);
}

.slider-img,
.slider-before-wrap {
  position: absolute;
  inset: 0;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-before-wrap {
  width: 52%;
  overflow: hidden;
  border-right: 3px solid white;
}

.slider-card input {
  position: absolute;
  inset: auto 18px 22px;
  width: calc(100% - 36px);
  accent-color: var(--rose);
}

.slider-label {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(20, 32, 43, .7);
  font-size: .82rem;
  font-weight: 900;
}

.slider-label.before {
  left: 18px;
}

.slider-label.after {
  right: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline-item {
  padding: 26px;
  border-radius: 30px;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: white;
  background: var(--rose);
  font-weight: 900;
}

.price-layout {
  align-items: start;
}

.quote-card,
.price-list {
  padding: 28px;
  border-radius: 30px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.check-grid span,
.pill-row span {
  border-radius: 999px;
  background: rgba(223, 243, 238, .8);
  color: #17615f;
  font-size: .9rem;
  font-weight: 800;
}

.check-grid span {
  padding: 11px 13px;
}

.price-list {
  display: grid;
  gap: 12px;
  max-height: 620px;
  overflow: auto;
  scrollbar-color: var(--rose) rgba(255, 255, 255, .55);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .56);
}

.price-list span {
  color: var(--rose);
  font-weight: 900;
  white-space: nowrap;
  text-align: right;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.package-grid article {
  padding: 22px;
  border-radius: 26px;
}

.package-grid strong,
.package-grid span {
  display: block;
}

.package-grid strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.package-grid span {
  color: var(--rose);
  font-weight: 900;
}

.package-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.safety-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(32, 56, 74, .9), rgba(20, 32, 43, .84)),
    var(--navy);
  color: white;
  box-shadow: 0 28px 70px rgba(32, 56, 74, .28);
}

.safety-card .eyebrow,
.safety-card p {
  color: rgba(255, 255, 255, .76);
}

.pill-row span {
  background: rgba(255, 255, 255, .14);
  color: white;
  padding: 11px 14px;
}

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

details {
  padding: 18px 22px;
  border-radius: 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.consultation {
  padding: 34px 0 88px;
}

.consult-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border-radius: 34px;
}

.consult-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 22px;
  background: white;
}

.consult-card h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal,
.has-js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 250, 246, .92);
    box-shadow: 0 24px 55px rgba(32, 56, 74, .16);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .intro-grid,
  .compare,
  .price-layout,
  .lower-layout,
  .knowledge-grid,
  .seo-quick-grid,
  .contact-grid,
  .seo-grid,
  .results-grid,
  .contact-band,
  .contact-process,
  .price-notes,
  .contact-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-visual {
    min-height: auto;
  }

  .glass-frame {
    margin: 0 auto;
  }

  .floating-card {
    position: relative;
    inset: auto;
    display: inline-block;
    margin: 14px 8px 0 0;
  }

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

  .timeline,
  .recovery-strip,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .consult-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .consult-card img {
    margin: 0 auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: min(100% - 16px, 1180px);
    border-radius: 22px;
  }

  .brand small {
    max-width: 150px;
  }

  .hero,
  .section,
  .consultation {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .stat-row,
  .procedure-grid,
  .check-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .procedure-card {
    min-height: 0;
  }

  .slider-card {
    min-height: 320px;
  }

  .price-list div {
    display: block;
  }

  .price-list span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
