/* =============================================================
   Akshara Skin, Hair & Laser Clinic — Modern Design System
   Mota Varachha, Surat  |  aksharahairskinclinic.com
   Self-contained, fast, mobile-first. No framework required.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --brand:      #2f86ac;   /* steel blue (from logo) */
  --brand-600:  #276f90;
  --brand-700:  #1f5c78;
  --brand-900:  #163f54;   /* deep navy-blue */
  --brand-soft: #e8f2f7;   /* blue tint bg */
  --brand-soft2:#f2f8fb;

  --accent:     #e0996a;   /* warm coral — CTA pop (complements blue) */
  --accent-600: #d07f4f;
  --gold:       #c9a24b;

  --ink:        #23303a;   /* charcoal (from logo face) */
  --body:       #4a5760;   /* body text */
  --muted:      #7c8892;
  --line:       #e5ebef;
  --cream:      #f6fafc;
  --surface:    #ffffff;

  --ok:         #1f9d55;
  --star:       #f5a623;

  --shadow-sm:  0 1px 2px rgba(22,63,84,.06), 0 2px 8px rgba(22,63,84,.05);
  --shadow-md:  0 8px 24px rgba(22,63,84,.10);
  --shadow-lg:  0 18px 48px rgba(22,63,84,.16);

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  26px;

  --container:  1180px;
  --font-head:  'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:  'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-600); }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--soft { background: var(--cream); }
.section--brand-soft { background: var(--brand-soft2); }
.center { text-align: center; }
.grid { display: grid; gap: 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-soft);
  padding: 7px 15px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-title span { color: var(--brand); }
.section-lead { color: var(--body); font-size: 1.06rem; max-width: 620px; }
.center .section-lead { margin-inline: auto; }
.section-head { margin-bottom: 44px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(47,134,172,.34); }
.btn--primary:hover { background: var(--brand-600); color:#fff; box-shadow: 0 12px 26px rgba(47,134,172,.44); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(224,153,106,.34); }
.btn--accent:hover { background: var(--accent-600); color:#fff; }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.32); }
.btn--wa:hover { background: #1eb658; color:#fff; }
.btn--ghost { background: transparent; color: var(--brand-700); border-color: #cfe4e6; }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-soft2); }
.btn--white { background:#fff; color: var(--brand-700); }
.btn--white:hover { color: var(--brand-700); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--brand-900); color: #cdeef1; font-size: .86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 0; }
.topbar__list { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar a { color: #cdeef1; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border-radius: 50%;
}
.topbar__social a:hover { background: var(--brand); }
.topbar__social svg { width: 15px; height: 15px; color: #fff; }

/* ---------- Header / nav ---------- */
.header { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease); }
.header.is-stuck { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.nav__logo img { height: 52px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > a, .nav__item > a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; position: relative; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav__item { display: flex; align-items: center; }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--brand-700); background: var(--brand-soft2); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: var(--brand-soft); border: none; width: 46px; height: 46px;
  border-radius: 12px; color: var(--brand-700); }
.nav__toggle svg { width: 24px; height: 24px; margin: auto; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dd { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease); }
.nav__item:hover .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd a { display: block; padding: 9px 12px; font-size: .9rem; border-radius: 8px; }
.nav__caret { font-size: .7rem; opacity: .6; }

/* ---------- Hero ---------- */
.hero { position: relative; background:
  radial-gradient(1100px 500px at 85% -10%, var(--brand-soft), transparent 60%),
  linear-gradient(180deg, #fff 0%, var(--cream) 100%); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  padding: clamp(40px, 6vw, 78px) 0; }
.hero__title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -.02em; }
.hero__title span { color: var(--brand); }
.hero__sub { font-size: 1.12rem; color: var(--body); margin: 20px 0 12px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--ink); }
.hero__trust svg { width: 18px; height: 18px; color: var(--ok); flex: none; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: -14px; bottom: 26px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.hero__badge .num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--brand); }
.hero__badge small { color: var(--muted); font-size: .78rem; display: block; }
.hero__rating { position: absolute; right: -10px; top: 22px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px 16px; text-align: center; }
.hero__rating .stars { color: var(--star); letter-spacing: 2px; font-size: .9rem; }
.hero__rating strong { font-family: var(--font-head); color: var(--ink); }

/* ---------- Stat strip ---------- */
.stats { background: var(--brand); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 40px 0; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,3.6vw,2.6rem); }
.stat .l { opacity: .9; font-size: .92rem; margin-top: 4px; }
.stats__grid .stat + .stat { border-left: 1px solid rgba(255,255,255,.18); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-700); margin-bottom: 18px; }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: .95rem; margin-bottom: 14px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem;
  color: var(--brand-700); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.card--feature { background: linear-gradient(150deg, var(--brand-700), var(--brand-900)); color: #fff; border: none; }
.card--feature h3, .card--feature .card__link { color: #fff; }
.card--feature p { color: #d5eef1; }
.card--feature .card__icon { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Why choose / features ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature { display: flex; gap: 16px; }
.feature__ic { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--brand-soft);
  color: var(--brand-700); display: grid; place-items: center; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.08rem; margin-bottom: 3px; }
.feature p { font-size: .93rem; }

/* ---------- Doctor ---------- */
.doctor { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.doctor__media { position: relative; }
.doctor__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.doctor__creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.chip { background: var(--brand-soft); color: var(--brand-700); font-weight: 600; font-size: .85rem;
  padding: 7px 14px; border-radius: 100px; }

/* ---------- Laser highlight ---------- */
.laser { background: linear-gradient(135deg, var(--brand-900), var(--brand-700)); color: #fff; border-radius: 28px;
  padding: clamp(32px,5vw,60px); position: relative; overflow: hidden; }
.laser::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(224,153,106,.35), transparent 70%); }
.laser__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.laser h2 { color: #fff; font-size: clamp(1.7rem,3.5vw,2.5rem); }
.laser p { color: #d5eef1; }
.laser__points { display: grid; gap: 12px; margin: 22px 0 26px; }
.laser__points li { display: flex; gap: 10px; align-items: flex-start; }
.laser__points svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }
.laser__price { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 18px;
  padding: 26px; text-align: center; }
.laser__price .amt { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; }
.laser__price small { display:block; color:#cdeef1; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { background:#fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--ink); font-size: .98rem; }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.review__by strong { display: block; color: var(--ink); font-size: .95rem; }
.review__by small { color: var(--muted); }

/* ---------- Contact / map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--brand-soft);
  color: var(--brand-700); display: grid; place-items: center; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { font-size: 1rem; margin-bottom: 2px; }
.info-row p, .info-row a { font-size: .95rem; color: var(--body); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,4vw,38px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--accent-600); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--brand-soft2);
  border: 2px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .2s var(--ease), background .2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background:#fff; }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-grid a { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; display:block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }

/* ---------- Before / After gallery ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ba-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .25s var(--ease); }
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--line); }
.ba-imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.ba-cap { padding: 14px 16px; text-align: center; font-weight: 600; color: var(--ink); font-size: .95rem; }
.ba-cap small { display:block; color: var(--muted); font-weight: 500; font-size: .82rem; margin-top: 2px; }
@media (max-width: 900px){ .ba-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .ba-grid { grid-template-columns: 1fr; } }

/* ---------- Offers ---------- */
.offer-card { background:#fff; border:2px dashed var(--brand); border-radius: var(--radius); padding: 30px; text-align:center; box-shadow: var(--shadow-sm); position: relative; }
.offer-card .tag { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: var(--accent); color:#fff; font-weight:700; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; padding:6px 16px; border-radius:100px; }
.offer-card .off { font-family: var(--font-head); font-weight:800; font-size:2.4rem; color: var(--brand); margin:10px 0 4px; }
.offer-card h3 { font-size:1.2rem; }
.offer-card p { font-size:.95rem; margin:8px 0 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--brand-soft);
  color: var(--brand-700); display: grid; place-items: center; transition: transform .25s var(--ease); font-size: 1.1rem; }
.faq__item.open .faq__q .plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 22px 20px; color: var(--body); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-700)); color:#fff; border-radius: 28px;
  padding: clamp(34px,5vw,58px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color:#fff; font-size: clamp(1.6rem,3.4vw,2.4rem); }
.cta-band p { color: #d5eef1; max-width: 560px; margin: 12px auto 26px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b8c6ca; padding: 64px 0 0; }
.footer a { color: #b8c6ca; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer h4 { color:#fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__logo { height: 46px; margin-bottom: 16px; background:#fff; padding: 8px 12px; border-radius: 10px; display:inline-block; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; font-size: .93rem; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .93rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; }
.footer__social a:hover { background: var(--brand); }
.footer__social svg { width: 18px; height: 18px; color:#fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex;
  justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; }

/* ---------- Floating actions + mobile bottom bar ---------- */
.float-wa { position: fixed; right: 18px; bottom: 90px; z-index: 800; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: var(--shadow-lg);
  animation: pulse 2.4s infinite; }
.float-wa svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.08); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 4px; font-size: .72rem; font-weight: 600; color: var(--ink); }
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar .m-call { color: var(--brand-700); }
.mobile-bar .m-wa { color: #25D366; }
.mobile-bar .m-book { background: var(--accent); color:#fff; margin: 6px; border-radius: 12px; flex: 1.2; }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero { background:
  radial-gradient(900px 380px at 80% -20%, var(--brand-soft), transparent 60%),
  linear-gradient(180deg,#fff,var(--cream)); padding: clamp(36px,5vw,60px) 0; border-bottom: 1px solid var(--line); }
.crumbs { display: flex; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }
.crumbs a { color: var(--brand-700); }
.page-hero h1 { font-size: clamp(1.9rem,4vw,2.9rem); }
.page-hero p { max-width: 640px; margin-top: 12px; color: var(--body); }

/* prose for content pages */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul.ticks { display: grid; gap: 10px; margin: 16px 0; }
.prose ul.ticks li { display: flex; gap: 10px; }
.prose ul.ticks svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 3px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .hero__media { order: -1; max-width: 520px; }
  .split, .doctor, .laser__grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards, .reviews { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 30px 12px; }
  .stats__grid .stat:nth-child(3) { border-left: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 780px) {
  .topbar, .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .nav__menu.is-open { display: flex; position: fixed; inset: 0 0 0 auto; width: min(84vw,340px);
    flex-direction: column; align-items: stretch; background: #fff; padding: 78px 20px 24px;
    box-shadow: var(--shadow-lg); z-index: 950; overflow-y: auto; }
  .nav__menu.is-open a { font-size: 1.05rem; padding: 13px 14px; }
  .nav__item .nav__dd { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; padding: 0 0 0 12px; display: none; }
  .nav__menu.is-open .nav__item.open .nav__dd { display: block; }
  .mobile-bar { display: flex; }
  .float-wa { bottom: 76px; }
  body { padding-bottom: 60px; }
  .cta-band__btns, .hero__cta { flex-direction: column; }
  .cta-band__btns .btn, .hero__cta .btn { width: 100%; }
}
@media (max-width: 560px) {
  .cards, .reviews, .footer__grid, .stats__grid { grid-template-columns: 1fr; }
  .stats__grid .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.18); padding-top: 20px; }
  .hero__rating, .hero__badge { transform: scale(.9); }
}

/* nav overlay */
.nav__overlay { display: none; position: fixed; inset: 0; background: rgba(16,38,43,.5); z-index: 940; }
.nav__overlay.show { display: block; }
.nav__close { display: none; position: fixed; top: 18px; right: 18px; z-index: 960; background: var(--brand-soft);
  border: none; width: 44px; height: 44px; border-radius: 12px; color: var(--brand-700); }
@media (max-width: 780px){ .nav__close.show { display: grid; place-items: center; } }
