:root {
  --navy: #062d62;
  --navy-dark: #031d41;
  --blue: #087fc4;
  --sky: #4ac3ed;
  --orange: #f4511e;
  --orange-dark: #d63f14;
  --cream: #f7f4ee;
  --white: #ffffff;
  --ink: #17202b;
  --muted: #66717e;
  --line: #dfe5ea;
  --shadow: 0 18px 55px rgba(2, 31, 67, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6,45,98,.09);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img { width: 190px; height: 78px; object-fit: contain; object-position: left center; }

nav { display: flex; align-items: center; gap: 26px; font-weight: 600; color: var(--navy); }
nav a:hover { color: var(--orange); }
.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 17px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--orange); color: var(--white); }

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(74,195,237,.35), transparent 25%),
    radial-gradient(circle at 84% 70%, rgba(244,81,30,.24), transparent 28%),
    linear-gradient(125deg, #03152e 0%, #062d62 54%, #0b6595 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -110px;
  top: 60px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.05);
  box-shadow:
    0 0 0 40px rgba(255,255,255,.025),
    0 0 0 120px rgba(74,195,237,.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 95px 0;
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: #8fdcff;
  margin-bottom: 18px;
}

.eyebrow.dark { color: var(--orange-dark); }

h1, h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.15;
  margin: 0;
  color: inherit;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -.025em;
}

.hero-copy {
  max-width: 760px;
  font-size: 1.18rem;
  color: #dbe9f7;
  margin: 26px 0 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: .2s ease;
}

.button.primary { background: var(--orange); color: var(--white); }
.button.primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.button.secondary {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  background: rgba(255,255,255,.05);
}
.button.secondary:hover { background: rgba(255,255,255,.12); }

.button.light { background: var(--white); color: var(--navy); }
.button.light:hover { transform: translateY(-1px); }

.button.full { width: 100%; }

.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid #e8e1d6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 27px 28px;
  border-right: 1px solid #ded8cf;
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 3px;
}
.trust-grid span { display: block; font-size: .88rem; color: var(--muted); }

.section { padding: 100px 0; }

.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.narrow { max-width: 760px; }

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 7px 25px rgba(3,29,65,.045);
}

.card:hover {
  border-color: #bfd5e4;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  transition: .2s ease;
}

.card-number {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.card h3, .process-step h3, .contact-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p, .process-step p { color: var(--muted); margin: 0; }

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(74,195,237,.18), transparent 28%),
    linear-gradient(120deg, #031d41, #062d62);
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.experience-copy p {
  margin-top: 0;
  color: #d9e7f5;
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #eff7ff;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #79d8f7;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.process-step {
  padding: 28px 12px 0 0;
  border-top: 2px solid var(--navy);
}

.process-step span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-band {
  padding: 62px 0;
  background: linear-gradient(110deg, var(--orange-dark), var(--orange));
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 { max-width: 800px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-band .eyebrow { color: #ffe2d8; }

.contact-section { background: #f7f9fb; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.contact-grid > div:first-child p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-card p { color: var(--muted); }
.contact-card small { display: block; margin-top: 14px; color: var(--muted); }

footer {
  padding: 28px 0;
  background: #02152e;
  color: #abc0d5;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img { width: 130px; max-height: 60px; object-fit: contain; }
.footer-inner p { margin: 0; font-size: .85rem; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 600px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { border-bottom: 1px solid #ded8cf; }
  .cards { grid-template-columns: 1fr 1fr; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .process { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 150px; height: 64px; }
  .nav-cta { padding: 9px 12px; }
  .hero-content { padding: 70px 0; }
  .section { padding: 72px 0; }
  .trust-grid, .cards, .process, .check-list { grid-template-columns: 1fr; }
  .trust-grid > div { padding-left: 0; border-right: 0; }
  .cta-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
}
