/* =========================================================
   VOLTLINE ELECTRICAL — Design Lab demo stylesheet
   Bold electric trade · charcoal + electric-yellow + cobalt
   ========================================================= */

:root {
  /* Core palette */
  --ink: #0c0e12;          /* near-black charcoal */
  --ink-2: #14171d;        /* raised charcoal */
  --ink-3: #1c2027;        /* card charcoal */
  --line: #2a2f39;         /* hairlines */
  --line-2: #353c48;
  --fog: #9aa3b2;          /* muted body text */
  --fog-2: #c7cdd8;
  --paper: #f4f6fa;        /* light section */
  --paper-ink: #11141a;    /* text on light */

  /* Brand accents */
  --volt: #f5e000;         /* electric yellow */
  --volt-deep: #d4c200;
  --cobalt: #2563ff;       /* cobalt blue */
  --cobalt-2: #5b8cff;
  --emerald: #1fd17a;      /* on-brand success */
  --hazard: #1a1d23;

  /* Typography */
  --display: "Anton", system-ui, sans-serif;
  --body: "Sora", system-ui, sans-serif;

  /* Geometry */
  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.7);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--ink);
  color: var(--fog-2);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .98; letter-spacing: .5px; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(2.9rem, 7vw, 5.8rem); color: #fff; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); color: #fff; }
h3 { font-size: 1.25rem; letter-spacing: .6px; }
p { margin: 0 0 1rem; }

.volt-text { color: var(--volt); }
.cobalt-text { color: var(--cobalt-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; font-size: .72rem; color: var(--volt);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--volt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: .9rem;
  letter-spacing: .02em; padding: .85rem 1.5rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--volt); color: var(--ink); box-shadow: 0 0 0 0 rgba(245,224,0,.4); }
.btn-solid:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(245,224,0,.5); }
.btn-ghost { border-color: var(--line-2); color: #fff; }
.btn-ghost:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.btn-cobalt { background: var(--cobalt); color: #fff; }
.btn-cobalt:hover { background: var(--cobalt-2); transform: translateY(-2px); }

/* ---------- Hazard tape ---------- */
.hazard-tape {
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--volt) 0 18px, var(--ink) 18px 36px);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,14,18,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-mark { font-family: var(--display); font-size: 1.5rem; color: #fff; letter-spacing: 1px; display: flex; align-items: center; gap: .45rem; }
.brand-mark .bolt { color: var(--volt); display: inline-flex; }
.brand-mark .bolt svg { width: 18px; height: 22px; }
.brand-sub { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--fog); margin-top: 5px; font-weight: 600; }
.nav-links { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600; font-size: .92rem; color: var(--fog-2); position: relative; padding: .3rem 0;
  transition: color .2s;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--volt); transition: width .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-weight: 700; color: #fff; font-size: .92rem; display: flex; align-items: center; gap: .4rem; }
.nav-phone svg { width: 15px; height: 15px; color: var(--volt); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 28px; padding: 0; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 3px; width: 100%; background: var(--volt); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section.paper { background: var(--paper); color: var(--paper-ink); }
.section.paper h2, .section.paper h3 { color: var(--paper-ink); }
.section.paper p { color: #3f4654; }
.sec-head { max-width: 660px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 1rem; color: var(--fog); font-size: 1.05rem; }
.section.paper .sec-head p { color: #4a5160; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(37,99,255,.22), transparent 60%),
    radial-gradient(700px 460px at 12% 92%, rgba(245,224,0,.10), transparent 60%);
  pointer-events: none;
}
.hero .grid-bg {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000 35%, transparent 80%);
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 35%, transparent 80%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin: 1rem 0 1.3rem; }
.hero-copy h1 .out { -webkit-text-stroke: 2px var(--volt); color: transparent; }
.hero-tag { font-size: 1.12rem; color: var(--fog-2); max-width: 36ch; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-trust { display: flex; gap: 1.6rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--fog); font-weight: 600; }
.hero-trust .ht svg { width: 18px; height: 18px; color: var(--emerald); }

.hero-media { position: relative; }
.hero-panel {
  position: relative; background: linear-gradient(160deg, var(--ink-2), var(--ink)); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); overflow: hidden;
}
.hero-panel::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--volt), var(--cobalt)); }
.hero-svg { width: 100%; height: auto; }
.hero-badge {
  position: absolute; bottom: -22px; right: -14px; background: var(--volt); color: var(--ink);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: 0 18px 40px -18px rgba(245,224,0,.6); transform: rotate(-3deg);
}
.hero-badge .n { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.hero-badge .l { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Certification badge row ---------- */
.certs { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.certs-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cert {
  display: flex; align-items: center; gap: .8rem; color: var(--fog-2);
}
.cert .badge {
  width: 52px; height: 52px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: var(--ink-3); border: 1px solid var(--line-2);
}
.cert .badge svg { width: 30px; height: 30px; }
.cert .ct { font-family: var(--display); font-size: 1.05rem; color: #fff; letter-spacing: .5px; }
.cert .cs { font-size: .68rem; color: var(--fog); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }

/* ---------- Stat strip ---------- */
.stats { background: var(--ink); padding: 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin: -1px 0;
}
.stat { padding: 40px 26px; border-right: 1px solid var(--line); background: var(--ink-2); position: relative; }
.stat:last-child { border-right: 0; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--volt); transition: width .6s var(--ease); }
.stat.in::before { width: 100%; }
.stat .n { font-family: var(--display); font-size: 2.7rem; color: #fff; line-height: 1; }
.stat .n em { color: var(--volt); font-style: normal; }
.stat .l { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--fog); margin-top: .6rem; font-weight: 600; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .3s var(--ease), border-color .3s, background .3s; position: relative; overflow: hidden;
}
.section.paper .svc-card { background: #fff; border-color: #e3e7ef; box-shadow: 0 12px 30px -22px rgba(20,30,60,.35); }
.svc-card:hover { transform: translateY(-6px); border-color: var(--volt); }
.svc-ico { width: 54px; height: 54px; border-radius: 10px; background: var(--ink-3); display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--line-2); }
.section.paper .svc-ico { background: var(--ink); border-color: var(--ink); }
.svc-ico svg { width: 30px; height: 30px; color: var(--volt); }
.svc-card h3 { margin-bottom: .6rem; }
.svc-card p { font-size: .95rem; color: var(--fog); }
.section.paper .svc-card p { color: #525a69; }
.svc-price { margin-top: 18px; display: flex; align-items: baseline; gap: .4rem; font-weight: 700; }
.svc-price .from { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--fog); }
.svc-price .amt { font-family: var(--display); font-size: 1.6rem; color: var(--volt); letter-spacing: .5px; }
.section.paper .svc-price .amt { color: var(--cobalt); }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 34px; align-items: center; }
.filter-btn {
  font-family: var(--body); font-weight: 600; font-size: .85rem; padding: .55rem 1.1rem;
  border-radius: 50px; border: 1px solid var(--line-2); background: transparent; color: var(--fog-2); cursor: pointer; transition: all .2s;
}
.section.paper .filter-btn { border-color: #d3d9e3; color: #46505f; }
.filter-btn:hover { border-color: var(--volt); color: var(--volt); }
.section.paper .filter-btn:hover { color: var(--cobalt); border-color: var(--cobalt); }
.filter-btn.active { background: var(--volt); border-color: var(--volt); color: var(--ink); }
.section.paper .filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-count { margin-left: auto; font-size: .82rem; color: var(--fog); font-weight: 600; }
[data-listing].hide { display: none; }

/* ---------- How we work / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 30px 24px 30px 0; border-top: 3px solid var(--line); position: relative; }
.step + .step { padding-left: 28px; }
.step .num { font-family: var(--display); font-size: 2.4rem; color: var(--volt); line-height: 1; }
.section.paper .step .num { color: var(--cobalt); }
.step h3 { margin: 12px 0 8px; }
.step p { font-size: .92rem; color: var(--fog); }
.section.paper .step p { color: #525a69; }
.step::before { content: ""; position: absolute; top: -3px; left: 0; width: 46px; height: 3px; background: var(--volt); }

/* ---------- EV charger feature ---------- */
.ev { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ev-panel { background: linear-gradient(150deg, var(--ink-3), var(--ink)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; position: relative; overflow: hidden; }
.ev-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 280px at 80% 10%, rgba(37,99,255,.25), transparent 60%); }
.ev-svg { position: relative; width: 100%; }
.ev-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .9rem; }
.ev-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--fog-2); font-size: .98rem; }
.ev-list li svg { width: 20px; height: 20px; color: var(--emerald); flex: none; margin-top: 3px; }
.ev-brands { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: 1.5rem; }
.ev-brands span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; padding: .35rem .8rem; border: 1px solid var(--line-2); border-radius: 50px; color: var(--fog); text-transform: uppercase; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: relative;
}
.section.paper .review { background: #fff; border-color: #e3e7ef; box-shadow: 0 12px 30px -22px rgba(20,30,60,.3); }
.review .stars { display: flex; gap: 2px; color: var(--volt); margin-bottom: 14px; }
.section.paper .review .stars { color: var(--volt-deep); }
.review .stars svg { width: 17px; height: 17px; }
.review blockquote { margin: 0 0 18px; font-size: .98rem; color: var(--fog-2); line-height: 1.7; }
.section.paper .review blockquote { color: #3f4654; }
.review .who { display: flex; align-items: center; gap: .8rem; }
.review .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--cobalt), var(--volt)); color: var(--ink); display: grid; place-items: center; font-family: var(--display); font-size: 1rem; }
.review .who .nm { font-weight: 700; color: #fff; font-size: .92rem; }
.section.paper .review .who .nm { color: var(--paper-ink); }
.review .who .mt { font-size: .76rem; color: var(--fog); }

/* ---------- Blog teaser / list ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s; display: flex; flex-direction: column;
}
.section.paper .post { background: #fff; border-color: #e3e7ef; }
.post:hover { transform: translateY(-5px); border-color: var(--volt); }
.post-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.post-thumb svg { width: 100%; height: 100%; }
.post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--volt); font-weight: 700; margin-bottom: 10px; }
.section.paper .post-meta { color: var(--cobalt); }
.post h3 { font-size: 1.1rem; margin-bottom: .6rem; line-height: 1.05; }
.post p { font-size: .9rem; color: var(--fog); margin-bottom: 16px; }
.section.paper .post p { color: #525a69; }
.post .more { margin-top: auto; font-weight: 700; font-size: .82rem; color: #fff; display: inline-flex; gap: .4rem; }
.section.paper .post .more { color: var(--ink); }
.post .more:hover { color: var(--volt); }
.section.paper .post .more:hover { color: var(--cobalt); }

/* Featured post */
.featured-post { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.featured-post .fp-media { position: relative; min-height: 320px; }
.featured-post .fp-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-post .fp-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-post h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 16px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--ink); padding: 92px 0; }
.cta .grid-bg {
  position: absolute; inset: 0; opacity: .45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 90% at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(70% 90% at 50% 50%, #000 30%, transparent 75%);
}
.cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.cta h2 .out { -webkit-text-stroke: 2px var(--volt); color: transparent; }
.cta p { color: var(--fog-2); font-size: 1.1rem; margin: 1.2rem 0 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--fog-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line-2); border-radius: var(--radius); color: #fff;
  font-family: var(--body); font-size: .95rem; padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(245,224,0,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .9rem; margin-top: 6px; min-height: 1.2em; font-weight: 600; }
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }

.info-block { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.info-block h3 { margin-bottom: 16px; display: flex; align-items: center; gap: .6rem; }
.info-block h3 svg { width: 20px; height: 20px; color: var(--volt); }
.nap-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 12px; font-size: .95rem; }
.nap-row svg { width: 18px; height: 18px; color: var(--cobalt-2); flex: none; margin-top: 4px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.hours-table td:last-child { text-align: right; color: #fff; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .closed { color: var(--fog); }
.hours-table .today td { color: var(--volt); }
.hours-table .today td:last-child { color: var(--volt); }

.map-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-2); }
.map-wrap svg { width: 100%; height: auto; display: block; }
.emergency-strip {
  display: flex; align-items: center; gap: 1rem; background: linear-gradient(120deg, rgba(37,99,255,.15), var(--ink-2));
  border: 1px solid var(--cobalt); border-radius: var(--radius-lg); padding: 22px 26px; margin-top: 20px;
}
.emergency-strip svg { width: 36px; height: 36px; color: var(--volt); flex: none; }
.emergency-strip .es-n { font-family: var(--display); font-size: 1.4rem; color: #fff; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 64px 0 52px; position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% 0%, rgba(37,99,255,.18), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.page-hero p { color: var(--fog); max-width: 56ch; margin-top: 1rem; font-size: 1.08rem; }
.crumb { font-size: .78rem; color: var(--fog); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; margin-bottom: 1rem; }
.crumb a:hover { color: var(--volt); }

/* ---------- Pricing table ---------- */
.price-note { background: var(--ink-2); border: 1px solid var(--line); border-left: 3px solid var(--volt); border-radius: var(--radius); padding: 18px 22px; font-size: .92rem; color: var(--fog-2); margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer-brand .brand-mark { font-size: 1.6rem; margin-bottom: 14px; }
.footer-brand p { color: var(--fog); font-size: .92rem; max-width: 30ch; }
.foot-col h4 { font-family: var(--body); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin: 0 0 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { color: var(--fog); font-size: .92rem; transition: color .2s; }
.foot-col a:hover { color: var(--volt); }
.foot-social { display: flex; gap: .6rem; margin-top: 16px; }
.foot-social a { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 8px; display: grid; place-items: center; color: var(--fog-2); transition: all .2s; }
.foot-social a:hover { border-color: var(--volt); color: var(--volt); }
.foot-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--fog); }
.disclaimer { background: var(--ink); border-top: 1px solid var(--line); padding: 18px 0; }
.disclaimer p { margin: 0; text-align: center; font-size: .78rem; color: var(--fog); max-width: 760px; margin: 0 auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .ev-grid, .contact-grid, .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 220px; }
  .svc-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { flex-wrap: wrap; padding-bottom: 18px; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: .2rem; width: 100%; order: 3;
    border-top: 1px solid var(--line); margin-top: 12px; padding-top: 12px;
  }
  .nav.open .nav-links a { padding: .7rem 0; font-size: 1.05rem; }
  .nav.open .nav-cta { display: flex; width: 100%; order: 4; }
  .nav.open .nav-cta .btn { flex: 1; justify-content: center; }
  .section { padding: 70px 0; }
  .svc-grid, .reviews-grid, .blog-grid, .stats-inner, .steps, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .step { border-top: 3px solid var(--line); padding-left: 0 !important; }
  .step + .step { padding-left: 0; }
  .hero-badge { position: static; transform: none; display: inline-block; margin-top: 18px; }
}
