/* ================================================
   Ponds Electrical — Design System v3
   Navy & White · Professional · Animated
   ================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

:root {
  /* ── Navy palette ── */
  --navy:    #091d38;   /* hero, dark sections, footer */
  --navy-2:  #0e2848;   /* slightly lighter navy */
  --navy-3:  #163660;   /* mid-navy for borders on dark */
  --accent:  #1a6ff1;   /* bright blue CTA accent */
  --accent-d:#1455c7;   /* darker accent on hover */

  /* ── Light scale (blue-tinted greys) ── */
  --white:   #ffffff;
  --g50:     #f4f7fb;
  --g100:    #e8eef7;
  --g200:    #d1dce9;
  --g300:    #adbcd0;
  --g400:    #7a94aa;
  --g500:    #546d84;
  --g600:    #3a5068;
  --g700:    #243a52;
  --g800:    #152d45;
  --g900:    #091d38;   /* same as --navy */

  --font-display: 'Satoshi', 'Inter', -apple-system, sans-serif;
  --font-body:    'Inter', 'Satoshi', -apple-system, sans-serif;

  --nav-h:   80px;
  --max-w:   1200px;
  --pad:     48px;
  --py:      112px;
  --py-sm:   72px;
  --r:       8px;
  --r-lg:    12px;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: #dde8f5;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--py) 0; }
.section-sm { padding: var(--py-sm) 0; }
.bg-off,
.bg-g50 { background: var(--white); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}
h1 { font-size: clamp(3.2rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.02; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
p { line-height: 1.75; color: var(--g500); }

/* ── Eyebrow label ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 14px; display: block;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
/* Page fade in */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes quizIn   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse    { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes tagGlow  { 0%, 100% { box-shadow: 0 0 0 0 rgba(26,111,241,0); } 50% { box-shadow: 0 0 0 6px rgba(26,111,241,0.12); } }

body { animation: fadeIn 0.3s ease both; }

/* Scroll-triggered reveal */
[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim].visible { opacity: 1; transform: none; }

/* Delay helpers */
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }
.d6 { transition-delay: 0.42s; }
.d7 { transition-delay: 0.49s; }
.d8 { transition-delay: 0.56s; }

/* Quiz-specific CSS animation (no IntersectionObserver dependency) */
.quiz-animate { animation: quizIn 0.38s var(--ease) both; }

/* Hero headline line-by-line reveal */
@keyframes heroLine { from { opacity: 0; transform: translateY(40px) skewY(1.5deg); } to { opacity: 1; transform: none; } }
.hero-line-1 { display: block; animation: heroLine 0.9s var(--ease) 0.1s both; }
.hero-line-2 { display: block; animation: heroLine 0.9s var(--ease) 0.22s both; }
.hero-line-3 { display: block; animation: heroLine 0.9s var(--ease) 0.34s both; }

/* Hero scrolling word */
.hero-scroll-word {
  display: block;
  color: var(--accent);
  animation: heroLine 0.9s var(--ease) 0.1s both;
  will-change: transform, opacity, filter;
}

/* Hero subtitle reveal — hidden until roller finishes */
.hero-reveal { display: block; opacity: 0; }
.hero-reveal.play { animation: heroLine 0.9s var(--ease) both; }
.hero-reveal-3.play { animation-delay: 0.13s; }

/* ─── EV charger page: cord + flicker animation ─── */
.ev-title-rig { position: relative; }
.cord-anim { margin-bottom: 6px; }
.cord-svg { width: 100%; max-width: 540px; height: 44px; display: block; overflow: visible; }

/* 1. Draw the cable */
.cord-cable {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: evCordDraw 0.55s ease-out 0.15s forwards;
}
@keyframes evCordDraw { to { stroke-dashoffset: 0; } }

/* 2. Plug snaps in */
.cord-plug-head {
  opacity: 0;
  transform-origin: 498px 22px;
  animation: evPlugPop 0.22s cubic-bezier(0.34,1.56,0.64,1) 0.66s both;
}
@keyframes evPlugPop {
  from { opacity: 0; transform: scale(0.2) translateX(-6px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}

/* 3. Spark burst */
.cord-spark-ring,
.cord-spark-fill { transform-origin: 498px 22px; opacity: 0; }
.cord-spark-fill  { animation: evSparkFill  0.3s ease-out 0.76s forwards; }
.cord-spark-ring  { animation: evSparkRing  0.4s ease-out 0.76s forwards; }
@keyframes evSparkFill {
  0%  { transform: scale(0);   opacity: 1; }
  50% { transform: scale(2.5); opacity: 0.6; }
  100%{ transform: scale(5);   opacity: 0; }
}
@keyframes evSparkRing {
  0%  { transform: scale(0);   opacity: 1; }
  60% { transform: scale(3.5); opacity: 0.5; }
  100%{ transform: scale(7);   opacity: 0; }
}

/* 4. Title flickers on like a light */
.ev-flicker-h1 {
  opacity: 0;
  animation: evFlicker 1.05s ease-out 0.82s forwards;
}
@keyframes evFlicker {
  0%  { opacity: 0; }
  5%  { opacity: 1; }
  9%  { opacity: 0; }
  17% { opacity: 1; }
  21% { opacity: 0.05; }
  27% { opacity: 1; }
  32% { opacity: 0; }
  40% { opacity: 1; }
  46% { opacity: 0.5; }
  56% { opacity: 1; }
  67% { opacity: 0.88; }
  80% { opacity: 1; }
  93% { opacity: 0.96; }
  100%{ opacity: 1; }
}

/* 5. Subtitle & buttons fade in after title settles */
.ev-after {
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}

/* EV photo */
.ev-photo-wrap {
  max-width: 900px; margin: 0 auto;
  height: 600px; overflow: hidden;
  border-radius: var(--r-lg);
}
.ev-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  display: block;
}

/* EV hero split layout */
.hero-svc-ev { padding-bottom: 0; }
.ev-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: end;
}
.ev-hero-text { padding-bottom: 80px; }
.ev-hero-img {
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  height: 540px;
}
.ev-hero-img .ev-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  body, [data-anim], .hero-line-1, .hero-line-2, .hero-line-3,
  .hero-scroll-word, .hero-reveal, .quiz-animate,
  .cord-cable, .cord-plug-head, .cord-spark-ring, .cord-spark-fill,
  .ev-flicker-h1, .ev-after {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--navy); color: var(--white);
  border: 2px solid var(--navy); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 700; font-family: inherit;
  letter-spacing: -0.01em; cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(9,29,56,0.25); }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--accent); color: var(--white);
  border: 2px solid var(--accent); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 700; font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-accent:hover { background: var(--accent-d); border-color: var(--accent-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,111,241,0.35); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--white); color: var(--navy);
  border: 2px solid var(--white); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn-white:hover { background: var(--g100); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: var(--navy);
  border: 2px solid var(--g200); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--g50); }

.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: rgba(255,255,255,0.65);
  border: 2px solid rgba(255,255,255,0.2); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,0.55); color: var(--white); background: rgba(255,255,255,0.05); }

/* Legacy aliases (service pages) */
.btn-black { background: var(--navy); color: var(--white); border: 2px solid var(--navy); border-radius: var(--r); padding: 13px 26px; font-size: 0.875rem; font-weight: 700; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.18s ease, transform 0.18s ease; white-space: nowrap; }
.btn-black:hover { background: var(--navy-2); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   NAVIGATION  — NO backdrop-filter (perf)
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(9, 29, 56, 0.97); /* navy, no blur */
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: background;
}
.nav.light {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--g200);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(9,29,56,0.15); }
.nav-inner {
  display: flex; align-items: center;
  height: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--pad);
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  transition: opacity 0.18s ease;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img { height: 56px; width: auto; display: block; transition: filter 0.18s ease; }
.nav.light .nav-logo-img { filter: invert(1); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links > a {
  padding: 7px 13px; border-radius: 6px;
  font-size: 0.83rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.18s ease, background 0.18s ease;
  position: relative;
}
.nav.light .nav-links > a { color: var(--g500); }
.nav-links > a::after {
  content: ''; position: absolute; bottom: 4px; left: 13px; right: 13px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s var(--ease);
  border-radius: 2px;
}
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }
.nav-links > a:hover, .nav-links > a.active { color: var(--white); }
.nav.light .nav-links > a:hover, .nav.light .nav-links > a.active { color: var(--navy); }
.btn-nav {
  background: var(--accent); color: var(--white);
  padding: 9px 18px; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 700; font-family: inherit;
  border: none; transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-d); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.light .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 298;
}
.nav-overlay.active { display: block; }
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy); z-index: 299;
  padding: 12px 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0; font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.45); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }
.mobile-menu .mm-cta {
  margin-top: 16px; background: var(--accent); color: var(--white) !important;
  padding: 13px 0; border-radius: var(--r); text-align: center;
  font-weight: 700; border-bottom: none !important;
}
.mm-svc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 13px 0; font-size: 0.95rem; font-weight: 500; font-family: var(--font-body);
  color: rgba(255,255,255,0.45); cursor: pointer; text-align: left;
}
.mm-svc-toggle svg { transition: transform 0.28s ease; flex-shrink: 0; }
.mm-svc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mm-svc-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 12px;
}
.mm-svc-sub.open { max-height: 520px; }
.mm-svc-sub a {
  display: block !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.4) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  padding: 11px 0 !important;
}
.mm-svc-sub a:last-child { border-bottom: none !important; }

/* ─── Nav Dropdown ─── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  background: none; border: none; padding: 7px 13px; border-radius: 6px;
  font-size: 0.83rem; font-weight: 500; font-family: var(--font-body);
  display: flex; align-items: center; gap: 5px;
  cursor: pointer; color: var(--white);
  transition: color 0.18s ease; letter-spacing: 0;
}
.nav.light .nav-dropdown-toggle { color: var(--g500); }
.nav-dropdown-toggle:hover { color: var(--white); }
.nav.light .nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-toggle svg { transition: transform 0.22s var(--ease); flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white); border-radius: 12px;
  padding: 6px; min-width: 240px;
  box-shadow: 0 20px 60px rgba(9,29,56,0.18), 0 0 0 1px rgba(9,29,56,0.06);
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 400;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-item {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--g700); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: background 0.14s ease, color 0.14s ease;
}
.nav-drop-item:hover { background: var(--g50); color: var(--accent); }
.nav-drop-divider { height: 1px; background: var(--g100); margin: 4px 6px; }
.nav-drop-item.drop-all { color: var(--accent); font-weight: 600; }
.nav-drop-item.drop-all:hover { background: rgba(26,111,241,0.07); }

/* ─── Service Area / Postcodes ─── */
.postcode-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2.5rem;
}
.postcode-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--g200);
  border-radius: 100px; padding: 8px 18px;
  text-decoration: none; cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.18s ease;
}
.postcode-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(9,29,56,0.18);
}
.postcode-code {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  transition: color 0.18s ease;
}
.postcode-area {
  font-size: 0.78rem; color: var(--g400);
  transition: color 0.18s ease;
}
.postcode-tag:hover .postcode-code,
.postcode-tag:hover .postcode-area { color: var(--white); }
.postcode-footnote {
  margin-top: 1.75rem; font-size: 0.875rem; color: var(--g400);
}
.postcode-footnote a { color: var(--accent); font-weight: 600; text-decoration: none; }
.postcode-footnote a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   HOME HERO
───────────────────────────────────────── */
.hero-home {
  background: var(--navy);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
/* Subtle grid */
.hero-home::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
/* Radial accent glow bottom-left */
.hero-home::after {
  content: ''; position: absolute; pointer-events: none;
  width: 700px; height: 700px;
  left: -200px; bottom: -200px;
  background: radial-gradient(circle, rgba(26,111,241,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--pad) 72px;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 6px 16px 6px 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 44px;
  animation: fadeIn 0.6s ease 0.05s both;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: pulse 2.5s ease-in-out 1s infinite;
}
.hero-home h1 {
  color: var(--white);
  font-size: clamp(3.8rem, 9vw, 9rem);
  letter-spacing: -0.055em;
  line-height: 0.93;
  margin-bottom: 40px;
  max-width: 960px;
  overflow: hidden;
}
.hero-home h1 em { font-style: normal; color: rgba(255,255,255,0.3); }
.hero-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  animation: fadeUp 0.7s var(--ease) 0.5s both;
}
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.42); max-width: 420px; line-height: 1.7; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Marquee ── */
.marquee-strip {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  overflow: hidden; padding: 18px 0;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 32px; white-space: nowrap;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  transition: color 0.2s ease;
}
.marquee-item:hover { color: rgba(255,255,255,0.6); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar { border-bottom: 1px solid var(--g200); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 44px 32px; border-right: 1px solid var(--g200);
  transition: background 0.2s ease;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--g50); }
.stat-n {
  display: block;
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.055em; line-height: 1;
  margin-bottom: 6px; color: var(--navy);
}
.stat-l { font-size: 0.82rem; color: var(--g400); font-weight: 500; }

/* ─────────────────────────────────────────
   SERVICES LIST (editorial)
───────────────────────────────────────── */
.svc-with-photos {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.svc-photo-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.svc-list { border-top: 2px solid var(--navy); }
.svc-row {
  display: grid; grid-template-columns: 120px 1fr auto;
  align-items: start; gap: 40px;
  padding: 44px 0; border-bottom: 1px solid var(--g200);
  text-decoration: none; color: inherit; cursor: pointer;
  transition: background 0.18s ease, padding-left 0.25s var(--ease);
  position: relative;
}
a.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--navy);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.28s var(--ease);
}
a.svc-row:hover::before { transform: scaleY(1); }
a.svc-row:hover { background: var(--g50); padding-left: 24px; }
.svc-row-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900; color: var(--g200); letter-spacing: -0.06em;
  line-height: 1; transition: color 0.22s ease; padding-top: 1px;
}
a.svc-row:hover .svc-row-num { color: var(--navy); }
.svc-row-body { padding-top: 6px; }
.svc-row-body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin-bottom: 8px; color: var(--navy); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; transition: color 0.18s ease;
}
.svc-row-body p { font-size: 0.9rem; color: var(--g400); line-height: 1.6; margin: 0; max-width: 520px; }
a.svc-row:hover .svc-row-body h3 { color: var(--navy); }
.svc-row-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--g200); display: flex; align-items: center;
  justify-content: center; color: var(--g300); flex-shrink: 0;
  transition: all 0.22s var(--ease); margin-top: 8px;
}
a.svc-row:hover .svc-row-arrow { background: var(--navy); border-color: var(--navy); color: var(--white); transform: rotate(-45deg); }

/* ─────────────────────────────────────────
   EV SPOTLIGHT (navy section)
───────────────────────────────────────── */
.ev-spotlight {
  background: var(--navy); color: var(--white); padding: var(--py) 0;
  position: relative; overflow: hidden;
}
.ev-spotlight::before {
  content: ''; position: absolute; pointer-events: none;
  width: 600px; height: 600px; right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(26,111,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ev-spotlight-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.ev-spotlight h2 { color: var(--white); margin-bottom: 20px; }
.ev-spotlight > .wrap > * > p { color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.ev-check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 24px 0 36px; }
.ev-check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.ev-check-list li svg { color: var(--accent); flex-shrink: 0; }
.ev-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: 36px;
  transition: border-color 0.3s ease;
}
.ev-quote:hover { border-color: rgba(26,111,241,0.3); }
.ev-quote-mark {
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: -4px;
  font-weight: 900; letter-spacing: -0.05em;
}
.ev-quote blockquote {
  font-size: 1.02rem; color: rgba(255,255,255,0.72);
  line-height: 1.72; font-style: italic; margin-bottom: 22px;
}
.ev-quote-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.ev-quote-loc { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-left: 8px; }
.ev-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 18px; }

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.section-h { margin-bottom: 14px; }
.section-sub { font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: var(--g400); max-width: 520px; margin-bottom: 60px; line-height: 1.75; }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden;
  margin-top: 56px;
}
.why-item {
  padding: 36px; border-right: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
  transition: background 0.2s ease;
  position: relative; overflow: hidden;
}
.why-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.why-item:hover::before { transform: scaleX(1); }
.why-item:hover { background: var(--g50); }
.why-item:nth-child(3), .why-item:nth-child(6) { border-right: none; }
.why-item:nth-child(4), .why-item:nth-child(5), .why-item:nth-child(6) { border-bottom: none; }
.why-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  color: var(--g300); letter-spacing: 0.12em; margin-bottom: 18px; display: block;
  transition: color 0.2s ease;
}
.why-item:hover .why-num { color: var(--accent); }
.why-item h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; color: var(--navy); }
.why-item p { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.review-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.2s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.review-card:hover { border-color: var(--g300); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(9,29,56,0.09); }
.stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { font-size: 0.875rem; color: var(--g500); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 8px; }
.reviewer-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.reviewer-loc { font-size: 0.8rem; color: var(--g400); }
.reviewer-loc::before { content: '·'; margin-right: 8px; color: var(--g300); }

.review-card.featured { background: var(--g50); }
.review-card.large { padding: 36px; }
.review-card.large p { font-size: 1.02rem; }

/* ─────────────────────────────────────────
   REVIEWS SCROLLER
───────────────────────────────────────── */
.rev-section {
  background: var(--navy);
  padding: 80px 0 72px;
  overflow: hidden;
}
.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.rev-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.rev-summary { text-align: right; }
.btn-review-leave { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 10px 20px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.03em; transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease; }
.btn-review-leave:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.06); }
.rev-summary-stars { font-size: 1.1rem; letter-spacing: 5px; color: #FBBF24; margin-bottom: 6px; }
.rev-summary p { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.rev-summary span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.rev-scroller {
  overflow: hidden;
  padding: 8px 0 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.rev-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: revScroll 55s linear infinite;
}
.rev-scroller:hover .rev-track { animation-play-state: paused; }
@keyframes revScroll { to { transform: translateX(-50%); } }

.rev-card {
  width: 340px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 30px 28px 24px;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}
.rev-card:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.09); }
.rev-card-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  font-family: Georgia, serif;
  user-select: none;
  pointer-events: none;
}
.rev-card-stars { color: #FBBF24; font-size: 0.78rem; letter-spacing: 3px; margin-bottom: 16px; }
.rev-card blockquote {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin: 0 0 22px;
  padding: 0;
  font-style: italic;
  border: none;
}
.rev-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: none;
  background: none;
  padding: 0;
}
.rev-card footer strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
}
.rev-card footer span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.32);
}

@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
  .rev-scroller {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    padding-bottom: 12px;
  }
}

/* ─────────────────────────────────────────
   BRAND LOGOS
───────────────────────────────────────── */
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.brand-logo-item:hover { opacity: 1; }
.brand-logo-item img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .brand-logos { gap: 32px; }
  .brand-logo-item img { height: 34px; max-width: 120px; }
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band { background: var(--navy); padding: var(--py-sm) 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; pointer-events: none;
  width: 500px; height: 500px; right: -100px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(26,111,241,0.18) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); }
.cta-inner > div > p { color: rgba(255,255,255,0.42); margin-top: 10px; font-size: 0.95rem; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────────────
   SERVICE PAGE HERO
───────────────────────────────────────── */
.hero-svc {
  background: var(--navy); color: var(--white);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative; overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.video-dark-overlay {
  position: absolute; inset: 0;
  background: rgba(9,29,56,0.74);
  pointer-events: none;
  z-index: 1;
}
/* Compact cinematic video hero */
.cctv-video-hero {
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.cctv-video-hero .wrap {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg { display: none; }
  .video-dark-overlay { display: none; }
}
.hero-svc::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  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: 72px 72px;
}
.hero-svc::after {
  content: ''; position: absolute; pointer-events: none;
  width: 600px; height: 600px; right: -100px; bottom: -200px;
  background: radial-gradient(circle, rgba(26,111,241,0.14) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-svc .wrap { position: relative; z-index: 1; }
.hero-svc h1 { color: var(--white); max-width: 820px; margin-bottom: 20px; }
.hero-svc-sub {
  font-size: clamp(1rem, 1.8vw, 1.08rem); color: rgba(255,255,255,0.45);
  max-width: 540px; line-height: 1.75; margin-bottom: 36px;
}
.hero-svc .eyebrow { color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   LAYOUTS
───────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col.center { align-items: center; }
.two-col.rev > *:first-child { order: 2; }
.two-col.rev > *:last-child { order: 1; }

/* ─────────────────────────────────────────
   STEPS
───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-top: 64px; }
.steps::before { content: ''; position: absolute; top: 23px; left: calc(16.67% + 24px); right: calc(16.67% + 24px); height: 1px; background: var(--g200); z-index: 0; }
.step { padding: 0 28px; }
.step-n {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--g200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--g400); margin-bottom: 22px; position: relative; z-index: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.step:hover .step-n { border-color: var(--accent); color: var(--accent); background: rgba(26,111,241,0.05); }
.step h3 { font-size: 1rem; margin-bottom: 8px; letter-spacing: -0.02em; color: var(--navy); }
.step p  { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }

/* ─────────────────────────────────────────
   INFO BOX & CHECKLIST
───────────────────────────────────────── */
/* About page profile card */
.about-profile-card {
  background: var(--navy); border-radius: var(--r-lg); padding: 36px 32px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.about-profile-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.about-profile-name { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 4px; }
.about-profile-title { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; }
.about-profile-creds { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; width: 100%; }
.about-profile-creds li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; font-weight: 500;
}
.about-profile-creds li svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* About stats band */
.about-stats-band { background: var(--navy); padding: 72px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.about-stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.about-stat:last-child { border-right: none; }
.about-stat-num { display: block; font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.about-stat-label { display: block; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }

.info-box {
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 32px;
}
.info-box h3 { font-size: 0.95rem; margin-bottom: 16px; letter-spacing: -0.02em; color: var(--navy); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--g600); line-height: 1.5;
}
.check-list li::before {
  content: '';
  display: inline-block; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a6ff1' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─────────────────────────────────────────
   CARDS (service pages)
───────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden; background: var(--g200); }
.svc-card {
  background: var(--white); padding: 32px;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: background 0.2s ease; cursor: pointer;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--g50); }
.svc-card.static { cursor: default; }
.svc-card.static::after { display: none; }
.svc-card.static:hover { background: var(--white); }
.svc-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: rgba(26,111,241,0.07); border: 1px solid rgba(26,111,241,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent); flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover .svc-icon { background: rgba(26,111,241,0.12); border-color: rgba(26,111,241,0.25); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.svc-card p  { font-size: 0.83rem; color: var(--g500); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.svc-link { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--g300); margin-top: auto; transition: color 0.2s ease; }
.svc-card:hover .svc-link { color: var(--accent); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.feature-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.feature-card:hover { border-color: rgba(26,111,241,0.25); box-shadow: 0 8px 32px rgba(9,29,56,0.08); transform: translateY(-2px); }
.feature-card .svc-icon { margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }

/* Brand grid */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.brand-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.brand-card:hover { border-color: rgba(26,111,241,0.25); box-shadow: 0 8px 32px rgba(9,29,56,0.08); transform: translateY(-2px); }
.brand-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.brand-card p { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }

/* ─────────────────────────────────────────
   INC ITEMS
───────────────────────────────────────── */
.inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 56px; }
.inc-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; background: var(--white);
  border: 1px solid var(--g200); border-radius: var(--r);
  font-size: 0.875rem; color: var(--g700); line-height: 1.5;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.inc-item:hover { border-color: rgba(26,111,241,0.2); background: var(--g50); }
.inc-item svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { border-top: 1px solid var(--g200); margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--g200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 0.925rem; font-weight: 600;
  gap: 16px; transition: color 0.18s ease; background: none; border: none;
  width: 100%; text-align: left; font-family: inherit; color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--g600); }
.faq-q svg { flex-shrink: 0; color: var(--g300); transition: transform 0.25s ease, color 0.18s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  font-size: 0.875rem; color: var(--g500); line-height: 1.75; max-width: 600px;
  transition: max-height 0.38s ease, opacity 0.25s ease, padding 0.38s ease;
}
.faq-item.open .faq-a { max-height: 600px; opacity: 1; padding: 0 0 20px; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--g700); margin-bottom: 6px; }
.req { color: var(--g400); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--g200); border-radius: var(--r);
  font-family: inherit; font-size: 0.875rem; color: var(--navy);
  background: var(--white); transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,111,241,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #dc2626; }
.form-hint { font-size: 0.74rem; color: var(--g400); font-weight: 400; margin-left: 6px; }
.form-privacy { font-size: 0.74rem; color: var(--g400); margin-top: 8px; }
.form-reply-promise {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  margin-top: 12px;
}
.form-reply-promise svg { flex-shrink: 0; color: var(--accent); }

/* Photo upload */
.upload-zone {
  border: 2px dashed var(--g200); border-radius: var(--r);
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--navy); background: var(--g50); }
.upload-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon { color: var(--g300); margin: 0 auto 10px; display: block; }
.upload-text { font-size: 0.88rem; color: var(--g500); margin: 0; line-height: 1.5; }
.upload-link { color: var(--navy); font-weight: 600; text-decoration: underline; cursor: pointer; }
.upload-sub { font-size: 0.76rem; color: var(--g300); margin: 5px 0 0; }
.upload-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.upload-thumb {
  width: 80px; height: 80px; border-radius: 8px; overflow: hidden;
  position: relative; border: 1.5px solid var(--g200); flex-shrink: 0;
  animation: thumb-in 0.2s ease;
}
@keyframes thumb-in { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-thumb-remove {
  position: absolute; top: 4px; right: 4px;
  width: 20px; height: 20px; background: rgba(0,0,0,0.65); color: var(--white);
  border: none; border-radius: 50%; font-size: 14px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease; padding: 0;
}
.upload-thumb-remove:hover { background: #dc2626; }
.upload-count { font-size: 0.76rem; color: var(--g400); margin-top: 8px; }
.contact-form button[type="submit"] {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--r); font-size: 0.9rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background 0.18s ease, transform 0.18s ease;
  margin-top: 4px;
}
.contact-form button[type="submit"]:hover { background: var(--accent-d); transform: translateY(-1px); }
.form-success { text-align: center; padding: 56px 20px; }
.form-success svg { color: var(--accent); margin: 0 auto 20px; }
.form-success h3 { margin-bottom: 8px; font-size: 1.4rem; color: var(--navy); }
.form-success p { color: var(--g500); font-size: 0.95rem; }
.contact-info h2 { margin-bottom: 32px; font-size: clamp(1.5rem, 3vw, 2rem); }
.ci-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--g200); }
.ci-icon { width: 40px; height: 40px; border-radius: var(--r); background: rgba(26,111,241,0.07); border: 1px solid rgba(26,111,241,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.ci-label { font-size: 0.72rem; font-weight: 700; color: var(--g400); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.1em; }
.ci-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); transition: color 0.18s ease; }
a.ci-value:hover { color: var(--accent); }
.map-placeholder { margin-top: 28px; background: var(--g50); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--g400); text-align: center; min-height: 200px; }
.map-placeholder p { font-size: 0.9rem; font-weight: 600; color: var(--g500); margin: 0; }
.map-placeholder small { font-size: 0.76rem; color: var(--g400); }

/* ─────────────────────────────────────────
   EICR QUIZ
───────────────────────────────────────── */
.quiz-card {
  border: 1px solid var(--g200); border-radius: var(--r-lg);
  padding: 40px; background: var(--white);
}
.qprog-bar { height: 3px; background: var(--g100); border-radius: 2px; overflow: hidden; margin-bottom: 8px; }
.qprog-fill { height: 100%; background: var(--accent); transition: width 0.45s var(--ease); border-radius: 2px; }
.qprog-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g400); margin-bottom: 32px; display: block; }
.quiz-q { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; margin-bottom: 6px; line-height: 1.2; letter-spacing: -0.025em; font-family: var(--font-display); color: var(--navy); }
.quiz-sub { font-size: 0.8rem; color: var(--g400); margin-bottom: 0; }
.q-opts { display: grid; gap: 8px; margin-top: 24px; }
.q-opt {
  background: var(--white); border: 1.5px solid var(--g200); border-radius: var(--r);
  padding: 14px 18px; color: var(--g700); font-size: 0.875rem; font-weight: 500;
  font-family: inherit; cursor: pointer; text-align: left; width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.q-opt:hover { border-color: var(--accent); color: var(--navy); background: rgba(26,111,241,0.04); }
.q-opt.selected { background: var(--accent); border-color: var(--accent); color: var(--white); transform: scale(0.99); pointer-events: none; }
/* Icon grid layout */
.q-opts--grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.q-opt--card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 12px; gap: 10px; font-size: 0.82rem; line-height: 1.3;
}
.q-opt--card svg { display: block; color: var(--accent); transition: color 0.15s ease; }
.q-opt--card.selected svg { color: var(--white); }
/* Inline icon layout */
.q-opt--inline { display: flex; align-items: center; gap: 12px; text-align: left; }
.q-opt--inline svg { flex-shrink: 0; color: var(--accent); transition: color 0.15s ease; }
.q-opt--inline.selected svg { color: var(--white); }
/* Result */
.quiz-result { border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 40px; background: var(--white); text-align: center; }
.r-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g400); margin-bottom: 20px; display: block; }
.price-card { background: var(--g50); border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 32px; margin-bottom: 20px; }
.price-range { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 900; letter-spacing: -0.05em; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.price-note { font-size: 0.78rem; color: var(--g400); }
.r-alert { display: flex; align-items: flex-start; gap: 10px; border-radius: var(--r); padding: 12px 16px; font-size: 0.8rem; line-height: 1.6; margin-bottom: 10px; text-align: left; }
.r-alert svg { flex-shrink: 0; margin-top: 1px; }
.r-warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.r-warn svg { color: #d97706; }
.r-info { background: rgba(26,111,241,0.05); border: 1px solid rgba(26,111,241,0.2); color: var(--navy-2); }
.r-info svg { color: var(--accent); }
.r-note { font-size: 0.83rem; color: var(--g500); margin: 20px 0 28px; line-height: 1.65; }
.r-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li { font-size: 0.84rem; color: rgba(255,255,255,0.3); transition: color 0.18s ease; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-trust-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); white-space: nowrap;
}
.footer-trust-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-trust-logo {
  background: var(--white); border-radius: 6px;
  padding: 8px 14px; display: flex; align-items: center;
  transition: opacity 0.18s ease;
}
.footer-trust-logo:hover { opacity: 0.85; }
.footer-trust-logo img { height: 24px; width: auto; display: block; object-fit: contain; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gph { aspect-ratio: 4/3; background: var(--g100); border: 1px solid var(--g200); border-radius: var(--r-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--g400); transition: all 0.2s ease; }
.gph:hover { background: var(--g200); border-color: var(--g300); }
.gph span { font-size: 0.76rem; font-weight: 500; }

/* ─────────────────────────────────────────
   GALLERY PAGE
───────────────────────────────────────── */
.hero-svc.short { padding: calc(var(--nav-h) + 52px) 0 52px; }

.gal-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.gal-filter {
  padding: 8px 20px;
  border: 1.5px solid var(--g200);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gal-filter:hover { border-color: var(--navy); color: var(--navy); }
.gal-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
}
.work-grid .gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--g100);
}
.work-grid .gallery-item.tall { grid-row: span 2; }
.work-grid .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.work-grid .gallery-item:hover img {
  transform: scale(1.04); filter: brightness(0.65);
}
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(9,29,56,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.work-grid .gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat-tag {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 4px;
}
.gallery-overlay h3 { color: #fff; font-size: 1rem; margin: 0; font-weight: 600; }
.gallery-loc { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 3px; letter-spacing: 0.04em; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,9,20,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: min(88vw, 860px); max-height: 86vh;
  object-fit: contain; border-radius: var(--r-md); display: block;
}
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-caption {
  position: absolute; bottom: 22px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 32px; --py: 88px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--g200); }
  .ev-spotlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .ev-hero-grid { grid-template-columns: 1fr; }
  .ev-hero-text { padding-bottom: 40px; }
  .ev-hero-img { height: 380px; border-radius: var(--r-lg); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3) { border-right: none; }
  .why-item:nth-child(4) { border-right: 1px solid var(--g200); }
  .why-item:nth-child(2) { border-right: none; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.rev > *:first-child { order: 0; }
  .two-col.rev > *:last-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --pad: 20px; --py: 64px; --py-sm: 52px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-home h1 { font-size: clamp(2.8rem, 11vw, 5rem); letter-spacing: -0.045em; }
  .hero-split { flex-direction: column; align-items: flex-start; }
  .svc-with-photos { grid-template-columns: 1fr; }
  .svc-photo-col { display: none; }
  .svc-row { grid-template-columns: 64px 1fr 36px; gap: 16px; padding: 30px 0; align-items: start; }
  .svc-row-num { font-size: 2rem; }
  .svc-row-body { padding-top: 2px; }
  .svc-row-arrow { margin-top: 2px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; border-bottom: 1px solid var(--g200) !important; }
  .why-item:last-child { border-bottom: none !important; }
  .why-item:nth-child(3), .why-item:nth-child(6) { border-right: none; }
  .why-item::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rev-header { flex-direction: column; align-items: flex-start; }
  .rev-summary { text-align: left; }
  .rev-card { width: 290px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .step { padding: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: none; padding: 24px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-svc h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
  .ev-hero-img { height: 260px; border-radius: 0; margin: 0 calc(-1 * var(--pad)); width: calc(100% + 2 * var(--pad)); }
  .ev-hero-text { padding-bottom: 32px; }
  .quiz-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .hero-home h1 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .brand-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .work-grid .gallery-item.tall { grid-row: span 1; }
  .lb-nav { display: none; }
  .r-actions { flex-direction: column; }
}
