/* UA-5 Website — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  background: #ffffff;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #007130; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: #444444;
  line-height: 1.25;
}
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 18px; font-weight: 500; }
h4 { font-size: 15px; font-weight: 500; }

.display { font-size: 36px; font-family: 'Exo 2', sans-serif; font-weight: 600; }
.label { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.caption { font-size: 13px; font-weight: 400; }

/* ─── Colours ───────────────────────────────────────────── */
:root {
  --green:   #007130;
  --lime:    #5FA224;
  --yellow:  #C4D700;
  --charcoal:#444444;
  --white:   #ffffff;
  --light:   #f5f5f5;
  --border:  #e8e8e8;
}

/* ─── Layout Utilities ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--green { background: var(--green); color: #fff; }
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }
.section--light { background: var(--light); }

/* ─── Grid ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ─── Navigation ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav-logo:hover { text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transform: translateY(-1px); }
.nav-logo svg { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

.nav-links .nav-cta {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: rgba(255,255,255,0.3); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.7; }

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 16px 0 8px;
  z-index: 200;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
}

.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}

.dropdown-menu .dropdown-group { padding: 8px 0; border-bottom: 0.5px solid var(--border); }
.dropdown-menu .dropdown-group:last-child { border-bottom: none; }
.dropdown-menu .dropdown-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  padding: 4px 16px;
  display: block;
}
.dropdown-menu a {
  display: block;
  color: var(--charcoal);
  padding: 6px 16px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.1s;
}
.dropdown-menu a:hover { background: #f5f5f5; color: var(--green); text-decoration: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.2s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 32px;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.mobile-menu .mobile-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 12px 32px 4px;
}
.mobile-menu .mobile-sub { padding-left: 48px; font-size: 13px; }

.dno-grid img { height: 64px; width: auto; max-width: 180px; object-fit: contain; }
@media (max-width: 600px) {
  .dno-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .dno-grid img { height: 44px; max-width: 120px; }
  .dno-grid > div { padding: 14px 16px !important; height: 72px !important; }
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 32px;
  cursor: pointer;
  text-align: left;
}
.mobile-services-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.mobile-services-toggle.open .mobile-chevron { transform: rotate(180deg); }

.mobile-services-drawer {
  display: none;
  background: rgba(0,0,0,0.15);
}
.mobile-services-drawer.open { display: block; }
.mobile-services-drawer .mobile-services-all {
  font-weight: 600;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  margin-bottom: 4px;
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--light);
  border-top: 0.5px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand svg { height: 28px; width: auto; opacity: 0.35; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: #888; line-height: 1.6; }
.footer-brand .footer-reg { font-family: 'DM Mono', monospace; font-size: 10px; color: #aaa; margin-top: 8px; }

.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.footer-col a { display: block; font-size: 13px; color: #666; padding: 2px 0; }
.footer-col a:hover { color: var(--green); text-decoration: none; }

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #aaa; }
.footer-bottom a { color: #aaa; font-size: 12px; }
.footer-bottom a:hover { color: var(--green); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  border: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #005a26; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,113,48,0.35); }
.btn-secondary { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); text-decoration: none; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--green); font-weight: 600; }
.btn-white:hover { background: #f0f9f4; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-sm { font-size: 13px; padding: 8px 16px; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}
.hero-content h1 { color: #fff; font-size: 44px; margin-bottom: 20px; line-height: 1.15; }
.hero-content p { font-size: 17px; line-height: 1.7; margin-bottom: 36px; opacity: 0.92; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero--page {
  min-height: 280px;
  padding: 64px 0;
}
.hero--page .hero-content h1 { font-size: 28px; }
.hero--page .hero-content p { font-size: 15px; }

/* ─── Stats Strip ───────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  padding: 24px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; font-family: 'DM Mono', monospace; text-transform: uppercase; }

/* ─── Cards ─────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.12); transform: translateY(-4px); border-color: rgba(0,113,48,0.2); }
.card-body { padding: 24px; }
.card-icon { width: 40px; height: 40px; background: rgba(0,113,48,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 13px; color: #666; margin-bottom: 16px; }
.card a.card-link { font-size: 13px; font-weight: 500; color: var(--green); display: flex; align-items: center; gap: 4px; }
.card a.card-link:hover { text-decoration: none; gap: 8px; }

/* Service card image */
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Section Headers ───────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header .eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 { font-size: 34px; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: #666; max-width: 600px; }
.section-header.centered p { margin: 0 auto; }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonial {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.testimonial blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial cite {
  font-style: normal;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--charcoal);
  display: block;
}
.testimonial .cite-role { font-size: 12px; color: #888; font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* ─── Accreditation Logos ───────────────────────────────── */
.accred-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
}
.accred-item {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
}
.accred-badge {
  width: 56px;
  height: 56px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  background: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--green);
}

/* ─── How We Work Steps ─────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
}
.step h3 { font-size: 14px; margin-bottom: 8px; }
.step p { font-size: 13px; color: #666; }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: var(--green);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 32px; }
.cta-banner .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Sectors ───────────────────────────────────────────── */
.sector-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px;
  border-left: 3px solid var(--green);
}
.sector-card h3 { margin-bottom: 8px; }
.sector-card p { font-size: 13px; color: #666; margin-bottom: 16px; }
.sector-card ul li { font-size: 13px; color: #555; padding: 3px 0; padding-left: 16px; position: relative; }
.sector-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--lime); font-size: 10px; top: 6px; }

/* ─── Service Page ──────────────────────────────────────── */
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-intro img { border-radius: 12px; width: 100%; height: 360px; object-fit: cover; }
.service-bullets { padding: 0; }
.service-bullets li { padding: 10px 0; border-bottom: 0.5px solid var(--border); padding-left: 20px; position: relative; font-size: 14px; }
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 2px; background: var(--green); }

.methodology { counter-reset: step; }
.method-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
}
.method-step:last-child { border-bottom: none; }
.method-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(0,113,48,0.15);
  line-height: 1;
  padding-top: 4px;
}
.method-content h3 { margin-bottom: 8px; }
.method-content p { font-size: 14px; color: #555; }

/* ─── FAQs ──────────────────────────────────────────────── */
.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
.faq-question.open::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 14px; color: #555; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ─── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid #ccc;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12px; color: #888; margin-top: 8px; }

/* ─── Page Intro Header ─────────────────────────────────── */
.page-header {
  background: var(--green);
  padding: 56px 0;
}
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 600px; }
.page-header .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; font-family: 'DM Mono', monospace; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-header .breadcrumb a:hover { color: #fff; }

/* ─── Two-col split ─────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }
.split img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; }
.split-content h2 { margin-bottom: 16px; }
.split-content p { color: #555; margin-bottom: 16px; font-size: 14px; }
.split-content ul { margin-bottom: 24px; }
.split-content ul li { font-size: 14px; padding: 6px 0 6px 20px; position: relative; border-bottom: 0.5px solid var(--border); color: #555; }
.split-content ul li:last-child { border-bottom: none; }
.split-content ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 2px; background: var(--green); }

/* ─── Tag / Badge ───────────────────────────────────────── */
.tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; font-family: 'DM Mono', monospace; }
.tag-green { background: rgba(0,113,48,0.1); color: var(--green); }
.tag-lime { background: rgba(95,162,36,0.12); color: #3a7515; }
.tag-grey { background: rgba(68,68,68,0.1); color: var(--charcoal); }

/* ─── Highlight Box ─────────────────────────────────────── */
.highlight-box {
  background: rgba(0,113,48,0.05);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { font-size: 14px; color: #444; margin: 0; }

/* ─── Print ─────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .nav-toggle, .mobile-menu, .no-print { display: none !important; }
  body { font-size: 12px; }
  @page { margin: 0; }
}

/* ─── Homepage Hero Logo ─────────────────────────────────── */
.page-home .nav-logo {
  margin-left:auto;
  order:99;
}
.page-home .nav-logo svg { height:32px; }

.hero-split {
  display:flex;
  align-items:center;
  gap:64px;
  position:relative;
  z-index:1;
}
.hero-logo {
  flex-shrink:0;
}
.hero-logo svg {
  height:200px;
  width:auto;
  display:block;
  background:rgba(255,255,255,0.15);
  border-radius:16px;
  padding:28px 48px;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.25);
}
.hero-logo svg > g > g:last-child { fill:#ffffff; }
.hero-split .hero-content {
  max-width:600px;
  position:static;
}

@media (max-width:768px) {
  .hero-split { flex-direction:column; gap:32px; text-align:center; }
  .hero-split .hero-actions { justify-content:center; }
  .hero-logo svg { height:100px; padding:18px 32px; }
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
}

/* ─── Client Logo Ticker ─────────────────────────────────── */
.logo-ticker-wrap {
  padding:32px 0 36px;
  background:#f7f9f7;
  border-top:0.5px solid #e8ede8;
  border-bottom:0.5px solid #e8ede8;
  overflow:hidden;
}
.logo-ticker-label {
  text-align:center;
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#aaa;
  margin-bottom:24px;
}
.logo-ticker-track-outer {
  overflow:hidden;
  width:100%;
  -webkit-mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
}
.logo-ticker-track {
  display:flex;
  gap:16px;
  width:max-content;
  animation:ticker-scroll 32s linear infinite;
}
.logo-ticker-track:hover { animation-play-state:paused; }
.logo-ticker-card {
  background:#fff;
  border:0.5px solid #e8e8e8;
  border-radius:12px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  padding:16px 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:72px;
  flex-shrink:0;
  transition:box-shadow 0.2s, transform 0.2s;
}
.logo-ticker-card:hover {
  box-shadow:0 6px 24px rgba(0,0,0,0.1);
  transform:translateY(-2px);
}
.logo-ticker-card--dark {
  background:#3d4a3e;
  border-color:#2e3a2f;
}
.logo-ticker-card--green {
  background:#007130;
  border-color:#005a26;
}
.logo-ticker-card img {
  height:38px;
  width:auto;
  max-width:130px;
  display:block;
  object-fit:contain;
}
@keyframes ticker-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ─── Service Ticker ─────────────────────────────────────── */
.svc-ticker-wrap {
  padding:32px 0 36px;
  background:#f7f9f7;
  border-bottom:0.5px solid #e8ede8;
  overflow:hidden;
}
.svc-ticker-track {
  display:flex;
  gap:12px;
  width:max-content;
  animation:ticker-scroll 40s linear infinite;
}
.svc-ticker-track:hover { animation-play-state:paused; }
.svc-ticker-card {
  display:flex;
  flex-direction:column;
  gap:8px;
  background:#fff;
  border:0.5px solid #e0ede0;
  border-radius:12px;
  padding:18px 22px;
  min-width:210px;
  max-width:240px;
  flex-shrink:0;
  text-decoration:none;
  color:inherit;
  transition:box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor:pointer;
}
.svc-ticker-card:hover {
  box-shadow:0 6px 24px rgba(0,0,0,0.1);
  transform:translateY(-3px);
  border-color:rgba(0,113,48,0.3);
  text-decoration:none;
}
.svc-ticker-cat {
  font-family:'DM Mono',monospace;
  font-size:10px;
  font-weight:500;
  letter-spacing:0.07em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:20px;
  display:inline-block;
  align-self:flex-start;
}
.svc-ticker-name {
  font-family:'Exo 2',sans-serif;
  font-weight:600;
  font-size:14px;
  color:#222;
  line-height:1.3;
  flex:1;
}
.svc-ticker-arrow {
  font-size:18px;
  color:#007130;
  align-self:flex-end;
  line-height:1;
}

/* ─── Service Wheel ─────────────────────────────────────── */
.view-toggle { display:flex; gap:8px; justify-content:center; margin-bottom:48px; }
.vt-btn { padding:10px 28px; border-radius:8px; border:1.5px solid #007130; font-family:'Exo 2',sans-serif; font-weight:500; font-size:14px; cursor:pointer; transition:all 0.2s; background:transparent; color:#007130; letter-spacing:0.01em; }
.vt-btn.active { background:#007130; color:#fff; }
.vt-btn:hover:not(.active) { background:rgba(0,113,48,0.06); }

.wheel-wrap { display:grid; grid-template-columns:500px 1fr; gap:56px; align-items:center; }
.wheel-area { position:relative; width:480px; height:480px; flex-shrink:0; user-select:none; margin:0 auto; }
.wheel-svg { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; overflow:visible; }
.wheel-hub {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:96px; height:96px; border-radius:50%;
  background:#007130; z-index:4;
  box-shadow:0 4px 24px rgba(0,113,48,0.35);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.hub-label { color:#fff; font-family:'Exo 2',sans-serif; font-weight:700; font-size:18px; line-height:1; }
.hub-sub { color:rgba(255,255,255,0.72); font-size:9px; font-family:'DM Sans',sans-serif; text-align:center; padding:0 8px; margin-top:3px; transition:opacity 0.25s; }
.w-node {
  position:absolute; width:50px; height:50px; border-radius:50%;
  border:2.5px solid var(--nc,#007130); background:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all 0.2s ease;
  z-index:3; transform:translate(-50%,-50%);
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.w-node:hover, .w-node.active {
  background:var(--nc,#007130);
  transform:translate(-50%,-50%) scale(1.2);
  box-shadow:0 6px 24px rgba(0,0,0,0.18);
}
.w-node .nd-num { font-family:'Exo 2',sans-serif; font-weight:700; font-size:14px; color:var(--nc,#007130); pointer-events:none; }
.w-node:hover .nd-num, .w-node.active .nd-num { color:#fff; }
.wheel-panel {
  background:#f7fcf5; border:0.5px solid #ddebd7; border-radius:16px;
  padding:36px 32px; min-height:320px;
  display:flex; flex-direction:column; justify-content:center;
  transition:all 0.25s;
}
.wp-hint { color:#bbb; font-size:14px; text-align:center; margin:0; font-style:italic; }
.wp-cat { display:inline-block; font-size:11px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; font-family:'DM Mono',monospace; padding:4px 12px; border-radius:20px; margin-bottom:14px; }
.wp-title { font-family:'Exo 2',sans-serif; font-weight:600; font-size:21px; color:#1a1a1a; margin-bottom:10px; line-height:1.3; }
.wp-desc { color:#555; font-size:14px; line-height:1.75; margin-bottom:24px; flex:1; }
.wp-btn { display:inline-block; background:#007130; color:#fff; padding:10px 24px; border-radius:8px; font-family:'Exo 2',sans-serif; font-weight:500; font-size:14px; text-decoration:none; transition:all 0.2s; align-self:flex-start; }
.wp-btn:hover { background:#005a26; transform:translateY(-1px); color:#fff; }
.wheel-legend { display:flex; flex-wrap:wrap; gap:16px 28px; justify-content:center; margin-top:32px; }
.wl-item { display:flex; align-items:center; gap:7px; font-size:12px; color:#555; font-family:'DM Sans',sans-serif; }
.wl-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }

@media (max-width:1140px) {
  .wheel-wrap { grid-template-columns:1fr; gap:32px; }
  .wheel-area { width:440px; height:440px; }
}
@media (max-width:560px) {
  #wheelSection .wheel-wrap { display:none; }
  #wheelSection .wheel-legend { display:none; }
  .wheel-mobile-msg { display:block !important; }
}
.wheel-mobile-msg { display:none; text-align:center; color:#888; font-size:13px; padding:8px 0 24px; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }

  .hero-content h1 { font-size: 26px; }
  .display { font-size: 24px; }
  .section-header h2 { font-size: 26px; }

  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > :first-child { order: 1; }
  .split--reverse > :last-child { order: 2; }
  .split img { height: 260px; }
  .service-intro { grid-template-columns: 1fr; gap: 32px; }
  .service-intro img { height: 260px; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .cta-banner .btn-row { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}
