/* =========================================================================
   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__ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--blue);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.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: var(--gray);
  font-weight: 500;
}
.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__inner {
  display: block;
  text-align: left;
  max-width: 900px;
}
.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,
.section--cta .section__head p { 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;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.92); opacity: 0.42; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 1.55rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
}

/* ============================================================
   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
   ============================================================ */
.breadcrumb {
  padding: 94px 0 14px;
}

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

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

/* ============================================================
   .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(--border);
}
.hero--inner .btn-ghost:hover {
  background: var(--off);
  color: var(--navy);
  border-color: var(--blue);
}
.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 { color: var(--gray); }

/* .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 { color: var(--gray); }

/* .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+) */
}
