:root {
  /* Primary Brand (Logo Blue) */
  --navy-950: #140B4D;
  --navy-900: #2E1C86;
  --navy-800: #3B279B;
  --navy-700: #4D38B2;

  /* Accent (Logo Red) */
  --teal-700: #C31712;
  --teal-600: #E61E17;
  --teal-500: #FF433B;

  /* Premium Support */
  --gold-600: #B5893F;
  --gold-500: #D2A758;
  --gold-300: #F1DEB0;

  /* Base */
  --white: #ffffff;
  --soft: #F7F8FC;
  --soft-2: #F1F4FB;

  /* Typography */
  --text: #1B2238;
  --muted: #67758C;

  /* Borders */
  --line: rgba(46, 28, 134, 0.10);

  /* Shadows */
  --shadow:
    0 20px 60px rgba(46, 28, 134, .14);

  --shadow-dark:
    0 26px 80px rgba(20, 11, 77, .28);

  /* Radius */
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* Layout */
  --container: 1180px;
  --header-height: 82px;

  /* Fonts */
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* New Gradient */
  --brand-gradient:
    linear-gradient(
      135deg,
      #2E1C86 0%,
      #4528A6 55%,
      #E61E17 100%
    );
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
  z-index: 999;
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 42px;
}
.topbar p { margin: 0; }
.topbar__links { display: flex; gap: 18px; white-space: nowrap; }
.topbar a:hover { color: var(--gold-300); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 52, 77, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 42px rgba(6, 21, 33, 0.08);
  background: rgba(255, 255, 255, 0.96);
}
.nav-wrap {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

/* Header + Footer Logo */
.clinic-logo{
  width: auto;
  height: 78px;
  object-fit: contain;
  transition: .3s ease;
}

.footer-logo{
  height: 120px;
  margin-bottom: 10px;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 16px 36px rgba(18, 52, 77, 0.2);
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--font-heading); font-size: 16px; line-height: 1.1; color: var(--navy-900); }
.brand small { margin-top: 3px; font-size: 12px; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 25px; color: var(--navy-800); font-weight: 700; font-size: 15px; }
.main-nav a { position: relative; padding: 28px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); margin: 5px auto; transition: 0.25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn--small { min-height: 44px; padding: 12px 18px; font-size: 14px; }
.btn--primary {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(8, 32, 50, 0.22);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(18, 140, 126, 0.22);
}
.btn--ghost { background: rgba(255, 255, 255, 0.14); color: var(--white); border-color: rgba(255, 255, 255, 0.24); }
.btn--full { width: 100%; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 110px 0 85px;
  background:
    radial-gradient(circle at top left, rgba(34, 199, 184, 0.23), transparent 36%),
    radial-gradient(circle at bottom right, rgba(201, 164, 92, 0.22), transparent 36%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #0d3d4a);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero__orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .9; }
.hero__orb--one { width: 280px; height: 280px; right: 10%; top: 90px; background: rgba(34, 199, 184, .12); }
.hero__orb--two { width: 190px; height: 190px; left: 6%; bottom: 90px; background: rgba(201, 164, 92, .16); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow--dark { background: rgba(17, 153, 142, .09); color: var(--teal-700); }
h1, h2, h3 { font-family: var(--font-heading); margin: 0; line-height: 1.08; color: inherit; }
h1 { font-size: clamp(44px, 7vw, 76px); letter-spacing: -0.06em; max-width: 820px; }
.hero__lead { max-width: 660px; margin: 24px 0 0; color: rgba(255,255,255,.80); font-size: 20px; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; color: rgba(255,255,255,.72); }
.hero__meta a:hover { color: var(--gold-300); }
.hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 620px; }
.hero__proof div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.hero__proof strong { display: block; color: var(--gold-300); font-family: var(--font-heading); }
.hero__proof span { color: rgba(255,255,255,.72); font-weight: 600; }
.hero__visual { position: relative; }
.premium-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}
.hero-card { padding: 28px; min-height: 580px; overflow: hidden; }
.hero-card__top, .hero-card__bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; position: relative; z-index: 1; }
.hero-card__top span { color: var(--gold-300); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.hero-card__top h2 { margin-top: 6px; font-size: 28px; }
.hero-card__top i { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: var(--gold-300); font-size: 28px; }
.spine-graphic { width: min(90%, 360px); margin: 28px auto 0; opacity: .96; }
.hero-card__bottom { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.hero-card__bottom div { flex: 1; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
.hero-card__bottom strong { display: block; font-family: var(--font-heading); color: var(--white); }
.hero-card__bottom span { color: rgba(255,255,255,.68); font-size: 14px; }
.floating-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.floating-note i { color: var(--teal-600); }
.floating-note--left { left: -22px; top: 34%; }
.floating-note--right { right: -18px; bottom: 28%; }

.trust-strip { position: relative; margin-top: -38px; z-index: 3; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}
.trust-strip__grid div { background: var(--white); padding: 24px; }
.trust-strip__grid span { display: block; color: var(--gold-600); font-family: var(--font-heading); font-weight: 800; }
.trust-strip__grid strong { display: block; margin-top: 6px; color: var(--navy-900); }

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: radial-gradient(circle at top right, rgba(34,199,184,.16), transparent 32%), linear-gradient(135deg, var(--navy-950), var(--navy-900)); color: var(--white); }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 62px; align-items: center; }
.two-col--reverse { grid-template-columns: 1.05fr .95fr; }
.section-copy h2, .section-head h2 { font-size: clamp(34px, 4vw, 50px); letter-spacing: -0.045em; color: var(--navy-900); }
.section-dark .section-head h2, .section-dark .section-head p { color: var(--white); }
.section-copy p, .section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: rgba(255,255,255,.72); }
.section-head { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.section-head--light .eyebrow { background: rgba(255,255,255,.1); color: var(--gold-300); }
.section-media { position: relative; min-height: 500px; }
.portrait-card {
  min-height: 450px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(34,199,184,.24), transparent 35%), linear-gradient(145deg, var(--navy-900), #0f3b48);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-card__halo { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(201,164,92,.16); filter: blur(10px); }
.portrait-card__icon { position: relative; width: 118px; height: 118px; border-radius: 34px; display: grid; place-items: center; background: rgba(255,255,255,.13); color: var(--gold-300); font-size: 54px; }
.portrait-card h3 { position: relative; margin-top: 22px; font-size: 30px; }
.portrait-card p { position: relative; margin: 8px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }
.portrait-card span { position: relative; margin-top: 14px; color: var(--gold-300); font-weight: 800; font-size: 14px; }
.credential-card {
  position: absolute;
  right: -24px;
  bottom: 38px;
  width: min(86%, 330px);
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.credential-card strong, .credential-card a { display: block; }
.credential-card strong { font-family: var(--font-heading); color: var(--navy-900); margin-bottom: 9px; }
.credential-card a { color: var(--muted); margin-top: 4px; }
.credential-card a:hover { color: var(--teal-700); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.mini-grid div { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.mini-grid strong { display: block; color: var(--navy-900); font-family: var(--font-heading); }
.mini-grid span { display: block; color: var(--muted); margin-top: 7px; }

.card-grid { display: grid; gap: 20px; }
.card-grid--four { grid-template-columns: repeat(4, 1fr); }
.info-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 21, 33, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.info-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(17,153,142,.25); }
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(17,153,142,.09); color: var(--teal-700); font-family: var(--font-heading); font-weight: 800; }
.info-card h3 { margin-top: 22px; font-size: 22px; color: var(--navy-900); }
.info-card p { margin: 12px 0 0; color: var(--muted); }

.service-list { display: grid; gap: 14px; margin-top: 28px; }
.service-list div { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); font-weight: 700; color: var(--navy-800); }
.service-list i { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(17,153,142,.1); color: var(--teal-700); }
.treatment-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-900), #0e3d49);
  color: var(--white);
  box-shadow: var(--shadow);
}
.treatment-panel h3 { font-size: 34px; }
.treatment-panel p { color: rgba(255,255,255,.74); font-size: 18px; }
.panel-stat { display: flex; align-items: center; gap: 18px; margin-top: 16px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); }
.panel-stat strong { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-500); color: var(--navy-950); font-family: var(--font-heading); }
.panel-stat span { font-weight: 800; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.timeline article { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.timeline span { color: var(--gold-300); font-family: var(--font-heading); font-weight: 800; }
.timeline h3 { margin-top: 18px; font-size: 24px; }
.timeline p { color: rgba(255,255,255,.72); }

.video-card {
  min-height: 430px;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: radial-gradient(circle at 20% 10%, rgba(255,0,0,.22), transparent 28%), linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow);
}
.video-card > i { font-size: 70px; color: #ff3b3b; margin-bottom: auto; }
.video-card h3 { font-size: 34px; }
.video-card p { color: rgba(255,255,255,.72); }
.clean-list { padding-left: 0; list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.clean-list li { position: relative; padding-left: 30px; color: var(--muted); font-weight: 700; }
.clean-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--teal-700); }

.review-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(6,21,33,.07);
}
.review-card i { color: var(--gold-500); font-size: 24px; }
.review-card p { color: var(--text); font-size: 20px; margin: 24px 0; }
.review-card strong { display: block; font-family: var(--font-heading); color: var(--navy-900); }
.review-card span { color: var(--muted); }
.swiper { padding-bottom: 50px; }
.swiper-pagination-bullet-active { background: var(--teal-700); }

.two-col--faq { grid-template-columns: .8fr 1.2fr; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--teal-700); }
.faq-item.is-open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 24px 22px; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.appointment { background: linear-gradient(135deg, var(--soft), var(--soft-2)); }
.appointment__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.appointment__content {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}
.appointment__content h2 { font-size: clamp(34px, 4vw, 48px); }
.appointment__content p { color: rgba(255,255,255,.72); font-size: 18px; }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-cards a { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); }
.contact-cards strong { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); color: var(--white); }
.contact-cards span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); }
.appointment-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-row { margin-bottom: 18px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 8px; color: var(--navy-900); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--text);
  background: #fbfdfe;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(17,153,142,.55); box-shadow: 0 0 0 4px rgba(17,153,142,.08); }
.form-error { display: block; margin-top: 6px; min-height: 18px; color: #b42318; font-size: 13px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 12px; color: var(--muted); font-weight: 600; }
.consent input { width: auto; margin-top: 6px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; text-align: center; }

.footer { padding: 70px 0 30px; background: var(--navy-950); color: rgba(255,255,255,.74); }
.footer__grid { display: grid; grid-template-columns: 1.3fr .75fr .75fr 1fr; gap: 34px; }
.footer .brand strong { color: var(--white); }
.footer .brand small { color: rgba(255,255,255,.62); }
.footer p { margin: 18px 0 0; }
.footer h3 { color: var(--white); font-size: 18px; margin-bottom: 18px; }
.footer a { display: block; margin-top: 9px; }
.footer a:hover { color: var(--gold-300); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 999px; display: inline-grid; place-items: center; background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.12); transition: transform .25s ease, background .25s ease, color .25s ease; }
.footer-socials a:hover { transform: translateY(-3px); background: var(--gold-500); color: var(--navy-950); }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 30px; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  gap: 12px;
}
.floating-action {
  min-width: 152px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 18px 45px rgba(6, 21, 33, .28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.floating-action:hover { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(6,21,33,.34); filter: saturate(1.08); }
.floating-action i { width: 28px; height: 28px; border-radius: 999px; display: inline-grid; place-items: center; background: rgba(255,255,255,.18); font-size: 15px; }
.floating-action--call { background: linear-gradient(135deg, var(--navy-900), var(--teal-600)); }
.floating-action--whatsapp { background: linear-gradient(135deg, #128c7e, #25d366); }

@media (max-width: 1080px) {
  .desktop-cta { display: none; }
  .main-nav { gap: 18px; }
  .card-grid--four { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    .clinic-logo{
  height: 60px;
}

.footer-logo{
  height: 95px;
}

.nav-wrap{
  height: 86px;
}
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 10px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: 80px 0 70px; }
  .hero__grid, .two-col, .two-col--reverse, .two-col--faq, .appointment__grid { grid-template-columns: 1fr; }
  .hero__proof { grid-template-columns: 1fr; }
  .appointment__content { position: relative; top: auto; }
  .section-media { min-height: auto; }
  .credential-card { position: relative; right: auto; bottom: auto; margin: -44px 18px 0; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { height: 72px; }
  .brand__mark { width: 42px; height: 42px; border-radius: 14px; }
  .brand strong { font-size: 14px; }
  .hero__actions { display: grid; }
  .hero-card { min-height: 500px; padding: 22px; }
  .hero-card__bottom { position: relative; left: auto; right: auto; bottom: auto; display: grid; margin-top: 20px; }
  .floating-note { display: none; }
  .trust-strip { margin-top: 0; }
  .trust-strip__grid, .card-grid--four, .timeline, .mini-grid, .form-row--split, .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .info-card { min-height: auto; }
  .appointment-form, .appointment__content { padding: 24px; border-radius: 24px; }
  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .floating-action { min-width: 0; width: 100%; height: 52px; padding: 0 12px; font-size: 14px; }
}

@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;
  }
}
.clinic-logo{
  height: 70px;
}

.footer-logo{
  height: 80px;
}
/* Gallery */

.gallery{
background: var(--soft);
}

.gallery-grid{
display:grid;

grid-template-columns:
repeat(3,1fr);

gap:24px;

margin-top:40px;
}

.gallery-item{

overflow:hidden;

border-radius:24px;

box-shadow:var(--shadow);

background:#fff;
}

.gallery-item img{

width:100%;

height:300px;

object-fit:cover;

display:block;

transition:.4s;
}

.gallery-item:hover img{

transform:scale(1.06);

}

/* Tablet */

@media(max-width:900px){

.gallery-grid{

grid-template-columns:
repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:620px){

.gallery-grid{

grid-template-columns:
1fr;

}

.gallery-item img{

height:260px;

}

}
/* Legal Section */

.legal{

padding:100px 0;

background:#fff;

}

.legal--soft{

background:var(--soft);

}

.legal-card{

max-width:900px;

margin:auto;

padding:50px;

border-radius:28px;

background:#fff;

box-shadow:var(--shadow);

}

.legal-card h3{

margin-top:28px;

margin-bottom:10px;

color:var(--navy-900);

}

.legal-card p{

color:var(--muted);

line-height:1.9;

}

@media(max-width:768px){

.legal-card{

padding:30px 24px;

}

}
