*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #162840;
  --slate: #2C3E55;
  --gold: #B8933A;
  --gold-light: #D4AA58;
  --gold-pale: #F5EDD8;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --text-body: #3A4455;
  --text-muted: #6B7A8D;
  --border: rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --section-pad: 96px 48px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); font-size: 16px; line-height: 1.6; }

/* ── NAV ── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(184,147,58,0.25);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}
.nav-logo { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 0.04em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 500; padding: 9px 20px; border-radius: 4px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile { display: none; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 24px 32px; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nav-mobile ul a { display: block; padding: 10px 0; font-size: 16px; color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile .btn-primary { display: inline-block; }
.nav-mobile.open { display: block; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 500; padding: 14px 28px; border-radius: 4px; text-decoration: none; font-size: 14px; letter-spacing: 0.03em; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { color: rgba(255,255,255,0.75); font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.02em; transition: color 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(3px); }

/* ── SECTION LABELS ── */
.section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-label-light { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label-light::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.label-line { display: inline-block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 600px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 80px 48px;
  position: relative; overflow: hidden;
  max-width: 100%;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--slate) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-text { position: relative; z-index: 1; max-width: 520px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: var(--font-display); font-size: 52px; line-height: 1.12; color: var(--white); font-weight: 700; margin-bottom: 24px; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 24px; padding-left: 64px; }
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 24px 28px; border-left: 3px solid var(--gold); }
.stat-card .num { font-family: var(--font-display); font-size: 38px; color: var(--white); line-height: 1; }
.stat-card .label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.03em; }

/* ── LOGOS ── */
.logos-bar { background: var(--cream); padding: 28px 48px; display: flex; align-items: center; border-bottom: 1px solid var(--border); }
.logos-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; margin-right: 40px; }
.logos-scroll { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.logo-pill { font-size: 13px; font-weight: 500; color: var(--text-muted); padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; letter-spacing: 0.04em; }

/* ── INTRO ── */
.intro { padding: var(--section-pad); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.intro-text h2 { font-family: var(--font-display); font-size: 42px; line-height: 1.2; color: var(--navy); margin-bottom: 24px; }
.intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 16px; }
.intro-text strong { color: var(--text-body); font-weight: 500; }
.intro-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--cream); transition: border-color 0.2s; }
.pillar:hover { border-color: var(--gold); }
.pillar-icon { width: 40px; height: 40px; min-width: 40px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES ── */
.services { background: var(--navy); padding: var(--section-pad); }
.services > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.services h2 { font-family: var(--font-display); font-size: 42px; color: var(--white); margin-bottom: 16px; }
.services-sub { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 56px; font-weight: 300; max-width: 560px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-width); }
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 32px 28px; transition: background 0.2s, border-color 0.2s; }
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,147,58,0.4); }
.svc-num { font-family: var(--font-display); font-size: 28px; color: var(--gold); opacity: 0.4; font-weight: 700; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.svc-items { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { font-size: 11px; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(184,147,58,0.3); color: rgba(184,147,58,0.8); letter-spacing: 0.04em; }

/* ── TEAM ── */
.team { padding: var(--section-pad); background: var(--cream); }
.team-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.team h2 { font-family: var(--font-display); font-size: 42px; color: var(--navy); }
.team-sub { color: var(--text-muted); font-size: 16px; max-width: 360px; text-align: right; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 880px; margin: 0 auto; align-items: stretch; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; display: flex; flex-direction: column; }
.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.team-card-top { background: var(--navy); padding: 32px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.team-avatar { width: 128px; height: 128px; border-radius: 50%; background: var(--slate); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 34px; color: var(--white); font-weight: 700; margin-bottom: 20px; letter-spacing: 0.04em; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; image-rendering: -webkit-optimize-contrast; }
.team-card-top h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 4px; }
.team-title { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.team-location { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.4); }
.team-location svg { flex-shrink: 0; }
.team-location.us { color: rgba(184,147,58,0.7); }
.team-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.team-card-body p { flex: 1; }
.team-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.team-brands { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.brand-tag { font-size: 11px; padding: 4px 10px; background: var(--cream); border-radius: 100px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }
.brand-tag-us { background: rgba(184,147,58,0.1); color: var(--gold); }

/* ── LOCATIONS ── */
.locations { background: var(--navy); padding: var(--section-pad); }
.locations-inner { max-width: var(--max-width); margin: 0 auto; }
.locations h2 { font-family: var(--font-display); font-size: 42px; color: var(--white); margin-bottom: 16px; }
.locations-sub { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 56px; font-weight: 300; }
.locations-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: center; }
.location-card { padding: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; }
.location-flag { font-size: 36px; margin-bottom: 16px; }
.location-card h3 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 16px; }
.location-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.location-divider { width: 1px; height: 120px; background: rgba(184,147,58,0.25); margin: 0 auto; }

/* ── PROCESS ── */
.process { padding: var(--section-pad); }
.process-inner { max-width: 760px; margin: 0 auto; }
.process h2 { font-family: var(--font-display); font-size: 42px; color: var(--navy); margin-bottom: 12px; }
.process-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 56px; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 42px; color: var(--gold); opacity: 0.3; font-weight: 700; min-width: 52px; line-height: 1; }
.step-content h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA / CONTACT ── */
.cta { background: var(--navy-mid); padding: var(--section-pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; overflow: hidden; }
.cta::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(184,147,58,0.1); pointer-events: none; }
.cta-text h2 { font-family: var(--font-display); font-size: 42px; color: var(--white); margin-bottom: 20px; }
.cta-text p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; }
.contact-item a { color: var(--gold-light); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.contact-item a:hover { color: var(--white); }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input,
.cta-form select,
.cta-form textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white); padding: 13px 16px; border-radius: 6px; font-size: 14px; font-family: var(--font-body); outline: none; transition: border-color 0.2s; width: 100%; }
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus { border-color: var(--gold); }
.cta-form select { color: rgba(255,255,255,0.5); }
.cta-form select option { background: var(--navy); color: var(--white); }
.cta-form textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--gold); color: var(--navy); border: none; cursor: pointer; padding: 15px 24px; border-radius: 4px; font-size: 14px; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.04em; display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; transition: background 0.2s, opacity 0.2s; }
.btn-submit:hover { background: var(--gold-light); }
.form-success, .form-error { display: none; padding: 20px; border-radius: 8px; font-size: 15px; line-height: 1.6; }
.form-success.visible, .form-error.visible { display: block; }
.form-success { background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.3); color: rgba(255,255,255,0.85); }
.form-error { background: rgba(255,59,48,0.1); border: 1px solid rgba(255,59,48,0.25); color: rgba(255,255,255,0.75); }
.form-error a { color: var(--gold-light); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.form-fields { display: contents; }
.form-error { display: none; font-size: 13px; color: #e07a7a; line-height: 1.6; padding-top: 4px; }
.form-error.visible { display: block; }
.form-error a { color: var(--gold-light); text-decoration: none; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px; gap: 16px; }
.form-success.visible { display: flex; }
.form-success-check { width: 64px; height: 64px; border-radius: 50%; background: rgba(184,147,58,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.form-success h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); font-weight: 500; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 280px; }

/* ── FOOTER ── */
footer { background: #0A1520; padding: 56px 48px 32px; }
.footer-top { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 220px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── CAPABILITIES ── */
.capabilities { padding: var(--section-pad); background: var(--white); border-top: 1px solid var(--border); }
.capabilities-inner { max-width: var(--max-width); margin: 0 auto; }
.capabilities h2 { font-family: var(--font-display); font-size: 42px; color: var(--navy); margin-bottom: 16px; }
.capabilities-sub { color: var(--text-muted); font-size: 17px; margin-bottom: 56px; max-width: 600px; line-height: 1.7; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.cap-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cap-card:hover { border-color: rgba(184,147,58,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.cap-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 32px;
  align-items: start;
}
.cap-card-wide .cap-card-header { flex-direction: column; }
.cap-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cap-card-wide .cap-card-header { margin-bottom: 0; }
.cap-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cap-icon svg { width: 18px; height: 18px; }
.cap-card h3 { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.4; padding-top: 4px; }
.cap-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cap-list-wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px 32px; }
.cap-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.cap-dot { width: 5px; height: 5px; min-width: 5px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

.cap-credentials {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); border-radius: 10px; padding: 36px 48px;
  flex-wrap: wrap; gap: 24px;
}
.cap-cred-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cap-cred-num { font-family: var(--font-display); font-size: 32px; color: var(--white); font-weight: 700; line-height: 1; }
.cap-cred-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-align: center; max-width: 120px; line-height: 1.4; }
.cap-cred-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── SERVICES INTRO ── */
.svc-intro { background: var(--navy); padding: var(--section-pad); }
.svc-intro-inner { max-width: var(--max-width); margin: 0 auto; }
.svc-intro h2 { font-family: var(--font-display); font-size: 42px; color: var(--white); margin-bottom: 20px; }
.svc-intro p { color: rgba(255,255,255,0.6); font-size: 17px; line-height: 1.8; font-weight: 300; max-width: 680px; margin-bottom: 48px; }
.svc-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.svc-nav-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 16px 20px; text-decoration: none; transition: background 0.2s, border-color 0.2s; flex: 1; min-width: 200px; }
.svc-nav-item:hover, .svc-nav-item.active { background: rgba(184,147,58,0.1); border-color: rgba(184,147,58,0.4); }
.svc-nav-num { font-family: var(--font-display); font-size: 20px; color: var(--gold); opacity: 0.5; font-weight: 700; min-width: 28px; }
.svc-nav-label { font-size: 14px; color: var(--white); font-weight: 500; flex: 1; }
.svc-nav-badge { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap; }
.us-badge { background: rgba(184,147,58,0.2); color: var(--gold-light); border: 1px solid rgba(184,147,58,0.3); }

/* ── SERVICE DETAIL SECTIONS ── */
.svc-detail { padding: var(--section-pad); background: var(--white); border-top: 1px solid var(--border); }
.svc-detail-alt { background: var(--cream); }
.svc-detail-inner { max-width: var(--max-width); margin: 0 auto; }
.svc-detail-header { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 56px; }
.svc-detail-num { font-family: var(--font-display); font-size: 72px; color: var(--gold); opacity: 0.15; font-weight: 700; line-height: 0.85; min-width: 80px; margin-top: 4px; }
.svc-detail-header h2 { font-family: var(--font-display); font-size: 42px; color: var(--navy); line-height: 1.2; }
.svc-detail-body { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.svc-detail-left p { color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; font-size: 15px; }
.svc-lead { font-size: 17px !important; color: var(--text-body) !important; font-weight: 400; line-height: 1.75 !important; }
.svc-quote { margin-top: 36px; padding: 24px 28px; border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 8px 8px 0; }
.svc-detail-alt .svc-quote { background: var(--white); }
.svc-quote p { font-family: var(--font-display); font-size: 16px; color: var(--navy); line-height: 1.65; font-style: italic; margin-bottom: 12px !important; }
.svc-quote-attr { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.svc-scope-card { background: var(--navy); border-radius: 10px; padding: 32px; margin-bottom: 20px; }
.svc-scope-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 24px; }
.svc-scope-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.svc-scope-list li { display: flex; gap: 14px; align-items: flex-start; }
.scope-icon { color: var(--gold); font-size: 10px; min-width: 16px; margin-top: 4px; line-height: 1.6; }
.svc-scope-list strong { display: block; font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.svc-scope-list p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0 !important; }
.svc-us-callout { background: rgba(184,147,58,0.08); border: 1px solid rgba(184,147,58,0.25); border-radius: 8px; padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; }
.svc-us-flag { font-size: 24px; min-width: 28px; }
.svc-us-callout strong { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.svc-us-callout div { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.svc-principal-callout { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; display: flex; gap: 16px; align-items: center; }
.svc-detail-alt .svc-principal-callout { background: var(--white); }
.svc-principal-avatar { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; color: var(--white); font-weight: 700; }
.svc-principal-callout strong { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.svc-principal-callout p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0 !important; }

/* ── MOBILE STICKY CTA ── */
.mobile-cta-bar { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 32px; }
  .nav-inner { padding: 0 32px; }
  .hero { padding: 72px 32px; }
  .hero h1 { font-size: 42px; }
  .hero-stats { padding-left: 32px; }
  .intro { gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; gap: 0; }
  .location-divider { width: 120px; height: 1px; margin: 24px auto; }
  .cta { gap: 40px; }
  .footer-top { gap: 40px; }
  .svc-detail-body { gap: 40px; }
  .svc-detail-header h2 { font-size: 34px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 48px; min-height: auto; }
  .hero::before { display: none; }
  .hero-stats { padding-left: 0; margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stats .stat-card:last-child { grid-column: 1 / -1; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .logos-bar { padding: 20px 24px; flex-wrap: wrap; gap: 12px; }
  .logos-label { width: 100%; margin-right: 0; }
  .intro { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .intro-text h2 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .services h2, .team h2, .locations h2, .process h2, .cta-text h2 { font-size: 32px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
  .team-sub { text-align: left; max-width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .svc-detail-body { grid-template-columns: 1fr; gap: 40px; }
  .cta-form input, .cta-form select { min-height: 48px; }
  .cta-form select { -webkit-appearance: none; }
  .mobile-cta-bar {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
    background: var(--navy); border-top: 1px solid rgba(184,147,58,0.3);
    padding: 12px 24px; padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  }
  .mobile-cta-bar .btn-primary { display: block; text-align: center; padding: 14px; font-size: 15px; }
  body { padding-bottom: 76px; }
  .svc-detail-header { gap: 16px; }
  .svc-detail-num { font-size: 48px; min-width: 52px; }
  .svc-detail-header h2 { font-size: 28px; }
  .svc-intro h2 { font-size: 30px; }
  .svc-nav { flex-direction: column; }
  .svc-nav-item { min-width: unset; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card-wide { grid-template-columns: 1fr; }
  .cap-list-wide { grid-template-columns: 1fr 1fr; }
  .cap-credentials { padding: 28px 24px; justify-content: center; gap: 20px; }
  .cap-cred-divider { display: none; }
  .capabilities h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat-card:last-child { grid-column: auto; }
  .svc-intro h2 { font-size: 26px; }
  .svc-detail-num { font-size: 36px; min-width: 44px; }
  .svc-detail-header h2 { font-size: 24px; }
  .step-num { font-size: 32px; min-width: 40px; }
  .process-step { gap: 20px; }
  .cta-text h2 { font-size: 26px; }
  .footer-cols { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-list-wide { grid-template-columns: 1fr; }
  .cap-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 24px 20px; }
  .cap-cred-item { align-items: center; }
  .cap-cred-divider { display: none; }
  .cap-cred-num { font-size: 26px; }
}
