/* ══════════════════════════════════════════════
   Austin Electricians — austin-electricians.co
   Palette: carbon black / volt yellow / ember red
   Type: Barlow Condensed (display) / Inter (body)
══════════════════════════════════════════════ */

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

:root {
  --black:   #0D0D0D;
  --carbon:  #141414;
  --steel:   #1E1E1E;
  --plate:   #2A2A2A;
  --volt:    #E8FF00;
  --volt-d:  #C8DF00;
  --ember:   #FF3D00;
  --ember-d: #E03300;
  --ice:     #F0F0F0;
  --fog:     #888888;
  --border:  rgba(232,255,0,.12);
  --disp:    'Barlow Condensed', 'Impact', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--ice);
  overflow-x: hidden;
  line-height: 1.65;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--volt); color: var(--black);
  padding: .5rem 1rem; border-radius: 4px;
  font-weight: 700; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── CIRCUIT CANVAS ── */
#circuit-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .55;
}

/* ══ ANNOUNCE BAR ══ */
.announce {
  background: var(--ember); color: #fff;
  text-align: center; padding: 9px 5vw;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; position: relative; z-index: 101;
}
.announce a { color: #fff; text-decoration: underline; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(13,13,13,.98); }

.nav-brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
}
.nav-bolt {
  width: 34px; height: 34px;
  background: var(--volt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-bolt svg { width: 18px; height: 18px; }
.nav-wordmark {
  font-family: var(--disp);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: .07em; color: var(--ice);
  line-height: 1;
}
.nav-wordmark small {
  display: block; font-family: var(--body);
  font-size: .6rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--fog); margin-top: 2px;
}

.nav-right { display: flex; align-items: center; gap: .85rem; }
.nav-ph {
  font-size: .85rem; font-weight: 600;
  color: var(--volt); text-decoration: none; display: none;
  transition: color .2s;
}
.nav-ph:hover { color: var(--volt-d); }
@media(min-width:840px){ .nav-ph { display: block; } }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--volt); color: var(--black);
  font-family: var(--disp); font-size: 1rem;
  font-weight: 700; letter-spacing: .1em;
  padding: 9px 18px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--volt-d); transform: translateY(-1px); }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 110px 5vw 70px;
  overflow: hidden;
}

/* Diagonal split: left content / right image */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48%;
  background: var(--carbon);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(232,255,0,.35);
  color: var(--volt); background: rgba(232,255,0,.06);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
  margin-bottom: 1.3rem;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--volt);
  animation: tdot 1.4s ease-in-out infinite;
}
@keyframes tdot { 0%,100%{opacity:1} 50%{opacity:.1} }

.hero-h1 {
  font-family: var(--disp);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: .02em;
  color: var(--ice);
  margin-bottom: 1.4rem;
}
.hero-h1 .volt { color: var(--volt); }

/* Volt underline — the signature draw animation */
.hero-h1 .volt {
  position: relative; display: inline-block;
}
.hero-h1 .volt::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  height: 4px; width: 0;
  background: var(--volt);
  animation: vdraw 1s cubic-bezier(.4,0,.2,1) .7s forwards;
}
@keyframes vdraw { to { width: 100%; } }

.hero-sub {
  font-size: 1.02rem; color: rgba(240,240,240,.68);
  line-height: 1.75; max-width: 460px;
  margin-bottom: 2rem;
}

.hero-acts { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

.btn-volt {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--volt); color: var(--black);
  font-family: var(--disp); font-size: 1.15rem;
  font-weight: 700; letter-spacing: .1em;
  padding: 15px 28px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(232,255,0,.4);
  animation: vcta 2.8s ease-in-out 1.5s infinite;
}
.btn-volt:hover { background: var(--volt-d); transform: translateY(-2px); animation: none; box-shadow: 0 6px 24px rgba(232,255,0,.3); }
@keyframes vcta {
  0%,100%{ box-shadow:0 0 0 0 rgba(232,255,0,.4); }
  50%{ box-shadow:0 0 0 16px rgba(232,255,0,0); }
}

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  border: 1px solid rgba(240,240,240,.2);
  color: var(--ice); font-size: .92rem; font-weight: 500;
  padding: 14px 22px; border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: rgba(232,255,0,.4); background: rgba(232,255,0,.05); color: var(--volt); }

.hero-ph-strip {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(232,255,0,.12);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.hero-ph-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--fog); }
.hero-ph-num {
  font-family: var(--disp);
  font-size: 2.1rem; letter-spacing: .06em;
  color: var(--volt); text-decoration: none;
  transition: color .2s;
}
.hero-ph-num:hover { color: var(--volt-d); }

/* Hero right — stacked images */
.hero-right { position: relative; z-index: 2; }
.hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.hero-img {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--plate);
}
.hero-img:first-child {
  grid-row: span 2;
  animation: flt 8s ease-in-out infinite;
}
.hero-img:nth-child(2) { animation: flt 8s ease-in-out 1s infinite; }
.hero-img:nth-child(3) { animation: flt 8s ease-in-out 2s infinite; }
@keyframes flt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-img img { width:100%; height:100%; object-fit:cover; display:block; }

.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--volt); color: var(--black);
  padding: 12px 16px; border-radius: 6px;
  font-family: var(--disp); font-size: .85rem;
  font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 8px 28px rgba(232,255,0,.3);
  animation: bpop .6s cubic-bezier(.34,1.56,.64,1) 1.2s both;
  white-space: nowrap;
}
@keyframes bpop { from{transform:scale(0) rotate(-8deg);opacity:0} to{transform:scale(1) rotate(0);opacity:1} }
.hero-badge strong { display: block; font-size: 1.5rem; letter-spacing: .02em; }

/* ══ TRUST STRIP ══ */
.trust-strip {
  position: relative; z-index: 1;
  background: var(--carbon);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 5vw;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1.6rem;
}
.trust-it {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; color: rgba(240,240,240,.8);
}
.trust-it svg { color: var(--volt); flex-shrink: 0; }

/* ══ SECTIONS ══ */
section { position: relative; z-index: 1; }
.wrap { max-width: 1200px; margin: auto; padding: 90px 5vw; }

.ew {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--volt); margin-bottom: .7rem;
}
h2 {
  font-family: var(--disp);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; letter-spacing: .04em; line-height: 1.02;
  color: var(--ice); margin-bottom: 1rem;
}
h2 em { font-style: normal; color: var(--volt); }
.sec-lead {
  font-size: .98rem; color: rgba(240,240,240,.6);
  line-height: 1.78; max-width: 600px; margin-bottom: 3rem;
}

/* ══ SERVICES ══ */
.svc-bg { background: var(--carbon); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  border: 1px solid var(--plate);
  border-radius: 8px;
  overflow: hidden;
}
.svc-card {
  background: var(--steel);
  padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 0;
  background: var(--volt);
  transition: height .35s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover { background: #212121; }
.svc-card:hover::before { height: 100%; }
.svc-num {
  font-family: var(--disp);
  font-size: 3rem; font-weight: 700; letter-spacing: .02em;
  color: rgba(232,255,0,.1); line-height: 1;
  margin-bottom: .5rem;
  transition: color .25s;
}
.svc-card:hover .svc-num { color: rgba(232,255,0,.22); }
.svc-card h3 {
  font-family: var(--disp);
  font-size: 1.3rem; letter-spacing: .05em;
  color: var(--ice); margin-bottom: .6rem;
}
.svc-card p { font-size: .87rem; color: var(--fog); line-height: 1.68; }
.svc-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--volt); text-decoration: none;
  opacity: 0; transition: opacity .25s;
}
.svc-card:hover .svc-link { opacity: 1; }

/* ══ PHOTO BREAK — GALLERY STRIP ══ */
.gallery-strip {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  height: 320px; gap: 4px;
}
.gal-item { overflow: hidden; position: relative; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
  filter: brightness(.8) saturate(.9);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(.95) saturate(1.1); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--disp); font-size: .85rem;
  font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--volt);
}

/* ══ PROCESS ══ */
.proc-bg { background: var(--carbon); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.proc-line {
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,255,0,.3), rgba(232,255,0,.3), transparent);
}
.proc-step { text-align: center; padding: 0 1.2rem; }
.proc-n {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--volt); color: var(--black);
  font-family: var(--disp); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  box-shadow: 0 0 24px rgba(232,255,0,.3);
}
.proc-step h3 {
  font-family: var(--disp); font-size: 1.1rem;
  letter-spacing: .05em; color: var(--ice); margin-bottom: .4rem;
}
.proc-step p { font-size: .83rem; color: var(--fog); }

/* ══ REVIEWS ══ */
.rev-bg { background: var(--steel); }
.rev-wrap { overflow: hidden; }
.rev-track {
  display: flex; gap: 1.2rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.rev-card {
  flex: 0 0 calc(33.333% - .8rem);
  background: var(--carbon);
  border: 1px solid var(--plate);
  border-radius: 6px; padding: 1.8rem;
  position: relative; overflow: hidden;
}
.rev-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--volt); transform: scaleX(0);
  transform-origin: left; transition: transform .4s;
}
.rev-card:hover::before { transform: scaleX(1); }
.rev-stars { color: var(--volt); font-size: .95rem; letter-spacing: .04em; margin-bottom: .8rem; }
.rev-body { font-size: .9rem; color: rgba(240,240,240,.8); line-height: 1.7; margin-bottom: 1.1rem; }
.rev-foot { display: flex; align-items: center; gap: .75rem; }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 1.1rem; font-weight: 700; color: var(--black);
  flex-shrink: 0;
}
.rev-name { font-weight: 600; font-size: .9rem; color: var(--ice); }
.rev-loc { font-size: .73rem; color: var(--fog); margin-top: .1rem; }

.car-ctrl {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; margin-top: 2rem;
}
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--plate);
  border: 1px solid rgba(232,255,0,.2);
  color: var(--volt); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
}
.car-btn:hover { background: rgba(232,255,0,.1); }
.car-dots { display: flex; gap: .5rem; }
.car-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--plate); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.car-dot.active { background: var(--volt); transform: scale(1.35); }

/* ══ WHY US ══ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.why-list li:last-child { border-bottom: none; }
.why-ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 6px;
  background: rgba(232,255,0,.08);
  border: 1px solid rgba(232,255,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--volt); margin-top: 2px;
}
.why-t strong { display: block; font-weight: 700; color: var(--ice); margin-bottom: .2rem; }
.why-t p { font-size: .87rem; color: var(--fog); line-height: 1.62; }
.why-panel {
  background: var(--volt);
  border-radius: 8px; padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(232,255,0,.2);
}
.why-big { font-family: var(--disp); font-size: 5.5rem; font-weight: 700; letter-spacing: .02em; color: var(--black); line-height: 1; }
.why-lbl { font-size: .78rem; font-weight: 700; letter-spacing: .08em; color: rgba(13,13,13,.65); margin-bottom: 1.8rem; }
.why-rev {
  background: rgba(13,13,13,.12);
  border-radius: 6px; padding: 1.2rem;
  margin-top: 1rem; text-align: left;
}
.why-rev .stars { color: var(--black); font-size: .9rem; margin-bottom: .4rem; }
.why-rev p { font-size: .83rem; color: rgba(13,13,13,.85); line-height: 1.6; }
.why-rev cite { font-size: .7rem; color: rgba(13,13,13,.55); font-style: normal; display: block; margin-top: .3rem; }

/* ══ EMERGENCY BAND ══ */
.emg-band {
  background: var(--ember);
  text-align: center;
}
.emg-band h2 { color: #fff; }
.emg-band p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ember);
  font-family: var(--disp); font-size: 1.15rem;
  font-weight: 700; letter-spacing: .1em;
  padding: 16px 32px; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }

/* ══ CONTACT ══ */
.contact-bg { background: var(--carbon); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-rows { display: flex; flex-direction: column; gap: 2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,255,0,.08);
  border: 1px solid rgba(232,255,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--volt);
}
.info-lbl { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fog); margin-bottom: .25rem; }
.info-val { color: var(--ice); font-size: 1rem; font-weight: 500; line-height: 1.5; }
.info-val a { color: var(--ice); text-decoration: none; transition: color .2s; }
.info-val a:hover { color: var(--volt); }
.map-wrap {
  border-radius: 8px; overflow: hidden; height: 340px;
  border: 1px solid var(--plate);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ FAQ ══ */
.faq-bg { background: var(--steel); }
details {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.2rem 0;
}
details summary {
  cursor: pointer; list-style: none;
  font-family: var(--disp); font-size: 1.1rem;
  letter-spacing: .04em; color: var(--ice);
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.fq-ic { color: var(--volt); font-size: 1.4rem; margin-left: 1rem; flex-shrink: 0; transition: transform .25s; }
details[open] .fq-ic { transform: rotate(45deg); }
details p { margin-top: .85rem; font-size: .9rem; color: var(--fog); line-height: 1.72; }

/* ══ FOOTER ══ */
footer { background: #080808; padding: 48px 5vw 24px; position: relative; z-index: 1; }
.ft-inner { max-width: 1200px; margin: auto; }
.ft-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.5rem;
}
.ft-brand p { font-size: .8rem; color: var(--fog); margin-top: .6rem; max-width: 280px; line-height: 1.65; }
.ft-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.ft-col h5 {
  font-family: var(--disp); font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--volt); margin-bottom: .9rem;
}
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .45rem; }
.ft-col ul li a { font-size: .8rem; color: var(--fog); text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: var(--volt); }
.ft-bot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ft-bot p { font-size: .73rem; color: rgba(136,136,136,.45); }
.ft-nap { font-size: .73rem; color: rgba(136,136,136,.45); font-style: normal; }
.ft-nap a { color: inherit; text-decoration: none; }

/* ══ FLOATING CALL BUTTON ══ */
.fab-wrap {
  position: fixed; bottom: 24px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fab-lbl {
  background: rgba(13,13,13,.95); color: var(--volt);
  font-size: .66rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 3px;
  white-space: nowrap; border: 1px solid rgba(232,255,0,.25);
  animation: flbl .5s 2.2s both;
}
@keyframes flbl { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.fab {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative;
  box-shadow: 0 4px 24px rgba(255,61,0,.6);
  transition: transform .2s;
}
.fab::before, .fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--ember);
  animation: fab-r 2.4s ease-out infinite;
}
.fab::after { animation-delay: 1.2s; }
@keyframes fab-r { 0%{transform:scale(1);opacity:.75} 100%{transform:scale(2.6);opacity:0} }
.fab:hover { transform: scale(1.1); }
.fab svg { position: relative; z-index: 1; }

/* ══ SCROLL REVEAL ══ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ══ RESPONSIVE ══ */
@media(max-width:960px){
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero::after { display: none; }
  .hero-imgs { height: 260px; grid-template-rows: 1fr 1fr; }
  .hero-img:first-child { grid-row: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-panel { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rev-card { flex: 0 0 calc(50% - .6rem); }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .proc-line { display: none; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-strip .gal-item { height: 200px; }
}
@media(max-width:640px){
  .svc-grid { grid-template-columns: 1fr; }
  .rev-card { flex: 0 0 100%; }
  .proc-grid { grid-template-columns: 1fr; }
  .ft-top { flex-direction: column; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px){
  .wrap { padding: 64px 5vw; }
  .trust-strip { gap: .8rem; }
  .fab { width: 58px; height: 58px; }
  .hero-badge { left: 0; bottom: -10px; }
}
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  #circuit-canvas { display: none; }
}
