:root {
  --navy: #123A70;
  --blue: #2A69B1;
  --sky: #A9CDEE;
  --red: #EE3739;
  --orange: #EF8834;
  --lime: #AACD45;
  --green: #08A955;
  --green-dark: #0A7457;
  --ink: #112033;
  --muted: #5f6f84;
  --line: #d7dfeb;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-dark: #0d2346;
  --shadow: 0 20px 50px rgba(18, 58, 112, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section-alt { background: var(--surface-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--surface-dark), var(--navy));
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,58,112,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand img { height: 40px; width: auto; }
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.site-nav a:hover,
.site-nav a:focus { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(239, 136, 52, 0.22);
}
.btn:hover, .btn:focus { transform: translateY(-1px); }
.btn-secondary {
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(18, 58, 112, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(18,58,112,0.18);
  box-shadow: none;
}
.btn-small { padding: 12px 18px; font-size: .95rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(169,205,238,0.34), transparent 28%),
    radial-gradient(circle at bottom left, rgba(170,205,69,0.18), transparent 22%),
    linear-gradient(180deg, #fff, #f8fbff 68%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.hero h1, .section-head h2, .feature-panel h2, .contact-info h2, .hero-panel h2 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}
.hero-lead {
  margin: 24px 0 0;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-proof span,
.pill-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18,58,112,0.1);
  color: var(--navy);
  font-weight: 600;
}
.hero-panel {
  background: #fff;
  border: 1px solid rgba(18,58,112,0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18,58,112,0.06);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 24px;
}
.insight-card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  margin-top: 14px;
}
.insight-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.insight-card p { margin: 0; color: var(--ink); }
.blue { background: linear-gradient(135deg, rgba(169,205,238,0.58), rgba(42,105,177,0.12)); }
.warm { background: linear-gradient(135deg, rgba(239,136,52,0.18), rgba(238,55,57,0.1)); }
.green { background: linear-gradient(135deg, rgba(170,205,69,0.28), rgba(8,169,85,0.14)); }

.strip {
  padding: 28px 0;
  background: var(--surface-dark);
  color: #fff;
}
.strip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.mini-stat {
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
}
.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.mini-stat span { color: rgba(255,255,255,0.78); font-size: .95rem; }

.section-head { max-width: 860px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.left-tight { max-width: 660px; }
.section-head.light .eyebrow,
.section-head.light p,
.section-head.light .eyebrow::before { color: #fff; }
.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-dark .section-head p { color: rgba(255,255,255,0.82); }
.section-head h1, .section-head h2, .feature-panel h2, .contact-info h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .expertise-card, .feature-panel, .contact-form, .contact-box, .callout {
  background: #fff;
  border: 1px solid rgba(18,58,112,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card, .expertise-card {
  padding: 28px;
  height: 100%;
}
.service-card h3, .expertise-card h3, .timeline h3, .site-footer h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}
.service-card p, .expertise-card p, .timeline p, .feature-panel p, .contact-info p, .callout p { margin: 0; color: var(--muted); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}
.service-blue { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.service-orange { background: linear-gradient(135deg, var(--red), var(--orange)); }
.service-green { background: linear-gradient(135deg, var(--lime), var(--green)); }
.expertise-card ul, .check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.expertise-card li, .check-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 8px;
  color: var(--ink);
}
.expertise-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--green));
}
.highlight-card {
  background: linear-gradient(180deg, #fff, #fbfffc);
  border-color: rgba(8,169,85,0.18);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.gap-large { gap: 54px; }
.align-center { align-items: center; }
.callout {
  padding: 22px 24px;
  margin-top: 28px;
}
.callout strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.timeline { display: grid; gap: 18px; }
.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(18,58,112,0.08);
  box-shadow: var(--shadow);
}
.timeline span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.timeline h3 { margin-top: 0; }

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill-grid span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.feature-panel {
  padding: 34px;
}
.accent-panel {
  background: linear-gradient(180deg, rgba(169,205,238,0.18), rgba(255,255,255,1));
}
.about-logo {
  width: min(360px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(18,58,112,0.16));
}
.location-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.location-bar span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18,58,112,0.1);
  font-weight: 700;
  color: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.contact-boxes {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.contact-box {
  padding: 18px 20px;
}
.contact-box strong { display: block; margin-bottom: 6px; color: var(--navy); }
.contact-form {
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form span { color: var(--ink); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(42,105,177,0.18);
  border-color: var(--blue);
}
.full-width { grid-column: 1 / -1; }

.site-footer {
  background: #0b1d39;
  color: rgba(255,255,255,0.88);
  padding: 54px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { height: 38px; width: auto; margin-bottom: 16px; display: inline-block; }
.site-footer h3 { margin: 0 0 16px; color: #fff; }
.site-footer a, .site-footer span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .95rem;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-layout,
  .two-col,
  .footer-grid,
  .three-up,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .three-up .service-card:last-child,
  .three-up .expertise-card:last-child { grid-column: auto; }
}

@media (max-width: 860px) {
  .hide-mobile { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid rgba(18,58,112,0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .contact-layout,
  .two-col,
  .footer-grid,
  .three-up,
  .strip-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 78px 0; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3.4rem); }
  .hero-panel { padding: 24px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .nav-wrap { min-height: 74px; }
  .brand img, .footer-brand { height: 32px; }
  .btn, .btn-secondary, .btn-outline { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-proof span,
  .pill-grid span,
  .location-bar span { width: 100%; text-align: center; }
  .section-head h2,
  .feature-panel h2,
  .contact-info h2 { font-size: 1.9rem; }
  .timeline article {
    grid-template-columns: 1fr;
  }
}


.hidden-field {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.contact-form label span em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: .9rem;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.consent input {
  width: 18px !important;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.consent span {
  color: var(--muted);
  line-height: 1.55;
}

.consent a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 700;
}

.form-status.success {
  color: var(--green-dark);
}

.form-status.error {
  color: var(--red);
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.privacy-content {
  max-width: 860px;
  background: #fff;
  border: 1px solid rgba(18,58,112,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.privacy-content h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
  color: var(--navy);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 14px;
  color: var(--muted);
}

.privacy-content a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-note {
  margin-top: 28px !important;
  font-weight: 700;
}


@media (max-width: 420px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 70px; }
  .brand img { height: 30px; }
  .service-card, .expertise-card, .feature-panel, .contact-form, .privacy-content { padding: 24px; }
  .hero-panel { padding: 22px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }
  .footer-bottom { font-size: .88rem; }
}
