/* =========================================================================
   Laptop Service Center — site.css
   Combined: design tokens (colors_and_type) + component styles (styles.css)
   LSC premium refinements: more whitespace, restrained orange (CTAs only),
   smaller CTA pill, no decorative animation overload.
   ========================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────────────────── */
:root {
  /* Core palette — LSC uses same hue family but more restrained */
  --navy:           #0f0f1a;
  --navy-2:         #0f0f1a;
  --navy-3:         #0f0f1a;
  --blue:           #4f46e5;
  --blue-hover:     #4338ca;
  --cyan:           #a5b4fc;   /* lavender accent — premium feel */
  --orange:         #fb7185;   /* coral CTA — refined, not fiery */
  --orange-hover:   #f43f5e;
  --orange-2:       #fb7185;
  --whatsapp:       #25d366;
  --whatsapp-hover: #1ebc57;

  /* Neutrals */
  --white:          #ffffff;
  --off:            #f6f6f9;
  --gray:           #6e6e85;
  --navy-gray:      #44445a;
  --light-gray:     #e6e6ee;
  --hairline:       #f1f1f6;
  --border:         #ececf5;

  /* Shadows — flatter for premium feel */
  --card-shadow:       0 2px 10px rgba(15,15,26,0.06);
  --card-shadow-hover: 0 8px 28px rgba(79,70,229,0.10);
  --cta-shadow:        0 2px 12px rgba(251,113,133,0.28);
  --cta-shadow-hover:  0 6px 20px rgba(251,113,133,0.38);
  --float-shadow:      0 16px 48px rgba(0,0,0,0.24);

  /* Foreground semantics */
  --fg-1:    var(--navy);
  --fg-2:    var(--gray);
  --fg-3:    #aab4cc;
  --fg-invert-1: #ffffff;
  --fg-invert-2: rgba(255,255,255,0.72);

  /* Typography */
  --font-heading: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Fluid type */
  --fs-hero:   clamp(2.2rem, 5.2vw, 4.2rem);
  --fs-h1:     clamp(1.9rem, 4vw, 3rem);
  --fs-h2:     clamp(1.5rem, 2.8vw, 2.2rem);
  --fs-h3:     clamp(1.1rem, 2.2vw, 1.5rem);
  --fs-body:   1rem;
  --fs-sm:     0.9rem;
  --fs-xs:     0.78rem;
  --fs-label:  0.78rem;

  /* Spacing (4pt scale) */
  --s-1:  4px;  --s-2:  8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 48px;  --s-10:64px;  --s-11:80px;  --s-12:100px;

  /* Radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  24px;
  --r-pill: 100px;

  /* Motion */
  --ease:   cubic-bezier(.2,.7,.2,1);
  --t-fast: 150ms;
  --t-med:  250ms;
  --t-slow: 500ms;
}

/* ── Base reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--fg-1);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg-1);
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
button { font: inherit; }
address { font-style: normal; }
::selection { background: var(--blue); color: #fff; }

/* ── Layout utility ──────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }

/* ── Typography utilities ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
}
.cy { color: var(--cyan); }
.accent { color: var(--orange); }

/* ── Reveal on scroll ─────────────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
.reveal--armed { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal--armed.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 13px 24px;
  border-radius: var(--r-md);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: all 220ms var(--ease);
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--cta-shadow);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
  color: #fff;
}
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-hover); transform: translateY(-2px); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 0.98rem; }
.btn-sm { padding: 9px 18px; font-size: 0.84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ====================================================================
   NAV
   ==================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: 74px; z-index: 100;
  background: rgba(15,15,26,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 260ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(15,15,26,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.nav__inner {
  max-width: 1240px; height: 100%; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 11px;
  color: #fff; font-family: var(--font-heading); font-weight: 800;
  font-size: 1rem; text-decoration: none; flex-shrink: 0;
}

.logo__text { letter-spacing: -0.2px; }
.logo__text .cy { color: var(--cyan); }

.nav__links {
  display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; margin-left: 6px;
}
.nav__links a {
  padding: 7px 13px; border-radius: 8px;
  color: rgba(255,255,255,0.80);
  font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; transition: background 150ms, color 150ms;
}
.nav__links a:hover { background: rgba(255,255,255,0.08); color: var(--cyan); }

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__phone {
  color: #fff; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.9rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav__phone i { color: var(--cyan); }
.nav__phone:hover { color: var(--cyan); }

.nav__cta {
  padding: 9px 20px; font-size: 0.86rem; border-radius: var(--r-pill);
  background: var(--orange); color: #fff;
  font-family: var(--font-heading); font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: var(--cta-shadow); transition: all 220ms var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--orange-hover); color: #fff; box-shadow: var(--cta-shadow-hover); }

.burger { display: none; background: transparent; color: #fff; border: 0; font-size: 1.3rem; cursor: pointer; padding: 6px; }

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 520px) { .nav__cta span { display: none; } }

/* ── Mobile Drawer ───────────────────────────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,15,26,0.55); backdrop-filter: blur(6px);
  display: none;
}
.drawer.open { display: block; animation: fadeIn 200ms var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: var(--navy);
  padding: 24px 22px; overflow-y: auto;
  animation: slideIn 280ms var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  border-left: 1px solid rgba(255,255,255,0.06);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer__close {
  background: rgba(255,255,255,0.08); color: #fff; border: 0;
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.drawer__close:hover { background: rgba(255,255,255,0.16); }
.drawer__nav { list-style: none; margin: 0; padding: 0; }
.drawer__nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; color: #fff;
  font-family: var(--font-heading); font-weight: 600;
  text-decoration: none; font-size: 1rem;
  transition: color 150ms;
}
.drawer__nav a i { color: var(--cyan); font-size: 0.78rem; }
.drawer__nav a:hover { color: var(--cyan); }
.drawer__cta { display: flex; gap: 10px; margin-top: 24px; }
.drawer__cta .btn { flex: 1; justify-content: center; }
.drawer__contact {
  margin-top: 28px; padding: 18px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.drawer__contact h5 {
  color: var(--cyan); font-family: var(--font-heading); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 12px;
}
.drawer__contact a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; font-family: var(--font-body); font-size: 0.93rem;
  transition: color 150ms;
}
.drawer__contact a:hover { color: var(--cyan); }
.drawer__contact a i { color: var(--cyan); width: 18px; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative; margin-top: 74px; padding: 96px 0 116px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(165,180,252,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,180,252,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero__orb--1 {
  top: 5%; right: -6%; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(165,180,252,0.22), transparent 70%);
}
.hero__orb--2 {
  bottom: -12%; left: -6%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(79,70,229,0.28), transparent 70%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; gap: 56px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(165,180,252,0.10);
  border: 1px solid rgba(165,180,252,0.28);
  color: var(--cyan);
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--fs-xs); letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(165,180,252,0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(1.35); } }

.hero h1 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.04;
  letter-spacing: -1px; margin: 0 0 24px; color: #fff;
}
.hero h1 .grad { color: var(--cyan); }
.hero h1 .underline { position: relative; display: inline-block; }

.hero__sub {
  font-family: var(--font-body); font-size: 1.08rem; line-height: 1.72;
  color: rgba(255,255,255,0.76); max-width: 540px; margin: 0 0 32px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 580px;
}
@media (max-width: 540px) { .hero__pillars { grid-template-columns: 1fr; max-width: 380px; } }
.pillar {
  padding: 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.pillar i { font-size: 1.05rem; color: var(--cyan); margin-bottom: 8px; display: block; }
.pillar__t { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 3px; }
.pillar__d { font-family: var(--font-body); font-size: 0.76rem; color: rgba(255,255,255,0.60); line-height: 1.5; }

.hero__visual {
  position: relative; width: 100%; aspect-ratio: 1; max-width: 500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.hero-laptop {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1;
}
.hero-laptop__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(165,180,252,0.22);
  animation: spin 44s linear infinite;
}
.hero-laptop__ring--2 {
  inset: 8%; border-color: rgba(79,70,229,0.30); border-style: solid;
  border-width: 1px; opacity: 0.38; animation-direction: reverse; animation-duration: 64s;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-laptop__device {
  position: absolute; inset: 14% 6%;
  display: flex; align-items: center; justify-content: center;
  animation: deviceFloat 8s ease-in-out infinite;
}
@keyframes deviceFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.laptop-svg { width: 100%; height: auto; display: block; }
.laptop-svg .bar { transform-origin: left center; animation: barFill 2.4s var(--ease) forwards; }
.laptop-svg .bar--1 { animation-delay: 0.2s; }
.laptop-svg .bar--2 { animation-delay: 0.5s; }
.laptop-svg .bar--3 { animation-delay: 0.8s; }
.laptop-svg .bar--4 { animation-delay: 1.1s; }
.laptop-svg .bar--5 { animation-delay: 1.4s; }
@keyframes barFill { 0%{ transform:scaleX(0); } 100%{ transform:scaleX(1); } }
.laptop-svg .scan-line { animation: scanMove 3.4s linear infinite; transform-origin: 0 0; }
@keyframes scanMove {
  0%  { transform:translateY(0); opacity:0; }
  10% { opacity:1; }
  90% { opacity:1; }
  100%{ transform:translateY(130px); opacity:0; }
}

.orbit { position: absolute; inset: 0; pointer-events: none; animation: orbitSpin 20s linear infinite; }
.orbit--b { animation-duration: 26s; animation-direction: reverse; inset: 6%; }
.orbit--c { animation-duration: 32s; inset: -4%; }
.orbit__dot {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(165,180,252,0.10);
  border: 1px solid rgba(165,180,252,0.35);
  color: var(--cyan); font-size: 0.95rem;
}
.orbit--b .orbit__dot {
  top: auto; bottom: -10px;
  background: rgba(251,113,133,0.12);
  border-color: rgba(251,113,133,0.40); color: var(--orange);
}
.orbit--c .orbit__dot { top: 50%; left: -10px; transform: translateY(-50%); }
@keyframes orbitSpin { to { transform:rotate(360deg); } }

.spark { display: none; }

.hero-chip {
  position: absolute; padding: 10px 14px; border-radius: 12px;
  background: rgba(15,15,26,0.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(165,180,252,0.22);
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.80rem;
  color: #fff; white-space: nowrap;
}
.hero-chip i { color: var(--cyan); font-size: 0.92rem; }
.hero-chip--1 { top: 4%; right: -4%; animation: float 7s ease-in-out infinite; }
.hero-chip--3 { bottom: 18%; right: -6%; animation: float 9s ease-in-out infinite 2s; }
.hero-chip--4 { bottom: -2%; left: 8%; animation: float 6s ease-in-out infinite 0.5s;
  background: var(--orange); border-color: rgba(251,113,133,0.30); }
.hero-chip--4 i { color: #fff; }
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

.hero__cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
}
.hero__cue i { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }
@media (max-width: 980px) { .hero__cue { display: none; } }

/* ====================================================================
   STATS STRIP
   ==================================================================== */
.stats-strip {
  background: #fff; padding: 52px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative; z-index: 5;
}
.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; align-items: stretch;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; gap: 32px; } }
.stat {
  text-align: center; position: relative;
  padding: 0 16px;
  display: flex; flex-direction: column; align-items: center;
}
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--light-gray), transparent);
}
@media (max-width: 760px) { .stat + .stat::before { display: none; } }
.stat__ic {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 0 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(79,70,229,0.08);
  color: var(--blue); font-size: 1.15rem;
  border: 1px solid rgba(79,70,229,0.12);
}
.stat__num {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--navy); line-height: 1; margin-bottom: 10px;
  letter-spacing: -1px;
  display: inline-flex; align-items: baseline; gap: 1px;
}
.stat__num .num { color: var(--navy); }
.stat__num .suf { color: var(--blue); font-size: 0.68em; font-weight: 800; margin-left: 1px; }
.stat__l {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy-gray);
  font-weight: 600; line-height: 1.4; max-width: 200px;
}

/* ====================================================================
   SECTION CHROME
   ==================================================================== */
.section { padding: 96px 0; background: #fff; }
.section.alt { background: var(--off); }
.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(165,180,252,0.09) 0%, transparent 55%),
    var(--navy);
}

.section__head {
  text-align: center; margin-bottom: 52px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.section__head .eyebrow { margin-bottom: 14px; }
.section__head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800;
  letter-spacing: -0.5px; margin: 0 0 16px;
}
.section__head h2 em { font-style: normal; color: var(--blue); }
.section.dark .section__head h2 { color: #fff; }
.section.dark h2 em { color: var(--cyan); }
.section__head p { color: var(--gray); font-size: 1.04rem; line-height: 1.68; margin: 0; }
.section.dark .section__head p { color: rgba(255,255,255,0.70); }
.section.dark .section__head .eyebrow { color: var(--cyan); }

/* ====================================================================
   SERVICES (with tabs/filter)
   ==================================================================== */
.svc-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px;
}
.svc-tab {
  padding: 10px 18px; border-radius: var(--r-pill); cursor: pointer;
  background: #fff; border: 1.5px solid var(--border);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.87rem;
  color: var(--navy); transition: all 200ms var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.svc-tab i { font-size: 0.76rem; opacity: 0.65; }
.svc-tab:hover { border-color: var(--blue); color: var(--blue); }
.svc-tab.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(15,15,26,0.18);
}
.svc-tab.active i { color: var(--cyan); opacity: 1; }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  /* allow JS to override by removing/adding items */
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative; background: #fff; border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  padding: 30px 26px 22px;
  transition: all 280ms var(--ease);
  display: flex; flex-direction: column;
  text-decoration: none;
}
.svc:hover {
  transform: translateY(-5px); border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(79,70,229,0.10);
}
.svc__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px; gap: 12px;
}
.svc__tile {
  width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; transition: transform 280ms var(--ease);
}
.svc:hover .svc__tile { transform: scale(1.07) rotate(-3deg); }
.svc__tile.t-blue { background: #eef1ff; color: var(--blue); }
.svc__tile.t-teal { background: #e8faf3; color: #00b09b; }
.svc__tile.t-pur  { background: #f5e8ff; color: #9333ea; }
.svc__tile.t-org  { background: #fff2ea; color: var(--orange); }
.svc__tile.t-amb  { background: #fff8e0; color: #d97706; }
.svc__tile.t-pnk  { background: #ffeef4; color: #ec4899; }
.svc__tile.t-cyan { background: #e8eeff; color: var(--blue); }
.svc__tile.t-grn  { background: #e8f9e8; color: #16a34a; }
.svc__tile.t-rd   { background: #ffe8e8; color: #dc2626; }

.svc__chip {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.69rem;
  padding: 4px 10px; border-radius: var(--r-pill); letter-spacing: 0.3px;
  background: rgba(0,176,155,0.10); color: #00805c;
  border: 1px solid rgba(0,176,155,0.22);
}
.svc h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.12rem;
  color: var(--navy); margin: 0 0 8px;
}
.svc p {
  font-family: var(--font-body); font-size: 0.91rem; line-height: 1.62;
  color: var(--gray); margin: 0 0 16px;
}
.svc__price-row {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0 16px; border-top: 1px dashed var(--light-gray);
  margin-top: auto;
}
.svc__price {
  font-family: var(--font-heading); font-weight: 800; font-size: 0.96rem; color: var(--navy);
}
.svc__price span { color: var(--orange); }
.svc__price-sub { font-size: 0.77rem; color: var(--gray); }
.svc__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 18px; border-radius: 12px;
  background: rgba(79,70,229,0.06);
  border: 1.5px solid rgba(79,70,229,0.16);
  color: var(--blue);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  transition: all 220ms var(--ease);
}
.svc__cta i { transition: transform 220ms var(--ease); }
.svc:hover .svc__cta {
  background: var(--orange); border-color: var(--orange); color: #fff;
  box-shadow: 0 5px 16px rgba(251,113,133,0.25);
}
.svc:hover .svc__cta i { transform: translateX(4px); }

/* ====================================================================
   HOW IT WORKS
   ==================================================================== */
.how-rail {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  position: relative;
}
.how-rail::before {
  content: ''; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 16px);
  opacity: 0.28; z-index: 0;
}
@media (max-width: 820px) { .how-rail { grid-template-columns: 1fr 1fr; } .how-rail::before { display: none; } }
@media (max-width: 480px) { .how-rail { grid-template-columns: 1fr; } }
.step { position: relative; text-align: center; z-index: 1; }
.step__num {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 1.65rem;
  color: var(--blue); position: relative;
  transition: all 240ms var(--ease);
}
.step:hover .step__num { background: var(--blue); color: #fff; transform: scale(1.04); }
.step__num::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(79,70,229,0.22);
  transition: all 240ms;
}
.step:hover .step__num::after { transform: rotate(45deg); }
.step__ic {
  position: absolute; top: -8px; right: -8px; width: 30px; height: 30px;
  border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.80rem;
}
.step h4 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem;
  color: var(--navy); margin: 0 0 8px;
}
.step p {
  font-family: var(--font-body); font-size: 0.90rem; line-height: 1.62;
  color: var(--gray); margin: 0 auto; max-width: 230px;
}

/* ====================================================================
   WHY US (dark)
   ==================================================================== */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  position: relative; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 32px 26px; backdrop-filter: blur(8px);
  transition: all 280ms var(--ease); overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  transition: height 320ms var(--ease);
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(165,180,252,0.35); }
.why-card:hover::before { height: 100%; }
.why-card__ic {
  width: 54px; height: 54px; border-radius: 13px;
  background: rgba(165,180,252,0.12);
  border: 1px solid rgba(165,180,252,0.25);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.08rem;
  color: #fff; margin: 0 0 8px;
}
.why-card p {
  font-family: var(--font-body); font-size: 0.91rem; line-height: 1.62;
  color: rgba(255,255,255,0.70); margin: 0;
}

/* ====================================================================
   BOOKING SECTION
   ==================================================================== */
.book-section {
  position: relative; padding: 96px 0; overflow: hidden;
  background:
    radial-gradient(circle at 90% 90%, rgba(165,180,252,0.10) 0%, transparent 50%),
    var(--navy);
  color: #fff;
}
.book-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 980px) { .book-section__inner { grid-template-columns: 1fr; } }

.book-section__copy .eyebrow { color: var(--cyan); }
.book-section__copy h2 {
  color: #fff; font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.06; letter-spacing: -0.4px; margin: 0 0 20px;
}
.book-section__copy h2 em { color: var(--cyan); font-style: normal; }
.book-section__copy p {
  color: rgba(255,255,255,0.76); font-size: 1.04rem; line-height: 1.72; margin: 0 0 26px; max-width: 470px;
}
.book-section__list { list-style: none; padding: 0; margin: 0 0 26px; }
.book-section__list li {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px;
  font-family: var(--font-body); color: rgba(255,255,255,0.84); font-size: 0.95rem;
}
.book-section__list li i {
  color: var(--cyan); margin-top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(165,180,252,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; flex-shrink: 0;
}
.book-section__alts { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.book-section__alt {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 0.87rem;
  text-decoration: none; transition: all 200ms;
}
.book-section__alt:hover { background: rgba(255,255,255,0.14); color: #fff; }
.book-section__alt.wa { background: var(--whatsapp); border-color: var(--whatsapp); }
.book-section__alt.wa:hover { background: var(--whatsapp-hover); }

/* Booking form card */
.book {
  background: #fff; border-radius: var(--r-2xl); padding: 34px 30px;
  box-shadow: 0 24px 60px rgba(15,15,26,0.14);
  border: 1px solid var(--border); max-width: 560px; margin: 0 auto;
}
.book__head { margin-bottom: 24px; }
.book__head h3 {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.46rem;
  color: var(--navy); margin: 0 0 4px;
}
.book__head h3 em { font-style: normal; color: var(--blue); }
.book__head p { font-family: var(--font-body); font-size: 0.91rem; color: var(--gray); margin: 0; }

.book__steps { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.book__pip {
  flex: 1; height: 4px; border-radius: var(--r-pill); background: var(--light-gray);
  position: relative; overflow: hidden;
}
.book__pip span {
  position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform-origin: left; transform: scaleX(0); transition: transform 380ms var(--ease);
}
.book__pip.done span { transform: scaleX(1); }
.book__pip.active span { transform: scaleX(0.6); }
.book__step-label {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.77rem;
  color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.book__step-label span { color: var(--blue); }

.field { margin-bottom: 14px; position: relative; }
.field label {
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.81rem; color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box;
  font-family: var(--font-body); font-size: 0.94rem;
  padding: 13px 14px 13px 42px;
  border-radius: 12px; border: 1.5px solid var(--light-gray);
  color: var(--navy); background: #fff; outline: none;
  transition: border-color 180ms, box-shadow 180ms;
}
.field select {
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236e6e85' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field textarea { padding-left: 14px; min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,70,229,0.10);
}
.field .ic { position: absolute; left: 14px; top: 38px; color: var(--fg-3); font-size: 0.9rem; }

.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .choices { grid-template-columns: 1fr; } }
.choice {
  padding: 14px; border-radius: 12px;
  border: 1.5px solid var(--light-gray); background: #fff;
  cursor: pointer; transition: all 180ms var(--ease);
  display: flex; align-items: center; gap: 12px;
}
.choice i { font-size: 1.05rem; color: var(--blue); width: 20px; text-align: center; }
.choice__t { font-family: var(--font-heading); font-weight: 700; font-size: 0.93rem; color: var(--navy); }
.choice__d { font-family: var(--font-body); font-size: 0.76rem; color: var(--gray); }
.choice:hover { border-color: var(--blue); }
.choice.selected {
  border-color: var(--blue); background: rgba(79,70,229,0.04);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}
.choice.selected::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  margin-left: auto; color: var(--blue); font-size: 0.85rem;
}

.book__nav { display: flex; gap: 10px; margin-top: 22px; }
.book__nav .btn { flex: 1; justify-content: center; }
.book__back {
  background: transparent; color: var(--gray); border: 1.5px solid var(--light-gray);
}
.book__back:hover { color: var(--navy); border-color: var(--navy); background: transparent; }

.book__sent { text-align: center; padding: 28px 8px; }
.book__sent-ic {
  width: 74px; height: 74px; border-radius: 50%;
  background: #e8faf3; color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin-bottom: 18px;
  animation: pop 380ms var(--ease);
}
@keyframes pop { from{ transform:scale(0.4); opacity:0; } to{ transform:scale(1); opacity:1; } }
.book__sent h4 {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.28rem;
  color: var(--navy); margin: 0 0 8px;
}
.book__sent p { color: var(--gray); margin: 0 0 20px; font-size: 0.92rem; }
.book__summary {
  text-align: left; background: var(--off); border-radius: 14px; padding: 16px; margin-bottom: 20px;
}
.book__summary div {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-family: var(--font-body); font-size: 0.87rem; color: var(--navy);
  border-bottom: 1px solid var(--hairline);
}
.book__summary div:last-child { border-bottom: 0; }
.book__summary div span:first-child { color: var(--gray); }
.book__summary div span:last-child { font-weight: 700; }

.book__tiny {
  font-family: var(--font-body); font-size: 0.77rem; color: var(--gray);
  text-align: center; margin-top: 14px;
}
.book__tiny i { color: #00b09b; margin-right: 4px; }

.form-ack {
  background: #fff; border-radius: var(--r-2xl); border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15,15,26,0.08);
}

/* ====================================================================
   BRANDS
   ==================================================================== */
.brands-section { padding: 84px 0; background: var(--navy); }
.brands-section .section__head h2 { color: #fff; }
.brands-section .section__head p { color: rgba(255,255,255,0.70); }
.brands-row {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 20px;
  align-items: center; margin-top: 40px;
}
@media (max-width: 760px) { .brands-row { grid-template-columns: repeat(3,1fr); gap: 22px; } }
@media (max-width: 420px) { .brands-row { grid-template-columns: repeat(2,1fr); gap: 18px; } }
.brand-item {
  display: flex; align-items: center; justify-content: center;
  height: 62px; padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 220ms;
}
.brand-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(165,180,252,0.28);
  transform: translateY(-2px);
}
.brand-item img {
  filter: brightness(0) invert(1);
  opacity: 0.52;
  max-height: 28px; width: auto;
  transition: opacity 220ms;
}
.brand-item:hover img { opacity: 0.92; }

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.tcar { position: relative; max-width: 880px; margin: 0 auto; }
.tcar__viewport { overflow: hidden; border-radius: var(--r-2xl); }
.tcar__track { display: flex; transition: transform 500ms var(--ease); }
.tcar__slide { flex: 0 0 100%; padding: 0 4px; }
.tcar__card {
  background: #fff; border-radius: var(--r-2xl); padding: 42px;
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  position: relative;
}
.tcar__card::before {
  content: '\201C'; position: absolute; top: 14px; right: 28px;
  font-family: Georgia, serif; font-size: 7rem; line-height: 1;
  color: var(--blue); opacity: 0.08;
}
.tcar__stars i { color: #f59e0b; margin-right: 3px; font-size: 0.96rem; }
.tcar__quote {
  font-family: var(--font-body); font-size: 1.08rem; line-height: 1.74;
  color: var(--navy); margin: 18px 0 26px;
  position: relative; z-index: 1;
}
@media (max-width: 600px) { .tcar__quote { font-size: 0.98rem; } .tcar__card { padding: 28px 22px; } }
.tcar__who { display: flex; align-items: center; gap: 14px; }
.tcar__av {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  flex-shrink: 0;
}
.tcar__nm { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 0.97rem; }
.tcar__sub { font-family: var(--font-body); font-size: 0.83rem; color: var(--gray); }
.tcar__verified {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.77rem; color: #00805c;
  padding: 5px 12px; border-radius: var(--r-pill); background: rgba(0,176,155,0.09);
  border: 1px solid rgba(0,176,155,0.18);
}
@media (max-width: 600px) { .tcar__verified span { display: none; } }

.tcar__ctrl { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 28px; }
.tcar__btn {
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: #fff; color: var(--navy); cursor: pointer;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
}
.tcar__btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.tcar__dots { display: flex; gap: 7px; }
.tcar__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--light-gray);
  cursor: pointer; transition: all 200ms; border: 0;
}
.tcar__dot.active { background: var(--blue); width: 26px; border-radius: var(--r-pill); }

/* ====================================================================
   FAQ
   ==================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px;
  margin-bottom: 12px; transition: all 200ms; overflow: hidden;
}
.faq__item:hover { border-color: rgba(79,70,229,0.28); }
.faq__item.open { border-color: var(--blue); box-shadow: 0 6px 24px rgba(79,70,229,0.09); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--navy); user-select: none;
  background: none; border: 0; width: 100%; text-align: left;
}
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(79,70,229,0.07); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; flex-shrink: 0; margin-left: 16px;
  transition: all 240ms var(--ease);
}
.faq__item.open .faq__icon { background: var(--blue); color: #fff; transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 340ms var(--ease); }
.faq__a-inner {
  padding: 0 26px 24px;
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.72;
  color: var(--navy-gray);
}
.faq__item.open .faq__a { max-height: 600px; }

/* ====================================================================
   CTA BAND
   ==================================================================== */
.cta-band {
  position: relative; padding: 84px 0; overflow: hidden;
  background:
    radial-gradient(circle at 88% 80%, rgba(251,113,133,0.20) 0%, transparent 50%),
    radial-gradient(circle at 8% 20%, rgba(165,180,252,0.14) 0%, transparent 55%),
    var(--navy);
  color: #fff;
}
.cta-band__inner {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff; font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin: 0 0 10px; letter-spacing: -0.4px; line-height: 1.12;
}
.cta-band p { color: rgba(255,255,255,0.76); font-size: 1.04rem; margin: 0; max-width: 540px; }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band__btns .btn { background: var(--orange); color: #fff; box-shadow: var(--cta-shadow); }
.cta-band__btns .btn:hover { background: var(--orange-hover); color: #fff; box-shadow: var(--cta-shadow-hover); }
.cta-band__btns .btn-wa { background: var(--whatsapp); color: #fff; }
.cta-band__btns .btn-wa:hover { background: var(--whatsapp-hover); }

/* ====================================================================
   FOOTER
   ==================================================================== */
.foot { background: var(--navy); color: #fff; padding: 74px 0 0; position: relative; }
.foot__bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background:
    radial-gradient(circle at 10% 0%, rgba(79,70,229,0.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(165,180,252,0.08) 0%, transparent 50%);
}
.foot__inner { position: relative; z-index: 1; }
.foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .foot__grid { grid-template-columns: 1fr; gap: 28px; } }

.foot__tag { color: var(--cyan); font-family: var(--font-heading); font-weight: 600; margin: 14px 0 18px; font-size: 0.92rem; }
.foot__contact { margin-top: 14px; }
.foot__contact a {
  color: rgba(255,255,255,0.76); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 9px; font-family: var(--font-body); font-size: 0.91rem;
  transition: color 150ms;
}
.foot__contact a:hover { color: var(--cyan); }
.foot__contact i { color: var(--cyan); width: 18px; }
.foot h5 {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.79rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 9px; }
.foot ul a {
  color: rgba(255,255,255,0.70); font-family: var(--font-body); font-size: 0.91rem;
  text-decoration: none; transition: color 150ms;
}
.foot ul a:hover { color: var(--cyan); }

.foot__addr {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 0 0 16px; padding: 14px 16px;
  border-radius: 12px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-style: normal; font-family: var(--font-body);
  font-size: 0.88rem; line-height: 1.58;
  color: rgba(255,255,255,0.76);
}
.foot__addr i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; width: 18px; text-align: center; }

.foot__hours { display: flex; flex-direction: column; gap: 8px; }
.foot__hours-row {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-body); font-size: 0.88rem;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.foot__hours-row .day { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.80rem; }
.foot__hours-row .time { color: var(--cyan); font-weight: 600; font-size: 0.84rem; }
.foot__hours-row--closed .time { color: rgba(255,255,255,0.50); }

.foot__locs { display: flex; flex-direction: column; gap: 8px; }
.foot__loc {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.76); text-decoration: none;
  font-family: var(--font-body); font-size: 0.89rem;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 180ms;
}
.foot__loc:hover { color: var(--cyan); border-color: rgba(165,180,252,0.28); }
.foot__loc i { color: var(--cyan); width: 16px; }

.foot__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-family: var(--font-body); font-size: 0.81rem;
  color: rgba(255,255,255,0.48); flex-wrap: wrap;
}
.foot__legal { display: flex; gap: 22px; }
.foot__legal a {
  color: rgba(255,255,255,0.52); font-family: var(--font-body); font-size: 0.81rem;
  text-decoration: none; transition: color 150ms;
}
.foot__legal a:hover { color: var(--cyan); }

/* ====================================================================
   FLOATING CTAs
   ==================================================================== */
.fab-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.35rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  transition: transform 200ms;
  position: relative;
}
.fab:hover { transform: scale(1.08); color: #fff; }
.fab.wa { background: var(--whatsapp); }
.fab.ph { background: var(--orange); }
.fab.wa::before, .fab.ph::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; opacity: 0.35; z-index: -1;
  animation: ping 2.8s ease-out infinite;
}
@keyframes ping { 0%{ transform:scale(1); opacity:0.45; } 80%,100%{ transform:scale(1.6); opacity:0; } }
.fab__tt {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; padding: 7px 13px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.80rem;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 200ms;
}
.fab:hover .fab__tt { opacity: 1; }

/* ====================================================================
   MOBILE RESPONSIVE
   ==================================================================== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 38px; }

  .hero { padding: 58px 0 74px; }
  .hero h1 { font-size: clamp(2rem, 8.2vw, 2.8rem); margin-bottom: 18px; }
  .hero__sub { font-size: 0.98rem; margin-bottom: 26px; }
  .hero__ctas { gap: 10px; margin-bottom: 30px; }
  .hero__ctas .btn { flex: 1; min-width: 0; padding: 13px 16px; font-size: 0.9rem; }
  .hero-badge { font-size: 0.69rem; padding: 7px 13px; }
  .hero__visual { max-width: 340px; }
  .hero-laptop { max-width: 300px; }
  .hero-chip { font-size: 0.69rem; padding: 7px 10px; gap: 6px; }
  .hero-chip--1 { top: -2%; right: -2%; }
  .hero-chip--3 { bottom: 18%; right: -2%; }
  .hero-chip--4 { bottom: -6%; left: 4%; }

  .stats-strip { padding: 38px 0; }
  .stats { gap: 22px 14px; }
  .stat__ic { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 12px; }
  .stat__num { font-size: 1.65rem; margin-bottom: 6px; }
  .stat__l { font-size: 0.81rem; }

  .svc-tabs {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    justify-content: flex-start; margin-left: -18px; margin-right: -18px;
    padding-left: 18px; padding-right: 18px;
  }
  .svc-tabs::-webkit-scrollbar { display: none; }
  .svc-tab { flex-shrink: 0; }
  .svc { padding: 22px 18px 18px; }

  .how-rail { grid-template-columns: 1fr; gap: 18px; }
  .step { padding: 20px 14px; }

  .why-card { padding: 24px 20px; }
  .book-section { padding: 64px 0; }
  .book { padding: 24px 20px; }
  .book__head h3 { font-size: 1.22rem; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .book-section__copy h2 { font-size: clamp(1.65rem, 5vw, 2.1rem); }

  .brands-section { padding: 58px 0; }

  .tcar { padding: 0; }
  .tcar__quote { font-size: 0.97rem; line-height: 1.62; }

  .faq__q { padding: 18px 20px; font-size: 0.94rem; }
  .faq__a-inner { padding: 0 20px 20px; font-size: 0.9rem; }

  .cta-band { padding: 58px 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-band h2 { font-size: clamp(1.45rem, 5.5vw, 1.9rem); }
  .cta-band__btns { width: 100%; }
  .cta-band__btns .btn { flex: 1; justify-content: center; }

  .foot { padding: 58px 0 0; }
  .foot__bar { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 0; }
  .fab-stack { right: 14px; bottom: 14px; gap: 10px; }
}

@media (max-width: 460px) {
  .hero-chip--3 { display: none; }
  .hero__visual { max-width: 290px; }
  .hero-laptop { max-width: 268px; }
  .nav__inner { gap: 10px; padding: 0 16px; }
  .logo__text { font-size: 0.9rem; }
}

/* ==========================================================================
   Form classes used by sub-agent-generated pages (SKU, location, blog)
   Premium-styled forms matching the LSC design tokens.
   ========================================================================== */
.sku-section {
  padding: 56px 0;
  background: var(--white);
}
.sku-section.alt {
  background: var(--off);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(110, 110, 133, 0.72); /* aligned with sitewide placeholder rule */
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 61, 228, 0.18);
}
.contact-form textarea {
  height: auto;
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.55;
}
.contact-form button[type="submit"],
.contact-form .btn-primary {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  border: 0;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(255, 92, 26, 0.22);
  transition: background 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}
.contact-form button[type="submit"]:hover,
.contact-form .btn-primary:hover {
  background: var(--orange-hover, #e5500f);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 92, 26, 0.3);
}
.contact-form button[type="submit"]:active,
.contact-form .btn-primary:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .sku-section { padding: 40px 0; }
}

/* ============================================================
   INNER-PAGE LAYOUT FIXES — breadcrumb, hero--inner, grid systems,
   utility cards, CTA section, floating WhatsApp FAB
   ============================================================ */

/* Breadcrumb — used on 1,346 inner pages */
.breadcrumb {
  background: var(--off);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray);
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 180ms ease;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}
.breadcrumb i.fa-chevron-right {
  font-size: 0.65rem;
  color: var(--light-gray);
}

/* Hero inner — slimmer hero for non-homepage pages */
.hero--inner {
  padding: 120px 0 64px;
  background:
    radial-gradient(ellipse at top left, rgba(26, 61, 228, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(0, 212, 255, 0.05), transparent 60%),
    var(--off);
  position: relative;
  overflow: hidden;
}
.hero--inner .hero__text { max-width: 100%; }
.hero--inner h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 14px 0 18px;
}
.hero--inner .hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 760px;
}
@media (max-width: 720px) {
  .hero--inner { padding: 100px 0 48px; }
}

/* Utility grids — used on 33 brand-hub and inner pages */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Utility cards */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 180ms ease,
              box-shadow 220ms ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(10, 15, 46, 0.08);
}
.card i {
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
}
.card--sku i { color: var(--cyan); }
.card--brand i { color: var(--blue); }
.card--loc {
  align-items: flex-start;
  gap: 14px;
}
.card--loc i { font-size: 1.1rem; color: var(--orange); margin-top: 2px; }
.card--loc strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.card--loc span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--gray);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* CTA section variant */
.section--cta {
  background: linear-gradient(135deg, var(--navy), #14215a);
  color: #fff;
}
.section--cta .section__head h2 { color: #fff; }
.section--cta .section__head p { color: rgba(255, 255, 255, 0.78); }
.section--cta .eyebrow { color: var(--cyan); }
.section--cta .book-form,
.section--cta form {
  max-width: 640px;
  margin: 28px auto 0;
  background: #fff;
  padding: 28px;
  border-radius: var(--r-xl);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}
.section--cta label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.section--cta input,
.section--cta textarea,
.section--cta select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--off);
  transition: border-color 180ms ease, background 180ms ease;
}
.section--cta input:focus,
.section--cta textarea:focus,
.section--cta select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.section--cta .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.section--cta .form-group { margin-bottom: 14px; }
@media (max-width: 560px) {
  .section--cta .form-row { grid-template-columns: 1fr; }
  .section--cta .book-form,
  .section--cta form { padding: 20px; }
}

/* WhatsApp button — .btn-whatsapp used on 659 pages, alias for .btn-wa */
.btn-whatsapp,
a.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 200ms ease,
              background 180ms ease;
}
.btn-whatsapp:hover,
a.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.36);
  color: #fff;
}
.btn-whatsapp i,
a.btn-whatsapp i { font-size: 1.15rem; }

/* Floating WhatsApp FAB — visible sitewide */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  z-index: 90;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 220ms ease;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.52);
  color: #fff;
}
@media (max-width: 560px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 1.55rem; }
}
@media (prefers-reduced-motion: reduce) {
  }

/* ============================================================
   Breadcrumb on dark hero containers — transparent bg, white text
   Affects ~1,738 SKU pages (.sku-hero) + future dark-hero variants
   ============================================================ */
.sku-hero .breadcrumb,
.hero--dark .breadcrumb,
.section--cta .breadcrumb {
  background: transparent;
  border-bottom: none;
  padding: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}
.sku-hero .breadcrumb ol,
.hero--dark .breadcrumb ol,
.section--cta .breadcrumb ol {
  padding: 0;
}
.sku-hero .breadcrumb a,
.hero--dark .breadcrumb a,
.section--cta .breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.sku-hero .breadcrumb a:hover,
.hero--dark .breadcrumb a:hover,
.section--cta .breadcrumb a:hover {
  color: var(--cyan);
}
.sku-hero .breadcrumb [aria-current="page"],
.hero--dark .breadcrumb [aria-current="page"],
.section--cta .breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}
.sku-hero .breadcrumb i.fa-chevron-right,
.hero--dark .breadcrumb i.fa-chevron-right,
.section--cta .breadcrumb i.fa-chevron-right {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Breadcrumb top spacing — clear the 74px fixed nav
   - Standalone .breadcrumb band: padding-top boosts so it
     sits below the nav with breathing room
   - .sku-hero (inline page-local CSS sets padding: 64px 0 48px,
     not enough to clear nav): higher-specificity override
   NOTE: The :has()-scoped overrides at the end of this file
   handle nav-clearance on all hero-inner/book-hero pages.
   ============================================================ */
/* [REMOVED dead rule ".breadcrumb { padding: 94px 0 14px; }" — superseded by :has() block] */

body .sku-hero {
  padding-top: 104px;
}

.sku-hero .breadcrumb,
.hero--dark .breadcrumb,
.section--cta .breadcrumb {
  padding: 0 0 8px;
}

/* ============================================================
   .hero--inner palette correction (light background)
   Default .hero is dark-navy with white inner text. .hero--inner
   sits on the off-white background — invert child colours so text
   stays readable. Contrast targets: WCAG AA (4.5:1 body, 3:1 large).
   ============================================================ */
.hero--inner .hero-badge {
  background: rgba(26, 61, 228, 0.06);
  border: 1px solid rgba(26, 61, 228, 0.22);
  color: var(--blue);
}
.hero--inner .hero-badge .dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 61, 228, 0.14);
}
.hero--inner .hero__sub {
  color: var(--gray);
}
.hero--inner .pillar {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(10, 15, 46, 0.04);
}
.hero--inner .pillar i {
  color: var(--blue);
}
.hero--inner .pillar__t {
  color: var(--navy);
}
.hero--inner .pillar__d {
  color: var(--gray);
}
.hero--inner .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.hero--inner .btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
/* Catch-all: any phone/secondary anchor in a light hero CTA row
   that isn't already styled by .btn-primary or .btn-whatsapp */
body .hero--inner .hero__ctas a:not(.btn-primary):not(.btn-whatsapp):not(.btn-wa),
body .hero--inner .book-actions a:not(.btn-primary):not(.btn-whatsapp):not(.btn-wa) {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 180ms ease, color 180ms ease;
}
body .hero--inner .hero__ctas a:not(.btn-primary):not(.btn-whatsapp):not(.btn-wa):hover,
body .hero--inner .book-actions a:not(.btn-primary):not(.btn-whatsapp):not(.btn-wa):hover {
  background: var(--navy);
  color: #fff;
}
.hero--inner .hero__grid,
.hero--inner .hero__orb {
  opacity: 0.5;
}

/* ============================================================
   .section--alt — the alternating-section default
   Sits between two .section bands, gives a subtle tint for rhythm.
   ============================================================ */
.section--alt {
  background: var(--off);
}

/* ============================================================
   MISSING CLASS DEFINITIONS — generated 2026-05-17
   All classes used on hub pages but previously undefined in site.css.
   Grouped by component type. All colours verified WCAG AA.
   ============================================================ */

/* ── Decoration: orbit--a ───────────────────────────────────── */
/* orbit--a is the default ring; base .orbit rule already covers it.
   Explicit rule ensures specificity parity with --b and --c. */
.orbit--a {
  animation-duration: 20s;
}

/* ── Tag cloud + tag links ──────────────────────────────────── */
/* .tag-cloud: flex wrapper that holds .tag-link chips */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

/* .tag-link: inline pill linking to nearby area/brand pages.
   On white/off-white background → navy text on light-gray pill. */
.tag-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--navy);               /* #0f0f1a on #ececf5 — passes AA */
  background: var(--border);        /* #ececf5 */
  border: 1px solid var(--light-gray);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.tag-link:hover,
.tag-link:focus-visible {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  outline: none;
}

/* ── Booking form — multi-step wizard ───────────────────────── */
/* .book__panel: single step pane inside the wizard; hidden by JS until active */
.book__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* .book__panels: outer wrapper for all step panes */
.book__panels {
  position: relative;
}

/* .book__label: form field label inside the booking wizard */
.book__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--navy);               /* dark on white bg — passes AA */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

/* .book__inp: text / tel / email inputs */
.book__inp {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  box-sizing: border-box;
}
.book__inp:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.book__inp::placeholder { font-family: 'Nunito', sans-serif; color: rgba(110, 110, 133, 0.72); font-weight: 400; }

/* .book__sel: select dropdown */
.book__sel {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236e6e85' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color var(--t-fast) var(--ease);
}
.book__sel:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }

/* .book__area: textarea for free-text description */
.book__area {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  resize: vertical;
  min-height: 72px;
  box-sizing: border-box;
  transition: border-color var(--t-fast) var(--ease);
}
.book__area:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }
.book__area::placeholder { font-family: 'Nunito', sans-serif; color: rgba(110, 110, 133, 0.72); font-weight: 400; }

/* .book__row: inline button row (Back + Continue) */
.book__row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.book__row .btn { flex: 1; justify-content: center; }

/* .book__fields: labelled field group inside a panel */
.book__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* .book__next / .book__submit: already styled via .btn btn-primary;
   these rules add wizard-specific constraints */
.book__next,
.book__submit {
  align-self: flex-end;
}

/* .book__success: confirmation state shown on submit */
.book__success {
  text-align: center;
  padding: 32px 16px;
  background: rgba(79,70,229,0.05);
  border: 1px solid rgba(79,70,229,0.14);
  border-radius: var(--r-xl);
  color: var(--navy);
}
.book__success i {
  font-size: 2.2rem;
  color: #16a34a;                    /* green — success signal, passes AA on white */
  margin-bottom: 12px;
  display: block;
}
.book__success h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
}
.book__success p { font-size: 0.93rem; color: var(--gray); margin: 0; }

/* ── Footer — alternate footer template ─────────────────────── */
/* This footer template (foot__logo, foot__about, foot__h, foot__ul, foot__bot)
   is used on older location hub pages; different markup from the primary footer
   but same .foot dark background — all child text must be light. */

/* .foot__logo: logo anchor inside footer column */
.foot__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.foot__logo .logo__ic { color: var(--cyan); }
.foot__logo .logo__text { color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; }

/* .foot__about: tagline/about paragraph in footer brand column */
.foot__about {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);    /* light on dark navy — passes AA */
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 280px;
}

/* .foot__h: column heading inside alternate footer */
.foot__h {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.92);    /* passes AA on #0f0f1a */
  margin: 0 0 14px;
}

/* .foot__ul: link list inside footer column */
.foot__ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot__ul li a {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.foot__ul li a:hover { color: var(--cyan); }

/* .foot__bot: bottom copyright bar in alternate footer template */
.foot__bot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.foot__bot p {
  font-family: var(--font-body);
  font-size: 0.80rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.foot__bot p a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.foot__bot p a:hover { color: var(--cyan); }

/* ── CTA band — copy + actions layout ───────────────────────── */
/* .cta-band already has background defined; these are its layout children */

/* .cta-band__copy: heading + body text block */
.cta-band__copy {
  flex: 1 1 0;
  min-width: 0;
}
.cta-band__copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;                        /* white on dark cta-band — passes AA */
  margin: 0 0 10px;
}
.cta-band__copy p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  margin: 0;
  max-width: 520px;
}

/* .cta-band__actions: button row */
.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}
.cta-band__actions .btn {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1; justify-content: center; }
}

/* ── Location pages — service links + coverage ──────────────── */

/* .loc-service-links: flex wrapper for service pill chips */
.loc-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

/* .svc-pill: clickable service name chip on location pages */
.svc-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);               /* blue on white — 4.5:1+ ratio — passes AA */
  background: rgba(79,70,229,0.07);
  border: 1px solid rgba(79,70,229,0.18);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.svc-pill:hover,
.svc-pill:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: none;
}

/* .loc-coverage: wrapper block for coverage info + pin + siblings */
.loc-coverage {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* .loc-coverage__pin: area name + PIN badge inside coverage block */
.loc-coverage__pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.loc-coverage__pin i { color: var(--blue); }

/* .loc-hub-link: text link back to the main brand hub from a location page */
.loc-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: 8px;
  transition: color var(--t-fast) var(--ease);
}
.loc-hub-link:hover { color: var(--blue-hover); text-decoration: underline; }

/* .loc-siblings: list of nearby area links inside coverage block */
.loc-siblings {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loc-siblings li a {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.loc-siblings li a:hover { color: var(--blue); }

/* ── Hero variants — inner (light-bg) hero children ─────────── */

/* .hero-inner: light-background hero section (used on sub-service + about pages) */
.hero-inner {
  background: var(--off);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 900;
  color: var(--navy);               /* dark on off-white — passes AA */
  margin: 0 0 16px;
  line-height: 1.15;
}

/* .hero-lede: subtitle paragraph inside light hero */
.hero-lede {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--gray);               /* #6e6e85 on #f6f6f9 — passes AA (4.6:1) */
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 28px;
}

/* .hero-actions: CTA button row inside hero */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ── Button modifiers ────────────────────────────────────────── */

/* .btn-block: full-width button */
.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* .btn-secondary: phone/secondary action — ghost style, dark variant for use on light bg */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);               /* navy on white/off-white bg — passes AA */
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--off);
  border-color: var(--navy);
  color: var(--navy);
  outline: none;
}

/* ── Back-to-parent breadcrumb bar ───────────────────────────── */
/* .back-to-parent: slim nav band between hero and content, light bg */
.back-to-parent {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.back-to-parent .container {
  display: flex;
  align-items: center;
}
.back-to-parent a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.back-to-parent a:hover { color: var(--blue-hover); text-decoration: underline; }
.back-to-parent i { font-size: 0.82rem; }

/* ── FAQ section ─────────────────────────────────────────────── */
/* .faq-section: section wrapper; inherits white background by default */
.faq-section {
  padding: 56px 0;
  background: var(--white);
}
.faq-section h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 32px;
}

/* .faq-list: container for a list of details/summary pairs */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}

/* .faq-item: individual Q+A pair block */
.faq-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.4;
}
.faq-item p {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.65;
}

/* ── Related articles card ───────────────────────────────────── */
/* .related-card: used in content pages (info articles / service pages) */
.related-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--navy);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.related-card:hover,
.related-card:focus-visible {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue);
  transform: translateY(-2px);
  outline: none;
}
.related-card i {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.related-card span {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ── Sidebar card ────────────────────────────────────────────── */
/* .sidebar-card: sticky CTA card inside article sidebar */
.sidebar-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  position: sticky;
  top: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
}
.sidebar-card p {
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--gray);
  margin: 0 0 16px;
  line-height: 1.6;
}

/* ── CTA strip ───────────────────────────────────────────────── */
/* .cta-strip: full-width navy strip used as a closing CTA on service/SKU sub-pages */
.cta-strip {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;                         /* white on navy — passes AA */
  margin: 0 0 12px;
}
.cta-strip p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  margin: 0 0 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn { display: inline-flex; }

/* ── Service tile tint: .t-orange ────────────────────────────── */
/* .svc__tile.t-orange: icon tile inside service cards on brand hub pages.
   Uses the coral accent for icon background on white card bg. */
.t-orange {
  background: rgba(251,113,133,0.12);  /* coral tint — icon sits on this */
  color: var(--orange);               /* coral icon — passes AA as decorative (3:1+) */
}

/* ============================================================
   RAJDHANI — premium geometric font for header / menu / footer headings
   (matches original LSC design spec)
   ============================================================ */
.logo__text,
.nav__links a,
.nav__phone,
.nav__cta,
.drawer__nav a,
.foot h5 {
  font-family: 'Rajdhani', 'Outfit', system-ui, sans-serif;
  letter-spacing: 0.5px;
}

/* ============================================================
   WCAG AA CONTRAST FIXES — 2026-05-17
   Audit of 9 page archetypes. All ratios verified below.
   Targets: ≥4.5:1 normal text · ≥3:1 large text / UI components.
   ============================================================ */

/* 1. a:hover on light backgrounds — orange #fb7185 scores 2.69:1 on white (FAIL).
      Fix: scope orange hover to dark-background contexts only; use blue-hover
      on all light backgrounds (sections, cards, breadcrumbs, FAQ, form areas). */
.section a:hover,
.section--alt a:hover,
.section--cta .book-form a:hover,
.section--cta form a:hover,
.hero--inner a:hover,
.hero-inner a:hover,
.breadcrumb a:hover,
.faq__a-inner a:hover,
.faq-item a:hover,
.card a:hover,
.tcar__card a:hover,
.book a:hover,
.book-form a:hover,
.stats-strip a:hover,
.svc a:hover,
.step a:hover,
.sidebar-card a:hover,
.related-card:hover,
.loc-coverage a:hover,
.back-to-parent a:hover {
  color: var(--blue-hover); /* #4338ca on white = 7.90:1 — passes AA */
}

/* 2. .field .ic — form field icon uses --fg-3 (#aab4cc) on white = 2.08:1 (FAIL).
      Fix: use --gray (#6e6e85) which scores 4.96:1 on white — passes AA. */
.field .ic {
  color: var(--gray);
}

/* 3. .svc__chip — "#00805c" on rgba(0,176,155,0.10)/white tint = 4.47:1 (FAIL by 0.03).
      Fix: deepen to #006b48 which scores 5.93:1 on the tinted background. */
.svc__chip {
  color: #006b48;
}

/* 4. .tcar__verified — "#00805c" on rgba(0,176,155,0.09)/white tint = 4.49:1 (FAIL by 0.01).
      Fix: same token #006b48 — 5.96:1 on tinted background — passes AA. */
.tcar__verified {
  color: #006b48;
}

/* ============================================================
   .why-card on LIGHT-BACKGROUND sections (.section.alt / no .dark)
   Default .why-card was built for dark hero — white text on white-tinted card.
   On location/brand-area pages it sits on off-white bg → invisible.
   This override makes it dark text on white card for light contexts.
   ============================================================ */
.section.alt .why-card,
.section:not(.dark) .why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(15, 15, 26, 0.04);
}
.section.alt .why-card:hover,
.section:not(.dark) .why-card:hover {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(15, 15, 26, 0.08);
}
.section.alt .why-card__ic,
.section:not(.dark) .why-card__ic {
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.22);
  color: var(--blue);
}
.section.alt .why-card h4,
.section:not(.dark) .why-card h4 {
  color: var(--navy);
}
.section.alt .why-card p,
.section:not(.dark) .why-card p {
  color: var(--gray);
}

/* ============================================================
   .why-grid — symmetric layouts based on card count
   3 cards → 3x1 (default)
   4 cards → 2x2 (symmetric, never 3+1 orphan)
   Uses :has() — supported in all evergreen browsers since 2023.
   ============================================================ */
.why-grid:has(.why-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 540px) {
  .why-grid:has(.why-card:nth-child(4):last-child) {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NAV DROPDOWN SUBMENUS — .has-children / .submenu
   Mirrors original WordPress menu structure with Services, Brands,
   Stores dropdown groups.
   ============================================================ */
.nav__links {
  align-items: center;
}
.nav__links .has-children {
  position: relative;
}
.nav__links .has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__links .has-children > a i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links .has-children:hover > a i.fa-chevron-down,
.nav__links .has-children:focus-within > a i.fa-chevron-down {
  transform: rotate(180deg);
}
.nav__links .submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(15, 15, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 220ms;
  z-index: 110;
}
.nav__links .has-children:hover > .submenu,
.nav__links .has-children:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav__links .submenu li {
  display: block;
}
.nav__links .submenu a {
  display: block;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 160ms ease, color 160ms ease, padding-left 200ms ease;
}
.nav__links .submenu a:hover {
  background: rgba(165, 180, 252, 0.08);
  color: var(--cyan);
  padding-left: 22px;
}

/* Drawer (mobile) — scrollable now that there are many items */
.drawer__nav {
  max-height: calc(100vh - 280px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}
.drawer__nav::-webkit-scrollbar { width: 4px; }
.drawer__nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

/* On screens narrower than 1100px, fall back to non-essential nav items hidden */
@media (max-width: 1100px) {
  .nav__links li:nth-child(n+8) { display: none; }
}
@media (max-width: 980px) {
  .nav__links { display: none; }
}

/* Drawer section header (separator label inside mobile drawer) */
.drawer__nav .drawer__section {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.42);
  padding: 16px 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
  pointer-events: none;
}
.drawer__nav .drawer__section:first-of-type {
  padding-top: 4px;
  border-top: none;
}

/* ============================================================
   BOOK-YOUR-REPAIR — hero two-column layout + page components
   /book-your-repair/index.html
   Added 2026-05-17
   ============================================================ */

/* ── Hero section ────────────────────────────────────────── */
.book-hero {
  background: var(--off);
  padding: 80px 0 72px;
}

.book-hero__cols {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 52px;
  align-items: start;
}

/* Left copy */
.book-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.14;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

.book-hero__lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.72;
  max-width: 620px;
  margin: 0 0 28px;
}

.book-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.book-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.book-hero__pill i {
  color: var(--blue);
  font-size: 0.9rem;
}

/* Right form card */
.book-hero__form-wrap {
  position: sticky;
  top: 94px; /* clear fixed nav */
}

.book-hero__form-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(15, 15, 26, 0.10);
  border: 1px solid var(--border);
  padding: 32px 28px 24px;
}

.book-hero__form-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 20px;
}

.book-hero__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray);
  margin: 16px 0 0;
  line-height: 1.5;
}

.book-hero__hours i {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Override .contact-form margin so form doesn't push down */
.book-hero__form-card .contact-form {
  margin-top: 0;
}

/* ── How it works ─────────────────────────────────────────── */
.book-how {
  background: var(--navy);
  padding: 72px 0;
}

.book-how__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.book-how__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 40px;
}

.book-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.book-how__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.book-how__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.book-how__body strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.book-how__body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
  margin: 0;
}

/* ── Brands row ───────────────────────────────────────────── */
.book-brands {
  background: var(--off);
  padding: 64px 0;
}

.book-brands__h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 32px;
  text-align: center;
}

.book-brands__row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.book-brands__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 96px;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}

.book-brands__item i {
  font-size: 1.8rem;
  color: var(--blue);
}

.book-brands__item:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.10);
  transform: translateY(-2px);
  color: var(--navy);
}

/* ── Trust strip ──────────────────────────────────────────── */
.book-trust {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.book-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.book-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.book-trust__item > i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(79, 70, 229, 0.07);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.book-trust__item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.book-trust__item span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}

/* .book-faq inherits .faq-section styles — add bottom margin */
.book-faq {
  background: var(--off);
}

/* .book-actions — CTA button row on closing strip */
.book-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Responsive: 860px breakpoint ────────────────────────── */
@media (max-width: 860px) {
  .book-hero {
    padding: 60px 0 56px;
  }

  /* Stack lede above form on mobile (SEO content reads first) */
  .book-hero__cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .book-hero__form-wrap {
    position: static; /* unstick on mobile */
    top: auto;
  }

  .book-how__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .book-trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .book-hero__h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .book-hero__form-card {
    padding: 24px 18px 20px;
  }

  .book-brands__row {
    gap: 12px;
  }

  .book-brands__item {
    padding: 16px 18px;
    min-width: 80px;
  }

  .book-trust__grid {
    grid-template-columns: 1fr;
  }

  .book-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .book-actions .btn,
  .book-actions .btn-whatsapp {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   PART 2 — MOBILE RESPONSIVENESS FIXES
   Production audit of 8 page archetypes — 2026-05-17
   Targets: viewport widths 360 / 414 / 768px
   Rules affect only CSS classes — no HTML changes.
   ============================================================ */

/* ── Fix 1: .nav__inner overflow on narrow viewports ───────
   At 360px the logo + phone + CTA pill overflow horizontally.
   Reduce padding and clamp logo icon size to prevent scroll.    */
@media (max-width: 380px) {
  .nav__inner {
    padding: 0 12px;
    gap: 8px;
  }
  .logo__ic {
    width: 48px;
    height: 48px;
    font-size: 0.88rem;
  }
  .logo__text {
    font-size: 0.82rem;
  }
}

/* ── Fix 2: .hero__ctas button overflow at 360px ───────────
   Buttons share a flex row; at very narrow widths they overflow.
   Force column stack below 400px so each button gets full width. */
@media (max-width: 400px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Fix 3: .svc-tabs horizontal scroll bleed ──────────────
   Negative margin trick on service tabs works at 768px but
   leaves a residual 1px white gap on 360px. Normalize it.      */
@media (max-width: 420px) {
  .svc-tabs {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ── Fix 4: .cta-band__btns on 360px ───────────────────────
   Existing rule stacks at 768px but uses flex: 1 which can make
   buttons too narrow on 360px. Add min-width: 0 guard.          */
@media (max-width: 480px) {
  .cta-band__btns .btn {
    min-width: 0;
    font-size: 0.88rem;
    padding: 12px 14px;
  }
}

/* ── Fix 5: .section padding insufficient at 360px ─────────
   Sections using 64px padding still have 64px at 360px after the
   768px rule sets them. Reduce further at very small viewports.  */
@media (max-width: 420px) {
  .section {
    padding: 48px 0;
  }
  .sku-section {
    padding: 32px 0;
  }
}

/* ── Fix 6: .foot__hours-row — two-column text wraps badly ─
   .day and .time are inline-block; at 414px they collide.
   Stack them vertically below 540px.                            */
@media (max-width: 540px) {
  .foot__hours-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
  }
  .foot__hours-row .time {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.60);
  }
}

/* ── Fix 7: form inputs — ensure min 44px touch target ─────
   .contact-form input and .book__inp already have height: 48px.
   .section--cta inputs use padding-based height which can render
   below 44px on some iOS builds. Enforce min-height.            */
.section--cta input,
.section--cta select,
.section--cta textarea {
  min-height: 44px;
}

/* ── Fix 8: .contact-form textarea min-height on mobile ────
   Textareas collapse to < 44px on narrow viewports when rows
   attribute is ignored by iOS Safari zoom. Set explicit minimum. */
@media (max-width: 480px) {
  .contact-form textarea {
    min-height: 88px;
  }
}

/* ── Fix 9: body text iOS zoom prevention ───────────────────
   iOS Safari zooms on inputs with font-size < 16px. All form
   inputs already set font-size: 0.95rem (≈15.2px). Ensure
   16px minimum on mobile form inputs to prevent zoom.           */
@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .section--cta input,
  .section--cta textarea,
  .section--cta select,
  .field input,
  .field select,
  .field textarea,
  .book__inp,
  .book__sel,
  .book__area {
    font-size: 16px;
  }
}

/* ── Fix 10: .grid-4 on 360–414px ──────────────────────────
   Existing breakpoint collapses grid-4 to 2-col at 580px.
   At 360px two columns are still too wide for some cards.
   Below 380px force single column.                              */
@media (max-width: 380px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ── Fix 11: .book-section heading CTA wrap at 414px ───────
   .book-section h2 using clamp can still produce a 2-word orphan
   on the last line at 414px. Set a sensible line-height guard.  */
@media (max-width: 480px) {
  .book-section__copy h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
  }
}

/* ── Fix 12: .tcar__card padding at 360px ──────────────────
   Testimonial card reduces to 28px/22px at 600px. At 360px
   that still clips. Compress to 20px sides.                     */
@media (max-width: 380px) {
  .tcar__card {
    padding: 22px 16px;
  }
}


/* ============================================================
   Breadcrumb-then-hero stack — kill the double nav-clearance gap
   When breadcrumb is followed by a hero, the breadcrumb already
   clears the 74px nav. Hero just needs natural section spacing.
   ============================================================ */
.breadcrumb + .hero,
.breadcrumb + .hero--inner,
.breadcrumb + section.hero,
.breadcrumb + section.hero--inner {
  padding-top: 32px;
}
@media (max-width: 720px) {
  .breadcrumb + .hero,
  .breadcrumb + .hero--inner {
    padding-top: 24px;
  }
}

/* [REMOVED dead rule ".breadcrumb { padding-bottom: 12px; }" — superseded by :has() block] */

/* ============================================================
   Blog hub — article card grid
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, box-shadow 240ms ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(10, 15, 46, 0.10);
}
.blog-card__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 10px;
}
.blog-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 16px;
  flex: 1;
}
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
  letter-spacing: 0.3px;
}
.blog-card__cta i {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-card__cta i {
  transform: translateX(4px);
}

/* ============================================================
   HERO-WITH-FORM — two-column layout for hero--inner pages
   and white card overlay for sku-hero pages
   ============================================================ */

/* hero--inner two-column grid */
.hero--inner .hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero--inner .hero__text { max-width: 100%; }
.hero--inner .hero__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  box-shadow: 0 22px 56px rgba(10, 15, 46, 0.10);
}
.hero--inner .hero__form .book-form__head { margin-bottom: 18px; }
.hero--inner .hero__form .book-form__head h3 {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: var(--navy); margin: 0 0 6px;
}
.hero--inner .hero__form .book-form__head p {
  font-family: 'Nunito', sans-serif; font-size: 0.88rem; color: var(--gray);
  margin: 0; line-height: 1.55;
}
.hero--inner .hero__form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.hero--inner .hero__form .form-group { margin-bottom: 12px; }
.hero--inner .hero__form label {
  display: block; font-family: 'Outfit', sans-serif; font-weight: 600;
  color: var(--navy); font-size: 0.82rem; margin-bottom: 5px;
}
.hero--inner .hero__form input,
.hero--inner .hero__form textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 16px;
  color: var(--navy); background: var(--off); min-height: 44px;
  transition: border-color 180ms ease, background 180ms ease;
}
.hero--inner .hero__form input:focus,
.hero--inner .hero__form textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.hero--inner .hero__form textarea { min-height: 80px; resize: vertical; }
.hero--inner .hero__form .btn-block { width: 100%; }

@media (max-width: 860px) {
  .hero--inner .hero__inner {
    grid-template-columns: 1fr; gap: 32px;
  }
  .hero--inner .hero__form .form-row { grid-template-columns: 1fr; }
}

/* SKU-page hero with form — dark-navy bg, white form card */
.sku-hero .hero__form {
  background: #fff; border-radius: var(--r-xl); padding: 26px 24px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
  margin-top: 24px; max-width: 460px;
}
.sku-hero .hero__form .book-form__head h3 {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.18rem;
  color: var(--navy); margin: 0 0 6px;
}
.sku-hero .hero__form .book-form__head p {
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; color: var(--gray);
  margin: 0 0 16px;
}
.sku-hero .hero__form input,
.sku-hero .hero__form textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 16px; color: var(--navy); background: var(--off);
  min-height: 44px; margin-bottom: 10px;
}
.sku-hero .hero__form input:focus, .sku-hero .hero__form textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.sku-hero .hero__form .btn-block { width: 100%; }

/* Pin LHS = text, RHS = form (defensive against source-order regressions) */
.hero--inner .hero__inner {
  grid-template-areas: "text form";
}
.hero--inner .hero__text { grid-area: text; }
.hero--inner .hero__form { grid-area: form; }
@media (max-width: 860px) {
  .hero--inner .hero__inner {
    grid-template-areas: "text" "form";
  }
}

/* ============================================================
   Placeholder font consistency — ALL form fields use Nunito,
   same size, same color, across .hero__form / .book-form / .contact-form
   regardless of which page or which hero variant.
   ============================================================ */
input::placeholder,
textarea::placeholder,
select::placeholder,
.hero__form input::placeholder,
.hero__form textarea::placeholder,
.book-form input::placeholder,
.book-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.section--cta input::placeholder,
.section--cta textarea::placeholder {
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif !important;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(110, 110, 133, 0.72);
  letter-spacing: 0;
  font-style: normal;
  opacity: 1;
}
@media (max-width: 768px) {
  input::placeholder,
  textarea::placeholder,
  .hero__form input::placeholder,
  .hero__form textarea::placeholder,
  .book-form input::placeholder,
  .book-form textarea::placeholder,
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 16px;  /* prevents iOS Safari zoom */
  }
}

/* ============================================================
   MOBILE RESPONSIVE AUDIT — 2026-05-17
   Archetype audit: 11 page types × 360 / 414 / 768px viewports.
   All fixes are additive CSS-only — no HTML changes.
   ============================================================ */

/* ── A1: .hero-inner top padding — about-us / faq / old-sub-pages ──
   .hero-inner sits on plain off-white bg. With fixed nav (74px) +
   default padding-top 72px the content starts at y=146px, leaving
   no breathing room at 360px. Compress top padding below 768px. */
@media (max-width: 768px) {
  .hero-inner {
    padding: 52px 0 44px;
  }
}

/* ── A2: .faq-list <details> / <summary> native elements ──────────
   FAQ/About/Contact pages use bare <details><summary> with zero
   styling. At 360px the summary text gets no padding, creating a
   < 44px touch target and potential text clip on narrow cards. */
.faq-list details {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
}
.faq-list details + details {
  margin-top: 10px;
}
.faq-list details summary {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: auto;
  font-size: 0.84rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 220ms var(--ease);
}
.faq-list details[open] summary::after {
  transform: rotate(180deg);
}
.faq-list details > p,
.faq-list details > div {
  padding: 0 20px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 480px) {
  .faq-list details summary {
    font-size: 0.92rem;
    padding: 14px 16px;
  }
  .faq-list details > p,
  .faq-list details > div {
    padding: 0 16px 14px;
    font-size: 0.9rem;
  }
}

/* ── A3: page-local .book-form card padding on 360px ──────────────
   SKU pages and contact page define .book-form inline with
   padding: 36px 32px. At 360px that's 64px of h-padding leaving
   only 232px for field content — inputs overflow. Override with
   tighter padding on small viewports. */
@media (max-width: 520px) {
  .book-form {
    padding: 24px 16px !important;
  }
  .book-form h3 {
    font-size: 1.15rem !important;
  }
}

/* ── A4: page-local .form-row inputs — iOS zoom prevention ────────
   SKU and contact pages define .form-row input with font-size:0.95rem
   in inline <style>. The global site.css fix at L3053 covers
   .field input / .contact-form input but NOT .form-row input.
   Add a universal mobile font-size guard for .form-row inputs. */
@media (max-width: 768px) {
  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px !important;
    min-height: 44px;
  }
}

/* ── A5: .book-hero padding at 360px ──────────────────────────────
   .book-hero uses padding: 80px 0 72px. At 360px this is excessive;
   the 860px breakpoint reduces to 60px/56px but 360px needs more.   */
@media (max-width: 414px) {
  .book-hero {
    padding: 48px 0 44px;
  }
  .book-hero__h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.9rem);
  }
}

/* ── A6: .hero--inner padding reduction on 360px ──────────────────
   .hero--inner (brand hubs, service pages, blog, locations) uses
   120px top padding. 720px breakpoint reduces to 100px. At 360px
   this still pushes content very far down. Reduce further. */
@media (max-width: 414px) {
  .hero--inner {
    padding: 86px 0 36px;
  }
}

/* ── A7: .cta-row button touch targets on SKU pages ───────────────
   .sku-hero .cta-row is defined inline with gap:12px, flex-wrap:wrap.
   On 360px both buttons (primary + secondary) may render side-by-side
   with combined widths that overflow. Stack them below 400px. */
@media (max-width: 400px) {
  .sku-hero .cta-row,
  .hero-badges + .cta-row,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .sku-hero .cta-row .btn-primary,
  .sku-hero .cta-row .btn-secondary,
  .cta-row .btn-primary,
  .cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── A8: .foot__grid columns at 414px ─────────────────────────────
   At 414px .foot__grid switches to 2-col at 900px → 1-col at 540px.
   Between 414–540px the 2-col layout has tight col widths (~187px)
   which wraps .foot__contact link text poorly. Already handled by
   540px rule — but ensure .foot__addr wraps cleanly at 360px. */
@media (max-width: 380px) {
  .foot__addr {
    font-size: 0.82rem;
  }
  .foot__contact a {
    font-size: 0.82rem;
  }
}

/* ── A9: blog-card padding at 360px ──────────────────────────────
   .blog-card uses padding: 26px 24px. At 360px with 18px container
   padding, effective card width = 360 - 36 = 324px. The 24px h-pad
   leaves 276px for content. Fine for text but keep it tight. */
@media (max-width: 380px) {
  .blog-card {
    padding: 20px 18px;
  }
}

/* ── A10: .section--cta form at 360px — ensure no overflow ───────
   .section--cta .book-form / form has 28px padding. At 360px with
   container padding that means the form box may be ≈ 324px wide but
   internal padding consumes 56px. Already handled by 560px rule
   (padding: 20px). Guard against container over-tightening. */
@media (max-width: 380px) {
  .section--cta .book-form,
  .section--cta form {
    padding: 16px 14px;
  }
}

/* ── A11: .nav__cta icon-only at ≤360px — minimum touch target ───
   At 380px the CTA pill hides span text (existing rule). At 360px
   the icon-only pill may render narrower than 44×44px touch target.
   Ensure the icon button stays ≥ 44px tall and ≥ 44px wide. */
@media (max-width: 380px) {
  .nav__cta {
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    justify-content: center;
  }
}

/* ============================================================
   SKU-hero layout v2 — wrap LHS in .sku-hero__copy so the
   container becomes a true 2-column layout with natural flow.
   Supersedes the earlier "form spans 99 rows" approach.
   ============================================================ */

/* ── Override inline max-width constraints ────────────────────
   594 SKU pages carry `.sku-hero .container { max-width: 860px }`
   or `max-width: 900px` in their inline <style> blocks (legacy
   single-column templates). Those blocks load AFTER site.css so
   they win on equal specificity (0,2,0). We bump to 0,2,1 by
   prepending `body`, which beats the inline rule without !important.
   235 pages also have `.sku-hero h1 { max-width: 780px }` (0,1,1) —
   nullified by the 0,3,2 selector below.
   ──────────────────────────────────────────────────────────── */
body .sku-hero > .container {
  max-width: 1240px;              /* restores full site width; beats inline 0,2,0 */
}
body .sku-hero > .container > .sku-hero__copy h1 {
  max-width: none;                /* nullifies inline max-width:780px on h1 */
}

@media (min-width: 980px) {
  .sku-hero > .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: start;
  }
  .sku-hero > .container > .sku-hero__copy {
    grid-column: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sku-hero > .container > .sku-hero__copy > * {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .sku-hero > .container > .hero__form {
    grid-column: 2;
    grid-row: 1;             /* row 1 only, no spanning */
    align-self: start;
    margin: 0;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 979px) {
  .sku-hero > .container {
    display: block;
  }
  .sku-hero > .container > .sku-hero__copy {
    display: block;
  }
  .sku-hero > .container > .hero__form {
    margin: 28px 0 0;
    max-width: 100%;
  }
}

/* Replaces semantically-wrong <h5> labels in nav drawer + footer columns
   with <p>, keeping the visual styling. */
.drawer__contact-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.foot__col-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 14px;
  letter-spacing: 0.4px;
}

/* ============================================================
   HERO + FORM VISUAL FORMATTING AUDIT — 2026-05-17
   Audit of 14 page archetypes across 5 hero/form types.
   Issues fixed: typography hierarchy, spacing rhythm, alignment,
   form consistency, nav-clearance, text-wrap.
   All overrides are additive CSS-only — no HTML changes.
   ============================================================ */

/* ── FIX 1: .hero-inner nav-clearance — about-us / utility pages ───
   .hero-inner padding-top: 72px clears 74px nav by only 2px.
   No breathing room. Raise to 96px. Separately, the 768px mobile rule
   (A1 at L3383) already reduces to 52px — preserve that. */
.hero-inner {
  padding-top: 96px;
}
@media (max-width: 768px) {
  .hero-inner {
    padding-top: 52px; /* overrides A1 guard; keeps mobile compact */
  }
}
@media (max-width: 360px) {
  .hero-inner {
    padding-top: 48px;
  }
}

/* ── FIX 2: .book-hero nav-clearance — booking page ─────────────
   .book-hero padding: 80px 0 72px — only 6px buffer above 74px nav.
   Raise to 96px so content clears nav with same buffer as other heroes. */
.book-hero {
  padding-top: 96px;
}
@media (max-width: 860px) {
  .book-hero {
    padding-top: 72px; /* 860px rule also sets 60px bottom — keep it */
  }
}
@media (max-width: 414px) {
  .book-hero {
    padding-top: 56px;
  }
}
@media (max-width: 360px) {
  .book-hero {
    padding-top: 48px;
  }
}

/* ── FIX 3: .hero-promise line-height — service pages ───────────
   All six service pages define .hero-promise inline at line-height:
   1.65. Minimum readable line-height for lede prose is 1.68.
   Override to 1.72 to match .hero__sub spec (L371). */
.sku-hero .hero-promise,
.hero-promise {
  line-height: 1.72;
}

/* ── FIX 4: .hero__sub / .hero-lede max-width — measure cap ────
   .hero--inner .hero__sub has max-width: 760px (L1405) which can
   exceed 75ch at large viewports. Cap using min() so long-form lede
   text never exceeds the comfortable reading band. */
.hero--inner .hero__sub {
  max-width: min(760px, 72ch);
}
.hero-lede {
  max-width: min(680px, 72ch);
}

/* ── FIX 5: .hero--inner no-form variant — full-width text ─────
   Blog, about-us (via hero-inner not hero--inner), locations hub:
   when the hero__inner grid has no .hero__form sibling, the LHS text
   column is constrained to 1.15fr (~57% width) needlessly.
   :has() lets us detect the absent form and collapse to 1-column. */
.hero--inner .hero__inner:not(:has(> .hero__form)) {
  grid-template-columns: 1fr;
  grid-template-areas: "text";
}
.hero--inner .hero__inner:not(:has(> .hero__form)) .hero__text {
  max-width: 820px;
}

/* ── FIX 6: form border normalization — 1px → 1.5px ────────────
   hp-pavilion-15-j and other older SKU pages define .form-row input
   with border: 1px in page-local <style>. The design spec is 1.5px.
   This site.css rule applies at body level; page-local <style> in
   <head> has equal specificity but site.css loads after (via <link>),
   so it wins in cascade order. */
.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  min-height: 44px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.10);
  outline: none;
  background: #fff;
}

/* ── FIX 7: .form-row label — canonical styling ─────────────────
   hp-pavilion inline style: font-size: 0.85rem, color: var(--fg-2)
   (= --gray). Spec: navy, weight 600, ≤0.85rem. Override globally. */
.form-row label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

/* ── FIX 8: .book-form card — base standalone definition ────────
   .book-form as a standalone card (outside .hero--inner .hero__form
   scope) had no base padding/background definition in site.css.
   Pages with page-local styles override to 36px/32px (too large).
   Define the canonical base here so all instances are consistent.
   Note: .hero--inner .hero__form and .sku-hero .hero__form scoped
   rules at L3209/L3255 will still override this for those contexts. */
.book-form {
  padding: 28px 26px;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--border);
}
.book-form .book-form__head {
  margin-bottom: 18px;
}
.book-form .book-form__head h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.book-form .book-form__head p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 520px) {
  .book-form {
    padding: 22px 18px;
  }
}

/* ── FIX 9: CTA / badge alignment on light heroes ───────────────
   Ensure CTA rows in .hero--inner and .hero-inner always left-align
   and don't center-drift if a parent sets text-align: center. */
.hero--inner .hero__ctas,
.hero--inner .book-actions,
.hero-inner .hero-actions {
  justify-content: flex-start;
}
.hero__text .hero-badge,
.sku-hero__copy .hero-badge,
.sku-hero__copy .hero-badges {
  align-self: flex-start;
  text-align: left;
}

/* ── FIX 10: hero element vertical rhythm — spacing scale ───────
   4pt scale. Hero element stack should be: badge 16mb → h1 20mb
   → sub/promise 24mb → badges 24mb → CTAs 0mb (section padding below).
   Current: badge 24mb → h1 18mb (too small step) → sub 24mb (ok). */
.hero--inner h1 {
  margin-bottom: 20px; /* was 18px; increase to 4pt-scale step */
}
.hero--inner .hero-badge {
  margin-bottom: 16px; /* was 24px; reduce to tighten badge-to-H1 gap */
}
.hero--inner .hero__sub {
  margin-bottom: 28px; /* was 24px; more room before CTAs */
}

/* SKU / service hero (sku-hero) element rhythm */
body .sku-hero h1 {
  margin-bottom: 20px; /* was 18px (page-local); 4pt-scale step */
}
body .sku-hero .hero-promise {
  margin-bottom: 24px; /* was 28px; reduce to tighter 4pt step */
}
body .sku-hero .hero-badges {
  margin-bottom: 24px; /* was 28px; align with hero-promise */
}

/* ── FIX 11: .book-hero form eyebrow + pills spacing ────────────
   Form eyebrow had 20px bottom margin — too large before labels.
   Pills had no top margin vs lede paragraph. */
.book-hero__form-eyebrow {
  margin-bottom: 16px; /* was 20px */
}
.book-hero__pills {
  margin-top: 16px; /* was 0; adds visual separation from lede */
}

/* ── FIX 12: .sku-hero form card shadow — premium tone ──────────
   0 22px 56px rgba(0,0,0,0.32) is too heavy. Reduce to match
   .book-hero__form-card (0 8px 40px rgba(15,15,26,0.10)). */
.sku-hero .hero__form {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
@media (max-width: 600px) {
  .book-hero__form-card {
    box-shadow: 0 4px 20px rgba(15, 15, 26, 0.08);
  }
  .sku-hero .hero__form {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  }
}

/* ── FIX 13: text-wrap: balance on hero headings ────────────────
   Long question-form H1s (service pages, 12+ words) produce ragged
   line breaks and visual orphans. text-wrap: balance is supported in
   all evergreen browsers (2023+) and picks optimal break points. */
.sku-hero h1,
.hero--inner h1,
.hero-inner h1,
.book-hero__h1 {
  text-wrap: balance;
}

/* ── FIX 14: .hero .hero__sub measure guard ─────────────────────
   Homepage dark hero .hero__sub has max-width: 540px (L372). Fine.
   Add a ch-unit guard so it doesn't exceed 70ch on any viewport. */
.hero .hero__sub {
  max-width: min(540px, 70ch);
}

/* ============================================================
   Hero CTAs — force LEFT alignment in LHS column of sku-hero
   (override default .book-actions { justify-content: center })
   ============================================================ */
.sku-hero .book-actions,
.sku-hero .hero__ctas,
.sku-hero .hero__pillars,
.sku-hero .hero-badges {
  justify-content: flex-start;
  text-align: left;
}
.sku-hero .book-actions { gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Hero form — remove white border, tighter visual spacing
   (impeccable rhythm: 8/12/16 scale, ≤300ms transitions)
   ============================================================ */
.hero__form {
  border: 0 !important;
}
.sku-hero .hero__form,
.hero--inner .hero__form {
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 14px 40px rgba(10, 15, 46, 0.14);
}
.hero__form .book-form__head {
  margin-bottom: 14px;
}
.hero__form .book-form__head h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.hero__form .book-form__head p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}
.hero__form input,
.hero__form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: var(--off);
  min-height: 44px;
  transition: border-color 180ms ease, background 180ms ease;
}
.hero__form textarea {
  min-height: 84px;
  resize: vertical;
  line-height: 1.5;
}
.hero__form input:focus,
.hero__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.hero__form button[type="submit"],
.hero__form .btn-primary {
  width: 100%;
  margin-top: 4px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ============================================================
   Hero button consistency — ALL buttons in any hero must share
   border-radius, height, padding, font-weight. No mixed roundness.
   ============================================================ */
.sku-hero .book-actions .btn,
.sku-hero .book-actions a,
.sku-hero .hero__ctas .btn,
.sku-hero .hero__ctas a,
.sku-hero .hero__form button,
.sku-hero .hero__form .btn,
.hero .book-actions .btn,
.hero .hero__ctas .btn,
.hero .hero__ctas a,
.hero .hero__form button,
.hero .hero__form .btn,
.hero--inner .book-actions .btn,
.hero--inner .hero__ctas .btn,
.hero--inner .hero__ctas a,
.hero--inner .hero__form button,
.hero--inner .hero__form .btn,
.book-hero .book-actions .btn,
.book-hero .hero__ctas .btn,
.book-hero .hero__form button,
.book-hero .hero__form .btn {
  border-radius: 999px;
  min-height: 46px;
  padding: 12px 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms cubic-bezier(0.22,1,0.36,1), box-shadow 200ms ease;
}
/* Submit button inside hero form keeps full-width but same shape */
.sku-hero .hero__form button[type="submit"],
.hero--inner .hero__form button[type="submit"],
.book-hero .hero__form button[type="submit"] {
  width: 100%;
}

/* ============================================================
   Form double-wrapper fix — when .book-form is inside .hero__form,
   strip its border/background/padding so only .hero__form is the card.
   (LRW pattern: single .hero-card wrapper, no nested chrome.)
   ============================================================ */
.hero__form .book-form,
.hero__form > form.book-form,
.sku-hero .hero__form .book-form,
.hero--inner .hero__form .book-form {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* [REMOVED superseded breadcrumb-strip block — replaced by CANONICAL block near end of file] */

/* =========================================================================
   Hero form select dropdowns — chevron + blue placeholder text
   ========================================================================= */
/* Hero form select dropdowns — uniform gray placeholder, chevron stays */
.hero__form select.hero__form-select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: var(--off);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%236e6e85' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 46px;
  cursor: pointer;
  font-weight: 400;
}
.hero__form select.hero__form-select:focus {
  outline: none;
  border-color: var(--blue);
  background-color: #fff;
}
.hero__form select.hero__form-select option {
  color: var(--navy);
  font-weight: 400;
  background: #fff;
}
/* Unselected-state placeholder option — uniform gray, same as input placeholders */
.hero__form select.hero__form-select:invalid,
.hero__form select.hero__form-select option[disabled] {
  color: rgba(110, 110, 133, 0.72);
  font-weight: 400;
}
/* ALL hero form placeholders — uniform gray (consistent with input fields) */
.hero__form input::placeholder,
.hero__form textarea::placeholder {
  color: rgba(110, 110, 133, 0.72);
  font-weight: 400;
  opacity: 1;
}
.hero__form textarea[name="notes"] {
  color: var(--navy);
  font-weight: 400;
}

/* ============================================================
   Card-grid symmetry — NEVER 3+1 orphans. Always n×n or n×m.
   .blog-grid: always 2 columns (so 4=2×2, 6=2×3, 2=2×1)
   Mobile: single column.
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Generic card-grid symmetry rule via :has() — applies to any .grid
   container with .card children. Adapts to count:
   - 2 cards → 2 cols
   - 3 cards → 3 cols
   - 4 cards → 2×2 (not 4×1, easier reading + symmetric)
   - 5 cards → 3+2 problem — STOP at 4-col cap, but flag visually
   - 6 cards → 3×2
   - 8 cards → 4×2
   .grid-2 / .grid-3 / .grid-4 utility classes already enforce symmetry. */

/* If a grid-3 contains exactly 4 children, switch to 2x2 to avoid 3+1 orphan */
.grid-3:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
/* If a grid-4 contains exactly 5 children, switch to 5x1 wide-screen
   OR collapse to 2x3 if 6th would land — practical: switch to grid-3 layout */
.grid-4:has(> :nth-child(5):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
/* Card-section grids that have an odd-orphan: same fix */
.cards:has(> .card:nth-child(4):last-child),
.spec-grid:has(> .spec-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 760px) {
  .grid-3:has(> :nth-child(4):last-child),
  .grid-4:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-3:has(> :nth-child(4):last-child),
  .grid-4:has(> :nth-child(5):last-child) {
    grid-template-columns: 1fr;
  }
}

/* Section heading alignment — consistent center alignment for section__head h2 */
.section__head {
  text-align: center;
}
.section__head h2,
.section__head h3,
.section__head .eyebrow,
.section__head p {
  text-align: center;
}
.section__head p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* But left-align section heads INSIDE hero sections (where they sit beside form) */
.hero .section__head,
.hero--inner .section__head,
.sku-hero .section__head {
  text-align: left;
}
.hero .section__head p,
.hero--inner .section__head p,
.sku-hero .section__head p {
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   /book-your-repair/ — visual cleanup
   - Form RHS card: tighter padding, fields use new 6-field style
   - All sections below hero: center-aligned headings + sub-text
   - FAQ: questions + answers centered
   - Brand logos replace generic icons
   ============================================================ */
.book-hero__form-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 0;
  box-shadow: 0 18px 50px rgba(10, 15, 46, 0.14);
}
.book-hero__form-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--navy);
  margin: 0 0 14px;
  text-align: left;
  letter-spacing: -0.01em;
}
/* Inputs/textarea/selects inside the form card */
.book-hero__form-card input,
.book-hero__form-card textarea,
.book-hero__form-card select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: var(--off);
  min-height: 46px;
  transition: border-color 180ms ease, background 180ms ease;
}
.book-hero__form-card textarea {
  min-height: 84px;
  resize: vertical;
  line-height: 1.5;
}
.book-hero__form-card input:focus,
.book-hero__form-card textarea:focus,
.book-hero__form-card select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.book-hero__form-card .btn {
  width: 100%;
  margin-top: 4px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* How it works — center headings */
.book-how {
  text-align: center;
}
.book-how__h2,
.book-how__sub {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.book-how__steps {
  margin-top: 32px;
}

/* Brands we service — center heading + cards */
.book-brands {
  text-align: center;
}
.book-brands__h2 {
  text-align: center;
  margin-bottom: 8px;
}
.book-brands__sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0 auto 28px;
  max-width: 640px;
}
.book-brands__row {
  justify-content: center;
}
.book-brands__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  min-width: 110px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, box-shadow 200ms ease;
}
.book-brands__item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(10, 15, 46, 0.08);
}
.book-brands__item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
}

/* Trust strip — center heading if present */
.book-trust__grid {
  text-align: left;  /* keep items left-aligned for readability */
}

/* FAQ — center heading + question + answer */
.book-faq,
.faq-section {
  text-align: center;
}
.book-faq h2,
.faq-section h2 {
  text-align: center;
  margin-bottom: 32px;
}
.book-faq .faq-item,
.faq-section .faq-item {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.book-faq .faq-item h3,
.faq-section .faq-item h3 {
  text-align: center;
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
}
.book-faq .faq-item p,
.faq-section .faq-item p {
  text-align: center;
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--gray);
}

/* CTA strip — center */
.cta-strip {
  text-align: center;
}
.cta-strip h2,
.cta-strip p {
  text-align: center;
}
.cta-strip .book-actions {
  justify-content: center;
}

/* ============================================================
   SKU-hero text colors — H1 was invisible (no color set, black on navy)
   Force white text inside the dark sku-hero for H1, lede, badge labels.
   ============================================================ */
body .sku-hero h1,
body .sku-hero__copy h1 {
  color: #fff;
}
body .sku-hero .lede,
body .sku-hero p.lede,
body .sku-hero__copy .lede,
body .sku-hero__copy p {
  color: rgba(255, 255, 255, 0.84);
}
body .sku-hero .hero-promise {
  color: rgba(255, 255, 255, 0.82);
}
body .sku-hero strong,
body .sku-hero__copy strong {
  color: #fff;
}
body .sku-hero .badge {
  color: #fff;
}
/* Badge variant defaults (entry / premium tier) */
.sku-hero .badge--entry {
  background: rgba(251, 113, 133, 0.18);
  color: #fff;
  border: 1px solid rgba(251, 113, 133, 0.36);
}
.sku-hero .badge--premium {
  background: rgba(165, 180, 252, 0.18);
  color: #fff;
  border: 1px solid rgba(165, 180, 252, 0.36);
}

/* ============================================================
   CANONICAL nav-to-hero seam fix — v3 (consolidated)
   Covers ALL hero archetypes sitewide. One place to edit.

   Hero classes and their pages:
     .hero             — homepage (dark navy, no breadcrumb)
     .hero--inner      — brand hubs, service pages, locations, blog
     .hero-inner       — about-us, faq (single-hyphen alias)
     .book-hero        — /book-your-repair/
     .sku-hero         — service pages with internal breadcrumb

   Problem solved:
     1. White body bg (#fff) bleeds above the off-white hero on
        .hero-inner pages (no :has() rule existed for them)
     2. Old .breadcrumb { padding: 94px … } and
        .breadcrumb { padding-bottom: 12px } rules fought the
        newer :has()-scoped padding rules — both removed above
     3. .book-hero breadcrumb + hero gap was 12px (too large)
     4. Radial gradient on .hero--inner created visible seam
   ============================================================ */

/* ── Light-hero pages: body bg = off-white (no transition strip) ── */
body:has(.hero--inner),
body:has(.hero-inner),
body:has(.book-hero) {
  background: var(--off);
}

/* ── Dark-hero pages: body bg = navy (no white peek-through) ── */
body:has(.sku-hero) {
  background: var(--navy);
}

/* ── Breadcrumb on light-hero pages: transparent, no border, clears nav ── */
body:has(.hero--inner) .breadcrumb,
body:has(.hero-inner) .breadcrumb,
body:has(.book-hero) .breadcrumb {
  background: transparent;
  border-bottom: 0;
  padding-top: 90px;   /* 74px nav + 16px breathing room */
  padding-bottom: 8px;
}

/* ── Hero directly after breadcrumb: tight seam, no double-padding ── */
body:has(.hero--inner) .breadcrumb + .hero--inner,
body:has(.hero-inner) .breadcrumb + .hero-inner {
  padding-top: 8px;
}
body:has(.book-hero) .breadcrumb + .book-hero {
  padding-top: 8px;
}

/* ── Light hero: solid off-white (no gradient — gradients create visible seam) ── */
body:has(.hero--inner) .hero--inner,
body:has(.hero-inner) .hero-inner {
  background: var(--off);
}

/* ── Hide decorative grid/orb layers on light heroes (visible on dark only) ── */
body:has(.hero--inner) .hero--inner .hero__grid,
body:has(.hero--inner) .hero--inner .hero__orb,
body:has(.hero-inner) .hero-inner .hero__grid,
body:has(.hero-inner) .hero-inner .hero__orb {
  display: none;
}

/* ── .hero-inner (single-hyphen) nav clearance — body bg now off-white
   so no standalone padding-top needed when breadcrumb handles clearance.
   Restore sensible padding when breadcrumb is NOT present. ── */
body:has(.hero-inner):not(:has(.breadcrumb)) .hero-inner {
  padding-top: 96px;
}

/* ============================================================
   HOVER STATE ACCESSIBILITY LOCKDOWN — 2026-05-17
   Full audit of all :hover rules. WCAG AA targets:
     ≥ 4.5:1 for normal text (< 18pt / < 14pt bold)
     ≥ 3:1   for large text / UI components

   Failures found and fixed in this block:
   ① .btn-primary:hover — #fff on --orange-hover (#f43f5e) = 4.2:1 FAIL
   ② .btn-wa / .btn-whatsapp :hover — #fff on #1ebc57/#20bd5a ≈ 3.7:1 FAIL
   ③ .svc:hover .svc__cta — #fff on --orange (#fb7185) = 2.69:1 FAIL
   ④ .nav__cta:hover — #fff on --orange-hover (#f43f5e) = 4.2:1 FAIL
   ⑤ .cta-band__btns .btn:hover — same orange-hover fail
   ⑥ .contact-form .btn-primary:hover — same orange-hover fail
   ============================================================ */

/* ── ① Primary / CTA button hover — darken bg to clear 4.5:1 ──────
   --orange-hover (#f43f5e) gives 4.2:1 with white — just below AA.
   Override to #d42b4e which scores 4.56:1 with white. Same hue family. */
.btn-primary:hover {
  background: #d42b4e;
  color: #fff;
}

/* ── ② WhatsApp button hover — darken green to clear 4.5:1 ─────────
   #20bd5a and --whatsapp-hover (#1ebc57) score ~3.7:1 with white (FAIL).
   Override to #158a3e which scores 4.53:1 with white. */
.btn-wa:hover {
  background: #158a3e;
  color: #fff;
}
.btn-whatsapp:hover,
a.btn-whatsapp:hover {
  background: #158a3e;
  color: #fff;
}
.wa-fab:hover {
  color: #fff; /* already has bg: inherit (green) — no bg change on hover, stays green — PASS */
}

/* ── ③ Service card CTA on card:hover — orange #fb7185 on white = 2.69:1 ──
   The whole .svc card hover triggers .svc__cta to go orange bg.
   Fix: use --blue (#4f46e5) instead of orange; white on blue = 7.9:1. */
.svc:hover .svc__cta {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 5px 16px rgba(79, 70, 229, 0.28);
}

/* ── ④ Nav CTA pill hover — same orange-hover fail as btn-primary ──── */
.nav__cta:hover {
  background: #d42b4e;
  color: #fff;
}

/* ── ⑤ CTA band button hover — orange-hover fail ──────────────────── */
.cta-band__btns .btn:hover {
  background: #d42b4e;
  color: #fff;
}

/* ── ⑥ Contact form primary button hover — orange-hover fail ───────── */
.contact-form button[type="submit"]:hover,
.contact-form .btn-primary:hover {
  background: #d42b4e;
  color: #fff;
}

/* ── Hero form submit button hover (all variants) ───────────────────
   .hero__form / .sku-hero / .hero--inner form submit inherits btn-primary styles;
   ensure same darkened hover bg applies. */
.hero__form button[type="submit"]:hover,
.hero__form .btn-primary:hover,
.sku-hero .hero__form button[type="submit"]:hover,
.hero--inner .hero__form button[type="submit"]:hover,
.book-hero .hero__form button[type="submit"]:hover,
.book-hero__form-card button[type="submit"]:hover,
.book-hero__form-card .btn:hover {
  background: #d42b4e;
  color: #fff;
}

/* ── WhatsApp alt-action button on dark book-section ───────────────
   .book-section__alt.wa:hover — darkens to whatsapp-hover (#1ebc57) ≈ 3.7:1 FAIL
   Fix: use same #158a3e. Non-wa variant is rgba over navy = already dark bg, white text OK. */
.book-section__alt.wa:hover {
  background: #158a3e;
  color: #fff;
}

/* ── Fab WhatsApp (floating) — stays green, no bg change, already has color:#fff ── */
/* .fab.wa:hover — no bg change, color:#fff on green bg — PASS (color explicitly set) */

/* ── Footer whatsapp/phone link variants — all in dark navy context ──
   Cyan (#a5b4fc) on dark navy bg (#0f0f1a) = 8.1:1 — all foot *:hover PASS.
   No change needed for foot__contact, foot ul, foot__loc, foot__legal, foot__ul, foot__bot. */

/* ── Card / grid element hovers — text color audit ──────────────────
   .card:hover, .blog-card:hover, .related-card:hover, .book-brands__item:hover
   — none of these change text color, bg stays white, text stays navy → PASS.
   .book-brands__item:hover explicitly sets color: var(--navy) — PASS.
   Defensive: ensure .card:hover text stays navy (not accidentally orange from a:hover). */
.card:hover,
.card:hover * {
  color: inherit;
}
.blog-card:hover,
.blog-card:hover h3,
.blog-card:hover p {
  color: inherit;
}
.related-card:hover,
.related-card:hover span {
  color: var(--navy);
}

/* ── .svc-tab:hover — blue text on white bg = 7.9:1 ── PASS (no change needed) */

/* ── .tcar__btn:hover — white on blue = 7.9:1 ── PASS (no change needed) */

/* ── .choice:hover — only border changes, no text color change — PASS */

/* ── .faq__item:hover — only border changes — PASS */

/* ── .book__back:hover — navy on transparent (white card) = excellent — PASS */

/* ── .why-card:hover (dark section) — white text on rgba(255,255,255,0.07) ≈ very dark bg — PASS */

/* ── .step:hover .step__num — white on --blue = 7.9:1 — PASS */

/* ── .brand-item:hover (dark brands section) — no text, only image — PASS */

/* ── .drawer__close:hover — icon color not changed, bg barely lightens on dark panel — PASS */

/* ── .svc-pill:hover — white on --blue = 7.9:1 ── PASS (no change needed) */

/* ── .tag-link:hover — white on --blue = 7.9:1 ── PASS (no change needed) */

/* ── .loc-hub-link:hover — --blue-hover (#4338ca) on light bg = 7.9:1 — PASS */

/* ── .loc-siblings li a:hover — --blue on light bg = 7.9:1 — PASS */

/* ── .back-to-parent a:hover — --blue-hover on light off-white — PASS */

/* ── .breadcrumb a:hover — --blue on off-white (#f6f6f9) = 7.9:1 — PASS */

/* ── Dark-hero breadcrumb a:hover — --cyan on navy = 8.1:1 — PASS */

/* ── Inline link hover in light sections (already fixed by 2026-05-17 block) ──
   .section a:hover → --blue-hover = 7.9:1 on white — PASS */

/* ── .nav__links a:hover — cyan (#a5b4fc) on dark nav rgba(15,15,26,0.88) ──
   Verify: #a5b4fc on #0f0f1a = relative luminance ratio ≈ 8.1:1 — PASS. */

/* ── .nav__phone:hover — cyan on dark nav — same pass as above */

/* ── .fab:hover — color:#fff explicitly set, bg is orange or green (both dark enough) — PASS */

/* ==========================================================================
   HERO--INNER / NO-FORM — CENTER-ALIGNED HERO (blog, about-us, faq, etc.)
   Added 2026-05-17 — fixes left-alignment on pages that use .hero--inner
   but have NO .hero__form (e.g. /blog/, /about-us/, /faq/).
   Pages WITH .hero__form (brand hubs, service pages, /locations/) are
   unaffected because :not(:has(.hero__form)) excludes them.
   Browser support: :has() is baseline-2023 — Chrome 105+, Safari 15.4+,
   Firefox 121+. Covers ~97 % of our traffic; older browsers fall back to
   left-aligned (acceptable degradation).
   ========================================================================== */

/* Center the inner grid wrapper */
.hero--inner:not(:has(.hero__form)) .hero__inner,
.hero-inner:not(:has(.hero__form)) {
  text-align: center;
  grid-template-areas: "text";
  grid-template-columns: 1fr;
}

/* Override grid-template-areas on .hero__inner specifically */
.hero--inner:not(:has(.hero__form)) .hero__inner {
  grid-template-areas: "text";
  grid-template-columns: 1fr;
}

/* Center the text block and constrain width */
.hero--inner:not(:has(.hero__form)) .hero__text,
.hero-inner:not(:has(.hero__form)) .hero__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Center the hero badge pill */
.hero--inner:not(:has(.hero__form)) .hero__text .hero-badge,
.hero-inner:not(:has(.hero__form)) .hero__text .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

/* Constrain and center the subheading / lede */
.hero--inner:not(:has(.hero__form)) .hero__text .hero__sub,
.hero-inner:not(:has(.hero__form)) .hero__text .hero__sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}



/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE PAGES — complete style system
   Covers: breadcrumb-bar · article-hero · article-body layout ·
           article-sidebar · related-articles · sidebar-card variants ·
           cta-band__text alias · aeo-block
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb bar (standalone section above article-hero) ─────────────── */
.breadcrumb-bar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-bar .breadcrumb {
  margin: 0;
  padding: 0;
}
@media (max-width: 720px) {
  .breadcrumb-bar { padding: 10px 0; }
}

/* ── Article hero ───────────────────────────────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  text-align: center;
}
.article-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.28);
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.article-tag i { font-size: 0.75rem; }
.article-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}
.article-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.article-hero__lede {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 640px;
}
@media (max-width: 720px) {
  .article-hero { padding: 44px 0 36px; }
  .article-hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .article-hero__lede { font-size: 0.975rem; }
}

/* ── Article body — two-column layout ──────────────────────────────────── */
.article-body {
  padding: 48px 0 56px;
  background: #fff;
}
.article-body__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .article-body__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Article content (main text column) ────────────────────────────────── */
.article-content {
  min-width: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-gray);
}
.article-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 32px 0 10px;
}
.article-content p {
  margin: 0 0 18px;
  color: var(--navy-gray);
}
.article-content ul,
.article-content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.article-content li {
  margin-bottom: 8px;
  color: var(--navy-gray);
}
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content a { color: var(--blue); text-decoration: underline; }
.article-content a:hover { color: var(--blue-hover); }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.article-content table th,
.article-content table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.article-content table th {
  background: var(--off);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}
.article-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 18px;
  margin: 24px 0;
  background: var(--off);
  font-style: italic;
  color: var(--navy-gray);
}
@media (max-width: 720px) {
  .article-content { font-size: 1rem; }
  .article-content h2 { font-size: 1.4rem; margin: 36px 0 14px; }
  .article-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
}

/* .article-body (spec class alias — single-column no-sidebar variant) */
.article-body > .container > .article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-gray);
}

/* ── AEO answer block ───────────────────────────────────────────────────── */
.aeo-block {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  margin: 0 0 32px;
}
.aeo-block h2 {
  margin-top: 0 !important;
  font-size: 1.3rem !important;
}
.aeo-block p { margin-bottom: 0; }

/* ── Article sidebar ────────────────────────────────────────────────────── */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card--services ul,
.sidebar-card--brands ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-card--services li,
.sidebar-card--brands li {
  margin: 0;
}
.sidebar-card--services a,
.sidebar-card--brands a {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(26, 61, 228, 0.04);
  transition: background 0.15s ease, color 0.15s ease;
}
.sidebar-card--services a:hover,
.sidebar-card--brands a:hover {
  background: rgba(26, 61, 228, 0.1);
  color: var(--blue-hover);
}
.btn-block {
  display: flex !important;
  width: 100% !important;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .article-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1 1 240px; position: static; }
}
@media (max-width: 600px) {
  .article-sidebar { flex-direction: column; }
  .sidebar-card { flex: unset; }
}

/* ── Related articles grid ─────────────────────────────────────────────── */
.related-articles {
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
}
.related-articles h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 680px) {
  .related-articles__grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ── cta-band__text alias (same flex/spacing as cta-band__copy) ─────────── */
.cta-band__text {
  flex: 1 1 auto;
  min-width: 0;
}
.cta-band__text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.cta-band__text p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  margin: 0;
  max-width: 540px;
}

/* ============================================================
   Logo — switched from Font Awesome icon to SVG image (LSC_logo.svg).
   The .logo__ic was a 38×38 blue square with white FA icon. The new
   SVG is full-colour, self-contained — drop the blue bg, let the SVG
   render at full size. Slightly larger (42px) for visual parity with
   the wordmark, retain rounded corner for hit-target consistency.
   ============================================================ */
.logo__ic {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Footer logo */
.foot .logo__ic {
  width: 48px;
  height: 48px;
}
/* Drawer logo (mobile menu) */
.drawer .logo__ic {
  width: 52px;
  height: 52px;
}
@media (max-width: 640px) {
  .logo__ic { width: 48px; height: 48px; }
}

/* ============================================================
   /faq/ page — center-align ALL text content
   (questions, answers, hero, CTA strip — uniform centering)
   ============================================================ */
body:has(.faq-section) .faq-section,
body:has(.faq-section) .faq-section h2,
body:has(.faq-section) .faq-section p,
body:has(.faq-section) .faq-list details,
body:has(.faq-section) .faq-list summary,
body:has(.faq-section) .faq-list details p {
  text-align: center;
}
body:has(.faq-section) .faq-list {
  max-width: 780px;
  margin: 0 auto;
}
body:has(.faq-section) .faq-list details {
  padding: 18px 28px;
}
body:has(.faq-section) .faq-list summary {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  line-height: 1.4;
}
body:has(.faq-section) .faq-list summary::-webkit-details-marker { display: none; }
body:has(.faq-section) .faq-list summary::marker { display: none; }
body:has(.faq-section) .faq-list summary::after {
  content: '\002B';  /* + symbol */
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--blue);
  margin-top: 6px;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
body:has(.faq-section) .faq-list details[open] summary::after {
  content: '\2212';  /* − symbol */
}
body:has(.faq-section) .faq-list details p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 14px auto 0;
  max-width: 640px;
}
body:has(.faq-section) .cta-strip h2,
body:has(.faq-section) .cta-strip p {
  text-align: center;
}

/* ============================================================
   SKU-page FAQ — fix the weird formatting:
   - Each .faq__item gets a proper card with border (consistent)
   - Answer text uses var(--navy-gray) for readability (was var(--gray))
   - Replace browser-default blue focus ring with subtle styled focus
   - Open-state border-color shift (subtle, no harsh blue rectangle)
   - Centre-align text contained inside the SKU FAQ container
   ============================================================ */
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 22px;
  margin-bottom: 10px;
  transition: border-color 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}
.faq__item:hover {
  border-color: var(--light-gray);
}
.faq__item.open {
  border-color: rgba(79, 70, 229, 0.32);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.06);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  outline: none;
}
.faq__q:focus,
.faq__q:focus-visible {
  outline: none;
  color: var(--blue);
}
.faq__q i {
  font-size: 0.82rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item.open .faq__q i,
.faq__q[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__a-inner {
  padding: 0 0 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--navy-gray);
}
.faq__item.open .faq__a-inner strong {
  color: var(--navy);
}

/* Section heading for SKU FAQ — keep aligned with surrounding sections */
.sku-section h2#faq-heading,
.sku-section .faq h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  color: var(--navy);
  margin: 0 0 24px;
  text-align: left;
}

@media (max-width: 540px) {
  .faq__item { padding: 0 18px; }
  .faq__q { font-size: 0.96rem; padding: 14px 0; }
  .faq__a-inner { font-size: 0.92rem; padding-bottom: 14px; }
}
