/* =========================================================
   Volt EV & Hybrid — electric & hybrid vehicle specialist
   Aesthetic: clean future-tech, optimistic, premium-modern.
   White/light base, electric-green + cyan accents, deep-ink
   text, glassmorphism, subtle neon glow, circuit-trace SVG.
   Display: Sora. Body: Manrope.
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

/* ---- Tokens ---- */
:root {
  --bg:       #f4f8f6;   /* cool off-white */
  --bg-2:     #eaf2ee;
  --paper:    #ffffff;
  --ink:      #0b1a16;   /* deep ink */
  --ink-2:    #19302a;
  --body-c:   #3a4d47;
  --muted:    #6b7d77;
  --line:     #d7e4de;
  --line-2:   #c4d6ce;

  --emerald:  #10c97a;   /* electric green (success / app.js note) */
  --emerald-d:#089b5c;
  --emerald-l:#3ce99a;
  --cyan:     #14d3d8;
  --cyan-d:   #0aa9ad;
  --neon:     #8af6c0;

  --grad: linear-gradient(120deg, var(--emerald) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(120deg, rgba(16,201,122,0.14), rgba(20,211,216,0.14));

  --display: "Sora", "Segoe UI", sans-serif;
  --body:    "Manrope", "Segoe UI", sans-serif;

  --mw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --glass: rgba(255,255,255,0.62);
  --glass-brd: rgba(255,255,255,0.7);
  --shadow: 0 30px 70px -34px rgba(11, 50, 38, 0.45);
  --shadow-sm: 0 18px 40px -26px rgba(11, 50, 38, 0.4);
  --glow: 0 0 0 1px rgba(16,201,122,0.25), 0 14px 40px -12px rgba(16,201,122,0.4);
}

/* ---- Base ---- */
body {
  font-family: var(--body);
  color: var(--body-c);
  background: var(--bg);
  font-size: 17px;
  position: relative;
  overflow-x: hidden;
}
/* ambient page glows */
body::before, body::after {
  content: ""; position: fixed; z-index: -1; border-radius: 50%;
  filter: blur(120px); opacity: 0.5; pointer-events: none;
}
body::before { width: 540px; height: 540px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(20,211,216,0.5), transparent 70%); }
body::after  { width: 520px; height: 520px; bottom: -200px; left: -140px; background: radial-gradient(circle, rgba(16,201,122,0.42), transparent 70%); }

.wrap { max-width: var(--mw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--emerald-d);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad);
}
.eyebrow.center { justify-content: center; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--display); font-weight: 600;
  font-size: 0.86rem; letter-spacing: 0.01em;
  padding: 0.95em 1.6em; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn-solid { background: var(--ink); color: #fff; position: relative; }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(11,26,22,0.55); }
.btn-grad { background: var(--grad); color: #04231a; box-shadow: var(--glow); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(16,201,122,0.4), 0 20px 48px -14px rgba(16,201,122,0.6); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: var(--paper); }
.btn-ghost:hover { border-color: var(--emerald); color: var(--emerald-d); transform: translateY(-2px); }
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* reveal anim */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
[data-d="1"]{transition-delay:.07s}[data-d="2"]{transition-delay:.14s}
[data-d="3"]{transition-delay:.21s}[data-d="4"]{transition-delay:.28s}
[data-d="5"]{transition-delay:.35s}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad); display: grid; place-items: center;
  box-shadow: var(--glow); flex-shrink: 0;
}
.brand-logo svg { width: 22px; height: 22px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em; }
.brand-name b { color: var(--emerald-d); }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--display); font-weight: 500;
  font-size: 0.92rem; color: var(--ink-2); position: relative; padding: 0.4em 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px; background: var(--grad); transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4em; }
.nav-phone svg { width: 15px; height: 15px; color: var(--emerald-d); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--display); font-weight: 600; font-size: 0.78rem;
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(8px); padding: 0.5em 1em; border-radius: 999px;
  color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.hero-badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,201,122,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,201,122,0.4)} 50%{box-shadow:0 0 0 6px rgba(16,201,122,0)} }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  color: var(--ink); margin: 1.2rem 0 0; font-weight: 800;
}
.hero h1 em { font-style: normal; }
.hero-tag { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--body-c); max-width: 38ch; margin: 1.3rem 0 2rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.hero-trust .ht span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }

/* hero media — circuit/charge graphic */
.hero-media { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2.6vw, 2.2rem); overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0.8; pointer-events: none;
}
.hero-svg { position: relative; width: 100%; height: auto; display: block; }
.hero-stat-float {
  position: absolute; z-index: 3;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.7rem;
}
.hero-stat-float .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; }
.hero-stat-float .ic svg { width: 18px; height: 18px; color: var(--emerald-d); }
.hero-stat-float b { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); display: block; line-height: 1; }
.hero-stat-float span { font-size: 0.68rem; color: var(--muted); }
.hsf-top { top: 18px; right: -14px; }
.hsf-bot { bottom: 18px; left: -16px; animation: float 5s ease-in-out infinite; }
.hsf-top { animation: float 6s ease-in-out infinite reverse; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* charge bar (animated look) */
.charge-bar { position: relative; height: 12px; border-radius: 999px; background: rgba(11,26,22,0.08); overflow: hidden; margin-top: 1.1rem; }
.charge-bar > i {
  position: absolute; inset: 0; right: auto; width: 82%; border-radius: 999px;
  background: var(--grad); box-shadow: 0 0 14px rgba(16,201,122,0.6);
}
.charge-bar > i::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: sweep 2.4s linear infinite;
}
@keyframes sweep { from{transform:translateX(-100%)} to{transform:translateX(220%)} }
.charge-meta { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 600; font-size: 0.78rem; color: var(--ink-2); margin-top: 0.6rem; }

/* =========================================================
   Marquee / logo strip
   ========================================================= */
.brand-strip { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 60%, transparent); }
.brand-strip .wrap { display: flex; align-items: center; gap: clamp(1.4rem,4vw,3rem); padding-block: 1.3rem; flex-wrap: wrap; justify-content: center; }
.brand-strip .lbl { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.brand-strip .makes { display: flex; gap: clamp(1rem,3vw,2.4rem); flex-wrap: wrap; justify-content: center; }
.brand-strip .makes span { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink-2); opacity: 0.6; transition: opacity .3s, color .3s; }
.brand-strip .makes span:hover { opacity: 1; color: var(--emerald-d); }

/* =========================================================
   Stat strip
   ========================================================= */
.stats { padding-block: clamp(2.5rem, 4vw, 3.4rem); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--paper); padding: clamp(1.6rem, 3vw, 2.4rem) 1.4rem; text-align: center; position: relative; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; }
.stat .l { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; font-weight: 600; }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding-block: clamp(60px, 8vw, 110px); position: relative; }
.section.tint { background: color-mix(in srgb, var(--bg-2) 70%, transparent); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); flex-wrap: wrap; }
.sec-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.2vw, 3.1rem); color: var(--ink); max-width: 18ch; }
.sec-head p { color: var(--muted); max-width: 42ch; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; }
.sec-head.center p { margin-inline: auto; }

/* =========================================================
   Services grid
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.2vw, 1.8rem); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.svc-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 1.2rem; border: 1px solid rgba(16,201,122,0.2); }
.svc-ic svg { width: 26px; height: 26px; color: var(--emerald-d); }
.svc-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.95rem; color: var(--body-c); flex: 1; margin-bottom: 1.2rem; }
.svc-card .svc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.svc-card .price { font-family: var(--display); font-weight: 700; color: var(--emerald-d); }
.svc-card .more { font-size: 0.8rem; font-weight: 600; color: var(--ink); display: inline-flex; gap: 0.4em; }

/* =========================================================
   Process steps (battery-health check)
   ========================================================= */
.process { position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2rem,3vw,3rem); }
.step {
  background: var(--glass); border: 1px solid var(--glass-brd); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 1.6rem 1.4rem; position: relative;
}
.step .num {
  font-family: var(--display); font-weight: 800; font-size: 1rem;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: #fff; margin-bottom: 1.1rem;
}
.step h4 { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--body-c); }
.step::after {
  content: ""; position: absolute; top: 38px; right: -0.9rem; width: 0.9rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--emerald) 0 5px, transparent 5px 10px);
}
.step:last-child::after { display: none; }

/* =========================================================
   Charger install info block
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow);
}
.split-visual svg { width: 100%; height: auto; display: block; }
.split h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--ink); margin: 0.9rem 0 1.1rem; }
.split .lead { color: var(--body-c); margin-bottom: 1.6rem; }
.check-list { display: grid; gap: 0.9rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.98rem; color: var(--ink-2); }
.check-list .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--grad); display: grid; place-items: center; margin-top: 1px; }
.check-list .ck svg { width: 13px; height: 13px; color: #04231a; }
.split-actions { margin-top: 1.8rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.2vw,1.8rem); }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem,2.4vw,2rem); display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review .stars { color: #f7b500; letter-spacing: 0.18em; margin-bottom: 1rem; font-size: 0.95rem; }
.review blockquote { font-size: 1.02rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.review .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #04231a; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.review .who b { display: block; font-family: var(--display); color: var(--ink); font-size: 0.95rem; }
.review .who span { font-size: 0.82rem; color: var(--muted); }

/* =========================================================
   Journal teaser / blog cards
   ========================================================= */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.4vw,2rem); }
.post {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.post-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.post-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-thumb .tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.4em 0.9em; border-radius: 999px; background: rgba(255,255,255,0.92); color: var(--emerald-d); }
.post-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.7rem; font-weight: 600; }
.post h3 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--ink); margin-bottom: 0.7rem; transition: color .3s; }
.post:hover h3 { color: var(--emerald-d); }
.post p { font-size: 0.92rem; color: var(--body-c); flex: 1; margin-bottom: 1.1rem; }
.post .more { font-size: 0.8rem; font-weight: 700; color: var(--emerald-d); display: inline-flex; gap: 0.4em; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; }
.cta-inner {
  position: relative; border-radius: clamp(20px, 3vw, 32px); overflow: hidden;
  background: var(--ink); color: #fff; text-align: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(circle at 20% 20%, rgba(16,201,122,0.5), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(20,211,216,0.45), transparent 45%);
}
.cta-circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.25; }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner .eyebrow { color: var(--neon); }
.cta-inner .eyebrow::before { background: var(--neon); }
.cta-inner h2 { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin: 1rem auto 1.1rem; max-width: 20ch; }
.cta-inner p { color: rgba(255,255,255,0.78); max-width: 48ch; margin: 0 auto 2.1rem; }
.cta-inner .hero-actions { justify-content: center; }
.cta-inner .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.cta-inner .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #b9cbc4; padding-top: clamp(54px, 7vw, 80px); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); opacity: 0.6; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; position: relative; }
.footer-grid h4 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--neon); margin-bottom: 1.2rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name b { color: var(--emerald-l); }
.footer-brand .brand-sub { color: #7e948c; }
.footer-brand p { font-size: 0.92rem; color: #8aa097; max-width: 34ch; margin-top: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; color: #b9cbc4; padding: 0.32em 0; transition: color .3s; }
.footer-col a:hover { color: var(--emerald-l); }
.footer-nap { font-style: normal; font-size: 0.92rem; line-height: 1.9; color: #b9cbc4; }
.footer-nap a:hover { color: var(--emerald-l); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: 0.8rem; color: #7e948c;
}
.footer-disclaimer { background: #07120f; color: #6c8279; font-size: 0.74rem; text-align: center; padding: 0.95rem var(--gutter); letter-spacing: 0.01em; }

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero { padding-block: clamp(50px, 7vw, 84px); position: relative; }
.crumbs { font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.crumbs a:hover { color: var(--emerald-d); }
.crumbs .sep { color: var(--line-2); margin: 0 0.5em; }
.page-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--ink); margin-bottom: 0.9rem; }
.page-hero p { color: var(--body-c); max-width: 54ch; font-size: 1.08rem; }

/* =========================================================
   Pricing table (services page)
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.2vw,1.8rem); }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem,2.6vw,2.2rem); display: flex; flex-direction: column; position: relative;
  transition: transform .35s, box-shadow .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: transparent; box-shadow: var(--glow); background: linear-gradient(180deg, var(--paper), var(--bg-2)); }
.price-card .ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--grad); color: #04231a; padding: 0.4em 1em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.price-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.price-card .sub { font-size: 0.9rem; color: var(--muted); margin-top: 0.3rem; }
.price-card .amt { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,4vw,2.8rem); color: var(--ink); margin: 1.2rem 0 0.2rem; }
.price-card .amt small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card ul { display: grid; gap: 0.75rem; margin: 1.4rem 0 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.price-card ul li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.94rem; color: var(--ink-2); }
.price-card ul .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; background: var(--grad-soft); display: grid; place-items: center; margin-top: 1px; }
.price-card ul .ck svg { width: 12px; height: 12px; color: var(--emerald-d); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* spec / detail rows (services) */
.spec-table { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: grid; grid-template-columns: 1.4fr 2fr 0.8fr; gap: 1rem; padding: 1.2rem clamp(1.2rem,2.4vw,2rem); align-items: center; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--bg-2); }
.spec-row .sr-name { font-family: var(--display); font-weight: 700; color: var(--ink); }
.spec-row .sr-desc { font-size: 0.92rem; color: var(--muted); }
.spec-row .sr-price { font-family: var(--display); font-weight: 700; color: var(--emerald-d); text-align: right; }
.spec-head { background: var(--bg-2); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.spec-head .sr-price { color: var(--muted); }

/* =========================================================
   Filters (blog page)
   ========================================================= */
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin-bottom: clamp(2rem,4vw,2.8rem); }
.filter-bar .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-right: 0.4rem; }
.filter-btn {
  font-family: var(--display); font-weight: 600;
  font-size: 0.82rem; padding: 0.6em 1.2em; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2); background: var(--paper);
  transition: all .3s;
}
.filter-btn:hover { border-color: var(--emerald); color: var(--emerald-d); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-count { margin-left: auto; font-size: 0.86rem; color: var(--muted); }
.filter-count b { font-family: var(--display); color: var(--ink); }
[data-listing].hide { display: none; }

/* featured blog */
.blog-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper); margin-bottom: clamp(2.6rem,5vw,4rem); box-shadow: var(--shadow-sm);
}
.blog-feature .fimg { position: relative; min-height: 320px; background: var(--ink); }
.blog-feature .fimg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.blog-feature .fimg .tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--display); font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.45em 1em; border-radius: 999px; background: rgba(255,255,255,0.92); color: var(--emerald-d); }
.blog-feature .fbody { padding: clamp(1.8rem,3.5vw,3rem); display: flex; flex-direction: column; justify-content: center; }
.blog-feature .fbody .meta { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-bottom: 0.9rem; }
.blog-feature h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem,3.2vw,2.5rem); color: var(--ink); margin-bottom: 1rem; }
.blog-feature p { color: var(--body-c); margin-bottom: 1.6rem; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem,5vw,4rem); align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem,3.5vw,2.6rem); box-shadow: var(--shadow-sm); }
.form-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.4rem; }
.form-card .sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.8rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-family: var(--display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--line); color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald); background: var(--paper); box-shadow: 0 0 0 3px rgba(16,201,122,0.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; text-align: center; }

.contact-aside .info-block { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.contact-aside .info-block:first-child { padding-top: 0; }
.contact-aside h4 { font-family: var(--display); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--emerald-d); margin-bottom: 0.7rem; }
.contact-aside p, .contact-aside address { font-style: normal; color: var(--ink-2); line-height: 1.85; }
.contact-aside a:hover { color: var(--emerald-d); }
.hours-row { display: flex; justify-content: space-between; padding: 0.4em 0; font-size: 0.94rem; border-bottom: 1px dotted var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { font-weight: 700; color: var(--ink); }
.hours-row span:last-child { color: var(--muted); }
.hours-row.today span:last-child { color: var(--emerald-d); }

.map-card { margin-top: clamp(2.2rem,4vw,3rem); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-card svg { display: block; width: 100%; height: auto; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 540px; margin-inline: auto; width: 100%; }
  .svc-grid, .journal-grid, .reviews-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .split, .contact-grid, .blog-feature { grid-template-columns: 1fr; }
  .blog-feature .fimg { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone { display: none; }
  .nav .btn-grad { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: 1.4rem var(--gutter); gap: 1.1rem; z-index: 55;
  }
  .svc-grid, .journal-grid, .reviews-grid, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .spec-row .sr-price { text-align: left; }
  .spec-head { display: none; }
  .hero-stat-float { display: none; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 400px) {
  :root { --gutter: 18px; }
  .stats-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .charge-bar > i::after, .hsf-top, .hsf-bot { animation: none; }
  * { scroll-behavior: auto; }
}
