:root {
  --ink: #1f344f;
  --muted: #627087;
  --surface: #fffefa;
  --surface-soft: #f4f2ec;
  --line: #dedbd2;
  --teal: #263f62;
  --teal-dark: #172a44;
  --mint: #edeae1;
  --coral: #a98a58;
  --gold: #b49a68;
  --shadow: 0 18px 45px rgba(31, 52, 79, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 154, 104, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfaf5 0%, #f8f6ef 46%, #f4f2ec 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(248, 246, 239, 0.9);
  border-bottom: 1px solid rgba(222, 219, 210, 0.88);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 154, 104, 0.62), transparent);
}

.nav {
  width: var(--container);
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: clamp(148px, 17vw, 230px);
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
  padding: 5px;
  color: #33445e;
  background: rgba(255, 254, 250, 0.64);
  border: 1px solid rgba(222, 219, 210, 0.72);
  border-radius: 999px;
  font-size: 0.93rem;
  box-shadow: 0 10px 28px rgba(31, 52, 79, 0.06);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(237, 234, 225, 0.76);
}

.nav-action,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-action,
.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(38, 63, 98, 0.24);
}

.nav-action {
  padding: 0 18px;
}

.button {
  padding: 0 20px;
}

.button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

.button-primary:hover,
.nav-action:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid rgba(255, 254, 250, 0.75);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, #f8f6ef);
  pointer-events: none;
}

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

.hero-media {
  background: url("assets/banner-dentist-consultation.png") 70% center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.98), rgba(244, 242, 236, 0.9) 53%, rgba(248, 246, 239, 0.1) 100%),
    linear-gradient(0deg, rgba(248, 246, 239, 0.96), transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: auto;
  padding: 80px 0 120px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5vw, 5.6rem);
  line-height: 1.05;
}

.hero-lead {
  max-width: 620px;
  color: #46556a;
  font-size: 1.08rem;
}

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

.hero-actions {
  margin-top: 28px;
}

.hero-stats {
  margin-top: 42px;
}

.hero-stats div {
  min-width: 128px;
  padding: 14px 16px;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid rgba(222, 219, 210, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 52, 79, 0.09);
}

.hero-stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-strip {
  width: var(--container);
  margin: -58px auto 30px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.trust-item,
.service-card,
.steps article,
.booking-section,
.video-frame {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-item:hover,
.service-card:hover,
.steps article:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 154, 104, 0.5);
  box-shadow: 0 20px 42px rgba(31, 52, 79, 0.12);
}

.icon-pill,
.service-icon {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: var(--radius);
}

.icon-pill {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 82px 0;
  scroll-margin-top: 96px;
}

.video-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
  padding-top: 70px;
}

.video-copy {
  max-width: 420px;
}

.video-copy p:not(.eyebrow) {
  color: var(--muted);
}

.video-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.video-highlights span {
  padding: 7px 12px;
  color: var(--teal-dark);
  background: rgba(237, 234, 225, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(23, 42, 68, 0.08), rgba(23, 42, 68, 0.26)),
    url("assets/video-cover-lakhal-clinic.png") center / cover no-repeat;
  border: 1px solid rgba(180, 154, 104, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(31, 52, 79, 0.2);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: var(--radius);
  pointer-events: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 42, 68, 0.02), rgba(23, 42, 68, 0.18));
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.video-frame:hover::after {
  opacity: 0.42;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #fffefa;
  border: 1px solid rgba(255, 254, 250, 0.56);
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-frame:hover .play-button {
  transform: scale(1.04);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  fill: var(--teal-dark);
  stroke: none;
}

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

.section-heading.compact {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.18;
}

.section-heading p:not(.eyebrow),
.doctor-panel p,
.booking-copy p,
.results-heading > p {
  color: var(--muted);
}

.results-heading > p {
  max-width: 420px;
}

.results-section {
  padding-top: 94px;
}

.cases-slider {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.case-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.case-tabs {
  display: flex;
  gap: 5px;
  padding: 5px;
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(31, 52, 79, 0.08);
}

.case-tab,
.case-nav {
  min-height: 42px;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.case-tab {
  padding: 0 18px;
}

.case-tab.is-active {
  color: #fffefa;
  background: var(--teal);
  box-shadow: 0 10px 20px rgba(38, 63, 98, 0.22);
}

.case-nav {
  width: 42px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
}

.case-track {
  position: relative;
}

.case-track .case-slide {
  display: none;
}

.case-track .case-slide.is-active {
  display: grid;
}

.case-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.case-dots span {
  width: 8px;
  height: 8px;
  background: rgba(31, 52, 79, 0.25);
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.case-dots span.is-active {
  width: 28px;
  background: var(--gold);
}

.comparison-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  width: 100%;
  max-width: 1080px;
  min-width: 0;
  margin: 0 auto;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.92), rgba(244, 242, 236, 0.82)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-view {
  --position: 50%;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  background: #eeeae1;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 8.7;
}

.comparison-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.comparison-before-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--before-image, url("assets/smile-before.png")) center / cover no-repeat;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-focus {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(23, 42, 68, 0.12), transparent 22%, transparent 78%, rgba(23, 42, 68, 0.12)),
    linear-gradient(180deg, rgba(23, 42, 68, 0.04), rgba(23, 42, 68, 0.12));
  pointer-events: none;
}

.case-name {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;
  padding: 7px 12px;
  color: #fffefa;
  background: rgba(23, 42, 68, 0.72);
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 3px;
  background: #fffefa;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(23, 42, 68, 0.2), 0 0 28px rgba(23, 42, 68, 0.2);
}

.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #fffefa;
  border: 1px solid rgba(23, 42, 68, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 38px rgba(23, 42, 68, 0.26);
}

.comparison-line svg {
  width: 26px;
  height: 26px;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 14px;
  color: #fffefa;
  background: rgba(23, 42, 68, 0.78);
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

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

.comparison-copy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px 34px;
  align-items: center;
  padding: 34px 36px 36px;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.98), rgba(248, 246, 239, 0.92)),
    var(--surface);
}

.comparison-summary {
  position: relative;
  padding-inline-start: 18px;
}

.comparison-summary::before {
  content: "";
  position: absolute;
  inset: 6px auto 6px 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  border-radius: 999px;
}

.summary-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.result-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.result-metrics span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  color: var(--teal-dark);
  background: rgba(255, 254, 250, 0.76);
  border: 1px solid rgba(222, 219, 210, 0.86);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(31, 52, 79, 0.06);
}

.result-metrics strong {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fffefa;
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 52, 79, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-icon {
  width: 92px;
  height: 102px;
  margin-bottom: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: stretch;
}

.doctor-panel,
.hours-card,
.booking-section {
  border-radius: var(--radius);
}

.doctor-panel {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(237, 234, 225, 0.82), rgba(255, 254, 250, 0.94)),
    var(--surface-soft);
  border: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
}

.hours-card {
  padding: 32px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-dark), #263f62);
  box-shadow: var(--shadow);
}

.booking-section:focus-within {
  border-color: rgba(180, 154, 104, 0.7);
  box-shadow: 0 24px 54px rgba(31, 52, 79, 0.18);
}

.hours-card h3 {
  font-size: 1.4rem;
}

.hours-card dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dd {
  color: #edeae1;
}

.full {
  width: 100%;
}

.experience {
  width: 100%;
  max-width: none;
  background: #edeae1;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.steps article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
}

.steps p {
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  align-items: start;
  margin-top: 52px;
  margin-bottom: 84px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-copy {
  max-width: 520px;
}

.booking-copy h2 {
  max-width: 480px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.2vw, 3.65rem);
  line-height: 1.08;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-mini {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-mini a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.3;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-mini .social-icons a,
.footer-social a {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(31, 52, 79, 0.1);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.contact-mini .social-icons {
  margin-top: 2px;
}

.contact-mini .social-icons a {
  width: 42px;
  height: 42px;
  box-shadow: 0 8px 18px rgba(31, 52, 79, 0.08);
}

.contact-mini .social-icons img {
  width: 25px;
  height: 25px;
}

.contact-mini .social-icons a:hover,
.footer-social a:hover {
  background: #fff;
  transform: translateY(-2px);
}

.footer-social {
  gap: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
}

.footer-social img {
  width: 25px;
  height: 25px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.contact-mini .social-icons img,
.footer-social img {
  width: 25px;
  height: 25px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 8px 0 0;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #263f62;
  font-weight: 800;
  font-size: 0.98rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: #fffefa;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(180, 154, 104, 0.15);
}

.booking-form textarea {
  min-height: 148px;
  resize: vertical;
}

.booking-form button.wide {
  min-height: 54px;
}

.wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.reviews-section {
  padding-top: 10px;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.reviews-header h2 {
  max-width: 680px;
}

.google-rating {
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(31, 52, 79, 0.1);
}

.google-rating > span {
  color: var(--teal-dark);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.google-rating strong {
  display: block;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}

.google-rating small {
  color: var(--muted);
  font-weight: 800;
}

.reviews-slider {
  display: grid;
  gap: 14px;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.reviews-nav {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(31, 52, 79, 0.1);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.reviews-nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
}

.reviews-nav:disabled {
  cursor: default;
  opacity: 0.38;
}

.reviews-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-viewport {
  min-width: 0;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 210px;
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 52, 79, 0.08);
  scroll-snap-align: start;
}

.review-mark {
  color: var(--gold);
  font-size: 0.98rem;
  letter-spacing: 0;
}

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

.review-card strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.reviews-link {
  margin-top: 18px;
}

.instagram-section {
  padding-top: 18px;
}

.instagram-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.instagram-heading h2 {
  max-width: 720px;
}

.instagram-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.instagram-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 16px 8px 8px;
  color: var(--teal-dark);
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(31, 52, 79, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.instagram-profile img {
  width: 34px;
  height: 34px;
}

.instagram-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(222, 219, 210, 0.68);
  scrollbar-width: thin;
  padding-bottom: 12px;
}

.instagram-grid::-webkit-scrollbar {
  height: 8px;
}

.instagram-grid::-webkit-scrollbar-track {
  background: rgba(222, 219, 210, 0.68);
  border-radius: 999px;
}

.instagram-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.instagram-grid a {
  position: relative;
  isolation: isolate;
  display: block;
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111827;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(31, 52, 79, 0.1);
  scroll-snap-align: start;
}

.instagram-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
}

.instagram-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 31, 50, 0) 48%, rgba(18, 31, 50, 0.76) 100%),
    radial-gradient(circle at 18% 12%, rgba(180, 154, 104, 0.28), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.instagram-grid span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: #fffefa;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.25;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(18, 31, 50, 0.34);
  transition: opacity 180ms ease;
}

.instagram-grid a:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.instagram-grid a:hover::after,
.instagram-grid a:hover span {
  opacity: 1;
}

.loyalty-section {
  padding-top: 42px;
}

.loyalty-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 150px;
  padding: 34px 36px;
  color: #fffefa;
  background:
    radial-gradient(circle at 94% 50%, rgba(255, 254, 250, 0.18) 0 7rem, transparent 7.1rem),
    linear-gradient(135deg, #172a44 0%, #213a5a 56%, #b49a68 145%);
  border: 1px solid rgba(180, 154, 104, 0.5);
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(31, 52, 79, 0.18);
  overflow: hidden;
}

.loyalty-banner::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(320px, 32%);
  background: rgba(255, 254, 250, 0.08);
  clip-path: ellipse(66% 90% at 100% 50%);
  pointer-events: none;
}

.loyalty-copy {
  position: relative;
  z-index: 1;
}

.loyalty-badge {
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 13px;
  color: #fffefa;
  background: rgba(255, 254, 250, 0.18);
  border: 1px solid rgba(255, 254, 250, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.loyalty-copy h2 {
  margin-bottom: 6px;
  color: #fffefa;
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  line-height: 1.04;
}

.loyalty-copy p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.82);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
}

.loyalty-banner .button {
  position: relative;
  z-index: 1;
  min-width: 240px;
  min-height: 58px;
  padding: 0 24px;
  color: var(--ink);
  background: #fffefa;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(23, 42, 68, 0.16);
  font-size: 1rem;
  font-weight: 900;
}

.loyalty-banner .button:hover {
  color: #fffefa;
  background: var(--gold);
}

.loyalty-banner .button span {
  font-size: 1.35rem;
  line-height: 1;
}

.loyalty-card-preview,
.digital-loyalty-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(237, 234, 225, 0.92)),
    linear-gradient(135deg, transparent, rgba(180, 154, 104, 0.28));
  border: 1px solid rgba(255, 254, 250, 0.68);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.loyalty-card-preview img {
  width: 210px;
}

.loyalty-card-preview span,
.digital-loyalty-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.loyalty-card-preview strong,
.digital-loyalty-card strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.loyalty-card-preview small,
.digital-loyalty-card small {
  color: var(--muted);
  font-weight: 800;
}

.loyalty-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 18px;
}

.loyalty-modal.is-open {
  display: grid;
}

.loyalty-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 42, 68, 0.64);
  backdrop-filter: blur(8px);
}

.loyalty-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  display: grid;
  gap: 22px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.loyalty-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: none;
}

.loyalty-form-view h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.loyalty-form-view > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

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

.loyalty-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.loyalty-form label:nth-child(3),
.loyalty-form button,
.loyalty-status {
  grid-column: 1 / -1;
}

.loyalty-form input {
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.loyalty-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.loyalty-card-view {
  display: grid;
  gap: 18px;
}

.loyalty-card-view.is-hidden {
  display: none;
}

.digital-loyalty-card {
  min-height: 230px;
  color: #fffefa;
  background:
    radial-gradient(circle at 85% 10%, rgba(180, 154, 104, 0.6), transparent 16rem),
    linear-gradient(135deg, #172a44, #263f62);
}

.digital-loyalty-card span,
.digital-loyalty-card small {
  color: rgba(255, 254, 250, 0.72);
}

.digital-loyalty-card strong {
  color: #fffefa;
}

.loyalty-progress {
  display: grid;
  gap: 8px;
}

.loyalty-progress-bar {
  height: 12px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.loyalty-progress-bar span {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--gold), #d8bf84);
  border-radius: inherit;
}

.loyalty-visits {
  display: grid;
  gap: 10px;
}

.loyalty-visits article {
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.loyalty-visits strong {
  display: block;
}

.loyalty-visits p {
  margin: 4px 0 0;
  color: var(--muted);
}

.loyalty-reward {
  padding: 16px;
  background: rgba(180, 154, 104, 0.14);
  border: 1px solid rgba(180, 154, 104, 0.32);
  border-radius: var(--radius);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: start;
  gap: 28px;
  width: var(--container);
  margin: auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  align-content: start;
  min-height: 292px;
}

.footer p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--teal-dark);
  font-weight: 800;
}

.footer-phone,
.footer-booking {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.footer-phone {
  padding: 0 14px;
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.footer-booking {
  padding: 0 16px;
  color: #fffefa;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(38, 63, 98, 0.18);
}

.footer-map {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(31, 52, 79, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 292px;
  display: block;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.footer-map a {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fffefa;
  background: rgba(23, 42, 68, 0.9);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(31, 52, 79, 0.22);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  margin-top: 4px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  text-align: center;
}

.footer-bottom a {
  color: var(--teal-dark);
  font-weight: 900;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(12, 22, 36, 0.72);
  border: 0;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  overflow: hidden;
  background: var(--teal-dark);
  border: 1px solid rgba(255, 254, 250, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fffefa;
  background: rgba(23, 42, 68, 0.74);
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-modal-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
}

.video-modal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 42, 68, 0.16);
}

.modal-play {
  width: 88px;
  height: 88px;
}

@media (max-width: 920px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 68px 16px auto;
    display: none;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 670px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(248, 246, 239, 0.98), rgba(244, 242, 236, 0.86) 45%, rgba(248, 246, 239, 0.18) 100%),
      linear-gradient(0deg, rgba(248, 246, 239, 0.96), transparent 28%);
  }

  .trust-strip,
  .services-grid,
  .steps,
  .split,
  .video-section,
  .comparison-card,
  .booking-section,
  .reviews-header,
  .instagram-heading,
  .loyalty-banner,
  .footer {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .loyalty-banner {
    align-items: stretch;
  }

  .loyalty-card-preview {
    width: min(100%, 360px);
  }

  .instagram-grid {
    gap: 12px;
  }

  .instagram-grid a {
    flex-basis: calc((100% - 12px) / 2);
  }

  .video-copy {
    max-width: none;
  }

  .booking-copy {
    max-width: none;
  }

  .booking-copy h2 {
    max-width: 680px;
  }

  .footer-content {
    min-height: auto;
  }

  .footer-links {
    margin-top: 24px;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .services-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .reviews-controls {
    justify-content: flex-start;
  }

  .reviews-grid {
    grid-auto-columns: 88%;
  }

  .brand-logo {
    width: 144px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(248, 246, 239, 0.99), rgba(244, 242, 236, 0.88) 52%, rgba(248, 246, 239, 0.2) 100%),
      linear-gradient(0deg, rgba(248, 246, 239, 0.98), transparent 36%);
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-content {
    padding-bottom: 86px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .services-grid,
  .steps,
  .booking-form,
  .loyalty-form {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 0;
  }

  .comparison-copy,
  .result-metrics {
    grid-template-columns: 1fr;
  }

  .case-controls {
    gap: 6px;
  }

  .case-tab {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .case-nav {
    width: 38px;
  }

  .comparison-view {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .comparison-copy {
    gap: 18px;
    padding: 24px 20px;
  }

  .comparison-line span {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 58px 0;
  }

  .doctor-panel,
  .hours-card,
  .booking-section {
    padding: 24px;
  }

  .booking-section {
    gap: 24px;
  }

  .booking-copy h2 {
    font-size: 2.15rem;
  }

  .booking-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .google-rating {
    width: 100%;
  }

  .instagram-profile {
    width: 100%;
    justify-content: center;
  }

  .instagram-grid {
    gap: 10px;
  }

  .instagram-grid a {
    flex-basis: min(82vw, 320px);
  }

  .instagram-grid a::before {
    inset: 0;
  }

  .instagram-grid span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.78rem;
  }

  .section-heading.compact {
    display: block;
  }

  .footer {
    padding-bottom: 32px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-phone,
  .footer-booking {
    width: 100%;
    justify-content: center;
  }

  .loyalty-banner,
  .loyalty-panel {
    padding: 22px;
  }

  .loyalty-card-preview {
    min-height: 140px;
  }
}
