:root {
  --navy: #0b1628;
  --navy-2: #10223c;
  --ink: #152238;
  --muted: #607086;
  --paper: #ffffff;
  --tint: #f3f6fa;
  --line: #dce4ed;
  --orange: #ef7d23;
  --orange-dark: #ce5f10;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; background: white; color: black; padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,22,40,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: white; font-family: Manrope, sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -.03em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; color: #dce6f2; font-size: 14px; font-weight: 600; }
.nav a:hover { color: white; }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; }
.menu-toggle { display: none; }
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; padding: 112px 0 96px; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,125,35,.85), transparent); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .28; }
.hero-glow-one { width: 520px; height: 520px; right: -190px; top: -180px; background: radial-gradient(circle, var(--orange), transparent 68%); }
.hero-glow-two { width: 380px; height: 380px; left: -240px; bottom: -240px; background: radial-gradient(circle, #427fb5, transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: #ffad6c; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: 12px; }
.eyebrow.dark { color: var(--orange-dark); }
h1,h2,h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); letter-spacing: -.045em; margin-bottom: 26px; max-width: 900px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.035em; margin-bottom: 22px; }
h3 { font-size: 21px; letter-spacing: -.02em; }
.hero-lede { max-width: 760px; color: #cbd7e6; font-size: 19px; }
.hero-lede a { color: white; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 0; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; border-radius: 9px; text-decoration: none; font-weight: 800; font-size: 14px; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: #fa8a31; }
.button-secondary { border: 1px solid rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.04); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px; }
.hero-proof strong { display: block; font-family: Manrope; font-size: 27px; color: white; }
.hero-proof span { display: block; color: #9fb0c5; font-size: 12px; line-height: 1.4; }
.hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.hero-portrait { background: #d8dde5; aspect-ratio: 4 / 5; }
.hero-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-card-body { padding: 28px; }
.hero-card-body h2 { font-size: 27px; }
.hero-card-body p { color: #c8d4e2; }
.hero-card-body a { color: white; text-underline-offset: 4px; text-decoration-color: var(--orange); font-weight: 700; }
.mini-label { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; color: var(--orange-dark); }
.section { padding: 100px 0; }
.section-tint { background: var(--tint); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.section-heading { position: sticky; top: 120px; align-self: start; }
.prose { max-width: 760px; }
.prose p { color: var(--muted); font-size: 17px; }
.lead { font-size: 21px !important; color: var(--ink) !important; font-weight: 600; }
.section-intro { max-width: 760px; margin-bottom: 50px; }
.section-intro > p:last-child { color: var(--muted); font-size: 17px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 30px; min-height: 290px; }
.impact-number { display: inline-block; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; margin-bottom: 35px; }
.impact-card p { color: var(--muted); }
.sureloadr-section { background: var(--navy); color: white; }
.sureloadr-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.sureloadr-copy p { color: #c3cfdd; }
.sureloadr-copy .lead { color: white !important; }
.venture-panel { background: linear-gradient(145deg, #132845, #0e1d32); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 44px; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.venture-logo { font-family: Manrope; color: var(--orange); font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -.04em; }
.venture-panel p { font-size: 20px; font-weight: 700; }
.venture-panel ul { list-style: none; padding: 0; margin: 28px 0 0; }
.venture-panel li { padding: 13px 0 13px 28px; border-top: 1px solid rgba(255,255,255,.1); color: #cbd7e5; position: relative; }
.venture-panel li::before { content: "→"; color: var(--orange); position: absolute; left: 0; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 220px 1fr; gap: 50px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.timeline-date { color: var(--orange-dark); font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.timeline-item p { color: var(--muted); max-width: 760px; }
.testimonials-section { background: var(--tint); border-top: 1px solid var(--line); }
.confidential-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--muted) !important; font-size: 13px !important; font-weight: 650; }
.confidential-note::before { content: "•"; color: var(--orange); font-size: 18px; line-height: 1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.testimonial-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 35px rgba(18, 36, 61, .06); }
.testimonial-card-wide { grid-column: 1 / -1; }
.quote-mark { height: 38px; color: var(--orange); font-family: Georgia, serif; font-size: 58px; line-height: .9; }
.testimonial-card blockquote { margin: 12px 0 28px; }
.testimonial-card blockquote p { margin: 0 0 14px; color: #4f6075; font-size: 15px; line-height: 1.72; }
.testimonial-card blockquote p:last-child { margin-bottom: 0; }
.testimonial-author { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); background: transparent; color: inherit; }
.testimonial-author strong { display: block; color: var(--ink); font-family: Manrope, Inter, sans-serif; font-size: 18px; }
.testimonial-author span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.credentials-section { background: #fbfcfe; border-top: 1px solid var(--line); }
.credentials-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.tag-list span { padding: 9px 13px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 650; }
.certifications { grid-column: 2; border-top: 1px solid var(--line); padding-top: 30px; }
.certification-list { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
.certification-item { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 22px; min-height: 112px; padding: 18px 22px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 8px 24px rgba(18,36,61,.05); overflow: hidden; }
.certification-logo-wrap { display: flex; align-items: center; justify-content: center; width: 120px; height: 82px; padding: 8px; background: white; border-radius: 8px; overflow: hidden; }
.certification-logo-wrap .certification-logo { display: block !important; width: 110px !important; height: 72px !important; max-width: 110px !important; max-height: 72px !important; min-width: 0 !important; object-fit: contain !important; }
.certification-item p { margin: 0; color: var(--ink); font-family: Manrope, Inter, sans-serif; font-size: 15px; font-weight: 700; line-height: 1.35; }
.education { grid-column: 2; border-top: 1px solid var(--line); padding-top: 30px; }
.education p:last-child { color: var(--muted); }
.education-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.education-copy p:last-child { color: var(--muted); }
.education-logo-wrap { display: flex; justify-content: flex-end; }
.education-logo { width: 180px; max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 28px rgba(18,36,61,.08); background: white; }
.beyond-section { background: white; border-top: 1px solid var(--line); }
.contact-section { background: linear-gradient(135deg, #142844, #0b1628); color: white; padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.contact-copy h2 { font-size: clamp(34px, 4vw, 50px); }
.contact-card { margin-top: 36px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.05); display: grid; gap: 14px; }
.contact-card a { color: white; font-size: 17px; font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.contact-card p { color: #aebdd0; margin-bottom: 0; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: 0 22px 55px rgba(0,0,0,.18); }
.form-heading { margin-bottom: 24px; }
.form-heading h3 { margin-bottom: 0; color: white; font-size: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; margin-bottom: 17px; }
.form-field label { color: #dce6f2; font-size: 13px; font-weight: 700; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; background: rgba(5,15,28,.42); color: white; font: inherit; padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field textarea { resize: vertical; min-height: 145px; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,125,35,.18); background: rgba(5,15,28,.62); }
.contact-submit { border: 0; cursor: pointer; min-width: 130px; }
.contact-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { margin-top: 18px; padding: 12px 14px; border-radius: 9px; font-size: 14px; font-weight: 700; }
.form-success { display: flex; align-items: center; gap: 10px; color: #d9ffe7; background: rgba(34,197,94,.15); border: 1px solid rgba(74,222,128,.42); }
.success-check { width: 23px; height: 23px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #22c55e; color: white; font-size: 15px; font-weight: 900; }
.form-error { color: #ffe1e1; background: rgba(239,68,68,.14); border: 1px solid rgba(248,113,113,.4); }
.form-status[hidden] { display: none; }
footer { background: #07101d; color: #92a3b8; padding: 28px 0; font-size: 13px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; }
footer a { color: white; text-decoration-color: var(--orange); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
@media (max-width: 900px) {
  .menu-toggle { display: block; background: transparent; color: white; border: 1px solid #ffffff55; padding: 8px 11px; border-radius: 7px; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--navy); padding: 20px; flex-direction: column; align-items: stretch; border-top: 1px solid #ffffff18; }
  .nav.open { display: flex; }
  .hero { padding-top: 80px; }
  .hero-grid, .split, .sureloadr-grid, .contact-grid, .credentials-grid, .education-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { max-width: 720px; }
  .hero-card { max-width: 560px; }
  .section-heading { position: static; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card-wide { grid-column: auto; }
  .certifications, .education { grid-column: auto; }
  .education-logo-wrap { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 64px 0 70px; }
  h1 { font-size: 43px; }
  .brand { font-size: 24px; }
  .hero-proof { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .section { padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .certification-item { grid-template-columns: 88px 1fr; min-height: 92px; padding: 14px; gap: 14px; }
  .certification-logo-wrap { width: 88px; height: 64px; padding: 6px; }
  .certification-logo-wrap .certification-logo { width: 80px !important; height: 54px !important; max-width: 80px !important; max-height: 54px !important; }
  .footer-wrap { flex-direction: column; }
}
