/* ============================================================
   Service page — eye examination
   Extends style.css. Mobile-first (95% of traffic).
   ============================================================ */

/* ---------- Article shell ----------
   Top padding clears the position:fixed header (72px mobile, 88px desktop)
   plus a breathing space — without this, the breadcrumb sits under the
   header on first paint. */
.svc-page { padding: clamp(96px, calc(72px + 5vw), 144px) 0 clamp(64px, 9vw, 120px); }
.svc-page .container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 32px);
}

/* ---------- @scope on .svc-page (Sprint C P13 — 2026-04-28) ----------
   All .svc-* rules below are scoped inside .svc-page. Belt-and-braces
   protection against the class names leaking onto other pages that may
   one day reuse the prefix. The .svc-sticky-book group at the bottom of
   this file lives outside .svc-page (it's a sibling of <article>) so
   the @scope block closes before line 627.
   Chrome 118+ / Safari 17.4+ / Firefox 128+ — universal in 2026.
   Browsers without @scope simply ignore the wrapper and the rules apply
   globally as before (no regression). */
@scope (.svc-page) {

/* ---------- Breadcrumb ---------- */
.svc-crumb {
  font-size: .82rem;
  color: var(--gray-brand);
  margin-bottom: 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.svc-crumb a { color: var(--gray-brand); }
.svc-crumb a:hover { color: var(--coral); }
.svc-crumb .sep { color: #c9cccf; }
.svc-crumb .current { color: var(--gray-dark); }

/* ---------- Header area ---------- */
.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-10);
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 999px;
}

.svc-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--gray-dark);
}

/* ---------- Quick-fact badges ---------- */
.svc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 14px;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .88rem;
  color: var(--gray-dark);
}
.svc-badge svg { width: 16px; height: 16px; color: var(--coral); flex: none; }
.svc-badge strong { font-weight: 600; }

/* ---------- Meta (reviewed + rating) ---------- */
.svc-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--gray-brand);
  margin-bottom: 28px;
}
.svc-meta .dot { width: 3px; height: 3px; border-radius: 999px; background: #d5d7da; }
.svc-meta .rating { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-dark); }
.svc-meta .rating svg { width: 14px; height: 14px; fill: var(--coral); }
.svc-meta .rating .light { color: var(--gray-brand); font-weight: 400; }

/* ---------- Hero image ---------- */
.svc-hero-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 8px 0 28px;
  box-shadow: var(--shadow-card);
  background: var(--gray-light);
}
.svc-hero-img img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* ---------- Anchor nav (sticky on mobile) ---------- */
.svc-anchor-nav {
  position: sticky;
  top: 64px;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  margin: 0 -4px 32px;
  padding: 6px;
  box-shadow: var(--shadow-card);
}
.svc-anchor-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.svc-anchor-nav ul::-webkit-scrollbar { display: none; }
.svc-anchor-nav li { flex: none; scroll-snap-align: start; }
.svc-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .86rem;
  color: var(--gray-brand);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: .01em;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.svc-anchor-nav a:hover { background: var(--coral-10); color: var(--coral); }
@media (min-width: 900px) {
  .svc-anchor-nav { top: 88px; }
  .svc-anchor-nav ul { justify-content: center; flex-wrap: wrap; overflow: visible; }
}

/* ---------- Body text ---------- */
.svc-intro-p {
  font-size: clamp(1.02rem, 2.6vw, 1.15rem);
  line-height: 1.65;
  color: rgba(45,45,45,.88);
  margin: 8px 0 24px;
}
.svc-p {
  font-size: clamp(1rem, 2.4vw, 1.06rem);
  line-height: 1.7;
  color: rgba(45,45,45,.82);
  margin: 0 0 18px;
}
.svc-p a, .svc-intro-p a { color: var(--gray-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.svc-p a:hover, .svc-intro-p a:hover { color: var(--coral); }
.svc-p strong, .svc-intro-p strong { color: var(--gray-dark); font-weight: 600; }

/* ---------- H2 ---------- */
.svc-h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 4.4vw, 2rem);
  letter-spacing: -0.015em;
  margin: 56px 0 18px;
  color: var(--gray-dark);
  scroll-margin-top: 120px;
}
.svc-h2::before {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--coral);
  margin-bottom: 16px;
}

/* ---------- Dividers ---------- */
.svc-divider {
  border: 0;
  height: 1px;
  background: var(--border-subtle);
  margin: 44px 0;
}

/* ---------- Key takeaways card ---------- */
.svc-key {
  background: var(--gray-light);
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  padding: 22px 22px 20px;
  margin: 16px 0 36px;
}
.svc-key-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .82rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.svc-key-title svg { width: 16px; height: 16px; color: var(--coral); }
.svc-key ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.svc-key li {
  display: flex; gap: 12px;
  font-size: .96rem; line-height: 1.55;
  color: rgba(45,45,45,.85);
}
.svc-key li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--coral-15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8967A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center/11px no-repeat;
  margin-top: 2px;
}

/* ---------- 4-step visual summary ---------- */
.svc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 28px;
}
@media (min-width: 620px) { .svc-steps { grid-template-columns: 1fr 1fr; gap: 12px; } }

.svc-step {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.svc-step:hover { border-color: rgba(232,150,122,.4); box-shadow: var(--shadow-card); }
.svc-step-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.svc-step-num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--coral);
}
.svc-step-icon {
  width: 34px; height: 34px;
  padding: 7px;
  border-radius: 10px;
  background: var(--coral-10);
  color: var(--coral);
}
.svc-step h3 {
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.svc-step p {
  font-size: .92rem;
  color: var(--gray-brand);
  line-height: 1.55;
}

/* ---------- Conditions screened (What we check) ---------- */
.svc-check {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 8px 0 20px;
}
@media (min-width: 620px) { .svc-check { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .svc-check { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .svc-check--two-col { grid-template-columns: 1fr 1fr; } }

.svc-check-card {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.svc-check-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.svc-check-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--coral);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.svc-check-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.svc-check-card p {
  font-size: .92rem;
  color: var(--gray-brand);
  line-height: 1.55;
}

/* ---------- Extractable data table (GEO answer surface) ---------- */
.svc-table-wrap { margin: 6px 0 34px; overflow-x: auto; }
.svc-table-caption {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .82rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-align: left;
}
.svc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
  min-width: 460px;
}
.svc-table thead th {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-dark);
  padding: 10px 14px;
  border-bottom: 2px solid var(--coral);
}
.svc-table th[scope="row"] { font-weight: 600; color: var(--gray-dark); white-space: nowrap; }
.svc-table td,
.svc-table th[scope="row"] {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.5;
  color: rgba(45, 45, 45, .85);
  vertical-align: top;
}
.svc-table tbody tr:hover { background: var(--gray-light); }
.svc-table tbody tr:last-child td,
.svc-table tbody tr:last-child th { border-bottom: 0; }

/* ---------- Pricing table ---------- */
.svc-pricing-wrap {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  margin: 12px 0 18px;
  box-shadow: var(--shadow-card);
}
.svc-pricing { width: 100%; border-collapse: collapse; }
.svc-pricing thead { display: none; }
.svc-pricing tbody tr {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background .2s var(--ease-out);
}
.svc-pricing tbody tr:last-child { border-bottom: 0; }
.svc-pricing tbody tr:hover { background: var(--gray-light); }
.svc-pricing td { padding: 0; }
.svc-pricing td strong { font-family: var(--font-heading); font-weight: 500; font-size: 1.02rem; color: var(--gray-dark); }
.svc-pricing td div { color: var(--gray-brand); font-size: .88rem; line-height: 1.5; margin-top: 4px; }
.svc-duration {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: .86rem;
  color: var(--gray-brand);
  margin-top: 10px;
  margin-right: 14px;
}
.svc-price {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--coral);
  margin-top: 10px;
}
.svc-pricing-hl { background: linear-gradient(180deg, var(--coral-10), transparent); }
.svc-pricing-hl td strong { color: var(--gray-dark); }

@media (min-width: 720px) {
  .svc-pricing thead {
    display: table-header-group;
    background: var(--gray-light);
  }
  .svc-pricing th {
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray-brand);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .svc-pricing tbody tr {
    display: table-row;
    padding: 0;
  }
  .svc-pricing tbody td {
    display: table-cell;
    padding: 18px 20px;
    vertical-align: top;
  }
  .svc-duration, .svc-price { margin-top: 0; margin-right: 0; }
}

/* ---------- Quote / note block ---------- */
.svc-quote {
  background: var(--gray-light);
  border-left: 3px solid rgba(232,150,122,.5);
  border-radius: 0 14px 14px 0;
  padding: 16px 18px;
  margin: 20px 0 28px;
  font-size: .95rem;
  color: rgba(45,45,45,.75);
  font-style: italic;
  line-height: 1.6;
}

/* ---------- Patient testimonial (Google review) ---------- */
.svc-quote--review {
  font-style: normal;
  color: rgba(45, 45, 45, .85);
  font-size: 1rem;
}
.svc-quote--review .svc-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 8px;
}
.svc-quote--review .svc-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--coral);
}
.svc-quote--review cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-brand);
}
.svc-quote--review cite svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-left: 4px;
}

/* ---------- Insurance tiles ---------- */
.svc-ins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 20px;
}
@media (min-width: 560px) { .svc-ins-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .svc-ins-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-ins-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.svc-ins-tile:hover { border-color: rgba(232,150,122,.35); transform: translateY(-2px); }
.svc-ins-tile img {
  max-height: 38px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: filter .25s var(--ease-out), opacity .25s var(--ease-out);
}
.svc-ins-tile:hover img { filter: none; opacity: 1; }
.svc-ins-tag {
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-tag-cash { background: var(--coral-10); color: var(--coral); }
.svc-tag-reim { background: var(--border-subtle); color: var(--gray-brand); }
.svc-tag-finance { background: rgba(45,45,45,.08); color: var(--gray-dark); }

/* ---------- Documents to bring ---------- */
.svc-bring {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 8px;
}
@media (min-width: 620px) { .svc-bring { grid-template-columns: 1fr 1fr; } }

.svc-bring-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px 16px;
}
.svc-bring-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--coral-10);
  color: var(--coral);
  flex: none;
}
.svc-bring-item p { font-size: .95rem; color: var(--gray-dark); line-height: 1.5; }
.svc-bring-item strong { font-weight: 600; }

/* ---------- Who-should-book cards ---------- */
.svc-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 20px;
}
@media (min-width: 620px) { .svc-who-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .svc-who-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-who-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.svc-who-card:hover { border-color: rgba(232,150,122,.35); transform: translateY(-2px); }
.svc-who-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--coral-10);
  color: var(--coral);
  margin-bottom: 12px;
}
.svc-who-card h3 {
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.svc-who-card p {
  font-size: .92rem;
  color: var(--gray-brand);
  line-height: 1.55;
}
.svc-who-card a { color: var(--gray-dark); text-decoration: underline; text-underline-offset: 2px; }
.svc-who-card a:hover { color: var(--coral); }

/* ---------- Preparation checklist ---------- */
.svc-prep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 18px;
}
.svc-prep-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--gray-light);
  border-radius: 14px;
  padding: 14px 16px;
}
.svc-prep-check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.svc-prep-item p { font-size: .95rem; line-height: 1.55; color: rgba(45,45,45,.85); }

/* ---------- FAQ (reuses homepage pattern) ---------- */
.svc-faq details {
  background: var(--gray-light);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 10px;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.svc-faq details[open] { border-color: rgba(232,150,122,.45); background: var(--coral-10); }
.svc-faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary h3 { font-size: 1rem; font-weight: 500; line-height: 1.4; color: var(--gray-dark); }
.svc-faq summary .caret {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--white);
  color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out), background .2s var(--ease-out);
}
.svc-faq details[open] .caret { background: var(--coral); color: var(--white); transform: rotate(45deg); }
.svc-faq .caret svg { width: 14px; height: 14px; }
.svc-faq details[open] p { padding: 0 20px 20px; margin: -4px 0 0; color: rgba(45,45,45,.85); line-height: 1.65; font-size: .98rem; }
.svc-faq details p a { color: var(--gray-dark); text-decoration: underline; text-underline-offset: 3px; }
.svc-faq details p a:hover { color: var(--coral); }

/* ---------- Final CTA ---------- */
.svc-cta {
  background: linear-gradient(180deg, var(--coral-15), var(--coral-10));
  border-radius: 22px;
  padding: clamp(28px, 6vw, 40px) clamp(22px, 5vw, 36px);
  margin: 40px 0;
  text-align: center;
}
.svc-cta h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  margin-bottom: 10px;
}
.svc-cta h2::before { display: none; }
.svc-cta p { font-size: .98rem; color: rgba(45,45,45,.8); max-width: 520px; margin: 0 auto 22px; line-height: 1.6; }
.svc-cta .btn { margin: 0 auto; }
.svc-cta .sub {
  font-size: .88rem; color: var(--gray-brand);
  margin-top: 16px;
}
.svc-cta .sub a { color: var(--gray-dark); text-decoration: underline; text-underline-offset: 3px; }
.svc-cta .sub a:hover { color: var(--coral); }

/* ---------- Author + disclaimer ---------- */
.svc-author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray-light);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 32px 0 16px;
}
.svc-author-avatar {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--coral-20);
  color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
}
.svc-author-name { font-family: var(--font-heading); font-weight: 500; font-size: 1rem; }
.svc-author-name a { color: var(--gray-dark); }
.svc-author-name a:hover { color: var(--coral); }
.svc-author-meta { font-size: .86rem; color: var(--gray-brand); line-height: 1.55; margin-top: 4px; }

.svc-disclaimer {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--gray-light);
  padding: 16px 20px;
  margin: 24px 0;
}
.svc-disclaimer p { font-size: .84rem; color: var(--gray-brand); line-height: 1.6; }
.svc-disclaimer strong { color: var(--gray-dark); font-weight: 600; }
.svc-disclaimer a { color: var(--gray-dark); text-decoration: underline; text-underline-offset: 3px; }
.svc-disclaimer a:hover { color: var(--coral); }

} /* end @scope (.svc-page) — Sprint C P13 */

/* ---------- Mobile sticky booking bar ----------
   Floating dark pill matching the global .mobile-cta-bar style.
   On service pages this carries contextual info ("15 min · From Rs 600",
   "Cashless insurance accepted") and the global .mobile-cta-bar is
   hidden via the :has(.svc-sticky-book) rule below — only one bar
   visible at a time. */
.svc-sticky-book {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 70;
  background: rgba(28, 28, 30, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 16px;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transform: translateY(120%);
  transition: transform .35s var(--ease-out);
}
/* iOS-style frosted glass override (Sprint B P12 — 2026-04-27).
   service.css loads after style.min.css so this lives here, not in
   style.css — otherwise the .96 baseline above wins on cascade. */
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .svc-sticky-book {
    background: rgba(28, 28, 30, .68);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
    box-shadow: 0 10px 32px -10px rgba(0,0,0,.32),
                inset 0 1px 0 rgba(255,255,255,.08);
  }
}
.svc-sticky-book.show { transform: translateY(0); }
/* Info takes all leftover space so WA + Book push to the right edge
   instead of being centred by justify-content: space-between. */
.svc-sticky-book .info { display: flex; flex-direction: column; line-height: 1.2; flex: 1 1 auto; min-width: 0; }
.svc-sticky-book .info b { font-family: var(--font-heading); font-weight: 500; font-size: .85rem; }
.svc-sticky-book .info span { font-size: .7rem; color: rgba(255,255,255,.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.svc-sticky-book .btn { height: 42px; padding: 0 16px; font-size: .82rem; flex-shrink: 0; }
/* WhatsApp shortcut next to the Book button — ghost icon-only pill
   on every breakpoint. .info { flex: 1 } above pushes WA + Book to
   the right edge. Tap target ≥42px (HIG). Icon at 22px to match the
   homepage WA glyph weight. */
.svc-sticky-book__wa {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s var(--ease-out);
}
.svc-sticky-book__wa:hover { background: rgba(255,255,255,.14); border-color: var(--wa-accent); }
.svc-sticky-book__wa:active { transform: scale(0.94); }
.svc-sticky-book__wa svg { width: 22px; height: 22px; color: var(--wa-accent); flex: none; }
@media (min-width: 1024px) { .svc-sticky-book { display: none; } }

/* On service pages, suppress the global .mobile-cta-bar so we never
   stack two sticky CTAs. */
body:has(.svc-sticky-book) .mobile-cta-bar { display: none !important; }

/* keep FAB from colliding with sticky bar on mobile */
/* FAB lift now handled centrally in style.css via body:has(.svc-sticky-book.show). */

/* ---------- a11y contrast — WCAG AA fixes (QW#3, 2026-07-05) ----------
   Lighthouse (mobile) confirmed these muted-text colours failed the 4.5:1
   normal-text ratio on the service pages' light backgrounds:
     - var(--gray-brand) #8c8f92 on #fff / #f9f7f5 / #eef0f2  -> 3.02-3.25:1
     - var(--coral) #e8967a text on #fff / #fdf5f2 (labels)   -> 2.15-2.31:1
   Fix is scoped to .svc-page so the GLOBAL brand tokens (--gray-brand for the
   footer/homepage, --coral for buttons & icons) stay exactly as the charte
   graphique defines them. --gray-brand is only ever a text `color:` inside
   service.css, so overriding the custom property here is safe.
   Plain (non-@scope) selectors + descendant specificity guarantee the win. */
.svc-page { --gray-brand: #686b6e; }              /* -> 4.69-5.36:1 on white/#f9f7f5/#eef0f2 */
.svc-page .svc-tag,
.svc-page .svc-tag-cash,
.svc-page .svc-step-num { color: #b5502f; }       /* coral labels -> 4.7-5.1:1 (warm burnt-coral) */
/* Darkening the muted body text above dropped the distinguishability of the
   inline #2d2d2d links inside muted paragraphs (check-cards, steps, ...) vs
   their surrounding text (4.09:1 -> 2.56:1, < 3:1). Underline every inline
   prose link on service pages so they read as links regardless of container
   (WCAG 1.4.1 / Lighthouse link-in-text-block). Best practice for body copy. */
.svc-page p a { text-decoration: underline; text-underline-offset: 2px; }
