/* ============================================================
   B&B Nexus — Shared Stylesheet
   ============================================================ */

:root {
  --green-deep: #13380c;
  --green: #1d4e15;
  --green-mid: #2a6221;
  --green-soft: #e8ede6;
  --gold: #a8892e;
  --gold-warm: #937b2e;
  --gold-light: #c7a84a;
  --gold-soft: #f2e9cf;
  --cream: #f7f3ea;
  --ink: #141815;
  --muted: #6b7570;
  --line: rgba(20, 24, 21, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar a:hover { color: var(--gold); transition: color .25s ease; }

/* ============ NAV ============ */
nav.main {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, color .4s ease;
}
nav.main.inverted {
  background: var(--green-deep);
  color: var(--cream);
  border-bottom-color: rgba(255,255,255,0.08);
}
nav.main.inverted .logo-mark img {
  filter: brightness(0) invert(1);
}
nav.main.inverted .cta-nav { background: var(--gold); color: var(--green-deep); }
nav.main.inverted .cta-nav:hover { background: var(--cream); }
nav.main.inverted .nav-links a { color: var(--cream); }

.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  transition: transform .4s ease;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo:hover .logo-mark { transform: rotate(-4deg); }
.logo-text { line-height: 1.05; font-size: 19px; letter-spacing: 0.01em; font-weight: 600; text-transform: uppercase; font-family: 'Fraunces', serif; }
.logo-text small { display: block; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Inter', sans-serif; opacity: .55; margin-top: 3px; font-weight: 500; }

.nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a.active::after,
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--gold); transition: right .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.cta-nav {
  background: var(--green-deep); color: var(--cream);
  padding: 11px 22px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; border-radius: 100px;
  transition: all .25s ease;
}
.cta-nav:hover { background: var(--gold); color: var(--green-deep); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: currentColor;
  transition: all .3s ease;
}
.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: 0;
  background: var(--green-deep); color: var(--cream);
  z-index: 200; padding: 40px 32px;
  flex-direction: column; gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  align-self: flex-end; font-size: 28px; color: var(--cream); cursor: pointer;
}
.nav-mobile a {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 400;
  color: var(--cream); opacity: .85;
  transition: color .2s, opacity .2s;
}
.nav-mobile a:hover { color: var(--gold); opacity: 1; }
.nav-mobile-cta {
  margin-top: auto;
  background: var(--gold); color: var(--green-deep) !important;
  padding: 16px 28px; border-radius: 100px;
  font-size: 15px !important; font-weight: 600;
  text-align: center; display: inline-block;
  opacity: 1 !important;
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; border-radius: 100px;
  transition: all .25s ease;
}
.btn-primary { background: var(--green-deep); color: var(--cream); }
.btn-primary:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost.light { color: var(--cream); border-color: var(--cream); }
.btn-ghost.light:hover { background: var(--cream); color: var(--ink); }
.arrow { display: inline-block; transition: transform .25s; }
.btn-primary:hover .arrow,
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--green-deep);
  color: var(--cream);
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,163,90,.15), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); display: block; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(52px, 7vw, 96px); max-width: 900px; }
.page-hero h1 .accent { font-style: italic; color: var(--gold); font-weight: 300; }
.page-hero p { font-size: 19px; opacity: .8; max-width: 600px; margin-top: 28px; }

/* ============ SECTION SHARED ============ */
.section-head { text-align: center; margin-bottom: 80px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(40px, 5vw, 72px); max-width: 800px; margin: 0 auto; }
.section-head h2 .accent { font-style: italic; color: var(--gold-warm); font-weight: 300; }
.section-head p { margin-top: 20px; font-size: 17px; opacity: .75; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============ METRICS ============ */
.metrics {
  background: var(--green-deep);
  color: var(--cream);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,163,90,.15), transparent 70%);
  pointer-events: none;
}
.metrics-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.metrics-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 100px; align-items: end;
}
.metrics-head h2 { font-size: clamp(40px, 5vw, 72px); }
.metrics-head h2 .accent { color: var(--gold); font-style: italic; font-weight: 300; }
.metrics-head p { font-size: 17px; opacity: .75; max-width: 400px; }
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid rgba(255,255,255,.1);
}
.metric {
  padding: 50px 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.metric:last-child { border-right: none; padding-right: 0; }
.metric .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400; line-height: 1;
  letter-spacing: -0.02em; color: var(--gold);
  margin-bottom: 18px; display: flex; align-items: baseline;
}
.metric .num .suffix { font-size: 0.45em; margin-left: 4px; color: var(--cream); opacity: .7; }
.metric .label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .6; margin-bottom: 12px; }
.metric .desc { font-size: 14px; opacity: .85; line-height: 1.5; }

/* ============ INDUSTRIES ============ */
.industries {
  background: var(--green-deep);
  color: var(--cream);
  padding: 140px 32px 160px;
}
.industries-head {
  max-width: 1400px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.industries-head h2 { font-size: clamp(40px, 5vw, 72px); }
.industries-head h2 .accent { color: var(--gold); font-style: italic; font-weight: 300; }
.industries-head p { font-size: 17px; opacity: .75; max-width: 420px; }
.industries-head .eyebrow { color: var(--gold); margin-bottom: 20px; display: block; }
.ind-list { max-width: 1400px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.15); }
.ind-row {
  display: grid; grid-template-columns: 60px 1fr 1fr 60px;
  gap: 32px; align-items: center;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.15);
  cursor: pointer; transition: padding .4s ease; position: relative;
}
.ind-row:hover { padding-left: 20px; }
.ind-row .num { font-family: 'Fraunces', serif; font-size: 18px; color: var(--gold); }
.ind-row h3 { font-family: 'Fraunces', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; letter-spacing: -0.01em; }
.ind-row p { font-size: 15px; opacity: .75; max-width: 420px; }
.ind-row .arrow-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  transition: all .25s ease; justify-self: end;
}
.ind-row:hover .arrow-btn { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.ind-row .hover-img {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%) scale(.9);
  width: 180px; height: 130px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  border-radius: 2px; overflow: hidden; z-index: 2;
}
.ind-row:hover .hover-img { opacity: 1; transform: translateY(-50%) scale(1); }
.ind-row .hover-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 140px 32px; background: var(--cream); }
.test-inner { max-width: 1400px; margin: 0 auto; }
.test-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.test-head .eyebrow { display: block; margin-bottom: 20px; }
.test-head h2 { font-size: clamp(40px, 5vw, 72px); }
.test-head h2 .accent { font-style: italic; color: var(--gold-warm); font-weight: 300; }
.test-head p { font-size: 17px; opacity: .75; max-width: 420px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  padding: 40px 32px; background: var(--cream);
  border: 1px solid var(--line); border-radius: 2px;
  display: flex; flex-direction: column;
  transition: all .3s ease;
}
.test-card:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-6px); border-color: var(--green-deep); }
.test-card:hover .test-author small { color: var(--gold); }
.test-card:hover .test-author strong { color: var(--cream); }
.test-card:hover .test-stars { color: var(--gold); }
.test-card:hover .test-author { border-top-color: rgba(255,255,255,.15); }
.test-stars { color: var(--gold-warm); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.test-quote { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.4; font-weight: 400; margin-bottom: 32px; flex: 1; }
.test-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.test-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-soft); color: var(--green-deep);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600;
  flex-shrink: 0;
}
.test-author strong { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; display: block; }
.test-author small { font-size: 12px; color: var(--muted); }

/* ============ ACCREDITATION ============ */
.accred {
  background: var(--gold-soft); padding: 80px 32px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.accred-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.accred h3 { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 12px; }
.accred h3 .accent { font-style: italic; color: var(--gold-warm); font-weight: 300; }
.accred p { color: var(--muted); font-size: 15px; }
.accred-badges { display: flex; gap: 32px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream); padding: 18px 24px;
  border: 1px solid var(--line); border-radius: 2px;
}
.badge-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-deep); color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600;
  flex-shrink: 0;
}
.badge-text small { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; }
.badge-text strong { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; display: block; line-height: 1.2; margin-top: 2px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--green-deep); color: var(--cream);
  padding: 120px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,163,90,.1), transparent 60%);
  pointer-events: none;
}
.cta-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner .eyebrow { color: var(--gold); display: inline-block; margin-bottom: 24px; }
.cta-inner h2 { font-size: clamp(48px, 6vw, 96px); margin-bottom: 32px; }
.cta-inner h2 .accent { font-style: italic; color: var(--gold); font-weight: 300; }
.cta-inner p { font-size: 18px; opacity: .8; max-width: 560px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ============ CONTACT FORM ============ */
.contact { background: var(--cream); padding: 140px 32px; }
.contact-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px;
}
.contact-left .eyebrow { display: block; margin-bottom: 20px; }
.contact-left h2 { font-size: clamp(40px, 4.5vw, 64px); margin-bottom: 32px; }
.contact-left h2 .accent { font-style: italic; color: var(--gold-warm); font-weight: 300; }
.contact-left > p { font-size: 17px; opacity: .85; margin-bottom: 48px; max-width: 440px; }
.contact-details { border-top: 1px solid var(--line); padding-top: 32px; }
.contact-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.contact-row .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.contact-row .value { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; }
.contact-row .value small { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); display: block; letter-spacing: 0.05em; margin-top: 2px; font-weight: 400; }
form.contact-form {
  background: var(--cream); padding: 48px;
  border: 1px solid var(--line); border-radius: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.field { position: relative; }
.field label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 0; background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
  transition: border-color .2s; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--gold-warm);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--green-deep); color: var(--cream);
  padding: 18px 36px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px; transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 16px;
}
.form-submit:hover { background: var(--gold); color: var(--green-deep); }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: var(--cream); padding: 80px 32px 32px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  max-width: 260px; width: 100%; height: auto; margin-bottom: 20px;
  filter: brightness(0) invert(1); opacity: .9;
}
.footer-brand p { font-size: 13px; opacity: .6; max-width: 320px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; opacity: .75; transition: opacity .2s, color .2s; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; opacity: .5; letter-spacing: 0.05em;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a:hover { color: var(--gold); opacity: 1; }
.footer-legal { display: flex; gap: 24px; }

/* ============ FEATURE GRID (employers / employees) ============ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1400px; margin: 0 auto;
}
.feature-card {
  padding: 40px 32px; border: 1px solid var(--line); border-radius: 2px;
  transition: all .3s ease;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-soft); color: var(--green-deep);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 12px; }
.feature-card p { font-size: 15px; opacity: .8; line-height: 1.6; }

/* ============ PROCESS STEPS ============ */
.process { padding: 140px 32px; background: var(--green-soft); }
.process-inner { max-width: 1400px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; }
.step {
  padding: 0 32px 0 0; position: relative;
}
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: 8px; top: 24px;
  color: var(--gold); font-size: 20px;
}
.step-num {
  font-family: 'Fraunces', serif; font-size: 64px; font-weight: 400;
  color: var(--gold); opacity: .4; line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h4 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.step p { font-size: 14px; opacity: .75; line-height: 1.6; }

/* ============ SPLIT CONTENT ============ */
.split { padding: 140px 32px; background: var(--cream); }
.split-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-img { position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .img-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--cream); color: var(--ink);
  padding: 10px 18px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
}
.split-content .eyebrow { display: block; margin-bottom: 24px; }
.split-content h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 28px; }
.split-content h2 .accent { font-style: italic; color: var(--gold-warm); font-weight: 300; }
.split-content p { font-size: 17px; opacity: .85; margin-bottom: 20px; max-width: 520px; }
.split-content ul { list-style: none; margin: 24px 0; }
.split-content ul li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 14px; font-size: 15px;
}
.split-content ul li::before { content: '◆'; color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* ============ INDUSTRY DETAIL CARDS ============ */
.ind-detail {
  padding: 100px 32px; background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.ind-detail:nth-child(even) { background: var(--green-soft); }
.ind-detail-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.ind-detail:nth-child(even) .ind-detail-inner { direction: rtl; }
.ind-detail:nth-child(even) .ind-detail-inner > * { direction: ltr; }
.ind-detail-img { aspect-ratio: 16/10; border-radius: 2px; overflow: hidden; }
.ind-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.ind-detail-content .num { font-family: 'Fraunces', serif; font-size: 14px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.ind-detail-content h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 56px); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 20px; }
.ind-detail-content p { font-size: 16px; opacity: .85; line-height: 1.7; margin-bottom: 16px; }
.ind-detail-content .roles {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.role-tag {
  background: var(--gold-soft); color: var(--green-deep);
  padding: 6px 14px; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .topbar-right { display: none; }
  .nav-links { display: none; }
  .cta-nav { display: none; }
  .nav-toggle { display: flex; }

  .metrics-head, .industries-head, .test-head { grid-template-columns: 1fr; gap: 24px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 40px 0; }
  .accred-inner { grid-template-columns: 1fr; gap: 40px; }
  .test-grid, .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ind-row { grid-template-columns: 40px 1fr 40px; gap: 16px; }
  .ind-row p, .ind-row .hover-img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  form.contact-form { padding: 28px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .split-inner, .ind-detail-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-inner.reverse, .ind-detail:nth-child(even) .ind-detail-inner { direction: ltr; }
  .page-hero { padding: 80px 32px 60px; }
  .page-hero h1 { font-size: clamp(40px, 10vw, 72px); }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas, .cta-btns { flex-direction: column; align-items: stretch; text-align: center; }
}
