/* ══════════════════════════════════════════════
   Brandon Electricians — brandon-electricians.com
   LIGHT site — first in series
   Palette: white base / deep indigo / coral red
   Type: Space Grotesk (display + body)
══════════════════════════════════════════════ */

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

:root {
  --white:    #FFFFFF;
  --off:      #F7F7F5;
  --light:    #EEEEF0;
  --indigo:   #1A1464;
  --indigo-m: #252090;
  --indigo-l: #3730B8;
  --coral:    #E84855;
  --coral-d:  #CC3340;
  --slate:    #4A4A6A;
  --mist:     #8888AA;
  --ink:      #111120;
  --border:   #E0E0E8;
  --border-i: rgba(26,20,100,.1);
  --font:     'Space Grotesk', system-ui, sans-serif;
}

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

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--indigo); color: #fff;
  padding: .5rem 1rem; border-radius: 4px;
  font-weight: 700; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important}
  #bp-canvas{display:none}
}

/* ── BLUEPRINT CANVAS ── */
#bp-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 1;
}

/* ══ TOP ANNOUNCE BAR ══ */
.announce {
  background: var(--indigo);
  color: rgba(255,255,255,.88);
  text-align: center; padding: 9px 5vw;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .03em;
  position: relative; z-index: 101;
}
.announce strong { color: #fff; }
.announce a { color: #a8a8ff; text-decoration: underline; }

/* ══ NAV — LIGHT ══ */
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: 66px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,20,100,.08); }

.nav-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-box {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--indigo); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-box svg { width: 20px; height: 20px; }
.nav-wordmark {
  font-size: 1.1rem; font-weight: 700;
  color: var(--indigo); line-height: 1.1; letter-spacing: -.02em;
}
.nav-wordmark small {
  display: block; font-size: .58rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mist); margin-top: 1px;
}

.nav-right { display: flex; align-items: center; gap: .85rem; }
.nav-ph { font-size: .88rem; font-weight: 700; color: var(--indigo); text-decoration: none; display: none; }
.nav-ph:hover { color: var(--coral); }
@media(min-width:860px){ .nav-ph { display: block; } }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--coral); color: #fff;
  font-size: .88rem; font-weight: 700; letter-spacing: .04em;
  padding: 9px 18px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 12px rgba(232,72,85,.3);
}
.nav-cta:hover { background: var(--coral-d); transform: translateY(-1px); }

/* ══ HERO — full bleed image with overlay text ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* Dark gradient up from bottom, indigo on left */
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,20,100,.92) 0%, rgba(26,20,100,.7) 45%, rgba(26,20,100,.1) 100%),
    linear-gradient(to top, rgba(26,20,100,.85) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 140px 5vw 80px;
}

/* BIG stat strip at top of hero */
.hero-stats {
  display: flex; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.hstat {
  border-left: 3px solid var(--coral);
  padding-left: 1rem;
}
.hstat-num {
  font-size: 2.5rem; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -.03em;
}
.hstat-lbl {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: .2rem;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,72,85,.2); border: 1px solid rgba(232,72,85,.5);
  color: #ff8f9a; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; margin-bottom: 1.2rem;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ff8f9a;
  animation: pd 1.5s ease-in-out infinite;
}
@keyframes pd { 0%,100%{opacity:1} 50%{opacity:.15} }

.hero-h1 {
  font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -.04em; color: #fff;
  margin-bottom: 1.4rem;
}
/* The signature: the large word "BRANDON" rendered with a coral fill */
.hero-h1 .fill-coral { color: var(--coral); }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 520px; margin-bottom: 2.2rem;
  font-weight: 400;
}

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

.btn-coral {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--coral); color: #fff;
  font-size: 1rem; font-weight: 700; letter-spacing: .03em;
  padding: 14px 28px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(232,72,85,.5);
  animation: cpulse 2.8s ease-in-out 2s infinite;
  transition: background .2s, transform .15s;
}
.btn-coral:hover { background: var(--coral-d); transform: translateY(-2px); animation: none; }
@keyframes cpulse {
  0%,100%{ box-shadow:0 0 0 0 rgba(232,72,85,.5); }
  50%{ box-shadow:0 0 0 18px rgba(232,72,85,0); }
}

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 2px solid rgba(255,255,255,.35);
  color: #fff; font-size: .92rem; font-weight: 600;
  padding: 12px 22px; border-radius: 6px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* Large phone at bottom of hero */
.hero-phone {
  margin-top: 2.2rem; display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-phone-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.hero-phone-num {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em;
  color: #fff; text-decoration: none; transition: color .2s;
}
.hero-phone-num:hover { color: var(--coral); }

/* ══ TRUST STRIP — light version ══ */
.trust-strip {
  position: relative; z-index: 1;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 16px 5vw;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .03em; color: var(--slate);
}
.trust-item svg { color: var(--indigo); flex-shrink: 0; }

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

.eyebrow {
  font-size: .66rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: .65rem;
}
h2 {
  font-size: clamp(1.9rem,4vw,3rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.03em; color: var(--indigo);
  margin-bottom: 1rem;
}
h2 em { font-style: normal; color: var(--coral); }
.sec-lead {
  font-size: 1rem; color: var(--slate);
  line-height: 1.78; max-width: 600px; margin-bottom: 3rem;
}

/* ══ BENTO SERVICES GRID ══ */
.svc-bg { background: var(--white); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}

/* Signature layout: first cell big, last cell big */
.bento-cell:nth-child(1) { grid-column: span 2; }
.bento-cell:nth-child(6) { grid-column: span 2; grid-column-start: 2; }

.bento-cell {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
}
/* Indigo fill slides up from bottom on hover */
.bento-cell::before {
  content: ''; position: absolute;
  inset: 0; border-radius: 12px;
  background: var(--indigo);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,20,100,.15); border-color: var(--indigo); }
.bento-cell:hover::before { transform: translateY(0); }
.bento-cell:hover h3,
.bento-cell:hover p,
.bento-cell:hover .bento-icon { color: #fff; }
.bento-cell:hover .bento-more { opacity: 1; color: var(--coral); }

.bento-icon {
  position: relative; z-index: 1;
  font-size: 2rem; margin-bottom: auto;
  color: var(--indigo); transition: color .3s;
  padding-bottom: 1rem;
}
/* Big translucent number behind each cell */
.bento-cell::after {
  content: attr(data-num);
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; font-weight: 800;
  color: rgba(26,20,100,.05); line-height: 1;
  pointer-events: none; z-index: 0;
  transition: color .3s;
}
.bento-cell:hover::after { color: rgba(255,255,255,.06); }

.bento-cell h3 {
  position: relative; z-index: 1;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--indigo);
  margin-bottom: .5rem; transition: color .3s;
}
.bento-cell p {
  position: relative; z-index: 1;
  font-size: .87rem; color: var(--slate);
  line-height: 1.65; transition: color .3s;
}
.bento-more {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .9rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--indigo-l); text-decoration: none;
  opacity: 0; transition: opacity .3s, color .3s;
}

/* ══ PHOTO BREAK STRIP ══ */
.photo-strip {
  position: relative; z-index: 1;
  height: 380px; overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: brightness(.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.photo-strip:hover img { transform: scale(1.0); }
.photo-strip-text {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 5vw;
  background: linear-gradient(90deg, rgba(26,20,100,.6) 0%, transparent 60%);
}
.photo-strip-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.photo-strip h3 {
  font-size: clamp(1.6rem,3.5vw,2.8rem);
  font-weight: 800; letter-spacing: -.03em;
  color: #fff; margin-bottom: .75rem;
}
.photo-strip p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 500px; }

/* ══ PROCESS — horizontal timeline ══ */
.proc-bg { background: var(--indigo); }
.proc-bg .eyebrow { color: var(--coral); }
.proc-bg h2 { color: #fff; }
.proc-bg .sec-lead { color: rgba(255,255,255,.6); }

.timeline {
  position: relative;
  display: flex; gap: 0;
  margin-top: 3rem;
}
/* Connecting line */
.timeline::before {
  content: ''; position: absolute;
  top: 28px; left: 28px; right: 28px; height: 2px;
  background: rgba(255,255,255,.15);
}
/* Coral progress line animates in on scroll */
.timeline::after {
  content: ''; position: absolute;
  top: 28px; left: 28px; height: 2px;
  width: 0; background: var(--coral);
  animation: tline 2s cubic-bezier(.4,0,.2,1) .5s forwards;
}
.timeline.in::after { animation: tline 2s cubic-bezier(.4,0,.2,1) .5s forwards; }
@keyframes tline { to { width: calc(100% - 56px); } }

.tstep {
  flex: 1; text-align: center;
  padding: 0 1rem; position: relative;
}
.tstep-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--indigo-m); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.3rem; font-weight: 800; color: rgba(255,255,255,.4);
  transition: background .3s, border-color .3s, color .3s;
  position: relative; z-index: 1;
}
.tstep:hover .tstep-dot { background: var(--coral); border-color: var(--coral); color: #fff; }
.tstep h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.tstep p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ══ STATS ROW ══ */
.stats-bg { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-row {
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 2rem; padding: 3rem 5vw;
  max-width: 1200px; margin: 0 auto;
}
.stat-block { text-align: center; }
.stat-n {
  font-size: 3.2rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--indigo);
  line-height: 1;
}
.stat-u { color: var(--coral); }
.stat-l {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mist); margin-top: .3rem;
}

/* ══ REVIEWS — VERTICAL STACKED ══ */
.rev-bg { background: var(--white); }
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.rev-block {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.rev-block:hover { box-shadow: 0 8px 32px rgba(26,20,100,.1); border-color: var(--indigo-l); }
/* Big quote mark */
.rev-block::before {
  content: '\201C';
  position: absolute; top: -1rem; left: 1.5rem;
  font-size: 8rem; line-height: 1;
  color: var(--indigo); opacity: .05;
  font-weight: 800; pointer-events: none;
}
/* Coral left accent */
.rev-accent {
  width: 3px; height: 100%;
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--coral); border-radius: 12px 0 0 12px;
}
.rev-stars { color: #F59E0B; font-size: .95rem; letter-spacing: .04em; margin-bottom: .9rem; }
.rev-text {
  font-size: .95rem; color: var(--slate); line-height: 1.72;
  margin-bottom: 1.2rem; font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: .75rem; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: .9rem; color: var(--indigo); }
.rev-loc { font-size: .72rem; color: var(--mist); margin-top: .1rem; }
/* Featured large review */
.rev-block.featured {
  grid-column: span 2;
  background: var(--indigo);
  border-color: var(--indigo);
}
.rev-block.featured .rev-text { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.rev-block.featured .rev-name { color: #fff; }
.rev-block.featured .rev-loc { color: rgba(255,255,255,.5); }
.rev-block.featured::before { color: rgba(255,255,255,.08); }

/* ══ WHY US — alternating text/image ══ */
.why-bg { background: var(--off); }
.why-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.why-pair:last-child { margin-bottom: 0; }
.why-pair.flip .why-text { order: 2; }
.why-pair.flip .why-img { order: 1; }
.why-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(26,20,100,.12);
}
.why-text .eyebrow { margin-bottom: .5rem; }
.why-text h3 {
  font-size: clamp(1.5rem,2.5vw,2.2rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--indigo); margin-bottom: .8rem; line-height: 1.1;
}
.why-text p { font-size: .96rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.2rem; }
.why-check { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.check-item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9rem; color: var(--slate);
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: .65rem; font-weight: 900;
}

/* ══ CONTACT ══ */
.contact-bg { background: var(--white); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.cinfo-block {
  display: flex; gap: 1rem; align-items: flex-start;
}
.cinfo-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--indigo); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo-lbl { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); margin-bottom: .22rem; }
.cinfo-val { font-size: 1rem; font-weight: 700; color: var(--indigo); line-height: 1.5; }
.cinfo-val a { color: var(--indigo); text-decoration: none; }
.cinfo-val a:hover { color: var(--coral); }
.map-box { border-radius: 12px; overflow: hidden; height: 360px; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(26,20,100,.08); }
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══ FAQ ══ */
.faq-bg { background: var(--off); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--border); padding: 1.2rem 0;
}
details summary {
  cursor: pointer; list-style: none;
  font-size: 1rem; font-weight: 700;
  color: var(--indigo);
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.fq { color: var(--coral); font-size: 1.3rem; margin-left: 1rem; flex-shrink: 0; transition: transform .25s; }
details[open] .fq { transform: rotate(45deg); }
details[open] summary { color: var(--coral); }
details p { margin-top: .85rem; font-size: .9rem; color: var(--slate); line-height: 1.72; }

/* ══ FOOTER ══ */
footer { background: var(--indigo); padding: 56px 5vw 28px; position: relative; z-index: 1; }
.ft-inner { max-width: 1200px; margin: auto; }
.ft-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.8rem;
}
.ft-brand .nav-wordmark { color: #fff; }
.ft-brand .nav-wordmark small { color: rgba(255,255,255,.4); }
.ft-brand p { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .75rem; line-height: 1.68; }
.ft-col h5 {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem;
}
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: .5rem; }
.ft-col ul li a { font-size: .82rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-bot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ft-bot p { font-size: .73rem; color: rgba(255,255,255,.3); }
.ft-nap { font-size: .73rem; color: rgba(255,255,255,.3); font-style: normal; }
.ft-nap a { color: inherit; text-decoration: none; }

/* ══ FLOATING CALL BUTTON — unique style ══ */
/* Side widget on desktop, bottom-right on mobile */
.call-widget {
  position: fixed; bottom: 24px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.call-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(26,20,100,.18);
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
  animation: bubble-in .6s cubic-bezier(.34,1.56,.64,1) 2s both;
  transition: box-shadow .2s, transform .2s;
}
.call-bubble:hover { box-shadow: 0 12px 40px rgba(26,20,100,.25); transform: translateY(-2px); }
@keyframes bubble-in { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.call-bubble-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.call-bubble-icon::before,.call-bubble-icon::after {
  content:''; position:absolute; inset:0; border-radius:10px;
  border:2px solid var(--coral);
  animation: bfr 2.4s ease-out infinite;
}
.call-bubble-icon::after { animation-delay:1.2s; }
@keyframes bfr { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2);opacity:0} }
.call-bubble-text strong { display:block; font-size:.9rem; font-weight:800; color:var(--indigo); }
.call-bubble-text span { font-size:.72rem; color:var(--mist); }

/* ══ SCROLL REVEAL ══ */
.rv { opacity:0; transform:translateY(22px); 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:980px){
  .bento { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .bento-cell:nth-child(1){ grid-column:span 2; }
  .bento-cell:nth-child(6){ grid-column:span 2; grid-column-start:1; }
  .ft-top { grid-template-columns:1fr 1fr; }
  .why-pair,.why-pair.flip { grid-template-columns:1fr; gap:2rem; }
  .why-pair.flip .why-text,.why-pair.flip .why-img { order:unset; }
  .contact-layout { grid-template-columns:1fr; gap:2.5rem; }
  .rev-grid { grid-template-columns:1fr; }
  .rev-block.featured { grid-column:span 1; }
  .timeline { flex-direction:column; gap:1.5rem; }
  .timeline::before,.timeline::after { display:none; }
}
@media(max-width:640px){
  .bento { grid-template-columns:1fr; }
  .bento-cell:nth-child(1),.bento-cell:nth-child(6){ grid-column:span 1; }
  .stats-row { gap:1.5rem; }
  .ft-top { grid-template-columns:1fr; gap:2rem; }
  .hero-stats { gap:1.5rem; }
  .call-bubble-text { display:none; }
}
@media(max-width:480px){
  .wrap { padding:64px 5vw; }
  .trust-strip { gap:1rem; }
  .hero-h1 { font-size:2.5rem; }
}
