
/* ============================================================
   Elektricien Vermalen — Rebrand v2
   Dark #0d1b2e + Electric Yellow-Green #E8531F
   ============================================================ */

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

:root {
  --bg:           #0d1b2e;
  --bg2:          #161616;
  --bg3:          #0d0d0d;
  --surface:      #1e1e1e;
  --border:       rgba(255,255,255,0.07);
  --accent:       #E8531F;
  --accent-dim:   rgba(232,83,31,0.18);
  --accent-bdr:   rgba(232,83,31,0.18);
  --text:         #f0f0f0;
  --muted:        rgba(240,240,240,0.48);
  --radius:       10px;
  --font-head:    'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  padding-bottom: 64px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #0d1b2e;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  padding: 15px 30px; border-radius: var(--radius);
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232,83,31,0.18);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,83,31,0.18); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.18); color: var(--text);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0d1b2e; color: var(--accent);
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  padding: 18px 40px; border-radius: var(--radius);
  transition: transform 0.15s; white-space: nowrap;
}
.btn-dark:hover { transform: translateY(-2px); }

/* ── SECTION HEADERS ──────────────────────────────────── */
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-dim); border: 1px solid var(--accent-bdr);
  color: var(--accent); font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.025em; text-wrap: balance;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 17px; color: var(--muted);
  max-width: 560px; margin: 0 auto; line-height: 1.65;
}

/* ── TOP BAR ──────────────────────────────────────────── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: #0d1b2e; border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 7px 0; font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
}
.top-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.top-bar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-bar-item svg { color: var(--accent); flex-shrink: 0; }

/* ── HEADER ───────────────────────────────────────────── */
#site-header {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  background: #0d1b2e;
  padding: 10px 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; height: 52px;
}
.site-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text); white-space: nowrap;
  margin-right: auto;
}
.site-logo-img { height: 48px; width: auto; display: block; }

/* pill nav */
.main-nav {
  display: flex; align-items: center; list-style: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px; padding: 4px; gap: 1px;
}
.main-nav a {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: rgba(240,240,240,0.6); padding: 7px 15px; border-radius: 50px;
  transition: color 0.18s, background 0.18s; white-space: nowrap;
  display: block;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.main-nav a.nav-active { color: #0d1b2e; background: var(--accent); }

.header-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--accent); color: #0d1b2e;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  padding: 9px 18px; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.15s;
}
.header-cta:hover { box-shadow: 0 6px 24px rgba(232,83,31,0.18); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: #0a0a0a; flex-direction: column; padding: 28px 22px 36px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mob-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.mob-close {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  color: var(--text); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mob-section-label {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; padding: 0 4px;
}
.mob-nav { display: flex; flex-direction: column; gap: 2px; }
.mob-nav a {
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  color: rgba(240,240,240,0.75); padding: 12px 14px;
  border-radius: 10px; transition: color 0.18s, background 0.18s;
  display: flex; align-items: center; gap: 10px;
}
.mob-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.mob-nav a .mob-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(232,83,31,0.18); flex-shrink: 0;
}
.mob-divider { height: 1px; background: var(--border); margin: 14px 0; }
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #0d1b2e;
  font-family: var(--font-head); font-size: 17px; font-weight: 800;
  padding: 17px; border-radius: 12px; margin-top: 16px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/hero/elektricien-vermalen.webp');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,83,31,0.18); border: 1px solid rgba(232,83,31,0.18);
  color: var(--accent);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 0;
  white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; position: relative; flex-shrink: 0;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: var(--accent); animation: pulse-ring 1.5s infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}
#kw-badge, .stad-insert { font: inherit; color: inherit; letter-spacing: inherit; display: inline; }

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.03em;
  text-wrap: balance; color: #fff; margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-content h1 em { font-style: normal; color: var(--accent); }

.hero-content p {
  font-size: 18px; color: rgba(255,255,255,0.72);
  line-height: 1.65; margin-bottom: 30px; max-width: 560px;
}

.hero-bullets { list-style: none; margin-bottom: 38px; display: flex; flex-direction: column; gap: 11px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.hero-bullets li svg { color: var(--accent); flex-shrink: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.hero-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.hero-proof strong { color: rgba(255,255,255,0.85); }

/* ── STATS ────────────────────────────────────────────── */
.stats-section {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 52px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box {
  padding: 8px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-size: 42px; font-weight: 900;
  color: var(--accent); letter-spacing: -0.03em; line-height: 1;
  display: block; margin-bottom: 7px;
}
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ── SERVICES ─────────────────────────────────────────── */
.services-intro {
  background: var(--bg); padding: 80px 0 56px; text-align: center;
}

.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 580px;
}
.svc-row--alt .svc-media { order: 2; }
.svc-row--alt .svc-content { order: 1; }

.svc-media { overflow: hidden; position: relative; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.7s ease;
}
.svc-row:hover .svc-media img { transform: scale(1.04); }

.svc-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 80px; background: var(--bg);
}
.svc-row:nth-child(odd) .svc-content { background: var(--bg2); }

.svc-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.svc-content h3 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.svc-content p {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 26px;
}
.svc-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 9px; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.svc-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.svc-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── REVIEWS CAROUSEL ─────────────────────────────────── */
.reviews-section { background: var(--bg3); padding: 96px 0; text-align: center; }

.carousel-wrap { position: relative; margin-top: 52px; overflow: hidden; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; text-align: left;
  transition: border-color 0.25s;
  flex: 0 0 calc(33.333% - 14px); min-width: 0;
}
.review-card:hover { border-color: var(--accent-bdr); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #0d1b2e; flex-shrink: 0;
}
.rev-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; display: block; }
.rev-meta { font-size: 12px; color: var(--muted); }
.rev-stars { color: var(--accent); font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.rev-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* nav buttons */
.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 36px;
}
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: #0d1b2e; }
.carousel-dots { display: flex; align-items: center; gap: 7px; }
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

.reviews-total { margin-top: 28px; font-size: 15px; color: var(--muted); }
.reviews-total strong { color: var(--accent); }

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 560px) {
  .review-card { flex: 0 0 calc(100% - 0px); }
}

/* ── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--accent); padding: 88px 0; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 54px);
  font-weight: 900; color: #0d1b2e; letter-spacing: -0.025em;
  text-wrap: balance; margin-bottom: 12px;
}
.cta-banner p { font-size: 18px; color: rgba(17,17,17,0.65); margin-bottom: 36px; }
.cta-banner-sub { margin-top: 18px; font-size: 14px; color: rgba(17,17,17,0.55); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--bg2); padding: 96px 0; text-align: center; }
.faq-wrap { max-width: 820px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: left;
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question.active { color: var(--accent); }
.faq-icon-wrap {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s;
}
.faq-question.active .faq-icon-wrap { background: var(--accent); border-color: var(--accent); }
.faq-question.active .faq-icon-wrap svg { stroke: #0d1b2e; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 15px; color: var(--muted); line-height: 1.72; }

/* ── CONTACT FORM ─────────────────────────────────────── */
.form-section { background: var(--bg); padding: 96px 0; }
.form-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; margin-top: 52px;
}
.form-info h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.form-info p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.form-contact-link {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; font-size: 15px;
}
.form-contact-link svg { color: var(--accent); flex-shrink: 0; }
.form-contact-link a { color: var(--accent); font-weight: 700; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 14px 18px; border-radius: var(--radius); width: 100%;
  outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: var(--accent); color: #0d1b2e;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  padding: 16px 28px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  align-self: flex-start;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,83,31,0.18); }
#form-msg { padding: 14px 18px; border-radius: var(--radius); font-weight: 600; font-size: 15px; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg3); border-top: 1px solid var(--border); padding: 64px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr;
  gap: 52px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.footer-trust { display: flex; flex-direction: column; gap: 8px; }
.footer-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.footer-trust-item svg { color: var(--accent); flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-phone {
  display: block; font-family: var(--font-head); font-size: 26px;
  font-weight: 900; color: var(--accent); letter-spacing: -0.02em; margin-bottom: 8px;
}
.footer-hours { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.footer-area { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.footer-area svg { color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center; padding: 20px 28px;
  font-size: 12px; color: var(--muted);
}

/* ── MOBILE CALL BAR ──────────────────────────────────── */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #0d1b2e;
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  padding: 16px 24px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-content { padding: 56px 48px; }
}
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; min-height: auto; }
  .svc-row--alt .svc-media { order: unset; }
  .svc-row--alt .svc-content { order: unset; }
  .svc-media { height: 300px; }
  .svc-content { padding: 48px 32px; }
  .review-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box { border-bottom: 1px solid var(--border); }
  .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 0 48px;
  }
  .hero-left .container-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 28px;
  }
  .hero-right {
    height: 320px;
  }
  .hero-right::after { display: none; }
}
@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-call-bar { display: block; }
  .top-bar-inner { gap: 20px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .reviews-section, .faq-section, .form-section, .cta-banner { padding: 72px 0; }
  .services-intro { padding: 60px 0 40px; }
  .svc-content h3 { font-size: 26px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-box:last-child, .stat-box:nth-last-child(2) { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
