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

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

:root {
  --navy:       #0b1640;
  --navy-deep:  #070e28;
  --blue:       #1a4ed8;
  --blue-mid:   #2563eb;
  --blue-light: #eef2ff;
  --white:      #ffffff;
  --off-white:  #f7f9ff;
  --gray:       #6b7280;
  --text:       #111827;
  --border:     #e5e7eb;
  --heading:    'Barlow Condensed', sans-serif;
  --body:       'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--blue);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 28px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600; font-size: 15px;
  letter-spacing: .025em;
  transition: color .18s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-bottom-color: var(--blue-mid); }
.nav-phone {
  color: #fff;
  font-family: var(--heading);
  font-size: 22px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  letter-spacing: .01em;
}
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px; border-radius: 4px;
  font-weight: 700 !important; font-size: 14px !important;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background .18s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 15px 38px; border-radius: 4px;
  font-family: var(--heading); font-size: 19px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--blue);
  transition: background .18s, transform .15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent; color: #fff;
  padding: 14px 38px; border-radius: 4px;
  font-family: var(--heading); font-size: 19px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border: 2px solid #fff;
  transition: background .18s;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-navy {
  display: inline-block;
  background: var(--navy); color: #fff;
  padding: 14px 38px; border-radius: 4px;
  font-family: var(--heading); font-size: 19px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--navy);
  transition: background .18s;
  cursor: pointer;
}
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

/* ─── INTERIOR PAGE HERO ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 68px 28px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-12deg, transparent, transparent 28px, rgba(26,78,216,.07) 28px, rgba(26,78,216,.07) 29px);
}
.page-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--heading); font-size: clamp(38px,5.5vw,64px);
  font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--blue-mid); }
.page-hero p { color: rgba(255,255,255,.72); font-size: 18px; text-wrap: pretty; }

/* ─── LAYOUT ───────────────────────────────────────────── */
.section       { padding: 88px 28px; }
.section-alt   { background: var(--off-white); }
.section-navy  { background: var(--navy); }
.container     { max-width: 1240px; margin: 0 auto; }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-label.light { color: #6ea4ff; }
.section-title {
  font-family: var(--heading); font-size: clamp(30px,4vw,50px);
  font-weight: 800; text-transform: uppercase;
  line-height: 1.05; color: var(--navy); margin-bottom: 14px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 17px; color: var(--gray);
  max-width: 620px; text-wrap: pretty;
}
.section-sub.light { color: rgba(255,255,255,.68); }

/* ─── CARDS ────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: 8px;
  padding: 32px; border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.card-icon {
  width: 54px; height: 54px;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 28px; height: 28px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 {
  font-family: var(--heading); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--navy); margin-bottom: 8px;
}
.card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ─── TRUST BAR ────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 18px 28px; }
.trust-bar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.trust-item svg {
  width: 18px; height: 18px;
  stroke: #6ea4ff; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── CTA BANNER ───────────────────────────────────────── */
.cta-banner { background: var(--blue); padding: 72px 28px; text-align: center; }
.cta-banner h2 {
  font-family: var(--heading); font-size: clamp(28px,4vw,50px);
  font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FORMS ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--border); border-radius: 6px;
  font-family: var(--body); font-size: 15px; color: var(--text);
  background: #fff; transition: border-color .18s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); padding: 72px 28px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; max-width: 1240px; margin: 0 auto;
}
.footer-brand img { height: 58px; display: block; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,.52); font-size: 14px;
  line-height: 1.75; max-width: 280px;
}
.footer-col h4 {
  font-family: var(--heading); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: #fff;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 14px; transition: color .18s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.85; }
.footer-col strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-bottom {
  max-width: 1240px; margin: 52px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  text-align: center; color: rgba(255,255,255,.32); font-size: 13px;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-phone { font-size: 17px; }
  .section { padding: 64px 20px; }
}
