:root {
  --navy: #082f73;
  --navy-2: #0a408c;
  --blue: #1458e8;
  --cyan: #00acc1;
  --cyan-light: #e7fbfd;
  --violet: #7455ef;
  --text: #10254c;
  --muted: #65738e;
  --line: #dfebf7;
  --surface: #ffffff;
  --soft: #f6faff;
  --shadow: 0 14px 40px rgba(26, 73, 138, .09);
  --shadow-sm: 0 7px 22px rgba(26, 73, 138, .08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 15px;
  --shell: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(40, 187, 219, .05), transparent 20%),
    linear-gradient(#fff, #fbfdff);
  color: var(--text);
  font-family: Vazirmatn, Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  font-variation-settings: "wght" 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(217, 231, 245, .9);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 43px; height: 54px; color: var(--blue); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; stroke-width: 1.5; }
.brand strong { display: block; color: var(--navy); font-size: 17px; line-height: 1.45; }
.brand small { display: block; color: var(--muted); font-size: 10px; }
.main-nav { display: flex; align-items: center; gap: 25px; margin-inline: auto; }
.main-nav a { position: relative; color: #243f68; font-size: 13px; font-weight: 700; white-space: nowrap; padding-block: 31px 27px; }
.main-nav a::after { content: ""; position: absolute; inset-inline: 50% auto; bottom: 19px; width: 0; height: 2px; background: var(--blue); border-radius: 9px; transition: .25s; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; inset-inline: 0 auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); padding: 8px; cursor: pointer; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  margin-top: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(115deg, #f9fdff, #eaf6fd 58%, #dbeaf4);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  z-index: -2;
  inset: -2%;
  background-image: url("../images/doctor-hero.webp");
  background-position: center top;
  background-size: cover;
  opacity: var(--hero-image-opacity, 1);
  transform: translate3d(0, var(--hero-image-shift, 0), 0) scale(var(--hero-image-scale, 1.02));
  transform-origin: center top;
  will-change: opacity, transform;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,253,255,.9) 0%, rgba(250,253,255,.6) 35%, transparent 58%);
}
.hero-copy { position: relative; z-index: 1; width: 51%; margin-right: auto; padding: 76px 64px 58px; text-align: right; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 13px; font-weight: 700; }
.eyebrow span { width: 25px; height: 1px; background: var(--cyan); }
.hero h1 { margin: 14px 0 3px; color: var(--navy); font-size: clamp(36px, 4vw, 58px); line-height: 1.45; letter-spacing: -1.6px; }
.hero h1 em { color: var(--navy); font-style: normal; }
.hero-lead { margin: 0; color: var(--cyan); font-size: 21px; font-weight: 700; }
.hero-detail { color: #3e5274; font-size: 15px; margin: 25px 0 27px; }
.hero-buttons { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  left: -35%;
  width: 44%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform: rotate(20deg) translateX(-180%);
  transition: transform .65s ease;
}
.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
  pointer-events: none;
}
.button:hover { transform: translateY(-3px); }
.button:hover::before { transform: rotate(20deg) translateX(430%); }
.button:active { transform: translateY(-1px) scale(.985); }
.button:focus-visible { outline: 3px solid rgba(38,120,255,.23); outline-offset: 3px; }
.button svg { width: 20px; }
.button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23,190,206,.94), rgba(38,85,230,.9) 64%, rgba(99,70,231,.9)),
    rgba(24, 99, 222, .78);
  border-color: rgba(209, 239, 255, .72);
  box-shadow:
    0 15px 30px rgba(31, 91, 226, .29),
    0 5px 12px rgba(15, 74, 181, .2),
    inset 0 1px 1px rgba(255,255,255,.62),
    inset 0 -1px 1px rgba(16,54,150,.3);
  text-shadow: 0 1px 2px rgba(7,41,108,.2);
}
.button-primary:hover {
  filter: saturate(112%) brightness(1.04);
  border-color: rgba(255,255,255,.92);
  box-shadow:
    0 19px 38px rgba(31,91,226,.37),
    0 7px 15px rgba(15,74,181,.22),
    inset 0 1px 1px rgba(255,255,255,.72);
}
.button-glass {
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(233,246,255,.58)),
    rgba(255,255,255,.52);
  border-color: rgba(255,255,255,.94);
  box-shadow:
    0 14px 27px rgba(20,68,128,.13),
    0 4px 9px rgba(20,68,128,.08),
    inset 0 1px 1px rgba(255,255,255,.95),
    inset 0 -1px 1px rgba(118,162,202,.13);
}
.button-glass:hover {
  border-color: #fff;
  box-shadow:
    0 18px 34px rgba(20,68,128,.17),
    0 5px 11px rgba(20,68,128,.1),
    inset 0 1px 1px #fff;
}
.button-glass svg { color: #00a989; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.trust-strip article { min-height: 125px; display: flex; align-items: center; gap: 14px; padding: 20px; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature-icon { width: 55px; height: 55px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: linear-gradient(145deg, #f3f9ff, #fff); border: 1px solid #dce9f9; border-radius: 50%; }
.trust-strip h3 { margin: 0 0 3px; font-size: 14px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.section { padding-top: 88px; }
.section-heading { max-width: 660px; margin: 0 auto 38px; text-align: center; }
.section-kicker { display: block; color: var(--cyan); font-size: 12px; font-weight: 700; }
.section-heading h2, .panel-heading h2 { position: relative; margin: 5px 0 11px; color: var(--navy); font-size: clamp(25px, 2.5vw, 34px); line-height: 1.5; }
.section-heading h2::after, .panel-heading h2::after { content: ""; display: block; width: 36px; height: 3px; margin: 8px auto 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 9px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 13px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; gap: 18px; min-height: 168px; padding: 24px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: .25s; }
.service-card::after { content: ""; position: absolute; inset: auto auto -30px -30px; width: 95px; height: 95px; background: rgba(0,172,193,.04); border-radius: 50%; }
.service-card:hover { transform: translateY(-5px); border-color: #bcd8f4; box-shadow: 0 17px 36px rgba(31, 77, 140, .12); }
.service-icon { width: 75px; height: 75px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 18px; }
.service-icon svg { width: 39px; height: 39px; }
.service-icon.cyan { color: #00aeb9; background: linear-gradient(145deg, #dcf9f7, #edfdfd); }
.service-icon.blue { color: #1769e9; background: linear-gradient(145deg, #e2f0ff, #f1f7ff); }
.service-icon.violet { color: #7554ef; background: linear-gradient(145deg, #eee8ff, #faf7ff); }
.service-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 16px; }
.service-card p { margin: 0 0 9px; color: var(--muted); font-size: 12px; line-height: 1.85; }
.service-card a, .article-card a { display: inline-flex; align-items: center; gap: 4px; color: var(--blue); font-size: 11px; font-weight: 700; }
.service-card a svg, .article-card a svg { width: 14px; height: 14px; }

.about-booking { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.why-panel, .booking-panel { padding: 34px; background: linear-gradient(145deg, #fff, #f9fcff); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.panel-heading { text-align: center; }
.panel-heading span, .booking-title small { color: var(--cyan); font-size: 11px; font-weight: 700; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 25px; }
.why-grid article { display: flex; gap: 11px; min-height: 102px; padding: 16px; background: #fff; border: 1px solid #e4edf7; border-radius: var(--radius-md); box-shadow: 0 4px 13px rgba(25, 74, 142, .05); }
.why-grid article > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: #f2f8ff; border-radius: 12px; }
.why-grid article:nth-child(even) > span { color: var(--cyan); background: #ecfbfc; }
.why-grid h3 { margin: 0 0 3px; font-size: 13px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.8; }
.booking-panel { background: linear-gradient(145deg, #f9fcff, #f2f8ff); }
.booking-title { display: flex; align-items: center; justify-content: center; gap: 13px; margin-bottom: 25px; }
.booking-title h2 { margin: 0; color: var(--navy); font-size: 25px; }
.booking-title small { display: block; }
.booking-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); background: #fff; border-radius: 15px; box-shadow: var(--shadow-sm); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.booking-form label { display: block; }
.booking-form label > span { display: block; margin: 0 8px 5px; color: #435677; font-size: 10px; font-weight: 700; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid #dae6f2;
  border-radius: 11px;
  outline: none;
  font-size: 12px;
  transition: .2s;
}
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: #6fa4ff; box-shadow: 0 0 0 3px rgba(20,88,232,.08); }
.booking-form .full { grid-column: 1 / -1; }
.deposit { display: flex; justify-content: space-between; padding: 9px 14px; color: #795a17; background: #fff9e9; border: 1px solid #f3d47a; border-radius: 10px; font-size: 11px; }
.submit-button { width: 100%; margin-top: 1px; }
.form-note { margin: -3px 0 0; color: var(--muted); font-size: 9px; text-align: center; }

.treatment-showcase {
  position: relative;
  margin-top: 88px;
  padding: 58px 52px 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(28,181,203,.13), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(57,85,225,.1), transparent 27%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(241,248,255,.94));
  border: 1px solid rgba(207,225,243,.95);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(24,70,132,.11);
}
.treatment-showcase::before,
.treatment-showcase::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(55,138,219,.11);
  border-radius: 50%;
  pointer-events: none;
}
.treatment-showcase::before { top: -150px; right: -80px; }
.treatment-showcase::after { bottom: -175px; left: -50px; }
.results-experience {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-inline: auto;
}
.treatment-deck {
  position: relative;
  min-height: 535px;
  direction: ltr;
  perspective: 1500px;
  transform-style: preserve-3d;
  overflow: hidden;
  outline: none;
}
.deck-ambient {
  position: absolute;
  right: 50%;
  bottom: 35px;
  width: 460px;
  height: 90px;
  background: radial-gradient(ellipse, rgba(10,61,122,.22), transparent 67%);
  filter: blur(14px);
  transform: translateX(50%);
  pointer-events: none;
}
.treatment-deck:not(.is-ready) .treatment-card { opacity: 0; }
.treatment-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--cover-z, 1);
  width: min(300px, 34vw);
  aspect-ratio: .73;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #0a4d71;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 27px;
  box-shadow:
    0 30px 58px rgba(5,47,91,.25),
    0 8px 17px rgba(5,47,91,.13),
    inset 0 1px 0 rgba(255,255,255,.45);
  transform:
    translate(-50%, -50%)
    translateX(var(--cover-x, 0px))
    translateZ(var(--cover-depth, 0px))
    rotateY(var(--cover-rotate-y, 0deg))
    rotateZ(var(--cover-rotate-z, 0deg))
    scale(var(--cover-scale, 1));
  transform-origin: center;
  opacity: var(--cover-opacity, 1);
  filter: blur(var(--cover-blur, 0px)) saturate(var(--cover-saturation, 1));
  transition:
    transform .74s cubic-bezier(.16,.84,.23,1),
    opacity .54s ease,
    filter .54s ease,
    box-shadow .36s ease;
  cursor: pointer;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}
.treatment-card[data-position="far"] { pointer-events: none; }
.treatment-card::before,
.treatment-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.treatment-card::before {
  inset: 13px;
  border: 1px solid rgba(183,238,247,.44);
  border-radius: 19px;
}
.treatment-card::after {
  width: 190px;
  height: 190px;
  top: -110px;
  right: -75px;
  border: 1px solid rgba(116,232,239,.38);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(0,193,208,.045), 0 0 0 51px rgba(0,193,208,.035);
}
.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .35s ease;
}
.card-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(8,47,75,.05) 20%, rgba(1,75,103,.28) 54%, rgba(3,35,76,.96) 100%),
    linear-gradient(35deg, rgba(0,174,193,.45), transparent 48%);
}
.card-number {
  position: absolute;
  z-index: 3;
  top: 27px;
  left: 27px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.94);
  background: rgba(3,46,79,.38);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  backdrop-filter: blur(9px);
  font-family: "Segoe UI", sans-serif;
  font-size: 10px;
}
.card-copy {
  position: absolute;
  z-index: 3;
  right: 29px;
  bottom: 26px;
  left: 29px;
  direction: rtl;
  text-align: right;
}
.card-copy small { display: block; color: #72e1ec; font-size: 9px; font-weight: 700; }
.card-copy strong { display: block; margin-top: 2px; font-size: 22px; line-height: 1.55; text-shadow: 0 2px 11px rgba(0,0,0,.24); }
.card-copy em { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; color: rgba(255,255,255,.72); font-size: 8px; font-style: normal; }
.card-copy em::before { content: ""; width: 16px; height: 1px; background: #70e5ec; }
.treatment-card[data-position="center"] { cursor: default; }
.treatment-card[data-position="prev"]:hover,
.treatment-card[data-position="next"]:hover,
.treatment-card[data-position="prev"]:focus-visible,
.treatment-card[data-position="next"]:focus-visible {
  outline: none;
  filter: blur(0) saturate(1.08);
  transform:
    translate(-50%, -50%)
    translateX(var(--cover-x, 0px))
    translateZ(calc(var(--cover-depth, 0px) + 45px))
    rotateY(var(--cover-rotate-y, 0deg))
    rotateZ(var(--cover-rotate-z, 0deg))
    scale(calc(var(--cover-scale, 1) + .035));
  box-shadow:
    0 38px 70px rgba(5,47,91,.32),
    0 0 0 5px rgba(26,154,211,.1),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.treatment-card[data-position="prev"]:hover img,
.treatment-card[data-position="next"]:hover img,
.treatment-card[data-position="prev"]:focus-visible img,
.treatment-card[data-position="next"]:focus-visible img { transform: scale(1.035); }
.treatment-card.active {
  box-shadow:
    0 42px 76px rgba(5,47,91,.34),
    0 0 0 5px rgba(30,108,230,.12),
    0 0 0 7px rgba(255,255,255,.9);
}
.coverflow-control {
  position: absolute;
  z-index: 60;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 50%;
  box-shadow: 0 11px 25px rgba(17,75,155,.16), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.coverflow-control:hover { box-shadow: 0 15px 30px rgba(17,75,155,.22), inset 0 1px 0 #fff; }
.coverflow-control svg { width: 18px; height: 18px; }
.coverflow-prev { left: 22px; transform: translateY(-50%) rotate(180deg); }
.coverflow-next { right: 22px; }
.coverflow-prev:hover { transform: translateY(-50%) rotate(180deg) scale(1.06); }
.coverflow-next:hover { transform: translateY(-50%) scale(1.06); }
.result-thumbnails {
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -10px auto 33px;
  direction: ltr;
}
.result-thumb {
  position: relative;
  width: 68px;
  height: 68px;
  padding: 3px;
  color: var(--navy);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 18px;
  box-shadow: 0 9px 20px rgba(17,75,155,.12), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor: pointer;
}
.result-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.result-thumb b {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #17b6c8, #2658df);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 13px rgba(24,82,188,.24);
  font-family: "Segoe UI", sans-serif;
  font-size: 7px;
}
.result-thumb.active b { background: linear-gradient(145deg, #734fe9, #2456df); box-shadow: 0 7px 16px rgba(69,64,212,.32); }
.result-thumb span {
  position: absolute;
  right: 50%;
  bottom: -22px;
  direction: rtl;
  transform: translateX(50%);
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
}
.result-thumb:hover,
.result-thumb:focus-visible,
.result-thumb.active { transform: translateY(-7px); outline: none; box-shadow: 0 13px 28px rgba(17,75,155,.19), 0 0 0 3px rgba(31,106,227,.14); }
.result-thumb:hover span,
.result-thumb:focus-visible span,
.result-thumb.active span { opacity: 1; }
.result-detail {
  position: relative;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 35px;
  align-items: center;
  min-height: 190px;
  padding: 30px 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.89), rgba(235,246,255,.65)),
    rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 24px;
  box-shadow:
    0 19px 44px rgba(15,61,124,.12),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(18px) saturate(145%);
}
.result-detail::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--blue), var(--violet));
  border-radius: 10px;
}
.result-detail-kicker { display: flex; align-items: center; gap: 7px; color: var(--cyan); font-size: 11px; font-weight: 700; }
.result-detail-kicker svg { width: 18px; height: 18px; }
.result-detail h3 { margin: 8px 0 10px; color: var(--navy); font-size: 23px; line-height: 1.5; }
.result-detail-copy > p { margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 2; }
.result-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0; }
.result-tags span { padding: 5px 10px; color: #1553a0; background: rgba(225,240,255,.88); border: 1px solid #d1e5fa; border-radius: 999px; font-size: 9px; font-weight: 700; }
.result-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 11px; font-weight: 800; }
.result-link svg { width: 15px; height: 15px; transition: transform .2s; }
.result-link:hover svg { transform: translateX(-3px); }
.result-detail small { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: -8px; padding-top: 12px; color: #7a879b; border-top: 1px solid #deebf7; font-size: 8px; line-height: 1.8; }
.result-detail small svg { flex: 0 0 auto; width: 15px; height: 15px; color: var(--blue); }
.result-detail.is-changing { animation: detailReveal .36s ease; }
@keyframes detailReveal {
  from { opacity: .45; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-section { display: block; }
.results-block, .articles-block { min-width: 0; }
.section-heading.compact { margin-bottom: 24px; }
.section-heading.compact h2 { font-size: 25px; }
.results-grid, .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.result-card, .article-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.result-visual { height: 145px; display: grid; grid-template-columns: 1fr 1fr; background-color: #d9c2ae; background-size: cover; }
.result-one .result-visual { background-image: linear-gradient(90deg, rgba(93,49,26,.18) 50%, rgba(255,235,222,.24) 50%), radial-gradient(circle at 45% 35%, #e6b99d 0 7%, transparent 8%), linear-gradient(100deg, #c89171, #f4cdb7); }
.result-two .result-visual { background-image: linear-gradient(90deg, rgba(93,49,26,.14) 50%, rgba(255,235,222,.2) 50%), radial-gradient(ellipse at 45% 45%, #ba765f 0 3%, transparent 4%), linear-gradient(100deg, #d6a68d, #f0c6b2); }
.result-three .result-visual { background-image: linear-gradient(90deg, rgba(93,49,26,.17) 50%, rgba(255,235,222,.23) 50%), radial-gradient(circle at 55% 55%, #a95e4e 0 2%, transparent 3%), linear-gradient(100deg, #cb987b, #f3cbb6); }
.result-visual span { display: flex; align-items: flex-end; justify-content: center; padding: 8px; color: #fff; font-size: 9px; text-shadow: 0 1px 3px #0005; }
.result-visual span + span { border-right: 1px solid rgba(255,255,255,.7); }
.result-card h3 { min-height: 48px; margin: 0; display: grid; place-items: center; padding: 8px; font-size: 11px; text-align: center; }
.privacy-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 16px 0 0; color: var(--muted); font-size: 9px; }
.privacy-note svg { width: 17px; color: var(--blue); }
.article-card { transition: .25s; }
.article-card:hover { transform: translateY(-4px); }
.article-cover { height: 145px; display: grid; place-items: center; color: #fff; }
.article-cover svg { width: 52px; height: 52px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.1)); }
.cover-one { background: linear-gradient(145deg, #dfc8bd, #f7ebe5); color: #a8657a; }
.cover-two { background: linear-gradient(145deg, #78c3c7, #dff7ee); color: #fff; }
.cover-three { background: linear-gradient(145deg, #e4b7a7, #faeee8); color: #c27971; }
.article-card > div:last-child { padding: 13px; }
.article-card span { color: var(--cyan); font-size: 9px; }
.article-card h3 { min-height: 49px; margin: 3px 0 8px; font-size: 11px; line-height: 1.8; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 88px; margin-bottom: 80px; padding: 37px 48px; color: #fff; background: linear-gradient(110deg, #064089, #136cc7 62%, #00aabd); border-radius: var(--radius-xl); box-shadow: 0 20px 45px rgba(8, 67, 139, .2); }
.cta span { font-size: 12px; opacity: .8; }
.cta h2 { margin: 3px 0 0; font-size: 24px; }

.about-doctor {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
  overflow: hidden;
  margin-top: -10px;
  margin-bottom: 95px;
  padding: clamp(42px, 6vw, 76px);
  background:
    radial-gradient(circle at 8% 12%, rgba(41,193,208,.12), transparent 27%),
    radial-gradient(circle at 94% 85%, rgba(39,91,214,.09), transparent 33%),
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(239,248,254,.91));
  border: 1px solid rgba(187,214,235,.68);
  border-radius: 34px;
  box-shadow: 0 25px 65px rgba(16,65,111,.11), inset 0 1px 1px rgba(255,255,255,.9);
}
.about-doctor::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  top: -270px;
  right: -180px;
  border: 1px solid rgba(34,158,191,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(32,111,203,.025), 0 0 0 110px rgba(32,111,203,.018);
}
.about-portrait {
  position: relative;
  width: min(100%, 405px);
  margin-inline: auto;
  padding: 18px 20px 26px;
}
.about-photo-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #dbeaf2;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 135px 32px 105px 32px;
  box-shadow:
    0 27px 50px rgba(12,62,106,.2),
    0 0 0 8px rgba(255,255,255,.64),
    inset 0 1px 1px rgba(255,255,255,.8);
}
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(4,37,76,.26));
  pointer-events: none;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.about-doctor:hover .about-photo-frame img { transform: scale(1.025); }
.about-photo-label {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(4,51,99,.55);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(1,26,59,.2);
  backdrop-filter: blur(12px);
  font-size: 8px;
}
.about-photo-label svg { width: 15px; height: 15px; }
.about-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(24,157,187,.32);
  border-radius: 50%;
}
.orbit-one { width: 140px; height: 140px; top: -10px; left: -27px; }
.orbit-two { width: 74px; height: 74px; right: -2px; bottom: 54px; box-shadow: 0 0 0 13px rgba(23,133,191,.05); }
.about-signature {
  position: absolute;
  z-index: 4;
  left: -8px;
  bottom: 1px;
  min-width: 190px;
  padding: 13px 17px;
  color: var(--navy);
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(10,55,100,.15), inset 0 1px 1px #fff;
  backdrop-filter: blur(15px) saturate(135%);
}
.about-signature small { display: block; margin-bottom: 2px; color: var(--cyan); font-size: 8px; letter-spacing: 1.7px; }
.about-signature strong { font-size: 10px; }
.about-copy { position: relative; z-index: 2; }
.about-copy h2 {
  margin: 6px 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.45;
  letter-spacing: -.7px;
}
.about-copy > p { max-width: 650px; margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 2.15; }
.about-copy .about-lead { color: #284c70; font-size: 15px; font-weight: 700; line-height: 2; }
.about-values { display: grid; gap: 9px; margin: 24px 0; }
.about-values article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(189,213,233,.55);
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.about-values article:hover { transform: translateX(-5px); background: rgba(255,255,255,.88); border-color: rgba(73,163,201,.46); }
.about-values article > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #116bbf;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(215,241,248,.75));
  border: 1px solid rgba(122,192,218,.42);
  border-radius: 14px;
  box-shadow: 0 8px 17px rgba(19,93,143,.09), inset 0 1px 1px #fff;
}
.about-values svg { width: 20px; height: 20px; }
.about-values strong { display: block; margin-bottom: 2px; color: var(--navy); font-size: 11px; }
.about-values small { display: block; color: #748ba1; font-size: 9px; }
.about-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.about-actions .button { min-width: 155px; }
.about-social svg { color: #3566c8; }
.about-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: #8294a6;
  font-size: 8px;
  line-height: 1.8;
}
.about-disclaimer svg { width: 15px; height: 15px; flex: 0 0 auto; color: #1b91aa; }
.reveal-section { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-section.reveal-ready { opacity: 0; transform: translateY(34px); }
.reveal-section.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

.button-light {
  color: var(--navy);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(231,244,255,.78));
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 15px 30px rgba(0,28,79,.2), inset 0 1px 1px #fff;
  white-space: nowrap;
}
.button-light svg { width: 17px; }

.floating-booking {
  position: fixed;
  z-index: 48;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 7px 15px 7px 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20,181,200,.94), rgba(37,79,221,.92)),
    rgba(17,86,198,.82);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  box-shadow:
    0 16px 34px rgba(19,76,174,.32),
    inset 0 1px 1px rgba(255,255,255,.62);
  backdrop-filter: blur(16px) saturate(160%);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-booking:hover { transform: translateY(-4px); box-shadow: 0 21px 40px rgba(19,76,174,.4), inset 0 1px 1px rgba(255,255,255,.7); }
.floating-booking > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: rgba(255,255,255,.93); border-radius: 50%; box-shadow: 0 6px 14px rgba(0,37,109,.16); }
.floating-booking svg { width: 20px; height: 20px; }
.floating-booking strong { font-size: 12px; }

.site-footer { background: #f5f9fe; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; padding-block: 45px; }
.footer-brand > p { max-width: 410px; margin: 14px 0 0; color: var(--muted); font-size: 11px; }
.footer-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 13px; align-items: center; }
.footer-contact > div { display: flex; align-items: center; gap: 10px; padding-right: 13px; border-right: 1px solid #d8e5f2; }
.footer-contact > div:first-child { border-right: 0; padding-right: 0; }
.footer-contact > .contact-channel > span { color: var(--blue); }
.footer-contact > .contact-channel > span svg { width: 22px; }
.footer-contact p { margin: 0; color: var(--navy); font-size: 10px; line-height: 1.8; }
.footer-contact small { display: block; color: var(--muted); font-size: 9px; }
.footer-contact a:hover { color: var(--blue); }
.contact-channel[hidden], [data-contact-channel][hidden] { display: none !important; }
.footer-bottom { color: #fff; background: linear-gradient(90deg, #0a4aa1, #062e70); }
.footer-bottom .shell { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.footer-bottom p { margin: 0; font-size: 9px; opacity: .9; }

body.modal-open { overflow: hidden; }

.booking-modal[hidden] { display: none; }
.booking-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.booking-modal.open { opacity: 1; visibility: visible; }
.booking-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(26, 175, 207, .22), transparent 35%),
    rgba(3, 25, 62, .68);
  backdrop-filter: blur(11px) saturate(115%);
}
.booking-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(242,249,255,.94)),
    #fff;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(0, 25, 68, .35),
    inset 0 1px 1px rgba(255,255,255,.9);
  transform: translateY(22px) scale(.97);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  scrollbar-width: thin;
  scrollbar-color: #a9c9e7 transparent;
}
.booking-modal.open .booking-dialog { transform: translateY(0) scale(1); }
.booking-modal-header,
.booking-modal-header > div,
.booking-modal-icon,
.booking-close,
.step-icon {
  display: flex;
  align-items: center;
}
.booking-modal-header { justify-content: space-between; gap: 18px; }
.booking-modal-header > div { gap: 13px; }
.booking-modal-icon {
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, #1dc1cb, #2464d8);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 17px;
  box-shadow: 0 12px 24px rgba(28, 103, 195, .24), inset 0 1px 1px rgba(255,255,255,.45);
}
.booking-modal-icon svg { width: 23px; height: 23px; }
.booking-modal-header small { display: block; margin-bottom: 2px; color: var(--blue); font-size: 9px; }
.booking-modal-header h2 { margin: 0; color: var(--navy); font-size: 23px; }
.booking-close {
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: #55718f;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(157,190,219,.48);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(21,63,110,.08), inset 0 1px 1px #fff;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.booking-close:hover { color: #fff; background: #1765c5; transform: rotate(5deg); }
.booking-close svg { width: 18px; height: 18px; }

.booking-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: start;
  gap: 9px;
  margin: 28px 4px 31px;
}
.booking-progress span { display: grid; justify-items: center; gap: 6px; color: #8ba0b6; transition: color .25s ease; }
.booking-progress b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #7189a1;
  background: rgba(227,238,248,.85);
  border: 1px solid rgba(175,202,226,.65);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.85);
  font-size: 11px;
  transition: .25s ease;
}
.booking-progress em { font-size: 8px; font-style: normal; }
.booking-progress i {
  height: 2px;
  margin-top: 16px;
  background: #dce8f3;
  border-radius: 99px;
}
.booking-progress span.active,
.booking-progress span.complete { color: var(--blue); }
.booking-progress span.active b,
.booking-progress span.complete b {
  color: #fff;
  background: linear-gradient(145deg, #19bac6, #2465d8);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 7px 18px rgba(25, 102, 202, .25), inset 0 1px 1px rgba(255,255,255,.42);
}

.booking-step { display: none; min-height: 305px; text-align: center; animation: wizardEnter .35s ease both; }
.booking-step.active { display: block; }
@keyframes wizardEnter {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-icon {
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 13px;
  color: #1969c3;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(221,242,250,.76));
  border: 1px solid rgba(129,194,222,.48);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(21,93,154,.12), inset 0 1px 1px #fff;
}
.step-icon.success { color: #039b8f; }
.step-icon svg { width: 25px; height: 25px; }
.booking-step h3,
.booking-success h3 { margin: 0; color: var(--navy); font-size: 21px; }
.booking-step > p,
.booking-success > p { margin: 7px auto 22px; color: var(--muted); font-size: 11px; line-height: 1.9; }

.wizard-field {
  display: grid;
  gap: 7px;
  text-align: right;
}
.booking-step[data-booking-step="1"] .wizard-field,
.booking-step[data-booking-step="2"] .wizard-field { width: min(390px, 100%); margin: 0 auto; }
.wizard-field > span { color: #314b67; font-size: 10px; font-weight: 700; }
.wizard-field input,
.wizard-field select,
.wizard-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: var(--navy);
  background: rgba(255,255,255,.78);
  border: 1px solid #cfdfed;
  border-radius: 13px;
  box-shadow: inset 0 2px 5px rgba(18,69,117,.035), 0 4px 12px rgba(31,74,116,.035);
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus {
  background: #fff;
  border-color: #39a9ce;
  box-shadow: 0 0 0 4px rgba(30, 160, 196, .1), 0 7px 17px rgba(19,84,151,.08);
}
.wizard-field textarea { resize: vertical; }
.wizard-field > small { color: #8295a8; font-size: 8px; }
.otp-field input {
  direction: ltr;
  text-align: center;
  letter-spacing: 10px;
  font-size: 19px;
  font-weight: 800;
}
.consent-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #58708a;
  font-size: 9px;
  cursor: pointer;
}
.consent-check input { width: 16px; height: 16px; accent-color: #1571cb; }
.text-button {
  margin-top: 12px;
  padding: 6px 10px;
  color: var(--blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}
.wizard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.wizard-full { grid-column: 1 / -1; }

.booking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 19px 0 12px;
  text-align: right;
}
.booking-summary > div {
  padding: 11px 13px;
  background: rgba(235,245,253,.72);
  border: 1px solid rgba(186,211,231,.6);
  border-radius: 12px;
}
.booking-summary dt { margin-bottom: 3px; color: #8194a8; font-size: 8px; }
.booking-summary dd { margin: 0; color: var(--navy); font-size: 10px; font-weight: 750; overflow-wrap: anywhere; }
.booking-deposit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 15px;
  color: #1354a3;
  background: linear-gradient(110deg, rgba(218,248,246,.9), rgba(226,239,255,.9));
  border: 1px solid rgba(95,190,197,.35);
  border-radius: 14px;
  font-size: 10px;
}
.booking-deposit strong { font-size: 13px; }
.prototype-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #71879c;
  font-size: 8px;
  line-height: 1.8;
  text-align: right;
}
.prototype-notice svg { width: 15px; height: 15px; flex: 0 0 auto; color: #0b91a2; }

.booking-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 21px; padding-top: 17px; border-top: 1px solid #e1ebf4; }
.booking-actions .button { min-width: 116px; cursor: pointer; }
.booking-actions .wizard-back[hidden] { display: none; }
.wizard-back {
  color: #46627e;
  background: rgba(239,246,251,.82);
  border-color: rgba(168,195,218,.55);
  box-shadow: 0 8px 17px rgba(20,67,110,.07), inset 0 1px 1px #fff;
}
.wizard-error {
  min-height: 19px;
  margin: 7px 0 -10px;
  color: #c43b54;
  font-size: 9px;
  text-align: center;
  opacity: 0;
}
.wizard-error.visible { opacity: 1; }
.booking-success { padding: 25px 10px 15px; text-align: center; }
.booking-success[hidden] { display: none; }
.booking-success > span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  color: #fff;
  background: linear-gradient(145deg, #1cc9b8, #087db5);
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(10,133,156,.25), inset 0 1px 1px rgba(255,255,255,.5);
}
.booking-success > span svg { width: 36px; height: 36px; }
.booking-success > small { display: block; margin: -8px 0 20px; color: #788da2; font-size: 9px; }
.booking-success .button { margin: 0 auto; }
.booking-wizard.is-complete .booking-actions,
.booking-wizard.is-complete .wizard-error { display: none; }
.booking-modal.is-complete .booking-progress { display: none; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translate(-50%, 120px); min-width: min(360px, calc(100% - 32px)); padding: 14px 20px; color: #fff; background: #082f73; border-radius: 13px; box-shadow: 0 15px 40px rgba(4,35,86,.28); text-align: center; font-size: 12px; opacity: 0; transition: .35s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.secure-contact-channel {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: right;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.secure-contact-channel:hover { color: var(--blue); }
.article-excerpt {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #688096;
  font-size: 10px;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.custom-cms-section {
  margin-top: 65px;
  padding: 56px;
  background: linear-gradient(145deg, rgba(241, 249, 255, .92), rgba(255, 255, 255, .96));
  border: 1px solid rgba(179, 210, 232, .48);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(22, 70, 112, .08);
}
.article-page { background: #f5f9fc; }
.article-shell { padding-block: 70px 100px; }
.article-shell > article {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 65px);
  background: #fff;
  border: 1px solid #dfebf4;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(15, 61, 102, .09);
}
.article-shell h1 { margin: 12px 0 18px; color: #173f6c; font-size: clamp(28px, 5vw, 46px); line-height: 1.45; }
.article-lead { padding-bottom: 22px; color: #58738c; font-size: 15px; line-height: 2; border-bottom: 1px solid #e5edf4; }
.article-body { margin-block: 28px; color: #334f68; font-size: 14px; line-height: 2.35; }
.article-back { display: inline-flex; margin-bottom: 24px; color: #137e9a; font-size: 11px; }

.contact-modal {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}
.contact-modal[hidden] { display: none; }
.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 63, .62);
  backdrop-filter: blur(9px);
  opacity: 0;
  transition: opacity .22s ease;
}
.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 27px;
  background: rgba(250, 253, 255, .98);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 27px;
  box-shadow: 0 32px 90px rgba(3, 34, 74, .3);
  transform: translateY(22px) scale(.98);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.contact-modal.open .contact-backdrop { opacity: 1; }
.contact-modal.open .contact-dialog { transform: none; opacity: 1; }
.contact-modal-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.contact-modal-header h2 { margin: 2px 0 0; color: #123e72; font-size: 20px; }
.contact-modal-header small { color: #7690a9; font-size: 9px; }
.contact-step { min-height: 230px; text-align: center; }
.contact-step[hidden] { display: none; }
.contact-step h3 { margin: 10px 0 8px; color: #173e6b; font-size: 19px; }
.contact-step > p { max-width: 360px; margin: 0 auto 21px; color: #6c8195; font-size: 11px; line-height: 2; }
.contact-step .wizard-field { text-align: right; }
.contact-demo-hint { display: block; margin-top: 11px; color: #087f8d; font-size: 9px; }
.verified-contact-actions { display: grid; gap: 10px; margin-top: 18px; }
.verified-contact-action {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  color: #164877;
  background: rgba(234, 246, 255, .85);
  border: 1px solid rgba(142, 189, 224, .45);
  border-radius: 17px;
  box-shadow: 0 10px 22px rgba(20, 76, 124, .08), inset 0 1px 1px #fff;
  text-align: right;
}
.verified-contact-action:hover { transform: translateY(-2px); border-color: #4bbfd2; }
.verified-contact-action svg { width: 25px; height: 25px; color: #0b9bac; }
.verified-contact-action span { display: grid; gap: 3px; }
.verified-contact-action strong { font-size: 12px; }
.verified-contact-action small { color: #71899f; font-size: 9px; }

.theme-toggle {
  width: 44px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #315d88;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform .18s ease;
}
.theme-toggle:hover { transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 3px solid rgba(20,88,232,.22); outline-offset: 3px; }
.theme-toggle-track {
  position: relative;
  width: 42px;
  height: 24px;
  direction: ltr;
  overflow: hidden;
  background: #dce9f5;
  border: 1px solid #c5d8e9;
  border-radius: 999px;
  box-shadow: inset 0 1px 4px rgba(24,66,106,.12);
  transition: background .24s ease, border-color .24s ease;
}
.theme-toggle-sun,
.theme-toggle-moon { display: none; }
.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #d88800;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(20,54,89,.25);
  transition: transform .24s ease, color .24s ease, background .24s ease;
}
.theme-toggle-thumb::before {
  content: "☀";
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
}
.theme-toggle[aria-pressed="true"] .theme-toggle-track {
  background: #253b51;
  border-color: #3c5870;
}
.theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
  color: #dceaff;
  background: #0c1824;
  transform: translateX(18px);
}
.theme-toggle[aria-pressed="true"] .theme-toggle-thumb::before { content: "☾"; }

html[data-theme="dark"] {
  --navy: #dbeaff;
  --navy-2: #9ec9ff;
  --blue: #6ea8ff;
  --cyan: #49d2dc;
  --cyan-light: #102e38;
  --violet: #a891ff;
  --text: #dce7f2;
  --muted: #96a9bc;
  --line: #273b4f;
  --surface: #101c29;
  --soft: #0b1622;
  --shadow: 0 14px 40px rgba(0,0,0,.28);
  --shadow-sm: 0 7px 22px rgba(0,0,0,.24);
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 10% 22%, rgba(40,187,219,.07), transparent 20%),
    linear-gradient(#08131f, #0b1724);
  color: var(--text);
}
html[data-theme="dark"] .site-header {
  background: rgba(8,19,31,.9);
  border-color: #26394b;
}
html[data-theme="dark"] .main-nav a { color: #bdd0e4; }
html[data-theme="dark"] .theme-toggle {
  color: #b6cbe0;
}
html[data-theme="dark"] .hero {
  background: linear-gradient(115deg, #0d1c2a, #12283a 58%, #183246);
}
html[data-theme="dark"] .hero::before {
  background: linear-gradient(90deg, rgba(10,24,37,.95) 0%, rgba(10,24,37,.65) 38%, transparent 62%);
}
html[data-theme="dark"] .hero-detail { color: #b2c3d4; }
html[data-theme="dark"] .button-glass,
html[data-theme="dark"] .button-light {
  color: #e4f0fb;
  background: linear-gradient(145deg, #183149, #102437);
  border-color: #3c5a73;
  box-shadow: 0 14px 28px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.12);
}
html[data-theme="dark"] .button-glass svg { color: #4ce2c3; }
html[data-theme="dark"] .treatment-showcase {
  background:
    radial-gradient(circle at 12% 18%, rgba(39,196,213,.11), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(75,113,231,.1), transparent 29%),
    linear-gradient(145deg, #101e2c, #0c1926);
  border-color: #294056;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
html[data-theme="dark"] .treatment-showcase::before,
html[data-theme="dark"] .treatment-showcase::after { border-color: rgba(82,175,218,.18); }
html[data-theme="dark"] .coverflow-control {
  color: #8fc1ff;
  background: rgba(18,39,57,.9);
  border-color: #38566e;
  box-shadow: 0 11px 25px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
html[data-theme="dark"] .result-thumb {
  color: #dceaff;
  background: rgba(18,39,57,.9);
  border-color: #3a5870;
  box-shadow: 0 9px 20px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
}
html[data-theme="dark"] .result-thumb b { border-color: #14283a; }
html[data-theme="dark"] .result-tags span {
  color: #b9dcff;
  background: #173149;
  border-color: #31536e;
}
html[data-theme="dark"] .result-detail small {
  color: #9eb2c5;
  border-color: #2c4358;
}
html[data-theme="dark"] .about-signature,
html[data-theme="dark"] .about-values article {
  color: var(--text);
  background: #142638;
  border-color: #304a61;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
html[data-theme="dark"] .about-values article:hover { background: #193047; }
html[data-theme="dark"] .about-values article > span {
  color: #78b5ff;
  background: #10283b;
  border-color: #31536c;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
html[data-theme="dark"] .about-copy .about-lead,
html[data-theme="dark"] .about-values small,
html[data-theme="dark"] .about-disclaimer { color: #a9bdcf; }
html[data-theme="dark"] .trust-strip article,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .why-panel,
html[data-theme="dark"] .booking-panel,
html[data-theme="dark"] .why-grid article,
html[data-theme="dark"] .result-card,
html[data-theme="dark"] .article-card,
html[data-theme="dark"] .result-detail,
html[data-theme="dark"] .about-doctor,
html[data-theme="dark"] .custom-cms-section,
html[data-theme="dark"] .article-shell > article {
  color: var(--text);
  background: #101d2a;
  border-color: var(--line);
}
html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .booking-icon,
html[data-theme="dark"] .why-grid article > span {
  background: #152737;
  border-color: #2b4358;
}
html[data-theme="dark"] .service-icon.cyan { background: #103338; }
html[data-theme="dark"] .service-icon.blue { background: #142b49; }
html[data-theme="dark"] .service-icon.violet { background: #282041; }
html[data-theme="dark"] .booking-form label,
html[data-theme="dark"] .wizard-field > span { color: #b6c8d9; }
html[data-theme="dark"] .booking-form input,
html[data-theme="dark"] .booking-form select,
html[data-theme="dark"] .booking-form textarea,
html[data-theme="dark"] .wizard-field input,
html[data-theme="dark"] .wizard-field select,
html[data-theme="dark"] .wizard-field textarea {
  color: var(--text);
  background: #0b1825;
  border-color: #2d4357;
}
html[data-theme="dark"] .booking-dialog,
html[data-theme="dark"] .contact-dialog {
  color: var(--text);
  background: linear-gradient(145deg, #101e2c, #0b1724);
  border-color: #31465a;
}
html[data-theme="dark"] .booking-close,
html[data-theme="dark"] .step-icon {
  color: #b5c9dd;
  background: #142638;
  border-color: #30485d;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
html[data-theme="dark"] .booking-progress b { background: #1b2d3f; border-color: #32495d; }
html[data-theme="dark"] .booking-progress i,
html[data-theme="dark"] .booking-actions { border-color: #293e52; }
html[data-theme="dark"] .booking-summary > div {
  background: #132536;
  border-color: #2c4459;
}
html[data-theme="dark"] .booking-deposit { color: #a9d1ff; background: #102b35; border-color: #285862; }
html[data-theme="dark"] .wizard-back { color: #c2d3e4; background: #152638; border-color: #30485d; }
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .article-page { background: #0b1723; }
html[data-theme="dark"] .footer-contact > div { border-color: #2a3e51; }
html[data-theme="dark"] .article-lead { border-color: #2a3e51; }
html[data-theme="dark"] .article-body { color: #c4d2df; }
html[data-theme="dark"] .verified-contact-action {
  color: #c7ddf1;
  background: #13293a;
  border-color: #315169;
  box-shadow: 0 10px 22px rgba(0,0,0,.2);
}
html[data-theme="dark"] .article-excerpt { color: #9eb1c3; }

@media (max-width: 1180px) {
  .header-inner { min-height: 78px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 11px; }
  .hero { min-height: 470px; }
  .hero-copy { padding: 65px 45px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 36px; height: 46px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 15px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(15,51,99,.12);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }
  html[data-theme="dark"] .main-nav { background: rgba(10,23,36,.98); }
  html[data-theme="dark"] .main-nav a { border-color: #24384a; }
  body.menu-open .main-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 12px 16px; border-bottom: 1px solid #edf3f8; }
  .main-nav a::after { display: none; }
  .hero { min-height: 620px; }
  .hero-media { background-position: 62% center; }
  .hero::before { background: linear-gradient(0deg, rgba(250,253,255,.98) 0%, rgba(250,253,255,.91) 42%, rgba(250,253,255,.05) 70%); }
  .hero-copy { width: 100%; margin: 0; padding: 330px 30px 32px; text-align: center; }
  .hero h1 { font-size: 35px; line-height: 1.35; }
  .eyebrow, .hero-buttons { justify-content: center; }
  .hero-detail { margin-block: 17px; }
  .treatment-deck { min-height: 460px; }
  .treatment-card { width: min(260px, 37vw); border-radius: 23px; }
  .card-copy strong { font-size: 18px; }
  .coverflow-prev { left: 9px; }
  .coverflow-next { right: 9px; }
  .result-detail { grid-template-columns: 1fr; gap: 8px; min-height: auto; }
  .result-detail small { grid-column: auto; }
  .about-doctor { grid-template-columns: 1fr; gap: 43px; padding: 54px; }
  .about-portrait { width: min(100%, 440px); }
  .about-copy { max-width: 650px; margin-inline: auto; }
  .footer-contact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 22px), var(--shell)); }
  .booking-modal { padding: 9px; place-items: end center; }
  .booking-dialog {
    width: 100%;
    max-height: 94vh;
    padding: 20px 16px 17px;
    border-radius: 25px 25px 18px 18px;
    transform: translateY(35px) scale(.985);
  }
  .booking-modal-header h2 { font-size: 18px; }
  .booking-modal-header small { font-size: 8px; }
  .booking-modal-icon { width: 43px; height: 43px; border-radius: 14px; }
  .booking-close { width: 38px; height: 38px; }
  .booking-progress { gap: 5px; margin: 21px 1px 23px; }
  .booking-progress b { width: 30px; height: 30px; }
  .booking-progress i { margin-top: 14px; }
  .booking-progress em { font-size: 7px; }
  .booking-step { min-height: 330px; }
  .booking-step h3, .booking-success h3 { font-size: 18px; }
  .booking-step > p { max-width: 300px; margin-bottom: 17px; }
  .wizard-grid { grid-template-columns: 1fr; gap: 11px; }
  .wizard-full { grid-column: auto; }
  .booking-summary { grid-template-columns: 1fr; max-height: 225px; overflow: auto; }
  .booking-actions { position: sticky; bottom: -17px; margin-inline: -16px; padding: 13px 16px 0; background: linear-gradient(rgba(246,251,255,.2), #f6fbff 26%); }
  .booking-actions .button { min-width: 0; flex: 1; }
  .prototype-notice { align-items: flex-start; }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand span:last-child { max-width: 158px; }
  .brand strong { font-size: 12px; }
  .main-nav { inset-block-start: 70px; }
  .hero { min-height: 600px; margin-top: 12px; border-radius: 20px; background-color: #f3f9fd; }
  .hero-media { inset: 0; background-position: 59% top; background-size: auto 360px; background-repeat: no-repeat; }
  .hero-copy { padding: 345px 18px 25px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { font-size: 29px; letter-spacing: -.7px; }
  .hero-lead { font-size: 16px; }
  .hero-detail { font-size: 12px; }
  .hero-buttons .button { flex: 1; min-width: 140px; padding-inline: 12px; font-size: 12px; }
  .trust-strip { grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
  .trust-strip article { min-height: 96px; padding: 15px; }
  .section { padding-top: 62px; }
  .about-doctor {
    gap: 34px;
    margin-top: -22px;
    margin-bottom: 65px;
    padding: 33px 17px 35px;
    border-radius: 25px;
  }
  .about-portrait { width: min(100%, 325px); padding: 12px 15px 24px; }
  .about-photo-frame { border-radius: 102px 25px 82px 25px; }
  .about-photo-label { right: 14px; bottom: 14px; padding: 7px 9px; font-size: 7px; }
  .about-signature { left: 0; min-width: 170px; padding: 11px 14px; }
  .about-copy h2 { font-size: 27px; }
  .about-copy .about-lead { font-size: 13px; }
  .about-copy > p { font-size: 11px; }
  .about-values { margin-block: 20px; }
  .about-values article { min-height: 60px; }
  .about-actions { display: grid; grid-template-columns: 1fr; }
  .about-actions .button { width: 100%; }
  .about-disclaimer { align-items: flex-start; }
  .treatment-showcase { margin-top: 62px; padding: 42px 12px 28px; border-radius: 23px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 145px; padding: 18px; }
  .service-icon { width: 66px; height: 66px; }
  .why-panel, .booking-panel { padding: 23px 16px; border-radius: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .full { grid-column: auto; }
  .treatment-deck { min-height: 345px; margin-inline: -8px; }
  .treatment-card { width: min(190px, 56vw); border-width: 1px; border-radius: 19px; }
  .treatment-card::before { inset: 8px; border-radius: 14px; }
  .card-number { top: 17px; left: 17px; width: 28px; height: 28px; font-size: 8px; }
  .card-copy { right: 18px; bottom: 17px; left: 18px; }
  .card-copy small { font-size: 7px; }
  .card-copy strong { font-size: 14px; }
  .card-copy em { margin-top: 7px; font-size: 6px; }
  .coverflow-control { top: auto; bottom: 8px; width: 37px; height: 37px; transform: none; }
  .coverflow-prev { left: calc(50% - 48px); transform: rotate(180deg); }
  .coverflow-next { right: calc(50% - 48px); }
  .coverflow-prev:hover { transform: rotate(180deg) scale(1.05); }
  .coverflow-next:hover { transform: scale(1.05); }
  .result-thumbnails { gap: 7px; margin-top: -7px; margin-bottom: 28px; }
  .result-thumb { width: 53px; height: 53px; border-radius: 14px; }
  .result-thumb img { border-radius: 10px; }
  .result-detail { margin-inline: 3px; padding: 24px 20px; }
  .result-detail h3 { font-size: 21px; }
  .results-grid, .articles-grid { grid-template-columns: 1fr; }
  .result-card, .article-card { display: grid; grid-template-columns: 1fr 1fr; }
  .result-visual, .article-cover { height: 125px; }
  .result-card h3 { min-height: 125px; }
  .article-card h3 { min-height: auto; }
  .cta { display: block; margin-block: 62px; padding: 28px 22px; text-align: center; }
  .cta h2 { margin-bottom: 19px; font-size: 20px; }
  .footer-main { gap: 35px; }
  .floating-booking { right: 14px; bottom: 14px; min-height: 52px; padding: 5px; }
  .floating-booking > span { width: 40px; height: 40px; }
  .floating-booking strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact > div, .footer-contact > div:first-child { padding: 9px 0; border-right: 0; border-bottom: 1px solid #d8e5f2; }
  .footer-bottom .shell { min-height: 64px; flex-direction: column; justify-content: center; text-align: center; }
  .contact-modal { padding: 9px; place-items: end center; }
  .contact-dialog { width: 100%; padding: 21px 16px 17px; border-radius: 25px 25px 18px 18px; }
  .contact-step { min-height: 260px; }
}

/* Faraz-style mobile authentication */
.user-auth-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  color: var(--blue);
  background: #eef7ff;
  border: 1px solid #cfe3f4;
  border-radius: 11px;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.user-auth-button svg { width: 17px; height: 17px; }
.user-auth-dialog { width: min(520px, 100%); }
.user-auth-form { padding-top: 24px; }
.user-auth-step { min-height: 265px; text-align: center; }
.user-auth-step h3 { margin: 12px 0 7px; color: var(--navy); font-size: 20px; }
.user-auth-step > p { max-width: 420px; margin: 0 auto 22px; color: var(--muted); font-size: 11px; line-height: 2; }
.user-auth-step .wizard-field { max-width: 390px; margin-inline: auto; text-align: right; }
.faraz-otp-inputs {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin: 25px 0 18px;
}
.faraz-otp-inputs input[data-otp-digit] {
  width: 58px;
  height: 64px;
  padding: 0;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cbddeb;
  border-radius: 15px;
  outline: 0;
  text-align: center;
  font: 800 24px/1 Vazirmatn, sans-serif;
  box-shadow: 0 8px 18px rgba(19,72,122,.07);
  transition: .2s ease;
}
.faraz-otp-inputs input[data-otp-digit]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(26,181,196,.12), 0 10px 22px rgba(19,72,122,.1);
  transform: translateY(-2px);
}
.faraz-otp-timer {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}
.faraz-otp-timer strong { color: var(--blue); font-size: 13px; }
.user-auth-success-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 22px; }
.user-auth-success .step-icon { margin-top: 18px; }

html[data-theme="dark"] .user-auth-button {
  color: #a9d3ff;
  background: #12283a;
  border-color: #2b4a60;
}
html[data-theme="dark"] .faraz-otp-inputs input[data-otp-digit] {
  color: var(--text);
  background: #0d1b28;
  border-color: #2c4559;
}

@media (max-width: 720px) {
  .user-auth-button { width: 38px; padding: 7px; }
  .user-auth-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .user-auth-dialog { padding: 22px 16px; }
  .faraz-otp-inputs { gap: 7px; }
  .faraz-otp-inputs input[data-otp-digit] { width: 51px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-media { transform: none !important; opacity: 1 !important; }
  .reveal-section, .reveal-section.reveal-ready { opacity: 1 !important; transform: none !important; }
}
