@view-transition { navigation: auto; }

:root {
  --dark: #1A1A1A;
  --dark-mid: #2C2C2C;
  --dark-blue: #171E3E;
  --accent: #F7C820;
  --accent-hot: #FF8A00;
  --accent-dark: #D4A810;
  --surface: #F7F5EC;
  --surface-alt: #E8E8E8;
  --surface-warm: #FFF8D8;
  --text: #1A1A1A;
  --text-muted: #64666E;
  --white: #FFFFFF;
  --border: #D0D0D0;
  --nav-height: 72px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 5px;
  --shadow-raised: 0 18px 45px rgba(0, 0, 0, .18);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 0% 0%, rgba(247, 200, 32, .14), transparent 28%),
    linear-gradient(180deg, #fffdf2 0%, var(--surface) 34%, #eeeeee 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(26, 26, 26, .045) 1px, transparent 1px),
    linear-gradient(rgba(26, 26, 26, .04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(247, 200, 32, .2) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 14px 14px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4,
.section-label,
.btn,
.nav-type {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: .95;
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.1rem, 6.5vw, 3.4rem); }
h2 { font-size: clamp(3rem, 6.8vw, 6.6rem); }
h3 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
p, li { font-size: 1rem; line-height: 1.75; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 128px) 0;
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 12, 12, .98), rgba(38, 38, 38, .98)),
    radial-gradient(circle at 80% 10%, rgba(247, 200, 32, .18), transparent 32%);
}

.section.ombre {
  background:
    linear-gradient(180deg, var(--surface) 0%, #fff7c6 44%, #f0f0ed 100%),
    radial-gradient(circle at 10% 40%, rgba(255, 138, 0, .16), transparent 36%);
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.dark .section-head p,
.dark p,
.dark li { color: rgba(255, 255, 255, .72); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--accent-dark);
  font-size: 1.32rem;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font: 800 .76rem/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247, 200, 32, .72);
  animation: spark 2s ease-in-out infinite;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.28rem;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -38%;
  z-index: -1;
  width: 38%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, .35);
  transition: left .42s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::before { left: 118%; }

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  box-shadow: 0 16px 34px rgba(247, 200, 32, .28);
}

.btn-primary:hover { box-shadow: 0 22px 44px rgba(247, 200, 32, .36); }

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(247, 200, 32, .62);
  background: rgba(247, 200, 32, .08);
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--dark-blue));
}

.clicked { animation: clickPop .34s ease; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-text-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 80px) clamp(28px, 6vw, 80px) 80px clamp(24px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(18, 18, 18, .98), rgba(42, 42, 42, .95)),
    radial-gradient(circle at 18% 20%, rgba(247, 200, 32, .2), transparent 30%);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.hero-text-panel::before,
.hero-text-panel::after,
.circuit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(247, 200, 32, .26) 1px, transparent 1px),
    linear-gradient(rgba(247, 200, 32, .16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-text-panel::after {
  opacity: .55;
  background:
    radial-gradient(circle at 16% 28%, rgba(247, 200, 32, .22), transparent 16%),
    linear-gradient(90deg, transparent, rgba(247, 200, 32, .14), transparent);
  animation: circuitDrift 7s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 22px;
  text-transform: uppercase;
}

.hero p {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(247, 200, 32, .22);
  border-radius: var(--radius);
  font-weight: 700;
}

.hero-alert a { color: var(--accent); text-decoration: none; }

.hero-trust-chip {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(26px, 5vw, 64px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(86%, 360px);
  padding: 12px 15px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 200, 32, .36);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, .72);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.hero-image-panel {
  position: relative;
  min-height: 100vh;
  margin-left: -16%;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, .12), rgba(26, 26, 26, .48)),
    radial-gradient(circle at 50% 45%, rgba(247, 200, 32, .22), transparent 30%);
}

.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(26, 26, 26, .85), transparent);
}

.hero-electrician { background-image: url("images/hero.webp"); }
.hero-domestic { background-image: url("images/consumer-unit.webp"); }
.hero-commercial { background-image: url("images/commercial-tools.webp"); }
.hero-gallery { background-image: url("images/warehouse-power.webp"); }
.hero-about { background-image: url("images/control-panel.webp"); }
.hero-reviews { background-image: url("images/switch-box.webp"); }
.hero-contact { background-image: url("images/board-upgrade.webp"); }
.hero-privacy { background-image: url("images/wire-detail.webp"); }
.hero-thank { background-image: url("images/pole-service.webp"); }

.page-hero {
  min-height: 58vh;
  display: grid;
  place-items: end start;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 18, 18, .9) 0%, rgba(26, 26, 26, .76) 48%, rgba(247, 200, 32, .28) 100%),
    radial-gradient(circle at 85% 18%, rgba(255, 138, 0, .32), transparent 30%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 90px) 0 70px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
}

.giant-stats {
  color: var(--white);
  background:
    linear-gradient(135deg, #080808, #242424),
    radial-gradient(circle at 85% 30%, rgba(247, 200, 32, .2), transparent 32%);
  border-block: 1px solid rgba(247, 200, 32, .28);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 15%, rgba(247, 200, 32, .08), transparent 36%);
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 200, 32, .15);
  transform: skewX(-4deg);
}

.stat-number {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: .9;
  text-shadow: 0 0 30px rgba(247, 200, 32, .24);
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.service-grid,
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.bento-card,
.review-card,
.team-card,
.gallery-card,
.info-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 26, 26, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(232, 232, 232, .88)),
    radial-gradient(circle at 80% 0%, rgba(247, 200, 32, .22), transparent 34%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-card::before,
.bento-card::before,
.review-card::before,
.team-card::before,
.info-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 2px;
  height: 18px;
  background: var(--accent);
  box-shadow: 10px 0 0 rgba(247, 200, 32, .42);
}

.service-card::after,
.bento-card::after,
.review-card::after,
.team-card::after,
.info-card::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 18px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 -10px 0 rgba(247, 200, 32, .42);
}

.service-card:hover,
.bento-card:hover,
.review-card:hover,
.team-card:hover,
.gallery-card:hover,
.info-card:hover {
  transform: translateY(-7px);
  border-color: rgba(247, 200, 32, .58);
  box-shadow: var(--shadow-raised);
}

.service-card {
  min-height: 250px;
  padding: 26px;
}

.service-card.feature { grid-column: span 2; }

.service-card h3,
.bento-card h3,
.team-card h3,
.info-card h3 {
  margin: 20px 0 12px;
  color: var(--text);
  text-transform: uppercase;
}

.service-card p,
.bento-card p,
.team-card p,
.info-card p {
  color: var(--text-muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.bento-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--dark);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  box-shadow: 0 12px 28px rgba(247, 200, 32, .25);
}

.bento-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(247, 200, 32, .4);
  border-radius: 10px;
  transform: rotate(6deg);
  animation: iconOrbit 5s linear infinite;
}

.bento-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .36), transparent);
  transform: translateX(-120%);
  animation: iconSweep 3.4s ease-in-out infinite;
}

.service-card:hover .bento-icon,
.bento-card:hover .bento-icon {
  animation: iconJolt .52s ease;
}

.alternating {
  display: grid;
  gap: 26px;
}

.alt-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.alt-row.reverse { grid-template-columns: 1.05fr .95fr; }
.alt-row.reverse .alt-media { order: 2; }

.alt-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-raised);
}

.alt-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.alt-row:hover .alt-media img { transform: scale(1.045); filter: saturate(1.12); }

.alt-content {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 248, 216, .82)),
    radial-gradient(circle at 100% 0%, rgba(247, 200, 32, .18), transparent 32%);
  border: 1px solid rgba(26, 26, 26, .08);
}

.tick-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.tick-list i { color: var(--accent-dark); margin-top: 4px; flex: 0 0 auto; }

.cert-band,
.ev-band,
.emergency-band,
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 72px) 0;
}

.cert-band {
  color: var(--white);
  background:
    linear-gradient(135deg, #0a0a0a, var(--dark-blue)),
    radial-gradient(circle at 18% 20%, rgba(247, 200, 32, .16), transparent 36%);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.cert-card {
  padding: 24px;
  border: 1px solid rgba(247, 200, 32, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}

.cert-card h3 { color: var(--accent); margin: 14px 0 8px; }

.ev-band {
  color: var(--dark);
  background:
    linear-gradient(135deg, #F7C820 0%, #FFB000 42%, #FFF3A2 100%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, .58), transparent 30%);
}

.ev-band::before,
.emergency-band::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(45deg, rgba(26, 26, 26, .22) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(26, 26, 26, .2) 25%, transparent 25%);
  background-size: 28px 28px;
}

.band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.band-grid h2 { margin-bottom: 12px; }
.band-grid p { max-width: 680px; color: rgba(26, 26, 26, .74); }

.emergency-band {
  color: var(--dark);
  background:
    linear-gradient(135deg, #FFD500, #FF8A00),
    radial-gradient(circle at 0% 50%, rgba(255, 255, 255, .4), transparent 28%);
}

.emergency-number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: .05em;
  text-decoration: none;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, #101010, #171E3E 70%, #2C2C2C),
    radial-gradient(circle at 100% 10%, rgba(247, 200, 32, .22), transparent 30%);
}

.review-marquee {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeLeft 36s linear infinite;
}

.marquee-track.reverse {
  animation-name: marqueeRight;
  animation-duration: 42s;
}

.review-marquee:hover .marquee-track { animation-play-state: paused; }

.review-card {
  width: 350px;
  min-height: 210px;
  padding: 24px;
  flex: 0 0 auto;
}

.stars {
  color: var(--accent-dark);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.review-card p { color: var(--text); }
.review-card strong { display: block; margin-top: 14px; }
.review-card span { color: var(--text-muted); font-size: .9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-card {
  min-height: 260px;
  background: var(--dark);
}

.gallery-card.large { grid-column: span 2; grid-row: span 2; }
.gallery-card.tall { grid-row: span 2; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(26, 26, 26, .9), rgba(23, 30, 62, .84));
  border-left: 3px solid var(--accent);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}

.gallery-card:hover figcaption { transform: translateY(0); opacity: 1; }

.team-grid,
.review-grid,
.info-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card,
.info-card,
.bento-card {
  padding: 26px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 248, 216, .82)),
    radial-gradient(circle at 90% 0%, rgba(247, 200, 32, .2), transparent 34%);
  border: 1px solid rgba(26, 26, 26, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }

label {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  color: var(--text);
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

textarea { min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(247, 200, 32, .2);
  transform: translateY(-1px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, #0c0c0c, #171E3E),
    radial-gradient(circle at 90% 0%, rgba(247, 200, 32, .2), transparent 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.contact-card a { color: var(--accent); text-decoration: none; font-weight: 900; }

.map-card {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: rgba(255, 255, 255, .8);
  text-align: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(26, 26, 26, .9), rgba(23, 30, 62, .88)),
    repeating-linear-gradient(45deg, rgba(247, 200, 32, .12) 0 2px, transparent 2px 16px);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.05);
}

.form-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent-dark);
}

.sample-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(26, 26, 26, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item button span {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.faq-panel {
  padding: 0 20px 18px;
  color: var(--text-muted);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid rgba(247, 200, 32, .35);
}

.mobile-call-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  text-decoration: none;
  font-weight: 900;
}

.mobile-call-bar a:first-child {
  color: var(--accent);
  background: var(--dark);
}

.split-word { display: inline-block; }
.reveal,
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes spark {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes circuitDrift {
  0% { transform: translateX(-6%); opacity: .35; }
  50% { opacity: .7; }
  100% { transform: translateX(6%); opacity: .35; }
}

@keyframes iconOrbit {
  to { transform: rotate(366deg); }
}

@keyframes iconSweep {
  0%, 40% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}

@keyframes iconJolt {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-6deg) scale(1.06); }
  55% { transform: rotate(5deg) scale(1.02); }
}

@keyframes heroKenBurns {
  from { background-size: auto 100%; }
  to { background-size: auto 108%; }
}

@keyframes clickPop {
  0% { transform: scale(.99); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes marqueeRight {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

@media (max-width: 980px) {
  .hero,
  .alt-row,
  .alt-row.reverse,
  .contact-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }
  .hero-text-panel,
  .hero-image-panel {
    clip-path: none;
    margin: 0;
  }
  .hero-text-panel { min-height: auto; padding-top: 126px; }
  .hero-image-panel { min-height: 360px; background-attachment: scroll; }
  .hero-trust-chip { left: 18px; right: 18px; bottom: 22px; }
  .alt-row.reverse .alt-media { order: 0; }
  .service-grid,
  .bento-grid,
  .team-grid,
  .review-grid,
  .info-grid,
  .sector-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.large { grid-column: span 2; }
}

@media (max-width: 680px) {
  body { padding-bottom: 58px; }
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 66px 0; }
  .hero-actions,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .band-grid .btn,
  .quote-form .btn { width: 100%; }
  .service-grid,
  .bento-grid,
  .team-grid,
  .review-grid,
  .info-grid,
  .sector-grid,
  .cert-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .service-card.feature,
  .gallery-card.large { grid-column: auto; }
  .gallery-card.tall { grid-row: auto; }
  .gallery-grid { grid-auto-rows: 260px; }
  .review-card { width: 300px; }
  .mobile-call-bar { display: grid; }
  .page-hero { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .hero-image-panel {
    animation: none !important;
    background-size: cover !important;
  }
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent, #F7C820);
  outline-offset: 2px;
  border-radius: 2px;
}
