/* ==========================================================================
   Ndopho Electrical — corporate engineering theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --navy: #0B2C4D;
  --navy-deep: #071B33;
  --navy-panel: #0F3860;
  --blue: #007BFF;
  --blue-bright: #2E9BFF;
  --gold: #FFC107;
  --grey-bg: #F8F9FA;
  --grey-line: #E3E7EC;
  --text-dark: #212529;
  --text-mute: #5B6672;
  --white: #FFFFFF;

  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text-dark);
  background: var(--grey-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark p { color: var(--white); }
.on-dark .text-mute { color: rgba(255,255,255,0.68); }
.text-mute { color: var(--text-mute); }

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,123,255,.35); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #ffd23f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,193,7,.35); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------------- Header / Nav ---------------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(7, 27, 51, 0.0);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  padding: 20px 0;
}
header.site.scrolled {
  background: rgba(7, 27, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.4rem; color: var(--white); letter-spacing: 0.01em; }
.logo .mark { height: 44px; width: auto; flex-shrink: 0; }
.logo b { color: var(--gold); font-weight: 800; }
.logo span.sub { display: block; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.16em; color: var(--blue-bright); text-transform: uppercase; margin-top: -2px; }
.footer-logo .mark { height: 50px; }

nav.links { display: flex; gap: 30px; align-items: center; }
nav.links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
nav.links a:hover, nav.links a.active { color: var(--gold); }
nav.links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }
.nav-cta-mobile { display: none; }

@media (max-width: 940px) {
  nav.links { position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh; background: var(--navy-deep); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 26px; transition: right .35s var(--ease); box-shadow: -20px 0 40px rgba(0,0,0,.3); }
  nav.links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-gold-nav { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 6px; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-panel) 100%);
  overflow: hidden;
  padding-top: 100px;
}
.hero .grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}
.hero-content { position: relative; z-index: 3; max-width: 700px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 540px; margin-bottom: 34px; }

.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.stat b {
  display: block;
  font-family: var(--mono);
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 600;
}
.stat span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.circuit-svg { position: absolute; z-index: 2; }
.circuit-hero { top: 0; right: -5%; width: 55%; height: 100%; opacity: 0.9; }
@media (max-width: 940px) { .circuit-hero { opacity: 0.25; right: -20%; } }

.pulse-dot { filter: drop-shadow(0 0 6px var(--gold)); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  position: relative;
  padding: 170px 0 80px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .breadcrumb { font-family: var(--mono); font-size: 0.75rem; color: var(--blue-bright); letter-spacing: 0.05em; margin-bottom: 16px; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.45); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 620px; margin-top: 16px; font-size: 1.05rem; }

/* ---------------- Cards ---------------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.panel-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.panel-card::before, .panel-card::after {
  content: ''; position: absolute; width: 14px; height: 14px; border-color: var(--blue); opacity: 0; transition: opacity .25s;
}
.panel-card::before { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; }
.panel-card::after { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; }
.panel-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,44,77,0.12); border-color: rgba(0,123,255,0.25); }
.panel-card:hover::before, .panel-card:hover::after { opacity: 1; }
.panel-card .icon { width: 46px; height: 46px; margin-bottom: 20px; color: var(--blue); }
.panel-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--navy); }
.panel-card p { color: var(--text-mute); font-size: 0.96rem; }
.panel-card .num { font-family: var(--mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; display: block; }

.panel-card.on-navy { background: var(--navy-panel); border-color: rgba(255,255,255,0.08); }
.panel-card.on-navy h3, .panel-card.on-navy p { color: var(--white); }
.panel-card.on-navy p { color: rgba(255,255,255,0.68); }

/* ---------------- Why choose / feature list ---------------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px; margin-top: 30px; }
@media (max-width: 620px) { .check-list { grid-template-columns: 1fr; } }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.check-item span { font-size: 0.98rem; }
.on-dark .check-item span { color: rgba(255,255,255,0.85); }

/* ---------------- Split section ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-panel));
}

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* ---------------- Process steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--gold); padding-top: 18px; }
.step .num { font-family: var(--mono); font-size: 1.6rem; color: rgba(11,44,77,0.18); font-weight: 700; display: block; margin-bottom: 10px; }
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-mute); }

/* ---------------- Testimonials ---------------- */
.testimonial-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 940px) { .testimonial-track { grid-template-columns: 1fr; } }
.testimonial { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 30px; }
.testimonial .quote-mark { font-family: var(--display); font-size: 2.6rem; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 14px; }
.testimonial p.body-text { font-size: 0.98rem; color: var(--text-dark); margin-bottom: 18px; }
.testimonial .who { font-family: var(--mono); font-size: 0.75rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------------- Table (services detail / compliance) ---------------- */
.data-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.data-table th, .data-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--grey-line); font-size: 0.95rem; }
.data-table th { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); background: rgba(0,123,255,0.05); }
.data-table tr:hover td { background: rgba(11,44,77,0.02); }

/* ---------------- Gallery / Projects ---------------- */
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.project-card .thumb { width: 100%; height: 100%; }
.project-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background: linear-gradient(0deg, rgba(7,27,51,0.92) 0%, rgba(7,27,51,0.1) 60%, transparent 100%);
}
.project-card .overlay .tag { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.project-card .overlay h4 { color: var(--white); font-size: 1.1rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7,11,17,0.94); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox .lb-inner { max-width: 900px; width: 100%; }
.lightbox .lb-visual { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.lightbox h3 { color: var(--white); margin-bottom: 12px; }
.lightbox .lb-body p { color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.lightbox .lb-body ul.im-list { margin-top: 16px; }
.lightbox .lb-body ul.im-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.lightbox .lb-body ul.im-list svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.lightbox .lb-close { position: absolute; top: 30px; right: 40px; color: var(--white); font-size: 2rem; background: none; border: none; }

/* ---------------- Clients / logos ---------------- */
.client-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 780px) { .client-row { grid-template-columns: repeat(2, 1fr); } }
.client-tile { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 26px 20px; text-align: center; font-family: var(--mono); font-size: 0.85rem; color: var(--navy); display: flex; align-items: center; justify-content: center; min-height: 90px; }
.client-sector-list { margin-top: 60px; }
.client-sector-list .sector { border-bottom: 1px solid var(--grey-line); padding: 22px 0; display: grid; grid-template-columns: 220px 1fr; gap: 20px; }
.client-sector-list .sector b { font-family: var(--mono); color: var(--blue); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 620px) { .client-sector-list .sector { grid-template-columns: 1fr; gap: 6px; } }

/* ---------------- Safety / compliance badges ---------------- */
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 12px 18px; border: 1px solid var(--grey-line); border-radius: var(--radius);
  background: var(--white); color: var(--navy);
}
.badge svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------------- Form ---------------- */
.form-panel { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
.field input, .field select, .field textarea {
  border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 13px 14px; font-family: var(--body); font-size: 0.95rem; color: var(--text-dark); background: var(--grey-bg);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-mute); margin-top: 14px; }
.form-success { display: none; background: rgba(255,193,7,0.12); border: 1px solid var(--gold); color: var(--navy); padding: 16px 18px; border-radius: var(--radius); font-size: 0.92rem; margin-top: 18px; }
.form-success.show { display: block; }

.contact-info-card { background: var(--navy); border-radius: var(--radius); padding: 40px; color: var(--white); }
.contact-info-card .row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-card .row:last-child { border-bottom: none; }
.contact-info-card svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-card .row b { display: block; font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-bright); margin-bottom: 4px; }

.map-embed { width: 100%; height: 340px; border: 0; border-radius: var(--radius); filter: grayscale(0.3) contrast(1.05); }

/* ---------------- Careers ---------------- */
.upload-box {
  border: 2px dashed var(--grey-line); border-radius: var(--radius); padding: 40px; text-align: center; background: var(--white); transition: border-color .2s;
}
.upload-box:hover { border-color: var(--blue); }
.upload-box svg { width: 40px; height: 40px; color: var(--blue); margin: 0 auto 14px; }
.upload-box input[type=file] { margin-top: 16px; }
.job-item { border: 1px solid var(--grey-line); border-radius: var(--radius); padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 14px; background: var(--white); }
.job-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.job-item span.meta { font-family: var(--mono); font-size: 0.75rem; color: var(--text-mute); }
@media (max-width: 620px) { .job-item { flex-direction: column; align-items: flex-start; } }

/* ---------------- Footer ---------------- */
footer.site {
  background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 70px 0 30px; position: relative; overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom .credit { font-family: var(--mono); font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ---------------- Clickable card hint ---------------- */
.panel-card[data-modal-target] { cursor: pointer; }
.card-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); margin-top: 16px;
}
.panel-card.on-navy .card-more { color: var(--blue-bright); }
.card-more svg { width: 13px; height: 13px; transition: transform .2s; }
.panel-card:hover .card-more svg { transform: translateX(3px); }

/* ---------------- Info modal (services / safety detail) ---------------- */
.info-modal {
  position: fixed; inset: 0; background: rgba(7,11,17,0.92); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.info-modal.open { display: flex; }
.info-modal .im-inner {
  max-width: 620px; width: 100%; max-height: 82vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius); padding: 42px; position: relative;
}
.info-modal .im-close {
  position: absolute; top: 18px; right: 22px; font-size: 1.9rem; line-height: 1;
  background: none; border: none; color: var(--text-mute);
}
.im-body .im-tag { font-family: var(--mono); font-size: 0.7rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 12px; }
.im-body h3 { color: var(--navy); font-size: 1.7rem; margin-bottom: 16px; }
.im-body p { color: var(--text-mute); font-size: 0.98rem; margin-bottom: 14px; }
.im-body ul.im-list { margin-top: 16px; }
.im-body ul.im-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-dark); }
.im-body ul.im-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------------- Splash / preloader (home page only) ---------------- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.splash img { width: 300px; max-width: 62vw; height: auto; animation: splash-pulse 1.8s ease-in-out infinite; }
.splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splash-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.045); opacity: 0.9; } }
body.splash-active { overflow: hidden; }

/* ---------------- WhatsApp float ---------------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 8px 24px rgba(0,0,0,0.25); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.25); }
}

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- Counter meter style ---------------- */
.meter { font-family: var(--mono); }

/* ---------------- Misc ---------------- */
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
