/* =========================================================
   BLUEPRINT PLUMBER DEMO - styles.css
   Each demo defines its own palette on top of the base tokens.
   Base tokens (cream/navy/orange) are available for the demo bar only.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Get Found Guy base tokens - used by demo bar */
  --gfg-navy: #1a2744;
  --gfg-orange: #f4622a;
  --gfg-cream: #faf7f2;

  /* Blueprint demo palette - technical, precise, navy + sharp blue */
  --ink: #0a1628;
  --ink2: #142238;
  --ink3: #1f3050;
  --paper: #ffffff;
  --paper2: #f7f9fc;
  --paper3: #eef2f8;
  --line: #dde4ee;
  --line2: #c5d0e0;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --accent-light: #eff6ff;
  --accent-mid: #dbeafe;
  --warn: #dc2626;
  --warn-light: #fef2f2;
  --text: #0a1628;
  --body: #475569;
  --muted: #94a3b8;
  --display: 'Manrope', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }

/* =========================================================
   DEMO BAR - orange bg, white pill left, white CTA right
   Sticky, above site nav
   ========================================================= */
.demo-bar {
  background: var(--gfg-orange);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Inter', system-ui, sans-serif;
  height: 48px;
}
.demo-bar-inner {
  max-width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.demo-bar-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
  flex-shrink: 0;
}
.demo-bar-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
  flex-grow: 1;
}
.demo-bar-text strong { font-weight: 800; }
.demo-bar-cta {
  background: white;
  color: var(--gfg-navy);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.demo-bar-cta:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =========================================================
   SITE HEADER (demo's own nav)
   ========================================================= */
.site-header {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  position: sticky;
  top: 42px;
  z-index: 999;
}
.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  position: relative;
}
.site-logo-mark::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 3px;
  border: 2px solid white;
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.site-logo-sub {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.active { color: var(--accent); }
.site-nav-cta {
  background: var(--accent);
  color: white;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.site-nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* =========================================================
   NAV DROPDOWN (Services menu)
   ========================================================= */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-dropdown-caret {
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 340px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(10,22,40,0.15), 0 4px 12px rgba(10,22,40,0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1000;
}
/* Invisible bridge so the menu doesn't close when moving cursor from trigger to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-header {
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px !important;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.nav-dropdown-header:hover {
  background: var(--accent-light);
  border-color: var(--accent-mid);
}
.nav-dropdown-header strong {
  font-family: var(--display);
  font-size: 0.9rem !important;
  font-weight: 800;
  color: var(--ink);
}
.nav-dropdown-header span {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}
.nav-dropdown-group {
  padding: 8px 4px 4px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.nav-dropdown-group:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 4px;
}
.nav-dropdown-label {
  display: block;
  font-size: 0.65rem !important;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px 8px;
}
.nav-dropdown-menu a:not(.nav-dropdown-header):not(.nav-dropdown-emergency) {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: 8px;
  font-size: 0.88rem !important;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-menu a:not(.nav-dropdown-header):not(.nav-dropdown-emergency):hover {
  background: var(--paper2);
  color: var(--accent);
}
.nav-dropdown-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.nav-dropdown-emergency {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 16px !important;
  margin-top: 10px;
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  border: 1px solid #fecaca;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.nav-dropdown-emergency:hover {
  border-color: #dc2626;
  transform: translateX(2px);
}
.nav-dropdown-emergency .nav-dropdown-icon {
  font-size: 1.3rem;
}
.nav-dropdown-emergency div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown-emergency strong {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #dc2626;
}
.nav-dropdown-emergency span {
  font-size: 0.75rem;
  color: var(--body);
  font-weight: 500;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 40px; height: 40px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.2rem;
}

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero {
  background: var(--ink);
  color: white;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.45); }
.btn-call {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-call:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.btn-call .phone-num { font-family: var(--display); }

.hero-trust {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.trust-num .accent { color: var(--accent); }
.trust-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; }

/* Hero card - emergency callout */
.hero-card {
  background: linear-gradient(180deg, var(--ink2), var(--ink3));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
}
.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fca5a5;
  margin-bottom: 16px;
}
.hero-card-label-dot {
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.hero-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-card-phone {
  background: var(--accent);
  color: white;
  padding: 16px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.hero-card-phone:hover { background: var(--accent2); transform: translateY(-1px); }
.hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.hero-card-meta strong { color: white; font-weight: 700; }

/* =========================================================
   HERO SCHEMATIC (SVG house cutaway)
   ========================================================= */
.hero-schematic {
  position: relative;
  background: linear-gradient(180deg, var(--ink2), var(--ink3));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
}
.hero-schematic::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
}
.hero-schematic-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93c5fd;
  margin-bottom: 18px;
  font-family: var(--display);
}
.hero-schematic svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-schematic-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-schematic-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--sans);
}
.hero-schematic-legend-dot {
  width: 10px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-schematic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-schematic-phone {
  color: white;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-schematic-phone:hover { color: var(--accent); }
.hero-schematic-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SVG pulse animation on the accent pins */
@keyframes schematic-pulse {
  0%, 100% { opacity: 1; r: 4; }
  50% { opacity: 0.6; r: 5.5; }
}
.hero-schematic svg .pulse-pin {
  animation: schematic-pulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
.hero-schematic svg .pulse-pin-2 { animation-delay: 0.6s; }
.hero-schematic svg .pulse-pin-3 { animation-delay: 1.2s; }
.hero-schematic svg .pulse-pin-4 { animation-delay: 1.8s; }

/* =========================================================
   TRUST BAR (certification chips under hero)
   ========================================================= */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}
.trust-bar-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--display);
  flex-shrink: 0;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.trust-chip:hover { border-color: var(--accent-mid); transform: translateY(-1px); }
.trust-chip-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
}
.trust-chip-text { display: flex; flex-direction: column; line-height: 1.15; }
.trust-chip-top {
  font-size: 0.78rem;
  font-weight: 800;
}
.trust-chip-bot {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* =========================================================
   PROCESS TIMELINE (how a service call works)
   ========================================================= */
.process-block { background: white; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-mid), var(--accent), var(--accent-mid));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0 8px;
  text-align: center;
}
.process-num {
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px white, 0 4px 14px rgba(37,99,235,0.15);
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
.process-step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--accent-light);
  border-radius: 100px;
  font-family: var(--display);
}

/* =========================================================
   PRICING TABLE (transparency)
   ========================================================= */
.pricing-block {
  background: var(--ink);
  color: white;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.pricing-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pricing-block .container { position: relative; z-index: 1; }
.pricing-block .eyebrow { color: var(--accent); }
.pricing-block h2.section-h { color: white; }
.pricing-block .section-lead { color: rgba(255,255,255,0.65); }

.pricing-table {
  margin-top: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
  transition: background 0.15s;
}
.pricing-row:hover { background: rgba(37,99,235,0.05); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header {
  background: rgba(37,99,235,0.08);
  border-bottom: 1px solid rgba(37,99,235,0.15);
}
.pricing-row.header div {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.pricing-job {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: white;
}
.pricing-job-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.pricing-amount {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
}
.pricing-amount-range {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--display);
}
.pricing-badge.warranty { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); color: #86efac; }
.pricing-footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.pricing-footnote strong { color: white; }

/* =========================================================
   COMPANY TIMELINE (about page)
   ========================================================= */
.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 140px;
  max-width: 820px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 113px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-mid), var(--accent), var(--accent-mid));
}
.timeline-item {
  position: relative;
  padding: 8px 0 28px 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: white;
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px white;
  z-index: 1;
}
.timeline-year {
  position: absolute;
  left: -130px;
  top: 8px;
  width: 78px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  padding: 8px 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 8px;
}
.timeline-content {
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.timeline-content:hover { border-color: var(--accent-mid); transform: translateX(4px); }
.timeline-content h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
}

/* =========================================================
   MEET THE TEAM
   ========================================================= */
.jobs-block { background: var(--paper2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: var(--accent-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.1);
}
.team-photo {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--paper3), var(--accent-light)),
    linear-gradient(135deg, var(--paper3), var(--accent-light));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.team-photo::after {
  content: '📷';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1rem;
  opacity: 0.35;
}
.team-photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 16px;
  background: white;
  border: 1.5px dashed var(--accent-mid);
  border-radius: 8px;
  line-height: 1.35;
}
.team-info {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.team-info h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.team-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--display);
  margin-bottom: 14px;
}
.team-info p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.team-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--body);
  font-family: var(--display);
}
.team-badge::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

/* =========================================================
   TEAM SECTION - single photo + styled copy layout
   ========================================================= */
.team-block { background: var(--paper2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.team-copy .eyebrow { margin-bottom: 14px; }
.team-copy .section-h { margin-bottom: 18px; }
.team-copy .section-lead { max-width: 540px; margin-bottom: 36px; }

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}
.team-highlight {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.team-highlight-num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}
.team-highlight-text h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.team-highlight-text p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.55;
}

.team-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}
.team-sig-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-sig-text { display: flex; flex-direction: column; line-height: 1.3; flex-grow: 1; }
.team-sig-text strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}
.team-sig-text span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.team-sig-link {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s;
}
.team-sig-link:hover { transform: translateX(3px); }

.team-photo-wrap { position: sticky; top: 120px; }
.team-photo-big {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--paper3) 0%, var(--accent-light) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(10,22,40,0.08);
}
.team-photo-big::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.team-photo-big::after {
  content: '📷';
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.1rem;
  opacity: 0.4;
}
.team-photo-big .team-photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 14px 22px;
  background: white;
  border: 1.5px dashed var(--accent-mid);
  border-radius: 10px;
  line-height: 1.4;
}
.team-photo-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  z-index: 2;
}
.team-photo-caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}
.team-photo-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.team-photo-badge {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--body);
  text-align: center;
  line-height: 1.3;
}
.team-photo-badge strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

/* =========================================================
   GFG BREAK-FOURTH-WALL SECTION
   Bottom-of-homepage reminder that this is a demo + price anchor
   ========================================================= */
.gfg-break {
  padding: 96px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244,98,42,0.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.gfg-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,98,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,98,42,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}
.gfg-break-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gfg-break-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: white;
  border: 1px solid rgba(244,98,42,0.3);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gfg-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(244,98,42,0.1);
}
.gfg-break-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gfg-orange);
  box-shadow: 0 0 0 3px rgba(244,98,42,0.2);
  animation: gfgPulse 2s ease-in-out infinite;
}
@keyframes gfgPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,98,42,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(244,98,42,0.08); }
}
.gfg-break-h {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: var(--gfg-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.gfg-break-accent {
  color: var(--gfg-orange);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
.gfg-break-lead {
  font-size: 1.02rem;
  color: var(--body);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 48px;
}
.gfg-break-lead strong {
  color: var(--gfg-navy);
  font-weight: 800;
}
.gfg-break-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  text-align: left;
}
.gfg-break-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.gfg-break-item:hover {
  transform: translateY(-3px);
  border-color: rgba(244,98,42,0.35);
  box-shadow: 0 12px 32px rgba(10,22,40,0.08);
}
.gfg-break-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gfg-navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.gfg-break-num span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}
.gfg-break-label {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gfg-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gfg-break-item p {
  font-size: 0.86rem;
  color: var(--body);
  line-height: 1.55;
}
.gfg-break-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gfg-break-cta {
  background: var(--gfg-orange) !important;
  padding: 16px 32px !important;
  font-size: 1rem !important;
  box-shadow: 0 10px 30px rgba(244,98,42,0.3);
}
.gfg-break-cta:hover {
  background: #e0521a !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(244,98,42,0.4);
}
.gfg-break-secondary {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.gfg-break-secondary:hover { color: var(--gfg-navy); }

/* =========================================================
   HOMEPAGE FAQ SECTION
   ========================================================= */
.home-faq-block { background: white; }
.home-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.home-faq-layout .faq-list { margin-top: 0; }

/* =========================================================
   CSS-DRAWN SERVICE ILLUSTRATIONS
   Replace emoji with custom inline SVG - see HTML for markup
   ========================================================= */
.service-illo {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover .service-illo {
  background: white;
  border-color: var(--accent);
}
.service-illo svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   ANIMATED GRID (subtle drift on dark sections)
   ========================================================= */
@keyframes grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}
.hero::before,
.pricing-block::before,
.cta-strip::before,
.page-header::before {
  animation: grid-drift 30s linear infinite;
}
.why-stats::before { animation: grid-drift 40s linear infinite; }

/* =========================================================
   RESPONSIVE additions for new sections
   ========================================================= */

/* =========================================================
   PAGE HEADER (for inner pages - smaller than homepage hero)
   ========================================================= */
.page-header {
  background: var(--ink);
  color: white;
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 65%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,0.3); }
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 800px;
}
.page-header h1 .accent { color: var(--accent); }
.page-header p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 620px;
}

/* =========================================================
   SECTION BASE
   ========================================================= */
section.block { padding: 88px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
h2.section-h {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
h2.section-h .accent { color: var(--accent); }
.section-lead {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.7;
  max-width: 620px;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-block {
  background: var(--paper2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
}
.services-head-link:hover { color: var(--accent2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.3s;
}
.service-card:hover { border-color: var(--accent-mid); box-shadow: 0 12px 32px rgba(37,99,235,0.1); transform: translateY(-3px); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-light), white);
  border: 1px solid var(--accent-mid);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.55rem;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover .service-icon {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(37,99,235,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.service-card-arrow {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   WHY US
   ========================================================= */
.why-block { background: white; }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-item:hover { border-color: var(--accent-mid); transform: translateX(4px); }
.why-num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  width: 32px; height: 32px;
  background: white;
  border: 1.5px solid var(--accent-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-text h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}
.why-text p { font-size: 0.875rem; color: var(--body); line-height: 1.6; }

.why-stats {
  background: var(--ink);
  border-radius: 16px;
  padding: 40px;
  position: sticky;
  top: 130px;
  color: white;
  overflow: hidden;
}
.why-stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.why-stats-content { position: relative; z-index: 1; }
.why-stats-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-stats-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.why-stats h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-block { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-block:nth-child(-n+2) { border-top: none; padding-top: 0; }
.stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .accent { color: var(--accent); }
.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  line-height: 1.4;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-block {
  background: var(--paper2);
  border-top: 1px solid var(--line);
}
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.reviews-rating-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.reviews-rating-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.reviews-rating-meta { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; line-height: 1.2; }
.review-author-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.review-author-meta { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas-block { background: white; }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.area-pill {
  padding: 16px 18px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area-pill:hover {
  border-color: var(--accent-mid);
  background: var(--accent-light);
  transform: translateY(-1px);
}
.area-pill::after {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.area-pill:hover::after { opacity: 1; transform: translateX(2px); }

/* Map placeholder */
.map-placeholder {
  background: var(--ink);
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-placeholder::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.3), 0 0 0 18px rgba(37,99,235,0.15);
}
.map-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  align-self: flex-end;
  padding: 16px;
  font-family: var(--display);
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: var(--ink);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: -100%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 65%);
  pointer-events: none;
}
.cta-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-strip h2 .accent { color: var(--accent); }
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.65;
}
.cta-strip-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-strip .btn-primary { padding: 18px 32px; font-size: 1rem; }
.cta-strip-phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 0;
}
.cta-strip-phone strong {
  color: white;
  font-family: var(--display);
  font-weight: 800;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink2);
  color: rgba(255,255,255,0.6);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo-name { color: white; }
.footer-brand .site-logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-license { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* =========================================================
   CONTENT BLOCKS (for inner pages)
   ========================================================= */
.content-block { background: white; }
.content-block.alt { background: var(--paper2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.prose { max-width: 680px; }
.prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.prose ul {
  margin: 14px 0 22px 0;
  padding-left: 22px;
}
.prose li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 8px;
}

/* Photo placeholder (no stock photos per brand rules) */
.photo-placeholder {
  background: linear-gradient(135deg, var(--paper3), var(--accent-light));
  border: 1px dashed var(--line2);
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.photo-placeholder.wide { aspect-ratio: 16 / 9; }
.photo-placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--display);
}
/* When a real photo is wired in via inline background-image,
   the label becomes a translucent caption pill over the image */
.photo-placeholder[style*="background-image"] {
  border-style: solid;
  border-color: var(--line);
}
.photo-placeholder[style*="background-image"] .photo-placeholder-label {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.68rem;
}
.photo-placeholder[style*="background-image"]::before { display: none; }

/* Team photo on index: hide label when real image loaded */
.team-photo-big[style*="background-image"] .team-photo-label {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
}

/* Fact card (used on about + service pages) */
.fact-card {
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 14px;
}
.fact-card h4 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.fact-card p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* =========================================================
   CHECKLIST GRID (used on service pages - "What's included")
   ========================================================= */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.checklist-item {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.content-block.alt .checklist-item { background: white; }
.checklist-item:hover {
  border-color: var(--accent-mid);
  transform: translateX(4px);
}
.checklist-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
/* Warning variant - for "when to call us" symptom sections */
.checklist-item:has(.checklist-icon:is([data-variant="warn"])),
.checklist-grid.warn .checklist-item .checklist-icon {
  background: #dc2626;
  box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}
.checklist-item h4 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
}
.checklist-item p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.6;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.content-block.alt .faq-item { background: white; }
.faq-q {
  padding: 22px 26px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 26px 22px;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.7;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper2);
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row.grid-2 input { margin: 0; }

.contact-info-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.contact-info-card-content { position: relative; z-index: 1; }
.contact-info-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
.contact-info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  color: white;
}
.contact-info-value a { color: white; text-decoration: none; }

/* Service page specific */
.service-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.price-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px;
  color: white;
  position: sticky;
  top: 140px;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
}
.price-card h3 {
  font-family: var(--display);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 16px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.price-card li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.price-card li:last-child { border-bottom: none; }
.price-card li strong {
  color: white;
  font-family: var(--display);
  font-weight: 800;
}
.price-card .btn-primary { width: 100%; justify-content: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  /* Flatten dropdown on mobile */
  .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 0;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header { padding: 14px 20px; }
  .hero { padding: 56px 20px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-header { padding: 56px 20px 64px; }
  section.block { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-stats { position: static; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 48px 20px; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .service-intro { grid-template-columns: 1fr; gap: 40px; }
  .price-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  /* New sections responsive */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .pricing-row { grid-template-columns: 1fr; gap: 10px; padding: 18px 20px; }
  .pricing-row.header { display: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-layout { grid-template-columns: 1fr; gap: 48px; }
  .team-photo-wrap { position: static; }
  .team-photo-big { aspect-ratio: 16 / 11; }
  .gfg-break { padding: 72px 20px; }
  .gfg-break-grid { grid-template-columns: 1fr; gap: 14px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 32px; }
  .timeline::before { left: 5px; }
  .timeline-item::before { left: -27px; }
  .timeline-year {
    position: static;
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
  }
  .home-faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-bar-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-bar-label { width: 100%; text-align: center; }
}
@media (max-width: 600px) {
  .demo-bar { height: auto; padding: 10px 16px; }
  .demo-bar-inner { padding: 0; gap: 10px; }
  .demo-bar-text { display: none; }
  .demo-bar-pill { font-size: 0.65rem; padding: 4px 10px; }
  .demo-bar-cta { padding: 7px 14px; font-size: 0.78rem; margin-left: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-trust { gap: 24px; }
  .services-head { grid-template-columns: 1fr; gap: 16px; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .form-row.grid-2 { grid-template-columns: 1fr; }
  .contact-form, .contact-info-card { padding: 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-highlight { grid-template-columns: 64px 1fr; gap: 14px; }
  .team-highlight-num { font-size: 2.6rem; }
  .team-photo-badges { flex-direction: column; gap: 6px; }
  .team-signature { flex-wrap: wrap; }
  .trust-bar-inner { gap: 10px; }
  .trust-chip { padding: 8px 12px; font-size: 0.72rem; }
}
