/* EmergencyVoltSolutions design system */
:root {
  --ink: #0F1419;
  --ink-2: #3A4250;
  --ink-3: #6B7380;
  --paper: #FFFFFF;
  --paper-2: #F6F7F9;
  --paper-3: #EEF0F3;
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --red: #DC2626;
  --red-deep: #991B1B;
  --red-bright: #EF4444;
  --red-wash: #FEF2F2;
  --green: #16A34A;
  --amber: #F59E0B;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.06), 0 1px 1px rgba(15, 20, 25, 0.04);
  --shadow: 0 4px 12px rgba(15, 20, 25, 0.08), 0 2px 4px rgba(15, 20, 25, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 20, 25, 0.12), 0 4px 8px rgba(15, 20, 25, 0.06);

  --max: 1240px;
  --gutter: 24px;

  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { font-size: 16px; line-height: 1.55; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 700; }

p { margin: 0; text-wrap: pretty; }

/* ============ Layout ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #FFF; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #FFF; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--red); }
.section--ink .eyebrow { color: var(--red-bright); }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.section--ink .lede { color: rgba(255, 255, 255, 0.78); }

/* ============ Top bar (announcement) ============ */
.announce {
  background: var(--ink);
  color: #FFF;
  font-size: 13px;
  padding: 8px 0;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.announce__left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; min-width: 0; }
.announce__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #FFF;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
}
.announce__pill .live-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #FFF;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.announce__right { display: flex; gap: 18px; align-items: center; opacity: 0.85; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 50%, rgba(220, 38, 38, 0.5) 50%);
}
.logo__bolt {
  position: relative;
  z-index: 1;
  width: 16px; height: 16px;
  color: #FFF;
}
.logo__name { display: flex; flex-direction: column; line-height: 1; gap: 2px; white-space: nowrap; }
.logo__name strong { font-size: 16px; white-space: nowrap; }
.logo__name span { font-size: 10px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  position: relative;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.header__cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta .header__cta-wa { display: none; }
  .header__cta-label { display: none; }
  .header__cta .btn--red { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .header__cta .btn--red svg { margin: 0; }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .announce { font-size: 12px; padding: 6px 0; }
  .announce__right { display: none; }
  .announce__inner { justify-content: center; text-align: center; }
  .header { padding: 8px 0; }
  .header__inner { gap: 8px; }
  .header__cta { gap: 6px; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  border: 1px solid transparent;
}
.btn--lg { padding: 16px 24px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--xl { padding: 20px 28px; font-size: 17px; border-radius: var(--radius-lg); }
.btn--block { width: 100%; }

.btn--red {
  background: var(--red);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.32);
}
.btn--red:hover {
  background: var(--red-deep);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.42);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--paper-2); border-color: var(--ink); }

.btn--whatsapp {
  background: #25D366;
  color: #FFF;
}
.btn--whatsapp:hover { background: #1FAE54; }

.btn--ink {
  background: var(--ink);
  color: #FFF;
}
.btn--ink:hover { background: #000; }

.btn--white {
  background: #FFF;
  color: var(--ink);
}
.btn--white:hover { background: var(--paper-2); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}
/* ===== Hybrid hero animation: Field Network + Wire + Tesla Arcs =====
   Three layers; intensity varies by --evfx-intensity (0=ambient, 1=light, 2=full) */
.hero .container { position: relative; z-index: 2; }

/* Layer 0 — full-page field network canvas */
.evfx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Light hero (paper bg) — present but doesn't drown content */
.hero .evfx-canvas { opacity: 0.75; }
.hero--dark .evfx-canvas { opacity: 1; }
/* Page heros (service/town/reviews/contact) — softer */
.page-hero .evfx-canvas { opacity: 0.55; }

/* Layer 1 — elegant wire SVG */
.evfx-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.evfx-cable {
  fill: none;
  stroke: rgba(220, 38, 38, 0.55);
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(220,38,38,0.5));
}
.hero--dark .evfx-cable { stroke: rgba(239, 68, 68, 0.6); stroke-width: 1.6; filter: drop-shadow(0 0 6px rgba(239,68,68,0.7)); }
.evfx-cable-glow { display: none; }

.evfx-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 90 9999;
  filter: drop-shadow(0 0 5px var(--red)) drop-shadow(0 0 10px rgba(220,38,38,0.6));
  vector-effect: non-scaling-stroke;
}
.hero--dark .evfx-pulse { stroke: var(--red-bright); filter: drop-shadow(0 0 6px var(--red-bright)) drop-shadow(0 0 14px rgba(239,68,68,0.8)); }
.evfx-pulse--cyan {
  stroke: #38BDF8;
  stroke-dasharray: 65 9999;
  filter: drop-shadow(0 0 5px #38BDF8) drop-shadow(0 0 10px rgba(14,165,233,0.6));
}

@keyframes evfx-travel-1 {
  0% { stroke-dashoffset: 0; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { stroke-dashoffset: -2600; opacity: 0; }
}
@keyframes evfx-travel-2 {
  0% { stroke-dashoffset: 0; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { stroke-dashoffset: -2400; opacity: 0; }
}
.evfx-pulse--p1 { animation: evfx-travel-1 5.5s linear infinite; }
.evfx-pulse--p2 { animation: evfx-travel-2 6.2s linear infinite 1.7s; }

.evfx-node {
  fill: var(--red);
  filter: drop-shadow(0 0 5px var(--red));
}
.hero--dark .evfx-node {
  fill: #fff;
  filter: drop-shadow(0 0 5px var(--red-bright)) drop-shadow(0 0 10px rgba(239,68,68,0.6));
}
.evfx-node-ping {
  fill: none;
  stroke: var(--red);
  stroke-width: 1;
  transform-origin: center;
  transform-box: fill-box;
  animation: evfx-ping 3s ease-out infinite;
}
.hero--dark .evfx-node-ping { stroke: var(--red-bright); }
@keyframes evfx-ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Layer 2 — tesla arc canvas (only on full intensity) */
.evfx-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

/* Vignette/overlay for dark heroes */
.hero--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(220,38,38,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(56,189,248,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .evfx-pulse, .evfx-pulse--cyan, .evfx-node-ping { animation: none !important; opacity: 0.5; }
  .evfx-canvas, .evfx-arcs { display: none !important; }
}
.hero--dark {
  background: var(--ink);
  color: #FFF;
}
.hero--dark h1, .hero--dark h2 { color: #FFF; }
.hero--dark .hero__sub { color: rgba(255, 255, 255, 0.78); }
.hero--dark .hero__bullet { color: rgba(255, 255, 255, 0.85); }
.hero--dark .hero__bullet svg { color: var(--red-bright); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero__eyebrow { margin-bottom: 16px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--red); }
.hero--dark h1 .accent { color: var(--red-bright); }

.hero__sub {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 56ch;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__cta .btn { padding: 18px 26px; font-size: 17px; }

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero__bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__bullet svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow-lg);
}
.hero__visual--type {
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 40px;
}
.hero__visual--illus {
  background: var(--red-wash);
}

.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(220, 38, 38, 0.06) 0,
      rgba(220, 38, 38, 0.06) 8px,
      rgba(220, 38, 38, 0.02) 8px,
      rgba(220, 38, 38, 0.02) 16px
    ),
    linear-gradient(180deg, #f4d3d3 0%, #e8b8b8 100%);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 20, 25, 0.55);
  letter-spacing: 0.04em;
}
.placeholder__label {
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px dashed rgba(15, 20, 25, 0.3);
}
.placeholder--neutral {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(15, 20, 25, 0.04) 0,
      rgba(15, 20, 25, 0.04) 8px,
      rgba(15, 20, 25, 0.01) 8px,
      rgba(15, 20, 25, 0.01) 16px
    ),
    var(--paper-3);
}
.placeholder--ink {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 8px,
      rgba(255, 255, 255, 0.01) 8px,
      rgba(255, 255, 255, 0.01) 16px
    ),
    #1a1f26;
  color: rgba(255, 255, 255, 0.6);
}
.placeholder--ink .placeholder__label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero__visual-meta {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.hero__visual-meta .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}
.hero__visual-meta strong { font-weight: 700; }
.hero__visual-meta span { color: var(--ink-3); display: block; font-size: 11px; }

.hero__type-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #FFF;
  text-align: center;
}
.hero__type-display .red { color: var(--red-bright); }
.hero__type-display .num {
  display: block;
  font-size: clamp(72px, 9vw, 130px);
  margin-top: 12px;
  font-variant-numeric: tabular-nums;
}

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
@media (max-width: 880px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust__icon {
  width: 36px; height: 36px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--red);
  flex: none;
}
.trust__icon svg { width: 18px; height: 18px; }
.trust strong { color: var(--ink); display: block; font-size: 14px; }
.trust span { color: var(--ink-3); font-size: 12px; font-weight: 500; }

/* ============ Section heads ============ */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head__main { max-width: 56ch; }
.section-head__main h2 { margin-top: 12px; }
.section-head__main p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }

/* ============ Service grid ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: all 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.svc-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.svc-card__icon {
  width: 48px; height: 48px;
  background: var(--red-wash);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--red);
  margin-bottom: 20px;
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; flex: 1; }
.svc-card__link {
  font-weight: 600;
  color: var(--red);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.svc-card__urgency {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; }
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 15px; }

/* ============ Reviews ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review__stars { color: var(--amber); display: flex; gap: 2px; margin-bottom: 16px; }
.review__stars svg { width: 18px; height: 18px; }
.review__quote { font-size: 16px; color: var(--ink); margin-bottom: 24px; flex: 1; line-height: 1.55; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--paper-3);
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 14px;
}
.review__name { font-weight: 600; font-size: 14px; }
.review__meta { font-size: 12px; color: var(--ink-3); }

.section--ink .review {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--ink .review__quote { color: rgba(255, 255, 255, 0.92); }
.section--ink .review__name { color: #FFF; }
.section--ink .review__meta { color: rgba(255, 255, 255, 0.55); }

/* ============ Areas ============ */
.areas {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .areas { grid-template-columns: 1fr; gap: 32px; } }

.areas__map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.areas__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.area-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
}
.area-pill:hover { border-color: var(--red); transform: translateX(2px); }
.area-pill__meta { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.area-pill svg { width: 14px; height: 14px; color: var(--red); }

/* ============ FAQ ============ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 17px;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex: none;
  margin-right: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 6px; }
.faq-item p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--ink);
  color: #FFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 100%, rgba(220, 38, 38, 0.32), transparent 60%),
    radial-gradient(600px 300px at 10% 0%, rgba(220, 38, 38, 0.12), transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .final-cta__inner { grid-template-columns: 1fr; } }
.final-cta h2 { color: #FFF; margin-bottom: 16px; }
.final-cta p { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin-bottom: 28px; }
.final-cta__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFF;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.final-cta__phone .red { color: var(--red-bright); }
.final-cta__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer h4 { color: #FFF; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: rgba(255, 255, 255, 0.7); transition: color 0.15s; }
.footer a:hover { color: #FFF; }
.footer__brand-text { font-size: 14px; line-height: 1.6; margin-top: 18px; max-width: 36ch; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ Sticky mobile call bar ============ */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFF;
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
  z-index: 60;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}
.sticky-call .btn { flex: 1; padding: 14px; font-size: 14px; }
@media (max-width: 720px) { .sticky-call.is-on { display: flex; } }

/* ============ Service page hero ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero__crumbs {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.page-hero__crumbs a { font-weight: 500; }
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero__crumbs span:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: 0.5; }
.page-hero h1 { margin-bottom: 18px; max-width: 22ch; }
.page-hero h1 .accent { color: var(--red); }
.page-hero p.lede { margin-bottom: 28px; }
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero--service .page-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .page-hero--service .page-hero__inner { grid-template-columns: 1fr; } }
.page-hero__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-3);
}

/* ============ Two-col content ============ */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.prose h2 { margin-bottom: 18px; }
.prose h2:not(:first-child) { margin-top: 40px; }
.prose p { color: var(--ink-2); font-size: 17px; line-height: 1.65; margin-bottom: 16px; max-width: 64ch; }
.prose ul { padding-left: 0; margin: 0 0 16px; list-style: none; }
.prose ul li {
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px;
  color: var(--ink-2);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  background: var(--red-wash);
  border-radius: 4px;
}
.prose ul li::after {
  content: "";
  position: absolute;
  left: 4px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.aside {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 96px;
  align-self: start;
}
.aside h3 { font-size: 18px; margin-bottom: 8px; }
.aside p { color: var(--ink-2); font-size: 14px; margin-bottom: 18px; }
.aside__phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.aside ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.aside ul li { font-size: 13px; color: var(--ink-2); display: flex; gap: 8px; align-items: center; }
.aside ul li svg { width: 14px; height: 14px; color: var(--red); flex: none; }

/* ============ Pricing block (toggleable) ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.price-card--feature {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #FFF;
  position: relative;
}
.price-card__label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.price-card--feature .price-card__label { color: var(--red-bright); }
.price-card h3 { margin-bottom: 12px; }
.price-card--feature h3 { color: #FFF; }
.price-card__price { font-family: var(--font-display); font-size: 40px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.price-card__per { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.price-card--feature .price-card__per { color: rgba(255, 255, 255, 0.6); }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.price-card ul li { display: flex; gap: 8px; align-items: center; }
.price-card ul li svg { color: var(--red); width: 14px; height: 14px; flex: none; }
.price-card--feature ul li { color: rgba(255, 255, 255, 0.85); }
.price-card--feature ul li svg { color: var(--red-bright); }

/* Town stats */
.town-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 0;
}
@media (max-width: 720px) { .town-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.stat__label { font-size: 13px; color: var(--ink-2); font-weight: 500; }

/* Mini gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-3);
}

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

/* Add bottom padding when sticky bar is on (mobile) */
@media (max-width: 720px) {
  body.has-sticky { padding-bottom: 76px; }
}

/* ── WordPress theme extras ─────────────────────────────────────────── */

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 14px; font-size: 15px; font-family: inherit;
  border: 1px solid var(--line-2); border-radius: 10px; background: #fff;
  color: var(--ink); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(15,20,25,0.06); }
.contact-form textarea.form-input { min-height: 120px; }

/* ============ Mobile overflow guards ============ */
html, body { overflow-x: hidden; }
body { max-width: 100vw; }
img, video, svg, iframe { max-width: 100%; height: auto; }
table { max-width: 100%; }

/* Common overflow culprits */
.hero, .section, .page-hero, .announce, .header, .footer { overflow-x: clip; }
.container { width: 100%; }

/* Force ALL grids onto a single column at phone width as a fallback */
@media (max-width: 480px) {
  .hero__grid,
  .trust-strip__inner,
  .svc-grid,
  .steps,
  .reviews-grid,
  .areas,
  .final-cta__inner,
  .footer__top,
  .page-hero__inner,
  .page-hero--service .page-hero__inner,
  .two-col,
  .pricing,
  .contact-grid,
  .ev-leadwrap,
  .ev-service-grid,
  .ev-area-grid,
  .ev-leadform__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .town-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery { grid-template-columns: repeat(2, 1fr) !important; }
  h1 { font-size: clamp(30px, 8vw, 40px); line-height: 1.1; }
  h2 { font-size: clamp(24px, 6vw, 32px); }
  .section { padding: 48px 0; }
  .page-hero { padding-top: 28px !important; padding-bottom: 28px !important; }
}

/* Long words don't bust the layout (postcodes, URLs, emails) */
.prose, .lede, .hero__sub, .review__quote, p, h1, h2, h3, h4 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Forms shouldn't go past viewport */
input, textarea, select { max-width: 100%; }

/* Stop the hero canvas + decorative SVG from causing horizontal scroll */
.evfx-canvas, .evfx-arcs, .evfx-wires { max-width: 100%; }

/* ============ Image / placeholder system ============ */
.ev-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
}
.ev-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ev-img-wrap.is-square { aspect-ratio: 1; }

.ev-img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(220, 38, 38, 0.12), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(15, 20, 25, 0.08), transparent 50%),
    linear-gradient(135deg, var(--paper-2) 0%, var(--paper-3) 100%);
  border: 1.5px dashed var(--line-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--ink-3);
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
.ev-img-placeholder.is-square { aspect-ratio: 1; }
.ev-img-placeholder__icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  opacity: 0.6;
}
.ev-img-placeholder__label {
  max-width: 280px;
  font-weight: 500;
}

/* Placeholder hidden for logged-out visitors so the site looks clean.
   Logged-in admins still see the hint. */
body:not(.logged-in) .ev-img-placeholder__label { display: none; }

/* ============ Off-canvas drawer (mobile + tablet menu) ============ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover { border-color: var(--red); color: var(--red); }
.mobile-menu-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}
.mobile-menu-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.18s;
  transform-origin: center;
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .mobile-menu-toggle { display: inline-flex; }
}

/* Overlay */
.ev-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.55);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ev-drawer-overlay.is-open { opacity: 1; }

/* Drawer panel */
.ev-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: #FFF;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -16px 0 48px rgba(15, 20, 25, 0.18);
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0.34, 1);
}
.ev-drawer.is-open { transform: translateX(0); }

.ev-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  min-height: 80px;
}
.ev-drawer__logo { flex: 1; min-width: 0; display: inline-flex; align-items: center; }
.ev-drawer__logo-img { display: block; width: auto; }
.ev-drawer__logo-img.is-compact { height: 52px; max-width: 56px; }
.ev-drawer__logo-img.is-full { height: 44px; max-width: 230px; }
@media (max-width: 540px) {
  .ev-drawer__logo-img.is-full { height: 38px; max-width: 200px; }
}
.ev-drawer__close {
  background: var(--paper-2);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
  flex: none;
}
.ev-drawer__close:hover { background: var(--red); color: #fff; }
.ev-drawer__close svg { width: 18px; height: 18px; }

.ev-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.ev-drawer__cta .btn { width: 100%; justify-content: center; }

.ev-drawer__nav { padding: 8px 14px 14px; flex: 1; }

/* Force vertical layout regardless of menu_class the WP menu uses */
.ev-drawer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ev-drawer__nav li {
  display: block;
  width: 100%;
  float: none;
}
.ev-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.ev-drawer__nav > ul > li > a:hover,
.ev-drawer__nav > ul > li > a:focus-visible {
  background: var(--red-wash);
  color: var(--red);
}
.ev-drawer__nav .caret { display: none; }

/* Inline submenu for Services/Areas */
.ev-drawer__nav .sub-menu {
  padding: 4px 0 10px 16px !important;
  margin: 0 0 6px 8px !important;
  border-left: 2px solid var(--line);
}
.ev-drawer__nav .sub-menu a {
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
}
.ev-drawer__nav .sub-menu a:hover {
  background: var(--paper-2);
  color: var(--red);
}
.ev-drawer__nav .sub-menu__head a {
  font-weight: 700;
  color: var(--red);
}

.ev-drawer__foot {
  border-top: 1px solid var(--line);
  padding: 18px 22px 24px;
  background: var(--paper-2);
}
.ev-drawer__foot p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.ev-drawer__trust {
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

body.ev-drawer-open { overflow: hidden; }
.ev-drawer[hidden],
.ev-drawer-overlay[hidden] { display: none !important; }

/* Nav list from WP */
.nav__list { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; }
.nav__list a { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 6px; transition: all 0.15s; }
.nav__list a:hover, .nav__list .current-menu-item a { color: var(--ink); background: var(--paper-2); }

/* Checklist in CTA */
.final-cta__checklist {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 24px;
}
.final-cta__checklist .checklist-head {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.final-cta__checklist ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.final-cta__checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,0.85); font-size: 15px; counter-increment: step-counter;
}
.final-cta__checklist li::before {
  content: counter(step-counter);
  width: 24px; height: 24px; border-radius: 999px; background: #DC2626; color: #FFF;
  display: grid; place-items: center; font-size: 12px; font-weight: 700; flex: none;
}
.final-cta__checklist ol { counter-reset: step-counter; }

/* Prose (service body copy from WP editor) */
.prose h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 14px; }
.prose h2:not(:first-child) { margin-top: 40px; }
.prose p { color: var(--ink-2); font-size: 17px; line-height: 1.65; margin-bottom: 16px; max-width: 64ch; }
.prose ul { padding-left: 0; margin: 0 0 16px; list-style: none; }
.prose ul li { padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); position: relative; font-size: 16px; color: var(--ink-2); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 16px; width: 16px; height: 16px; background: var(--red-wash); border-radius: 4px; }
.prose ul li::after { content: ""; position: absolute; left: 4px; top: 19px; width: 8px; height: 4px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* WP images */
.wp-post-image { width: 100%; height: 100%; object-fit: cover; }

/* ============ Image logo ============ */
.logo--img { display: inline-flex; align-items: center; padding: 6px 0; }
.logo__img { display: block; height: 80px; width: auto; max-width: 360px; }
@media (max-width: 720px) { .logo__img { height: 56px; max-width: 240px; } }
.footer .logo__img { height: 88px; max-width: 360px; background: #fff; padding: 10px 16px; border-radius: 12px; }

/* Icon sizing */
.icon { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.logo__bolt { width: 16px; height: 16px; color: #FFF; }

/* ============ Nav dropdowns (Services / Areas) ============ */
.nav__list .menu-item { position: relative; }
.nav__list .menu-item-has-children > a .caret { font-size: 10px; margin-left: 4px; opacity: 0.6; transition: transform 0.15s; }
.nav__list .menu-item-has-children:hover > a .caret,
.nav__list .menu-item-has-children:focus-within > a .caret { transform: rotate(180deg); }
.nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  min-width: 260px;
  max-height: 460px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  z-index: 100;
}
.nav__list .menu-item-has-children:hover > .sub-menu,
.nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__list .sub-menu li { display: block; }
.nav__list .sub-menu a {
  display: block;
  font-size: 13.5px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav__list .sub-menu a:hover {
  background: var(--red-wash);
  color: var(--red);
}
.nav__list .sub-menu__head a {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 6px;
  padding-bottom: 12px;
}
.nav__list .sub-menu__head a:hover {
  background: transparent;
  color: var(--red);
}

/* ============ Floating action buttons (call + WhatsApp) ============ */
.ev-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 95;
}
.ev-fab__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 20, 25, 0.18), 0 4px 8px rgba(15, 20, 25, 0.12);
  transition: transform 0.18s, box-shadow 0.18s, width 0.25s;
  overflow: hidden;
}
.ev-fab__btn .icon { width: 26px; height: 26px; flex: none; }
.ev-fab__btn--call { background: var(--red); }
.ev-fab__btn--call:hover { background: var(--red-deep); }
.ev-fab__btn--wa { background: #25D366; }
.ev-fab__btn--wa:hover { background: #1DA851; }
.ev-fab__btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(15, 20, 25, 0.24), 0 6px 12px rgba(15, 20, 25, 0.14); }

/* Pulse ring on call button */
.ev-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: ev-fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes ev-fab-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0;   }
}

/* Label slides in on hover (desktop only) */
.ev-fab__label {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  background: var(--ink);
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
}
.ev-fab__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink);
}
.ev-fab__btn:hover .ev-fab__label,
.ev-fab__btn:focus-visible .ev-fab__label {
  opacity: 1;
  transform: translateX(0);
}

/* Hide FAB on mobile — sticky-call bar takes over */
@media (max-width: 720px) {
  .ev-fab { display: none; }
}
/* Hide nav dropdowns on mobile — mobile menu takes over */
@media (max-width: 960px) {
  .nav__list .sub-menu { display: none; }
}

/* ============ Emergency lead form ============ */
.ev-leadwrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .ev-leadwrap { grid-template-columns: 1fr; gap: 32px; } }

.ev-leadwrap__bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ev-leadwrap__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}
.ev-leadwrap__bullets svg {
  color: var(--red);
  flex: none;
}

.ev-leadform {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ev-leadform__head { margin-bottom: 22px; }
.ev-leadform__head h3 { font-size: 24px; margin: 10px 0 8px; }
.ev-leadform__head p { font-size: 14px; color: var(--ink-2); }

.ev-leadform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.ev-field { display: flex; flex-direction: column; gap: 6px; }
.ev-field--full { grid-column: 1 / -1; }
.ev-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.ev-field em {
  color: var(--red);
  font-style: normal;
}
.ev-field input,
.ev-field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ev-field input:focus,
.ev-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.ev-field textarea { resize: vertical; min-height: 80px; }
.ev-field--file input[type="file"] {
  font-size: 13px;
  padding: 10px;
  background: var(--paper-2);
  cursor: pointer;
}
.ev-field--file small {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
}

.btn--block { display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px; }
.ev-leadform .btn { width: 100%; }
.ev-leadform__foot {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.ev-leadform__foot a { color: var(--ink); }
.ev-leadform__foot a:hover { color: var(--red); }

@media (max-width: 600px) {
  .ev-leadform { padding: 22px 18px; }
  .ev-leadform__grid { grid-template-columns: 1fr; }
}
