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

:root {
  --navy: #16321a;
  --navy-mid: #235c2c;
  --blue: #377e40;
  --white: #ffffff;
  --offwhite: #f5f8f3;
  --muted: #5a5a5a;
  --border: #e0e0e0;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
#about, #services, #sectors, #roadmap, #people, #careers, #contact {
  scroll-margin-top: 88px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Outfit', sans-serif; margin: 0; }

.section-pad { padding: 72px 64px; }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy); }
.text-white { color: var(--white); }

.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  color: var(--blue); text-transform: uppercase; margin: 0 0 20px 0;
}
.label-bar { display: inline-block; width: 28px; height: 2px; background: var(--blue); }
.label-dark { color: rgba(255,255,255,0.5); }
.label-dark .label-bar { background: var(--blue); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--navy); }
.nav-inner { height: 72px; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo { height: 42px; width: auto; display: block; }
.nav-wordmark { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); letter-spacing: 0.5px; }
.nav-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.25); }
.nav-brandlabel { font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--white); }

.btn { display: inline-block; padding: 12px 26px; font-size: 13px; font-weight: 600; border: 1.5px solid transparent; transition: all 0.2s ease; }
.btn-sm { padding: 9px 20px; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #1a3fd6; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; width: 32px; height: 32px; padding: 0; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--white); }

.mobile-drawer { display: none; flex-direction: column; background: var(--navy-mid); overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.mobile-drawer.open { max-height: 500px; }
.mobile-drawer a { padding: 16px 24px; font-size: 14px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer .btn { margin: 16px 24px; text-align: center; }

/* HERO */
.hero { position: relative; height: clamp(460px, 56vw, 680px); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(100deg, #000000 0%, rgba(0,0,0,.87) 30%, rgba(0,0,0,.6) 55%, rgba(0,0,0,.13) 80%, transparent 100%); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, transparent 50%, rgba(0,0,0,.65) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 64px; }
.eyebrow { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.55); margin: 0 0 18px 0; font-weight: 600; }
.hero-content h1 { font-weight: 700; font-size: clamp(30px, 4.5vw, 62px); letter-spacing: -1px; color: var(--white); max-width: 520px; line-height: 1.08; margin-bottom: 20px; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.72); max-width: 420px; line-height: 1.6; margin: 0 0 32px 0; }
.hero-buttons { display: flex; gap: 16px; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 0 40px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-value { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(40px, 5vw, 58px); color: var(--navy); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* INSIGHTS */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.insight-card { background: var(--white); padding: 36px 32px; transition: background 0.2s ease; }
.insight-card:hover { background: #f0f7ee; }
.insight-card.dark { background: var(--navy); color: var(--white); }
.insight-card.dark:hover { background: var(--navy); }
.insight-tag { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.insight-card.dark .insight-tag { color: var(--white); }
.insight-card h3 { font-weight: 700; font-size: 19px; margin: 0; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: 300px 1fr; gap: 72px; }
.services-sidebar { position: sticky; top: 96px; align-self: start; }
.services-sidebar h2 { font-size: 28px; margin-bottom: 16px; }
.services-sidebar p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-row { border-bottom: 1px solid var(--border); padding: 26px 0; }
.service-row:first-child { padding-top: 0; }
.service-row-top { display: flex; align-items: center; gap: 24px; }
.service-num { font-size: 11px; color: #bbb; font-weight: 600; transition: color 0.2s ease; width: 24px; }
.service-title { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 17px; color: var(--navy); transition: color 0.2s ease; flex: 1; }
.service-arrow { color: #bbb; font-size: 18px; transition: color 0.2s ease, transform 0.2s ease; }
.service-row:hover .service-num, .service-row:hover .service-title, .service-row:hover .service-arrow { color: var(--blue); }
.service-row:hover .service-arrow { transform: translateX(4px); }
.service-desc { max-height: 0; opacity: 0; overflow: hidden; font-size: 14px; color: var(--muted); line-height: 1.6; transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease; margin-top: 0; max-width: 640px; }
.service-row:hover .service-desc { max-height: 80px; opacity: 1; margin-top: 14px; }

/* SECTORS */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); margin-top: 40px; }
.sector-cell { border: 1px solid rgba(255,255,255,0.06); padding: 26px 20px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); transition: background 0.2s ease, color 0.2s ease; }
.sector-cell:hover { background: var(--navy-mid); color: var(--white); }
.sectors-intro { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.7; margin-top: 16px; }

/* ROADMAP */
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); margin-top: 36px; }
.roadmap-card { padding: 32px 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.2s ease; }
.roadmap-card:hover { background: #f0f7ee; }
.roadmap-grid .roadmap-card:nth-child(3n) { border-right: none; }
.roadmap-grid .roadmap-card:nth-last-child(-n+3) { border-bottom: none; }
.roadmap-year { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px; color: var(--blue); margin-bottom: 10px; }
.roadmap-title { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.roadmap-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 36px; }
.team-card { text-align: left; transition: color 0.2s ease; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); margin-bottom: 20px; }
.team-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); transition: color 0.2s ease; }
.team-card:hover .team-name { color: var(--blue); }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin: 6px 0 14px 0; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0 0 18px 0; }
.linkedin-badge { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* CAREERS */
.careers { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.careers-media { position: relative; }
.careers-media img { width: 100%; height: 100%; object-fit: cover; }
.careers-media-overlay { position: absolute; inset: 0; background: rgba(22,50,26,0.35); }
.careers-copy { background: var(--offwhite); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.careers-copy h2 { font-size: 30px; margin: 6px 0 18px 0; }
.careers-copy p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 460px; }
.learn-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); margin-top: 12px; }
.learn-more .arrow { transition: transform 0.2s ease; }
.learn-more:hover .arrow { transform: translateX(6px); }

/* CLIENTS */
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--border); margin-top: 36px; }
.client-cell { padding: 30px 16px; text-align: center; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: #aaa; border-right: 1px solid var(--border); transition: background 0.2s ease, color 0.2s ease; }
.client-cell:last-child { border-right: none; }
.client-cell:hover { color: var(--navy); background: var(--offwhite); }

/* TESTIMONIAL */
.testimonial { position: relative; background: var(--navy-mid); padding: 96px 64px; overflow: hidden; }
.testimonial-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.testimonial-content { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: Georgia, serif; font-size: 64px; color: rgba(148, 215, 105, 0.7); line-height: 1; margin-bottom: 8px; }
.quote-text { font-family: 'Outfit', sans-serif; font-weight: 500; font-size: clamp(17px, 2.2vw, 24px); color: var(--white); line-height: 1.55; margin: 0; }
.quote-rule { width: 40px; height: 2px; background: var(--blue); margin: 32px auto; }
.quote-author { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); margin: 0; }

/* FOOTER */
.footer { background: var(--navy); padding: 72px 64px 32px 64px; }
.footer-grid { display: grid; grid-template-columns: 200px repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-wordmark { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); }
.footer-logo { height: 56px; width: auto; }
.footer-subtitle { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-top: 10px; line-height: 1.6; }
.footer-col-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 12px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--white); }

/* CONTACT MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22,50,26,0.72);
  z-index: 1000;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: var(--white);
  width: 100%;
  max-width: 760px;
  margin: auto;
  position: relative;
  border: 1px solid var(--border);
}
.modal-header {
  background: var(--navy);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h2 {
  color: var(--white);
  font-size: 22px;
}
.modal-header p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 0 0 0;
}
.modal-close {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.modal-body { padding: 40px; }
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.modal-grid .field-full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 96px; }
.fund-row { display: flex; gap: 10px; align-items: stretch; }
.fund-row input { flex: 1; }
.fund-add {
  flex-shrink: 0;
  width: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.fund-add:hover { background: var(--navy-mid); }
.captcha-row { display: flex; gap: 12px; align-items: stretch; }
.captcha-row .field { flex: 1; margin: 0; }
.captcha-refresh {
  flex-shrink: 0;
  width: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 16px;
  transition: background 0.2s ease;
}
.captcha-refresh:hover { background: var(--navy-mid); }
.captcha-code {
  flex-shrink: 0;
  min-width: 140px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--navy);
  background: var(--offwhite);
  user-select: none;
}
.modal-submit-row { margin-top: 32px; text-align: right; }
.modal-submit-row .btn-blue { border: none; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: right;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 600px) {
  .modal-overlay { padding: 0; }
  .modal { max-width: 100%; min-height: 100vh; }
  .modal-header { padding: 22px 20px; }
  .modal-body { padding: 24px 20px; }
  .modal-grid { grid-template-columns: 1fr; gap: 20px; }
  .captcha-row { flex-wrap: wrap; }
  .captcha-code { min-width: 100px; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
  .nav-inner { padding: 0 32px; }
  .section-pad { padding: 56px 40px; }
  .hero { height: clamp(480px, 70vw, 580px); }
  .hero-content { padding: 0 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat-item:nth-child(3) { grid-column: span 2; border-right: none; border-top: 1px solid var(--border); padding-top: 32px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid .insight-card:last-child { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-sidebar { position: static; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid .roadmap-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .roadmap-grid .roadmap-card:nth-child(2n) { border-right: none; }
  .roadmap-grid .roadmap-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .roadmap-grid .roadmap-card:nth-last-child(-n+2) { border-bottom: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .careers { grid-template-columns: 1fr; }
  .careers-media { min-height: 300px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid .client-cell:nth-child(3n) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  .section-pad { padding: 48px 20px; }
  .nav-inner { padding: 0 20px; }
  .hero { height: 580px; }
  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 42px); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 0; }
  .stat-item { padding: 24px 0; border-right: none; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; padding-top: 0; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); padding-top: 24px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-grid .insight-card:last-child { grid-column: span 1; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-grid .roadmap-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .roadmap-grid .roadmap-card:last-child { border-bottom: none !important; }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .careers-media { min-height: 240px; }
  .careers-copy { padding: 40px 20px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid .client-cell:nth-child(2n) { border-right: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ───────── SERVICES DROPDOWN (desktop) ───────── */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; cursor: default; }
.nav-dropdown-caret { font-size: 9px; transition: transform 0.2s ease; }
.nav-item-dropdown:hover .nav-dropdown-caret,
.nav-item-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  padding-top: 14px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu-inner {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-dropdown-menu a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--navy-mid); color: var(--white); }
.nav-dropdown-menu a.current { color: var(--blue); }

/* Mobile drawer submenu (native <details>) */
.drawer-services { border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer-services summary {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.drawer-services summary::-webkit-details-marker { display: none; }
.drawer-services summary::after {
  content: '+';
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.drawer-services[open] summary::after { content: '\2212'; }
.drawer-services .drawer-sublist a {
  padding: 12px 24px 12px 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  border-bottom: none;
  background: rgba(0,0,0,0.15);
}

/* ───────── INTERIOR PAGE HERO ───────── */
.page-hero {
  background: var(--navy);
  padding: 44px 64px 52px 64px;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.3); }
.page-hero h1 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.5px;
  max-width: 760px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.6;
}

/* ───────── SERVICE DETAIL LAYOUT ───────── */
.service-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}
.service-detail-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}
.sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.sidebar-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.sidebar-service-list a:hover { color: var(--blue); }
.sidebar-service-list a.current {
  color: var(--navy);
  font-weight: 600;
}
.sidebar-service-list a.current::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 56px;
}
.service-subsection {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-bottom: 48px;
}
.service-subsection:last-child { margin-bottom: 0; }
.subsection-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service-subsection h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-subsection h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px 0;
}
.service-subsection p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 0 14px 0;
}
.role-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 24px 0 14px 0;
}
.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  max-width: 760px;
}
.role-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.role-list li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.approach-list {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  max-width: 720px;
}
.approach-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0 8px 22px;
  position: relative;
}
.approach-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--blue);
}
.service-cta {
  margin-top: 56px;
  padding: 40px 44px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.service-cta h3 {
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 4px 0;
}
.service-cta p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 960px) {
  .page-hero { padding: 36px 40px 44px 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-sidebar { position: static; }
  .sidebar-service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 32px 20px 36px 20px; }
  .role-list { grid-template-columns: 1fr; }
  .sidebar-service-list { grid-template-columns: 1fr; }
  .service-cta { flex-direction: column; align-items: flex-start; }
}
