/* ============================================================
   VVM — Van de Venter Mojapelo (Pty) Ltd
   Static site stylesheet
   Palette sampled from the May 2026 design mockup:
   navy #0d2b50 · orange #fe7021 · stat red #d92b2b
   ============================================================ */

:root {
  --navy: #0d2b50;
  --navy-800: #13396a;
  --navy-700: #1c4a85;
  --navy-100: #dce5f0;
  --orange: #fe7021;
  --orange-dark: #e35d12;
  --orange-soft: #ff9550;
  --red: #d92b2b;
  --ink: #22344c;
  --muted: #5a6b82;
  --light: #f2f4f8;
  --tile: #edf0f5;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(13, 43, 80, 0.10);
  --shadow-soft: 0 4px 14px rgba(13, 43, 80, 0.08);
  --font: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-700); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 800; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Section heading pattern ---------- */
.section { padding: 76px 0; }
.section-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.section-heading h2 .dot { color: var(--orange); }
.section-heading .kicker {
  font-style: italic;
  font-weight: 700;
  color: var(--navy-800);
  margin-top: 6px;
}
.on-navy .section-heading h2,
.on-navy .section-heading .kicker { color: #fff; }
.section-heading { margin-bottom: 38px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e6eaf1;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand .sr-only { position: absolute; }

.main-nav ul {
  display: flex; gap: 8px; list-style: none; align-items: center;
}
.main-nav a {
  display: block; padding: 10px 14px;
  text-decoration: none; color: var(--navy);
  font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--orange); background: #fff4ec; }
.main-nav a[aria-current="page"] { color: var(--orange); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle .lines { display: block; width: 26px; height: 2.5px; background: var(--navy); position: relative; border-radius: 2px; }
.nav-toggle .lines::before, .nav-toggle .lines::after {
  content: ""; position: absolute; left: 0; width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px;
}
.nav-toggle .lines::before { top: -8px; }
.nav-toggle .lines::after { top: 8px; }

/* ============================================================
   Hero / page banners  (navy + concentric arc rings)
   ============================================================ */
.banner {
  position: relative;
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 118% -40%, rgba(255, 255, 255, 0.06) 0 28%, transparent 28.5%),
    radial-gradient(circle at 118% -40%, rgba(255, 255, 255, 0.05) 0 38%, transparent 38.5%),
    radial-gradient(circle at 118% -40%, rgba(255, 255, 255, 0.04) 0 48%, transparent 48.5%),
    radial-gradient(circle at -15% 160%, rgba(28, 74, 133, 0.55) 0 30%, transparent 30.5%),
    radial-gradient(circle at -15% 160%, rgba(28, 74, 133, 0.35) 0 42%, transparent 42.5%),
    linear-gradient(115deg, #0a2140 0%, var(--navy) 45%, #10345f 100%);
  color: #fff;
  overflow: hidden;
}

/* orange corner ribbon */
.ribbon {
  position: absolute; top: 0; left: 0; width: 340px; height: 340px;
  pointer-events: none; z-index: 1;
}
.ribbon svg { width: 100%; height: 100%; }
/* tuck the ribbon into the corner so it never overlaps the page
   title or the hero logo */
.page-banner .ribbon, .hero .ribbon { top: -56px; left: -56px; }
@media (max-width: 1500px) {
  .page-banner .ribbon, .hero .ribbon { width: 264px; height: 264px; top: -44px; left: -44px; }
}
@media (max-width: 720px) { .ribbon, .page-banner .ribbon, .hero .ribbon { width: 210px; height: 210px; top: -34px; left: -34px; } }

.banner .container { position: relative; z-index: 2; }

/* interior page banner */
.page-banner .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; padding-top: 84px; padding-bottom: 84px;
}
.page-banner h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); }
.page-banner h1 .dot { color: var(--orange); }
.banner-brand { text-align: center; flex-shrink: 0; }
.banner-brand img { width: 190px; margin: 0 auto; }
.banner-brand .tagline {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 12.5px; letter-spacing: 0.28em; text-transform: uppercase; color: #e7edf5;
}
@media (max-width: 720px) { .banner-brand { display: none; } }

/* ============================================================
   Home hero
   ============================================================ */
.hero .container {
  display: grid; grid-template-columns: 1.25fr 0.9fr;
  gap: 30px; align-items: end;
  padding-top: 24px;
}
.hero-copy { padding: 40px 0 56px; align-self: center; }
.hero-brand { margin-bottom: 28px; }
.hero-brand img { width: 190px; }
.hero-brand .tagline {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-block;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; color: #e7edf5;
}
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 52px);
  max-width: 13em;
}
.hero h1 .accent { color: var(--orange-soft); display: block; }
.hero .lede {
  margin-top: 20px; max-width: 34em; color: #ccd8e8; font-size: 18px;
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-photo { position: relative; align-self: end; }
.hero-photo img {
  width: 100%; max-width: 430px; margin-left: auto;
  /* cap the photo to the viewport so the headline never falls below
     the fold on shorter screens; crop from the bottom, keep the face */
  height: clamp(380px, 64vh, 620px);
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 20px; }
  .hero-photo img { max-width: 330px; margin: 0 auto; height: auto; max-height: 60vh; }
}

/* Buttons */
.btn {
  display: inline-block; padding: 13px 30px;
  border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 15.5px; font-weight: 800;
  text-decoration: none; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff !important; box-shadow: 0 8px 20px rgba(254, 112, 33, 0.35); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-navy { background: var(--navy); color: #fff !important; box-shadow: 0 8px 20px rgba(13, 43, 80, 0.28); }
.btn-navy:hover { background: var(--navy-800); }
.btn-ghost { background: transparent; color: #fff !important; border: 2px solid rgba(255, 255, 255, 0.65); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-soft) !important; }
.btn-pill-sm { padding: 7px 22px; font-size: 14px; }

/* Intro panel that overlaps hero */
.intro-panel {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  box-shadow: var(--shadow);
  margin-top: -46px;
  position: relative; z-index: 3;
}
.intro-panel p { max-width: 62em; }
.intro-panel p + p { margin-top: 14px; }
.intro-panel .lead-in { color: var(--navy); font-weight: 700; }

/* ============================================================
   Stats
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  border-radius: var(--radius);
  padding: 30px 18px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat .value { font-size: clamp(26px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.01em; }
.stat .label { margin-top: 4px; font-size: 15px; }
.stat-navy { background: var(--navy); color: #fff; }
.stat-navy .value { color: #fff; }
.stat-navy.stat-red .value { color: #ff5f52; }
.stat-light { background: var(--tile); }
.stat-light .value { color: var(--red); }
.stat-light .label { color: var(--ink); }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Corporate band (industries + offerings)
   ============================================================ */
.band-navy {
  background:
    radial-gradient(circle at -10% 50%, rgba(28, 74, 133, 0.5) 0 26%, transparent 26.5%),
    radial-gradient(circle at -10% 50%, rgba(28, 74, 133, 0.3) 0 36%, transparent 36.5%),
    linear-gradient(115deg, #0a2140 0%, var(--navy) 55%, #10345f 100%);
  color: #dfe7f2;
}
.band-navy h2, .band-navy h3 { color: #fff; }

.corporate-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: center;
}
@media (max-width: 880px) { .corporate-grid { grid-template-columns: 1fr; } }

.industries .industries-title { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.industry-list { list-style: none; display: grid; gap: 14px; }
.industry-list li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px; padding: 12px 22px;
  font-weight: 800; letter-spacing: 0.06em; font-size: 14px; text-transform: uppercase; color: #fff;
}
.industry-list .ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--orange); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.industry-list .ico svg { width: 20px; height: 20px; }

/* ============================================================
   Distress band
   ============================================================ */
.distress-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 50px; align-items: center;
}
@media (max-width: 880px) { .distress-grid { grid-template-columns: 1fr; } }
.distress-grid .photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mech-list { list-style: none; margin-top: 22px; }
.mech-list li {
  padding: 13px 2px;
  border-bottom: 1px solid rgba(254, 112, 33, 0.55);
  color: #eef2f8; font-weight: 600;
}
.band-navy .footnote { margin-top: 26px; color: #b9c8dc; max-width: 56em; }

/* ============================================================
   Credentials
   ============================================================ */
.credentials { position: relative; }
.cred-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 56px; margin-top: 20px;
}
@media (max-width: 780px) { .cred-grid { grid-template-columns: 1fr; } }
.cred {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 20px 0;
}
.cred .cred-logo {
  flex-shrink: 0; width: 120px; display: flex; align-items: center; justify-content: center;
  min-height: 64px;
}
.cred .cred-logo img { max-height: 88px; width: auto; }
.cred .cred-logo .popia-word { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: 0.02em; }
.cred .cred-logo svg { width: 64px; height: 64px; }
.cred p { font-size: 15.5px; }
.cred .cred-links { margin-top: 8px; }
.cred .cred-links a { font-weight: 700; font-size: 14.5px; }

/* B-BBEE rosette */
.bbbee-badge {
  display: flex; justify-content: center; margin-bottom: 8px;
}
.bbbee-badge svg { width: 210px; height: auto; }

/* ============================================================
   Technology band
   ============================================================ */
.tech-band {
  background-color: var(--navy);
  background-image: url("../img/world-map.jpg");
  background-repeat: no-repeat;
  background-position: right -60px top 20px;
  background-size: min(880px, 78%);
  color: #dfe7f2;
}
.tech-band .inner { max-width: 640px; }
.channel-pills { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; list-style: none; }
.channel-pills li {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px; padding: 8px 22px;
  color: #fff; font-weight: 700; font-size: 14.5px;
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .services-grid { grid-template-columns: 1fr; } }
.service-card .circle {
  width: 172px; height: 172px; margin: 0 auto;
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--tile);
  outline: 2.5px solid var(--orange); outline-offset: 4px;
}
.service-card .circle img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { margin-top: 20px; font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase; }
.service-card p { font-size: 15px; color: var(--muted); margin-top: 6px; }
.services-intro { max-width: 46em; margin-bottom: 40px; }

/* ============================================================
   Process + timeline
   ============================================================ */
.approach-list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.approach-list li { display: flex; gap: 12px; align-items: flex-start; }
.approach-list .tick {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 3px;
  border-radius: 50%; background: rgba(254, 112, 33, 0.14);
  display: inline-flex; align-items: center; justify-content: center;
}
.approach-list .tick::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

.timeline { margin-top: 56px; position: relative; }
.timeline h3 { margin-bottom: 40px; }
.timeline-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  position: relative;
}
.timeline-track::before {
  content: ""; position: absolute; top: 33px; left: 4%; right: 4%;
  height: 3px; background: linear-gradient(90deg, var(--orange), var(--navy-100));
  z-index: 0;
}
@media (max-width: 880px) {
  .timeline-track { grid-template-columns: 1fr; gap: 34px; }
  .timeline-track::before { display: none; }
}
.stage { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.stage .dot-ico {
  width: 66px; height: 66px; margin: 0 auto;
  background: #fff; border: 3px solid var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.stage .dot-ico svg { width: 30px; height: 30px; }
.stage .days { margin-top: 14px; font-weight: 800; font-size: 19px; color: var(--orange-dark); letter-spacing: 0.06em; }
.stage h4 { margin-top: 4px; font-size: 16px; }

.process-detail {
  display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 50px; align-items: center;
  margin-top: 64px;
}
@media (max-width: 880px) { .process-detail { grid-template-columns: 1fr; } }
.process-detail .photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.step { display: flex; gap: 18px; }
.step + .step { margin-top: 26px; }
.step .step-ico {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step .step-ico svg { width: 22px; height: 22px; }
.step h4 { font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; }
.step ul { margin: 8px 0 0 18px; font-size: 15px; color: var(--ink); }
.step ul li + li { margin-top: 3px; }

/* ============================================================
   Forms
   ============================================================ */
.form-section { background: var(--light); }
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-top: 8px;
}
@media (max-width: 720px) { .contact-form { grid-template-columns: 1fr; } }
.contact-form .full { grid-column: 1 / -1; }
.field label {
  display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #dbe2ec; border-radius: 10px;
  background: #fff; font-family: var(--font); font-size: 15.5px; color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(254, 112, 33, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.consent {
  grid-column: 1 / -1;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--muted);
}
.consent input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--orange); }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-weight: 700; font-size: 14.5px; }
.form-status.ok { color: #1c7a3a; }
.form-status.err { color: var(--red); }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   FAQ page
   ============================================================ */
.faq-list { display: grid; gap: 20px; }
.faq-item {
  display: grid; grid-template-columns: 290px 1fr; gap: 4px;
  align-items: stretch;
}
@media (max-width: 780px) { .faq-item { grid-template-columns: 1fr; } }
.faq-q {
  background: var(--navy); color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  font-weight: 800; font-size: 16.5px; line-height: 1.4;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.faq-q::after {
  content: ""; position: absolute; right: -6px; top: 50%; margin-top: -6px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--orange);
}
@media (max-width: 780px) { .faq-q::after { display: none; } }
.faq-a {
  background: var(--tile); border-radius: var(--radius);
  padding: 22px 28px; display: flex; align-items: center;
  font-size: 15.5px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 44px; align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 34px; margin-top: -70px; position: relative; z-index: 5;
}
@media (max-width: 880px) { .contact-card { margin-top: 0; } }
.contact-card .line { display: flex; gap: 14px; align-items: center; font-weight: 800; color: var(--navy); }
.contact-card .line + .line { margin-top: 14px; }
.contact-card .line svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-card .line a { color: var(--navy); text-decoration: none; }
.contact-card .line a:hover { color: var(--orange-dark); }
.contact-card p { margin-top: 20px; font-size: 15.5px; }
.contact-card .map {
  margin-top: 24px; border-radius: var(--radius); overflow: hidden; display: block;
  aspect-ratio: 3 / 2;
}
.contact-card .map img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Legal pages & calculator
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: 22px; margin: 34px 0 10px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p + p { margin-top: 12px; }
.prose ul, .prose ol { margin: 10px 0 10px 22px; }
.prose li + li { margin-top: 5px; }
.prose .updated { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.prose table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 15px; }
.prose th, .prose td { border: 1px solid #dbe2ec; padding: 9px 12px; text-align: left; }
.prose th { background: var(--tile); color: var(--navy); }

.calc-panel {
  background: var(--light); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft);
  max-width: 860px;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-grid h3 { font-size: 17px; margin-bottom: 14px; }
.calc-grid .field + .field { margin-top: 12px; }
.calc-result {
  margin-top: 30px; padding: 26px 30px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: center;
}
@media (max-width: 720px) { .calc-result { grid-template-columns: 1fr; } }
.calc-result .value { font-size: 26px; font-weight: 800; color: var(--orange-soft); }
.calc-result .value.neg { color: #ff5f52; }
.calc-result .label { font-size: 13.5px; color: #ccd8e8; }
.calc-note { margin-top: 18px; font-size: 14px; color: var(--muted); max-width: 56em; }

/* ============================================================
   CTA strip
   ============================================================ */
.cta-strip { background: linear-gradient(100deg, var(--orange-dark), var(--orange)); color: #fff; }
.cta-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  padding-top: 44px; padding-bottom: 44px;
}
.cta-strip h2 { color: #fff; font-size: clamp(22px, 2.8vw, 30px); max-width: 22em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: #b9c8dc; }
.site-footer .top {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 44px;
  padding: 58px 0 40px;
}
@media (max-width: 880px) { .site-footer .top { grid-template-columns: 1fr; gap: 30px; } }
.site-footer img.footer-logo { width: 150px; }
.site-footer .tagline { margin-top: 10px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #8fa4bf; }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer ul li + li { margin-top: 9px; }
.site-footer a { color: #ccd8e8; text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--orange-soft); }
.site-footer .line { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.site-footer .line + .line { margin-top: 10px; }
.site-footer .line svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--orange-dark); }
.footer-social svg { width: 20px; height: 20px; }
.badge-247 {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-weight: 800; color: #fff; font-size: 14px;
}
.badge-247 .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(254, 112, 33, 0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254, 112, 33, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(254, 112, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 112, 33, 0); }
}
.site-footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 26px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: #8fa4bf;
}
.site-footer .bottom a { font-size: 13.5px; color: #8fa4bf; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
/* hidden state only applies when JS is running (html.js set inline),
   so content stays visible with JavaScript disabled */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge-247 .pulse { animation: none; }
}

/* ============================================================
   Mobile nav
   ============================================================ */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #e6eaf1;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .main-nav a { padding: 14px 26px; border-radius: 0; }
}
