/* =========================================================================
   VibroCon (Pty) Ltd — site stylesheet
   Condition Monitoring & NDT Specialists | Kempton Park, Gauteng, South Africa
   ========================================================================= */

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

:root {
  /* Brand */
  --c-green: #5E9E32;
  --c-green-dark: #497b27;
  --c-green-light: #eef5e7;
  --c-ink: #16181a;
  --c-ink-soft: #3a3f44;
  --c-gold: #FDBE03;
  --c-navy: #0A2342;
  --c-orange: #FF7E00;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7f4;
  --c-bg-dark: #14171a;
  --c-border: #e4e7e3;
  --c-text: #23262a;
  --c-text-muted: #5c6268;
  --c-text-on-dark: #eef1ee;
  --c-text-muted-on-dark: #aab0ab;

  /* Type */
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1220px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(20,23,26,.08);
  --shadow: 0 8px 24px rgba(20,23,26,.10);
  --shadow-lg: 0 20px 50px rgba(20,23,26,.16);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .01em; color: var(--c-ink); }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
/* Icons ship as bare <svg viewBox="0 0 24 24"> with no width/height, so without
   this they fall back to the browser's oversized default replaced-element size
   (300px+) anywhere a more specific rule (.icon-box svg, .thumb svg, etc.)
   doesn't already constrain them — e.g. inline in buttons and card links. */
svg { display: block; width: 1em; height: 1em; flex: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-bg-dark); color: var(--c-text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--c-white); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-green-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-green); display: inline-block; }
.section-dark .eyebrow { color: var(--c-gold); }
.section-dark .eyebrow::before { background: var(--c-gold); }

.lede { font-size: 1.15rem; color: var(--c-text-muted); max-width: 62ch; }
.section-dark .lede { color: var(--c-text-muted-on-dark); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.head-row .lede { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .03em;
  font-size: .98rem; padding: 15px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-green-dark); box-shadow: var(--shadow); }
.btn-dark { background: var(--c-ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn-outline:hover { background: var(--c-ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; height: 100%; }
.brand img { height: 40px; width: auto; }
.division-pill { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .03em; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 640px) { .division-pill { display: none; } }
.main-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.main-nav > ul { display: flex; align-items: center; height: 100%; gap: 2px; }
.main-nav a.nav-link {
  display: flex; align-items: center; height: 100%; padding: 0 16px;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  letter-spacing: .02em; color: var(--c-ink); border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a.nav-link:hover, .main-nav li.active > a.nav-link { color: var(--c-green-dark); border-color: var(--c-green); }
.nav-item { position: relative; height: 100%; }
.nav-item.has-dropdown > a.nav-link::after { content: "▾"; font-size: .7em; margin-left: 6px; opacity: .7; }
.dropdown {
  position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px; min-width: 300px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item.has-dropdown:hover .dropdown, .nav-item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--c-ink);
}
.dropdown a small { display: block; font-weight: 400; color: var(--c-text-muted); font-size: .78rem; margin-top: 2px; }
.dropdown a:hover { background: var(--c-bg-alt); }
.dropdown a .dd-ic { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--c-green-light); color: var(--c-green-dark); display: flex; align-items: center; justify-content: center; }
.dropdown a .dd-ic svg { width: 17px; height: 17px; }
.dropdown-mega { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; min-width: 560px; padding: 16px; }
.dropdown-col-head { font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text-muted); padding: 6px 12px 8px; }
.dropdown-mega a { padding: 8px 12px; }
.dropdown-all { grid-column: 1 / -1; border-top: 1px solid var(--c-border); margin-top: 8px; padding-top: 14px !important; color: var(--c-green-dark); }
@media (max-width: 940px) {
  .dropdown-mega { display: block; min-width: 0; padding: 0; }
  .dropdown-col-head { padding-top: 14px; }
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--c-green); }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .header-phone span { display: none; }
}
@media (max-width: 940px) {
  .main-nav { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    height: auto; padding: 10px 4px 30px; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; height: auto; gap: 0; }
  .main-nav a.nav-link { height: auto; padding: 16px 20px; border-bottom: 1px solid var(--c-border); border-left: 3px solid transparent; }
  .main-nav li.active > a.nav-link, .main-nav a.nav-link:hover { border-left-color: var(--c-green); border-bottom-color: var(--c-border); }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 12px; min-width: 0; }
  .nav-item.has-dropdown.open .dropdown { display: block; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    border-radius: 10px; border: 1px solid var(--c-border); background: #fff; cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--c-ink); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,12,14,.94) 0%, rgba(10,12,14,.82) 38%, rgba(10,12,14,.45) 68%, rgba(10,12,14,.35) 100%);
}
.hero-inner { position: relative; padding: 72px 0 84px; max-width: 720px; }
.hero .eyebrow { color: var(--c-gold); }
.hero .eyebrow::before { background: var(--c-gold); }
.hero h1 { color: #fff; }
.hero p.lede { color: rgba(255,255,255,.86); }
.hero-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 2rem; color: #fff; }
.hero-stat span { font-size: .84rem; color: rgba(255,255,255,.72); }

.page-hero { position: relative; color: #fff; background: var(--c-ink); }
.page-hero .hero-inner { padding: 56px 0 64px; max-width: 780px; }
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4 { color: #fff; }
.page-hero p.lede { color: rgba(255,255,255,.86); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Trust bar ---------- */
.trust-bar { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: var(--c-bg-alt); }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: .86rem; font-weight: 500; color: var(--c-ink-soft); }
.trust-item svg { width: 20px; height: 20px; color: var(--c-green); flex: none; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-alt); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .thumb.icon-thumb { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-green-light), #fff); }
.service-card .thumb.icon-thumb svg { width: 64px; height: 64px; color: var(--c-green); }
.service-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card .body h3 { margin-bottom: 10px; }
.service-card .body p { color: var(--c-text-muted); font-size: .95rem; flex: 1; }
.service-card .more { margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--c-green-dark); display: inline-flex; align-items: center; gap: 6px; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .15s; }
.service-card:hover .more svg { transform: translateX(4px); }

.icon-box {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--c-green-light); color: var(--c-green-dark); margin-bottom: 18px; flex: none;
}
.icon-box svg { width: 26px; height: 26px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature h4 { text-transform: none; letter-spacing: 0; font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; color: var(--c-ink); }
.feature p { color: var(--c-text-muted); font-size: .95rem; margin: 0; }
.feature .icon-box { margin-bottom: 0; }

.check-list li { display: flex; gap: 12px; padding: 8px 0; align-items: flex-start; }
.check-list li svg { width: 20px; height: 20px; color: var(--c-green); flex: none; margin-top: 2px; }

/* ---------- Testimonials ---------- */
.testi-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; height: 100%; }
.testi-stars { display: flex; gap: 3px; color: var(--c-gold); }
.testi-stars svg { width: 16px; height: 16px; }
.testi-quote { font-size: 1.08rem; color: var(--c-ink); font-weight: 500; }
.testi-quote::before { content: "\201C"; }
.testi-quote::after { content: "\201D"; }
.testi-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--c-border); }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--c-green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 600; flex: none; }
.testi-meta b { display: block; font-size: .92rem; }
.testi-meta span { display: block; font-size: .8rem; color: var(--c-text-muted); }
.testi-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- Team ---------- */
.team-card { padding: 26px; }
.team-card-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.team-photo { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; flex: none; border: 3px solid var(--c-green-light); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-exp { margin: 4px 0 0; font-size: .78rem; font-weight: 600; color: var(--c-green-dark); }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 16px; border-top: 1px solid var(--c-border); }
.tag { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--c-green-light); color: var(--c-green-dark); }

/* ---------- Sub-brand cards ---------- */
.brand-card { padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--c-border); background: #fff; height: 100%; display: flex; flex-direction: column; }
.brand-card img { height: 34px; width: auto; margin-bottom: 20px; align-self: flex-start; }
.brand-card p { color: var(--c-text-muted); flex: 1; }
.brand-card .bar { height: 4px; width: 46px; border-radius: 3px; margin-bottom: 18px; }

/* ---------- Stats / Numbers ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 780px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-border); }
.stat b { display: block; font-family: var(--font-head); font-size: 2.4rem; color: var(--c-green-dark); }
.stat span { font-size: .85rem; color: var(--c-text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--c-ink) 0%, #262b30 100%); color: #fff; border-radius: var(--radius-lg); padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0; max-width: 46ch; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 22px 22px; border: 1px solid var(--c-border); border-radius: var(--radius); background: #fff; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--c-green); display: block; margin-bottom: 10px; }

/* ---------- Reliability Model (Swiss Cheese) ---------- */
.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .model-grid { grid-template-columns: 1fr; } }
.model-col { background: #1c2024; padding: 30px 26px; }
.model-step { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--c-gold); line-height: 1; margin-bottom: 14px; }
.model-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.model-subtitle { font-size: .85rem; color: var(--c-text-muted-on-dark); margin-bottom: 18px; }
.model-items { display: flex; flex-direction: column; gap: 10px; }
.model-items li { font-size: .88rem; color: rgba(255,255,255,.82); padding-left: 16px; position: relative; }
.model-items li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--c-green); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a { display: block; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery a:hover img { transform: scale(1.08); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--c-border); padding: 22px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--c-ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--c-green); flex: none; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--c-text-muted); margin: 14px 0 0; max-width: 74ch; }

/* ---------- Contact / Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 600; letter-spacing: .03em; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; background: #fff; color: var(--c-text); transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--c-green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--c-text-muted); }
.form-check input { margin-top: 3px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-note { font-size: .8rem; color: var(--c-text-muted); margin-top: 10px; }
.form-status { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 18px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--c-green-light); color: var(--c-green-dark); }
.form-status.err { background: #fdeceb; color: #b3261e; }

.info-card { background: var(--c-bg-alt); border-radius: var(--radius-lg); padding: 32px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-border); }
.info-row:last-child { border-bottom: none; }
.info-row .icon-box { margin-bottom: 0; background: #fff; }
.info-row b { display: block; font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-muted); margin-bottom: 3px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-bg-dark); color: var(--c-text-muted-on-dark); padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img.footer-logo { height: 34px; width: auto; margin-bottom: 18px; }
.footer-grid p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .82rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; font-size: .9rem; }
.footer-col ul a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 24px 0; font-size: .8rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--c-border); margin: 40px 0; border: none; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--c-border); font-size: .82rem; font-weight: 600; color: var(--c-ink-soft); }
.badge-pill svg { width: 15px; height: 15px; color: var(--c-green); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col img, .two-col .img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

.industry-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-chip { padding: 12px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--c-border); font-family: var(--font-head); font-size: .88rem; font-weight: 500; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--c-green); color: #fff; padding: 12px 18px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .related-services { grid-template-columns: 1fr; } }
.related-card { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--c-border); border-radius: var(--radius); background: #fff; }
.related-card .icon-box { margin: 0; width: 44px; height: 44px; }
.related-card .icon-box svg { width: 22px; height: 22px; }
.related-card b { font-size: .95rem; display: block; }
.related-card:hover { border-color: var(--c-green); }

.sticky-cta { display: none; }
@media (max-width: 940px) {
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff; border-top: 1px solid var(--c-border); padding: 10px 14px;
    gap: 10px; box-shadow: 0 -6px 20px rgba(0,0,0,.08);
  }
  .sticky-cta .btn { flex: 1; }
  body { padding-bottom: 66px; }
}

.not-found { text-align: center; padding: 140px 0; }
.not-found .code { font-family: var(--font-head); font-size: 6rem; color: var(--c-green); line-height: 1; }
