/* =========================================================
   Lappytech Solutions — Design Tokens & Global Styles
   ========================================================= */

:root {
  /* Color — Trust navy/blue + urgency orange CTA (WCAG-checked) */
  --color-primary: #0F1B3D;        /* deep navy — header/dark surfaces */
  --color-primary-2: #16265A;      /* navy gradient partner */
  --color-brand: #2563EB;          /* trust blue — links, secondary accents */
  --color-brand-dark: #1D4ED8;
  --color-accent: #EA580C;         /* orange — primary CTA / urgency */
  --color-accent-dark: #C2410C;
  --color-accent-light: #FFF1E8;
  --color-star: #F59E0B;           /* rating gold */
  --color-success: #16A34A;
  --color-success-light: #ECFDF3;
  --color-destructive: #DC2626;

  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-fg: #0F172A;
  --color-muted-fg: #5B6B85;
  --color-muted-bg: #EEF2F9;
  --color-border: #E2E8F0;

  --color-on-primary: #FFFFFF;
  --color-on-accent: #FFFFFF;

  /* Typography */
  --font-heading: 'Lexend', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale (standard density) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radius / shadow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 27, 61, 0.06), 0 1px 3px rgba(15, 27, 61, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 27, 61, 0.08), 0 2px 4px rgba(15, 27, 61, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 27, 61, 0.12), 0 4px 8px rgba(15, 27, 61, 0.06);
  --shadow-glow: 0 8px 24px rgba(234, 88, 12, 0.28);

  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  color: var(--color-primary);
}
p { margin: 0 0 var(--space-4); }
input, textarea, select { font: inherit; }

/* Focus visibility — never remove */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (max-width: 640px) {
  .container { padding-inline: var(--space-4); }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: var(--space-4); }

section { padding-block: var(--space-9); }
@media (max-width: 768px) {
  section { padding-block: var(--space-7); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  background: #EAF0FF;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.eyebrow svg { width: 14px; height: 14px; }

.section-head {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-8);
}
.section-head h2 {
  font-size: clamp(30.5px, 4.4vw, 43.5px);
  letter-spacing: -0.01em;
}
.section-head p {
  color: var(--color-muted-fg);
  font-size: 19.5px;
  margin-bottom: 0;
}
.section-head.align-left { text-align: left; margin-inline: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: 0 10px 28px rgba(234,88,12,0.36); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-primary);
}
.btn-outline:hover { border-color: var(--color-brand); color: var(--color-brand-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 15.5px; min-height: 38px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
  transition: box-shadow 0.3s var(--ease), min-height 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
  min-height: 68px;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  color: var(--color-primary);
  min-width: 0;
  flex-shrink: 1;
}
.brand-logo-img {
  /* 4.759:1 — the artwork's true ratio, including the tagline. Do not set a
     height that crops or squashes it; the tagline is the bottom ~18%. */
  width: 219px;
  height: 46px;
  max-width: 42vw;
  height: auto;
  aspect-ratio: 219 / 46;
  display: block;
  flex-shrink: 0;
}
.header-actions { flex-shrink: 0; }
.footer-logo-img { width: 266px; height: auto; aspect-ratio: 266 / 56; max-width: 100%; display: block; }
.footer-logo-link { margin-bottom: var(--space-4); }

.main-nav { display: flex; align-items: center; gap: var(--space-6); }
.main-nav ul { display: flex; gap: var(--space-5); }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16.5px;
  color: var(--color-fg);
  padding: var(--space-2) 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--color-brand-dark); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
}
.header-call svg { width: 18px; height: 18px; color: var(--color-accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  color: var(--color-primary);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .main-nav ul { display: none; }
  .header-call span:not(.visually-hidden) { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .header-call { display: none; }
}
@media (max-width: 420px) {
  .header-actions { gap: var(--space-2); }
  .header-actions .btn-sm { padding: 10px 14px; font-size: 14.5px; }
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-primary);
  padding: calc(var(--header-h) + var(--space-6)) var(--space-5) var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav-panel.is-open { transform: translateX(0); }
.mobile-nav-panel ul { display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav-panel a {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav-panel .btn { margin-top: var(--space-6); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 85% -10%, #1B3A8F 0%, transparent 60%), linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-2) 60%, #0B1530 100%);
  padding-top: calc(var(--header-h) + var(--space-8));
  padding-bottom: var(--space-9);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badges-list { justify-content: center; }
  .hero-actions { justify-content: center; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}
.hero h1 {
  color: #fff;
  font-size: clamp(37px, 5.5vw, 61px);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #FDBA74, var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: clamp(18.5px, 2.2vw, 20.5px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: var(--space-6);
}
@media (max-width: 960px) { .hero .lede { margin-inline: auto; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.hero-badge svg { width: 20px; height: 20px; color: #4ADE80; flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,21,48,0.75) 100%);
}
.hero-float-card {
  position: absolute;
  background: var(--color-surface);
  color: var(--color-fg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4) var(--space-5);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-float-card.rating {
  top: var(--space-6);
  left: -18px;
}
.hero-float-card.warranty {
  bottom: var(--space-6);
  right: -18px;
}
@media (max-width: 960px) {
  .hero-float-card.rating { left: 4px; }
  .hero-float-card.warranty { right: 4px; }
}
@media (max-width: 480px) {
  .hero-float-card { padding: var(--space-3) var(--space-4); gap: var(--space-2); }
  .hero-float-card .fc-title { font-size: 14px; }
}
.hero-float-card .fc-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-card.rating .fc-icon { background: #FFF7E6; color: var(--color-star); }
.hero-float-card.warranty .fc-icon { background: var(--color-success-light); color: var(--color-success); }
.hero-float-card .fc-icon svg { width: 22px; height: 22px; }
.hero-float-card .fc-title { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; }
.hero-float-card .fc-sub { font-size: 13.5px; color: var(--color-muted-fg); }

/* =========================================================
   Trust bar / marquee under hero
   ========================================================= */
.trust-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 768px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
  text-align: left;
}
.trust-strip-item svg { width: 26px; height: 26px; color: var(--color-brand); flex-shrink: 0; }
.trust-strip-item strong { display: block; font-family: var(--font-heading); font-size: 16.5px; color: var(--color-primary); }
.trust-strip-item span { font-size: 14px; color: var(--color-muted-fg); }

/* =========================================================
   Trust cards section
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 960px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  text-align: left;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.trust-card .tc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #EAF0FF, #F5F8FF);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.trust-card .tc-icon svg { width: 26px; height: 26px; }
.trust-card h3 { font-size: 18.5px; margin-bottom: var(--space-2); }
.trust-card p { font-size: 16px; color: var(--color-muted-fg); margin-bottom: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stats-section {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-2));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  text-align: center;
  position: relative;
}
@media (max-width: 960px) { .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-7); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32.5px, 4.4vw, 48px);
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(90deg, #fff, #CFE0FF);
  -webkit-background-clip: text;
  background-clip: text;
}
.stat-item .stat-label {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* =========================================================
   Brands
   ========================================================= */
.brands-section { background: var(--color-surface); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}
@media (max-width: 860px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-muted-fg);
  background: var(--color-bg);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.brand-chip:hover { color: var(--color-primary); border-color: var(--color-brand); transform: translateY(-3px); background: #fff; }
.brands-disclaimer {
  text-align: center;
  font-size: 14px;
  color: var(--color-muted-fg);
  margin-top: var(--space-6);
  max-width: 640px;
  margin-inline: auto;
}

/* =========================================================
   Services
   ========================================================= */
.services-section { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card .sc-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.service-card .sc-icon svg { width: 27px; height: 27px; }
.service-card h3 { font-size: 19.5px; margin-bottom: var(--space-2); }
.service-card p { font-size: 16px; color: var(--color-muted-fg); flex-grow: 1; }
.service-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-brand-dark);
  margin-top: var(--space-3);
}
.service-card .sc-link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.service-card .sc-link:hover svg { transform: translateX(3px); }
.services-cta { text-align: center; margin-top: var(--space-7); }

/* =========================================================
   Why choose us — comparison
   ========================================================= */
.why-section { background: var(--color-surface); }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--color-bg);
}
.compare-table th, .compare-table td {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 16.5px;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--color-primary); }
.compare-table thead th {
  font-family: var(--font-heading);
  font-size: 16.5px;
  padding-block: var(--space-5);
}
.compare-table thead th.col-us {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.compare-table thead th.col-them { color: var(--color-muted-fg); }
.compare-table tbody td.col-us { background: #EEF3FF; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--color-success); }
.compare-table .no { color: #B0B8C6; }
.compare-table .yes svg, .compare-table .no svg { width: 22px; height: 22px; }

/* =========================================================
   Process timeline
   ========================================================= */
.process-section {
  background: var(--color-bg);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 34px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
@media (max-width: 960px) {
  .process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-7); }
  .process-timeline::before { display: none; }
}
@media (max-width: 560px) {
  .process-timeline { grid-template-columns: 1fr; }
}
.process-step { position: relative; text-align: center; z-index: 1; }
.process-step .ps-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-brand);
  color: var(--color-brand-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16.5px;
  box-shadow: var(--shadow-sm);
}
.process-step .ps-num svg { width: 28px; height: 28px; }
.process-step h3 { font-size: 17px; margin-bottom: var(--space-1); }
.process-step p { font-size: 14px; color: var(--color-muted-fg); margin-bottom: 0; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials-section { background: var(--color-surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 780px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.t-stars { display: flex; gap: 2px; color: var(--color-star); }
.t-stars svg { width: 17px; height: 17px; }
.t-google { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--color-muted-fg); font-weight: 600; }
.t-google svg { width: 16px; height: 16px; }
.testimonial-card blockquote {
  margin: 0 0 var(--space-5);
  font-size: 16.5px;
  color: var(--color-fg);
  line-height: 1.65;
  flex-grow: 1;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16.5px;
  flex-shrink: 0;
}
.t-name { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--color-primary); }
.t-city { font-size: 13.5px; color: var(--color-muted-fg); }

/* =========================================================
   Google reviews summary
   ========================================================= */
.google-summary {
  background: var(--color-bg);
}
.google-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.google-score { text-align: center; }
.google-score .score-num { font-family: var(--font-heading); font-weight: 700; font-size: 61px; color: var(--color-primary); line-height: 1; }
.google-score .t-stars { justify-content: center; margin: var(--space-2) 0; }
.google-score .t-stars svg { width: 20px; height: 20px; }
.google-score p { font-size: 14.5px; color: var(--color-muted-fg); margin: 0; }
.google-divider { width: 1px; align-self: stretch; background: var(--color-border); }
@media (max-width: 720px) { .google-divider { display: none; } }
.google-badges { display: flex; flex-direction: column; gap: var(--space-3); }
.google-badge-row { display: flex; align-items: center; gap: var(--space-3); font-size: 16px; color: var(--color-fg); }
.google-badge-row svg { width: 20px; height: 20px; color: var(--color-brand); flex-shrink: 0; }
.google-badge-row strong { color: var(--color-primary); }

/* =========================================================
   Before / after gallery
   ========================================================= */
.gallery-section { background: var(--color-surface); }
.ba-slider {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  user-select: none;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-label {
  position: absolute;
  top: var(--space-4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
}
.ba-label.before { left: var(--space-4); background: rgba(15,23,42,0.75); color: #fff; }
.ba-label.after { right: var(--space-4); background: var(--color-success); color: #fff; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-2px);
  z-index: 4;
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230F1B3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='8 7 3 12 8 17'%3E%3C/polyline%3E%3Cpolyline points='16 7 21 12 16 17'%3E%3C/polyline%3E%3C/svg%3E") center/22px no-repeat;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
}
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}
.gallery-caption {
  text-align: center;
  color: var(--color-muted-fg);
  font-size: 14.5px;
  margin-top: var(--space-4);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--color-bg); }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-5);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17.5px;
  color: var(--color-primary);
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-muted-bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color .3s var(--ease);
  color: var(--color-brand);
}
.faq-question .faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-question .faq-icon { transform: rotate(180deg); background: var(--color-brand); color: #fff; }
.faq-answer { padding: 0 var(--space-5) var(--space-5); color: var(--color-muted-fg); font-size: 16.5px; }
.faq-question::-webkit-details-marker { display: none; }
summary.faq-question { list-style: none; cursor: pointer; }
.faq-item > summary { cursor: pointer; }

/* =========================================================
   Contact
   ========================================================= */
.contact-section { background: var(--color-surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contact-card h3 { color: #fff; font-size: 24px; }
.contact-card > p { color: rgba(255,255,255,0.72); margin-bottom: var(--space-6); }
.contact-list { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-row { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-row .cr-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #FDBA74;
}
.contact-row .cr-icon svg { width: 21px; height: 21px; }
.contact-row .cr-label { font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-row .cr-value { font-family: var(--font-heading); font-weight: 600; font-size: 17px; }
.contact-row .cr-value a { transition: color 0.2s var(--ease); }
.contact-row .cr-value a:hover { color: #FDBA74; }
.contact-row .cr-value small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.contact-card .btn { margin-top: var(--space-7); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  min-height: 340px;
  height: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--color-accent), #F97316 60%, #FB923C);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(28.5px, 3.9vw, 39px); }
.cta-band p { color: #fff; font-size: 18.5px; max-width: 900px; margin-inline: auto; margin-bottom: var(--space-6); }
@media (max-width: 640px) {
  .cta-band p { max-width: 90%; }
}
.cta-band .btn-primary { background: #fff; color: var(--color-accent-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: #FFF7ED; transform: translateY(-1px); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.55); }
.cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0A1330;
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-8) var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: var(--space-4); }
.footer-brand p { font-size: 15.5px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a:hover { background: var(--color-brand); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: 16px; color: rgba(255,255,255,0.65); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.footer-badge {
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal-links { display: flex; gap: var(--space-5); }
.footer-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 900px;
  margin-top: var(--space-4);
  line-height: 1.6;
}

/* =========================================================
   Sticky mobile action bar
   ========================================================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(15,23,42,0.1);
  padding: var(--space-2) var(--space-3);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-sticky-bar { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: var(--space-2); }
  body { padding-bottom: 74px; }
}
.msb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-heading);
  min-height: 52px;
}
.msb-btn svg { width: 21px; height: 21px; }
.msb-btn.call { background: var(--color-muted-bg); color: var(--color-primary); }
.msb-btn.whatsapp { background: #E9FBEF; color: #15803D; }
.msb-btn.book { background: var(--color-accent); color: #fff; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Card elevation utility */
.elevate { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.elevate:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* =========================================================
   Sub-pages — breadcrumb, page hero, listing/hub grids
   ========================================================= */
.breadcrumb-bar {
  background: var(--color-muted-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 14px;
  margin-top: var(--header-h);
}
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list a { color: var(--color-muted-fg); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--color-brand-dark); }
.breadcrumb-list span[aria-current] { color: var(--color-primary); font-weight: 600; }
.breadcrumb-list span[aria-hidden] { color: var(--color-border); }

.page-hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-2) 60%, #0B1530 100%);
  color: #fff;
  padding-block: var(--space-8);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-7);
  align-items: center;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -0.01em; }
.page-hero .lede { color: rgba(255,255,255,0.82); font-size: 18px; margin-bottom: var(--space-6); }
.page-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4/3;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,21,48,0.55) 100%);
}
@media (max-width: 900px) {
  .page-hero .container { grid-template-columns: 1fr; text-align: center; }
  .page-hero .lede { margin-inline: auto; }
  .page-hero .hero-actions { justify-content: center; }
  .page-hero .hero-badges-list { justify-content: center; }
  .page-hero-media { display: none; }
}
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-6); }
.page-hero .hero-badges-list { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); }

.content-section h2 { font-size: clamp(24px, 3vw, 32px); }
.content-section .lede-text { font-size: 17px; color: var(--color-muted-fg); max-width: 760px; }

.chip-list { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); }
.model-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--color-muted-bg);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

.symptom-list, .point-list { display: flex; flex-direction: column; gap: var(--space-3); }
.symptom-list li, .point-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-size: 15.5px;
}
.symptom-list li svg, .point-list li svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.info-callout {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: #EAF0FF;
  border: 1px solid #C7D9FF;
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.info-callout svg { width: 24px; height: 24px; color: var(--color-brand-dark); flex-shrink: 0; }
.info-callout p { margin: 0; font-size: 15px; color: var(--color-fg); }
.info-callout strong { color: var(--color-primary); }

.mini-stat-row { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-block: var(--space-6); }
.mini-stat { display: flex; align-items: center; gap: var(--space-3); }
.mini-stat .ms-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-muted-bg);
  color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-stat .ms-icon svg { width: 22px; height: 22px; }
.mini-stat .ms-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-primary); }
.mini-stat .ms-sub { font-size: 13px; color: var(--color-muted-fg); }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 960px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hub-card .sc-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.hub-card .sc-icon svg { width: 27px; height: 27px; }
.hub-card .sc-link svg { width: 16px; height: 16px; }
.hub-card .sc-icon.sc-icon-logo {
  width: 76px; height: 76px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.hub-card .sc-icon.sc-icon-logo img { width: 48px; height: 48px; object-fit: contain; }
.hub-card h3 { font-size: 18px; margin-bottom: var(--space-2); }
.hub-card p { font-size: 14.5px; color: var(--color-muted-fg); flex-grow: 1; margin-bottom: var(--space-3); }

.related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
}
.related-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-primary);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.related-link-card:hover { border-color: var(--color-brand); transform: translateY(-2px); }
.related-link-card svg { width: 16px; height: 16px; color: var(--color-brand); flex-shrink: 0; }

.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content h2 { font-size: 22px; margin-top: var(--space-7); }
.legal-content p, .legal-content li { font-size: 15.5px; color: var(--color-muted-fg); line-height: 1.7; }
.legal-content ul { list-style: disc; padding-left: 1.4em; margin-bottom: var(--space-4); }
.legal-content ul li { margin-bottom: var(--space-2); }
.legal-updated { font-size: 13.5px; color: var(--color-muted-fg); margin-bottom: var(--space-6); }

/* Header phone CTA — replaces the old "Book Repair" button. The number is the
   conversion action for emergency repair searches, so it gets the primary
   button treatment. Below 640px .header-call is hidden, making this the only
   visible number in the header, so it must stay legible at small widths. */
.header-call-btn { display: inline-flex; align-items: center; gap: var(--space-2); white-space: nowrap; }
.header-call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 420px) {
  .header-call-btn { padding-inline: var(--space-3); font-size: 14px; }
  .header-call-btn svg { width: 15px; height: 15px; }
}

/* Brand logo tiles on the homepage brand grid. The generic accent-tinted
   circle is wrong for a real logo — the brand colours need a neutral surface
   to sit on, and the mark must letterbox rather than crop, since the six
   logos have very different aspect ratios. */
.service-card .sc-icon.sc-icon-logo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.service-card .sc-icon.sc-icon-logo img {
  width: 32px; height: 32px; object-fit: contain;
}

/* =========================================================
   Floating contact buttons (WhatsApp + Call)
   Hidden at <=768px because .mobile-sticky-bar already carries the same two
   actions there — running both would overlap and duplicate the CTA.
   ========================================================= */
.fab-stack {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 89;                      /* under .mobile-sticky-bar (90) */
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
}
/* Mobile keeps the sticky bar only — no floating buttons, so nothing overlaps
   it and the same two actions aren't offered twice on one screen. */
@media (max-width: 768px) { .fab-stack { display: none; } }

.fab {
  display: flex;
  align-items: center;
  gap: 0;
  height: 56px;
  width: 56px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .22);
  overflow: hidden;
  transition: width .22s ease, gap .22s ease, box-shadow .22s ease, transform .22s ease;
}
.fab svg { width: 26px; height: 26px; flex: 0 0 26px; margin-inline: 15px; }
.fab-whatsapp { background: #25D366; }   /* WhatsApp brand green */
.fab-call { background: var(--color-accent); }

/* Label slides open on hover/focus — collapsed by default so the buttons stay
   out of the way of content on smaller desktop widths. */
.fab-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: max-width .22s ease, opacity .18s ease, padding-right .22s ease;
  padding-right: 0;
}
.fab:hover, .fab:focus-visible {
  width: auto;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .3);
  transform: translateY(-2px);
}
.fab:hover .fab-label, .fab:focus-visible .fab-label {
  max-width: 160px;
  opacity: 1;
  padding-right: 20px;
}
.fab:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .fab, .fab-label { transition: none; }
  .fab:hover, .fab:focus-visible { transform: none; }
}

/* Address strip under the hero. Sits on every page so the NAP is high up and
   one tap from Google Maps — emergency searchers check location first. */
.address-bar {
  background: var(--color-primary);
  color: #fff;
  padding-block: var(--space-3);
}
.address-bar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #fff;
  text-decoration: none;
}
.address-bar-link:hover .address-bar-sub,
.address-bar-link:focus-visible .address-bar-sub { text-decoration: underline; }
.address-bar-link svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-accent); }
.address-bar-link strong { display: block; font-family: var(--font-heading); font-size: 15.5px; line-height: 1.35; }
.address-bar-sub { display: block; font-size: 13.5px; opacity: .82; margin-top: 2px; }
.address-bar-link:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
@media (max-width: 560px) {
  .address-bar-link strong { font-size: 14px; }
  .address-bar-sub { font-size: 12.5px; }
}

/* H3 subsections inside a long-form brand section. Indented rule keeps the
   H2 > H3 hierarchy legible without shrinking the type. */
.subsection-stack { max-width: 820px; display: grid; gap: var(--space-6); margin-top: var(--space-5); }
.subsection { border-left: 3px solid var(--color-border); padding-left: var(--space-5); }
.subsection h3 { font-size: 19px; margin-bottom: var(--space-2); color: var(--color-primary); }
.subsection p { margin-bottom: var(--space-3); }
.subsection .symptom-list { margin-block: var(--space-3); }

/* Owner-supplied local detail. Visually distinct from generated copy because
   it's the genuinely unique content on a sector page — worth surfacing. */
.local-note {
  display: flex;
  gap: var(--space-3);
  max-width: 760px;
  margin-block: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}
.local-note svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-accent); margin-top: 2px; }
.local-note p { margin: 0; font-size: 15.5px; line-height: 1.65; }
.local-note strong { color: var(--color-primary); }

/* =========================================================
   Long-form brand copy
   The global rhythm is section { padding-block: 96px }, which is right for
   distinct page sections but wrong here: a brand page runs 8-15 of these
   back to back, so every heading sat 192px from the previous block and 64px
   from its own first line. Treated as one continuous article instead.
   ========================================================= */
.prose-section { padding-block: var(--space-6) 0; }
.prose-section:last-of-type { padding-bottom: var(--space-7); }
.prose-section .section-head { margin-bottom: var(--space-4); max-width: 820px; }
.prose-section .lede-text { margin-bottom: var(--space-4); }
.prose-section p { max-width: 820px; }
.prose-section p + p { margin-top: var(--space-3); }

/* Bullet cards were sized for 3-5 symptoms; these lists run to 12+ items. */
.prose-section .symptom-list { gap: var(--space-2); }
.prose-section .symptom-list li { padding: var(--space-3) var(--space-4); font-size: 15px; }
.prose-section .symptom-list li svg { width: 18px; height: 18px; }

/* Closing paragraph sat flush against the last bullet. */
.prose-section .symptom-list + p,
.prose-section .subsection-stack + p { margin-top: var(--space-5); }
.prose-section .subsection-stack { margin-top: var(--space-4); gap: var(--space-5); }

/* Before / after pair. Replaces the drag slider: the two photographs are of
   different machines in different orientations, so an overlay comparison
   could never align. object-fit keeps both in a matching box without
   distorting either, and the aspect-ratio box means no layout shift. */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-item { position: relative; margin: 0; }
.ba-item picture { display: block; }
.ba-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: block;
}
.ba-tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  padding: 5px 12px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: #fff; letter-spacing: .02em;
}
.ba-tag.before { background: #B91C1C; }
.ba-tag.after { background: #15803D; }
.ba-item figcaption {
  margin-top: var(--space-3); font-size: 14.5px; color: var(--color-muted-fg);
}
