:root {
  --green-600: #178a4c;
  --green-500: #1fa35a;
  --green-400: #34c079;
  --green-100: #e5f6ec;
  --navy-950: #0a1420;
  --navy-900: #101d2e;
  --navy-800: #16273c;
  --navy-100: #eaf0f5;
  --gold-600: #a9791a;
  --gold-500: #c9972e;
  --gold-400: #dcb45a;
  --gold-100: #faf1dc;
  --ink: #16213a;
  --muted: #5b6478;
  --bg: #ffffff;
  --bg-alt: #f6f8f9;
  --border: #e6e9ec;
  --radius: 14px;
  --shadow: 0 10px 40px -12px rgba(10, 20, 32, 0.16);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --accent-rose: #e0475f;
  --accent-green: #1fa35a;
  --accent-blue: #3b82c4;
  --accent-pink: #d6558f;
  --accent-amber: #d98c2b;
  --accent-indigo: #4c6fdc;
  --accent-orange: #dd7a33;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); line-height: 1.2; }
p { color: var(--muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--green-500); }

/* Progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--navy-800));
  z-index: 1000; transition: width 0.1s ease-out;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -8px rgba(10, 20, 32, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-logo { height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--navy-800); letter-spacing: 0.2px; position: relative; padding: 6px 0; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--green-500); transition: width 0.25s ease;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--green-500); color: #fff !important; padding: 10px 22px !important;
  border-radius: 100px; transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--green-600); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all 0.3s ease; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: 76px; overflow: hidden; color: #fff;
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(8,15,26,0.92) 0%, rgba(8,15,26,0.78) 42%, rgba(8,15,26,0.35) 68%, rgba(8,15,26,0.15) 100%),
              linear-gradient(0deg, rgba(8,15,26,0.55), transparent 40%);
}
.hero-inner {
  max-width: 660px; padding: 40px 0 60px;
  margin-left: clamp(24px, 7vw, 140px); margin-right: 24px;
}
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--green-400); margin-bottom: 18px;
}
.eyebrow-light { color: var(--green-400); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 20px; letter-spacing: -0.5px; color: #fff;
}
.hero-lead { font-size: 1.12rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; font-weight: 500; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px; font-weight: 600; font-size: 15px;
  transition: all 0.25s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--green-500); color: #fff; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(31, 163, 90, 0.45); }
.btn-ghost { border-color: var(--navy-900); color: var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn-block { width: 100%; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.86rem; font-weight: 600; color: #fff; line-height: 1.35; }
.trust-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: rgba(255,255,255,0.1); color: var(--green-400);
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14);
}
.trust-icon svg { width: 18px; height: 18px; }

.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.4); border-radius: 100px;
}
.hero-scroll-cue span {
  display: block; width: 4px; height: 8px; background: var(--green-400); border-radius: 2px;
  margin: 8px auto; animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* Sections */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(155deg, var(--navy-950), var(--navy-900)); position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.section-lead { margin-top: 14px; font-size: 1.05rem; }
.head-light { color: #fff; }
.head-light-muted { color: rgba(255, 255, 255, 0.65) !important; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-bottom: 64px; }
.about-copy p { margin-bottom: 18px; font-size: 1.02rem; }
.about-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-radius: var(--radius); margin-bottom: 22px; box-shadow: var(--shadow); }
.vm-cards { display: flex; flex-direction: column; gap: 20px; }
.vm-card {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius); padding: 30px; color: #fff; box-shadow: var(--shadow);
}
.vm-card h3 { color: #fff; margin: 14px 0 8px; font-size: 1.15rem; }
.vm-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.vm-icon, .why-icon, .contact-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(52, 192, 121, 0.18); color: var(--green-400);
}
.vm-icon svg, .why-icon svg, .contact-icon svg, .value-icon svg, .biz-icon svg, .news-icon svg { width: 22px; height: 22px; }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon {
  width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--navy-100); color: var(--navy-800);
}
.value-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* Businesses (dark section) */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.biz-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius); padding: 26px; transition: all 0.3s ease; position: relative;
  overflow: hidden; isolation: isolate;
}
.biz-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--card-photo, none);
  background-size: cover; background-position: center;
  opacity: 0.32; transition: opacity 0.3s ease, transform 0.4s ease;
  transform: scale(1.2); filter: blur(7px) saturate(1.1);
}
.biz-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(165deg, rgba(10, 20, 32, 0.72), rgba(10, 20, 32, 0.94) 65%);
}
.biz-card:hover { transform: translateY(-6px); border-color: var(--accent, var(--green-500)); }
.biz-card:hover::before { opacity: 0.44; transform: scale(1.26); }
.biz-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.biz-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--accent, var(--green-500)); color: #fff; flex-shrink: 0;
}
.biz-card[data-accent="rose"] { --accent: var(--accent-rose); }
.biz-card[data-accent="green"] { --accent: var(--accent-green); }
.biz-card[data-accent="blue"] { --accent: var(--accent-blue); }
.biz-card[data-accent="pink"] { --accent: var(--accent-pink); }
.biz-card[data-accent="amber"] { --accent: var(--accent-amber); }
.biz-card[data-accent="indigo"] { --accent: var(--accent-indigo); }
.biz-card[data-accent="orange"] { --accent: var(--accent-orange); }
.biz-card h3 { font-size: 1.08rem; margin-bottom: 4px; color: #fff; }
.biz-tag { color: var(--accent, var(--green-400)) !important; font-weight: 600; font-size: 0.82rem; margin-bottom: 12px; }
.biz-card > p:last-child { font-size: 0.87rem; color: rgba(255, 255, 255, 0.6); }
.biz-card-future { background: rgba(31, 163, 90, 0.08); border-color: rgba(31, 163, 90, 0.25); }
.status {
  font-size: 10.5px; font-weight: 700; padding: 5px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap;
}
.status-active { background: rgba(52, 192, 121, 0.18); color: var(--green-400); }
.status-dev { background: rgba(217, 140, 43, 0.18); color: #e8a94f; }
.status-soon { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }

/* Ecosystem */
.ecosystem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.eco-card, .purpose-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px;
}
.eco-copy { margin: 14px 0 28px; font-size: 0.98rem; }
.flow-diagram { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; align-items: center; gap: 14px; padding: 10px 0; position: relative; font-weight: 600; color: var(--navy-800); font-size: 0.94rem; }
.flow-step:not(.flow-step-final)::after {
  content: ""; position: absolute; left: 5px; top: 30px; bottom: -10px; width: 2px;
  background: var(--border); border-left: 2px dashed var(--green-400); background: none;
}
.flow-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; box-shadow: 0 0 0 4px var(--green-100); }
.flow-step-final .flow-dot { background: var(--navy-900); box-shadow: 0 0 0 4px var(--navy-100); }

.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.purpose-item {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; font-weight: 600; font-size: 0.9rem; color: var(--navy-800);
}
.purpose-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
}
.purpose-icon svg { width: 17px; height: 17px; }

.stat-strip {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: var(--navy-950); border-radius: var(--radius); padding: 30px 40px;
}
.stat-item { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 0.92rem; }
.stat-icon {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(52, 192, 121, 0.18); color: var(--green-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; }

/* Why */
.section-gold {
  background:
    linear-gradient(160deg, rgba(15, 12, 4, 0.12), rgba(15, 12, 4, 0.28)),
    linear-gradient(160deg, #ecdfb8 0%, #c9a75c 55%, #a9791a 100%);
  position: relative;
}
.section-gold .eyebrow { color: var(--navy-900); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius);
  box-shadow: 0 12px 30px -16px rgba(120, 90, 20, 0.25); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px -16px rgba(120, 90, 20, 0.32); }
.why-icon { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 16px; background: var(--gold-100); color: var(--gold-600); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; }

/* Future ventures */
.future { text-align: center; background: var(--bg-alt); }
.future .container { max-width: 720px; }
.future h2 { margin-bottom: 20px; }
.future-lead { font-size: 1.08rem; }

/* Partnerships */
.partner-section { padding-bottom: 0; }
.partner-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.partner-layout h2::after {
  content: ""; display: block; width: 46px; height: 3px; margin-top: 16px;
  background: var(--green-500); border-radius: 2px;
}
.partner-photo-wrap {
  box-shadow: var(--shadow); overflow: hidden;
  border-radius: 58% 14px 14px 14px / 68% 14px 14px 14px;
}
.partner-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }

.partner-badges-band {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  padding: 0 0 52px;
  position: relative;
}
.wave-divider {
  display: block; width: 100%; height: 30px; margin-bottom: 22px;
  fill: var(--green-500);
}
.partner-badges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 0; text-align: center;
}
.partner-badge {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative; padding: 0 16px;
}
.partner-badge:not(:nth-child(4n))::before {
  content: ""; position: absolute; top: 6px; right: 0; bottom: 6px; width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.badge-icon {
  width: 64px; height: 64px; border-radius: 50%; background: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--green-500);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35);
}
.badge-icon svg { width: 26px; height: 26px; }
.partner-badge p { color: #fff; font-size: 0.86rem; font-weight: 600; line-height: 1.35; }
.partner-badge p::after {
  content: ""; display: block; width: 18px; height: 2px; margin: 8px auto 0;
  background: var(--green-400); border-radius: 2px;
}

.partner-section .container:last-child { padding-top: 44px; padding-bottom: 110px; text-align: center; }
.partner-highlight {
  max-width: 620px; margin: 0 auto; padding: 20px 32px; text-align: center;
  border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 1.02rem; font-weight: 600; color: var(--navy-900);
}

/* News */
.news-placeholder {
  display: flex; align-items: center; gap: 24px; background: var(--bg); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 36px; max-width: 780px;
}
.news-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; background: var(--navy-100);
  color: var(--navy-800); display: flex; align-items: center; justify-content: center;
}
.news-placeholder p { font-size: 0.98rem; }

/* Contact */
.contact {
  position: relative;
  background:
    linear-gradient(160deg, rgba(8, 15, 26, 0.90), rgba(8, 15, 26, 0.78)),
    url('/assets/showcase/hero.jpg?v=2') center / cover no-repeat;
}
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 18px; }
.contact-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.6); margin-bottom: 4px; }
.contact-item a { font-weight: 600; color: #fff; font-size: 1.02rem; }
.contact-item a:hover { color: var(--green-400); }

.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.96rem; background: #fff; transition: border-color 0.2s ease;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--green-500); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; min-height: 20px; }
.form-status.success { color: var(--green-600); }
.form-status.error { color: #c0392b; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.7); padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline { color: #fff; font-weight: 600; margin-bottom: 8px; }
.footer-industries { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center; transition: all 0.25s ease;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--green-500); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255, 255, 255, 0.65); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .about-grid, .contact-grid, .ecosystem-grid, .partner-layout { grid-template-columns: 1fr; }
  .partner-photo-wrap { order: -1; border-radius: 50% 14px 14px 14px / 55% 14px 14px 14px; }
  .partner-photo { aspect-ratio: 16 / 9; }
  .partner-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-badge:not(:nth-child(4n))::before { display: none; }
  .partner-badge:not(:nth-child(2n))::before {
    content: ""; position: absolute; top: 6px; right: 0; bottom: 6px; width: 1px;
    background: rgba(255, 255, 255, 0.14);
  }
  .values-grid, .why-grid { grid-template-columns: repeat(3, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-strip { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 8px;
    transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .values-grid, .why-grid, .biz-grid { grid-template-columns: 1fr 1fr; }
  .purpose-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .values-grid, .why-grid, .biz-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .stat-strip { flex-direction: column; }
}

/* Sharuma Biashara service page */
.biz-card h3 a { color: inherit; }
.biz-link { display: inline-flex; margin-top: 16px; color: #fff; font-weight: 700; font-size: 0.9rem; border-bottom: 2px solid var(--green-400); }
.service-hero { position: relative; min-height: 82vh; display: flex; align-items: center; padding: 120px 0 72px; color: #fff; overflow: hidden; }
.service-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.service-hero-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,15,26,0.94), rgba(8,15,26,0.72) 48%, rgba(8,15,26,0.28)); }
.service-hero-content { max-width: 760px; }
.service-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 4.2rem); margin-bottom: 22px; }
.service-lead { color: rgba(255,255,255,0.88); font-size: 1.12rem; max-width: 690px; margin-bottom: 32px; }
.split-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.split-grid h2 { font-size: clamp(1.8rem, 3.2vw, 2.55rem); }
.service-copy p { margin-bottom: 18px; font-size: 1.02rem; }
.service-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card, .step-card, .provider-card, .trust-panel, .faq-item { border-radius: var(--radius); }
.service-card { background: #fff; border: 1px solid var(--border); padding: 26px; min-height: 210px; box-shadow: 0 10px 32px -24px rgba(10,20,32,.25); }
.service-card h3, .step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p, .step-card p { font-size: .93rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--bg-alt); border: 1px solid var(--border); padding: 26px; }
.step-card span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: var(--green-500); color: #fff; font-weight: 800; margin-bottom: 18px; }
.service-industries { background: linear-gradient(155deg, #f9fbfa, #eef6f0); }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-list span { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 11px 18px; font-weight: 700; color: var(--navy-800); }
.trust-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.trust-panel { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); padding: 34px; }
.trust-panel p { color: rgba(255,255,255,.72); margin-bottom: 14px; }
.provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.provider-card { background: #fff; border: 1px solid var(--border); padding: 34px; box-shadow: var(--shadow); }
.provider-card p { margin-bottom: 16px; }
.provider-card a:not(.btn) { color: var(--green-600); font-weight: 700; }
.policy-note { background: var(--gold-100); border-left: 4px solid var(--gold-500); padding: 14px 16px; border-radius: 8px; color: var(--navy-800); }
.faq-wrap { max-width: 880px; }
.faq-item { border: 1px solid var(--border); background: #fff; padding: 18px 22px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 800; color: var(--navy-900); }
.faq-item p { margin-top: 12px; }
.final-cta { text-align: center; background: linear-gradient(155deg, var(--navy-950), var(--navy-800)); }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.final-cta p { color: rgba(255,255,255,.72); max-width: 680px; margin: 14px auto 28px; }
@media (max-width: 980px) { .split-grid, .trust-grid, .provider-grid { grid-template-columns: 1fr; } .service-feature-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .service-hero { min-height: 76vh; padding: 108px 0 58px; } .service-feature-grid, .steps-grid { grid-template-columns: 1fr; } .service-card { min-height: auto; } }
/* Legal pages */
.policy-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.policy-links a { display: inline-flex; align-items: center; justify-content: center; border-radius: 100px; padding: 11px 18px; background: var(--navy-900); color: #fff !important; font-weight: 700; }
.policy-links a:hover { background: var(--green-600); }
.legal-hero { padding: 150px 0 78px; background: linear-gradient(155deg, var(--navy-950), var(--navy-800)); color: #fff; }
.legal-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }
.legal-lead { max-width: 760px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.legal-date { color: var(--green-400); font-weight: 700; margin-top: 18px; }
.legal-section { background: var(--bg-alt); }
.legal-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 42px; align-items: start; }
.legal-aside { position: sticky; top: 104px; display: grid; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.legal-aside a { color: var(--navy-800); font-weight: 700; padding: 10px 12px; border-radius: 8px; }
.legal-aside a:hover { background: var(--green-100); color: var(--green-600); }
.legal-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow); }
.legal-content h2 { font-size: 1.25rem; margin: 30px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content a { color: var(--green-600); font-weight: 700; }
@media (max-width: 980px) { .legal-grid { grid-template-columns: 1fr; } .legal-aside { position: static; } }