@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-display: swap; src: url('/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 800; font-display: swap; src: url('/fonts/inter-800.woff2') format('woff2'); }

:root {
  --navy: #0b1f3a;
  --navy-2: #122a4d;
  --yellow: #fbbf24;
  --yellow-2: #f59e0b;
  --text: #0f172a;
  --muted: #475569;
  --paper: #ffffff;
  --soft: #f1f5f9;
  --line: #e2e8f0;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 12px 40px -8px rgba(11, 31, 58, 0.18);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

/* announcement bar */
.bar {
  background: var(--navy);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.bar a { color: var(--yellow); font-weight: 800; }

/* sticky header */
header.site {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.head-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-bolt {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.brand-bolt svg { width: 18px; height: 18px; }

nav.primary { display: flex; gap: 28px; margin-left: auto; }
nav.primary a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}
nav.primary a:hover { color: var(--navy); }
nav.primary a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
}
.head-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  border: 0;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.head-cta:hover { background: var(--yellow-2); transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(251,191,36,.5); }

/* hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  padding: 100px 24px 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask: radial-gradient(ellipse 60% 50% at 50% 60%, black, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,.16);
  border: 1px solid rgba(251,191,36,.4);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.7); } }
h1.hero-title {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -.025em;
}
h1.hero-title em { color: var(--yellow); font-style: normal; }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 12px 28px -8px rgba(251,191,36,.5); }
.btn-primary:hover { background: var(--yellow-2); }
.btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--navy-2); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 540px;
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}
.hero-stat span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* hero card / form */
.lead-card {
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,.3);
}
.lead-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--navy);
}
.lead-card .sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--navy);
  background: white;
}
.field textarea { min-height: 90px; resize: vertical; }
.lead-card .btn-primary { width: 100%; justify-content: center; padding: 14px; }
.lead-fineprint { font-size: 12px; color: var(--muted); margin: 12px 0 0; text-align: center; }

/* sections */
section {
  padding: 80px 24px;
}
.container { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  color: var(--navy);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(251,191,36,.18);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--navy);
  max-width: 720px;
  line-height: 1.1;
}
.section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 0 48px;
}

/* trust */
.trust {
  background: var(--soft);
  padding: 36px 24px;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}
.trust-item svg { width: 22px; height: 22px; color: var(--yellow-2); }

/* services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--navy); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; color: var(--navy); }
.svc p { color: var(--muted); font-size: 14.5px; margin: 0 0 14px; line-height: 1.55; }
.svc a { color: var(--navy); font-weight: 700; font-size: 14px; }
.svc a:hover { color: var(--yellow-2); }

/* why choose */
.why {
  background: var(--soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item { text-align: left; }
.why-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow-2);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.why-item h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--navy); }
.why-item p { color: var(--muted); font-size: 14px; margin: 0; }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.about-stat {
  background: var(--soft);
  border-radius: 10px;
  padding: 18px;
}
.about-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}
.about-stat span { color: var(--muted); font-size: 13px; }
.about-image-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  padding: 64px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-image-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(251,191,36,.4), transparent 70%);
  border-radius: 50%;
}
.about-image-card .quote {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em;
  margin: 0 0 20px;
}
.about-image-card cite {
  font-style: normal;
  font-size: 14px;
  opacity: .8;
}
.about-image-card cite strong { display: block; font-size: 16px; font-style: normal; font-weight: 700; opacity: 1; }

/* areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-pill {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.area-pill:hover { border-color: var(--navy); background: var(--soft); }
.area-pill svg { width: 18px; height: 18px; color: var(--yellow-2); }

/* testimonials */
.tstm {
  background: var(--navy);
  color: white;
}
.tstm h2.section-title { color: white; }
.tstm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tstm-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.tstm-stars { color: var(--yellow); font-size: 16px; letter-spacing: 4px; margin-bottom: 14px; }
.tstm-card blockquote {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
}
.tstm-author { display: flex; align-items: center; gap: 12px; }
.tstm-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.tstm-author strong { display: block; font-size: 14px; font-weight: 700; }
.tstm-author span { display: block; font-size: 12.5px; opacity: .65; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-2) 100%);
  padding: 56px 24px;
  text-align: center;
}
.cta-strip-inner { max-width: 720px; margin: 0 auto; }
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -.02em;
}
.cta-strip p { font-size: 17px; margin: 0 0 24px; color: rgba(11,31,58,.78); font-weight: 500; }
.cta-strip .btn-dark { font-size: 17px; padding: 16px 32px; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-info-card:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.contact-info-icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  background: var(--soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-text span { color: var(--muted); font-size: 14.5px; }
.contact-info-text a { color: var(--navy); font-weight: 700; }

/* footer */
footer.site {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 56px 24px 32px;
  font-size: 14px;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.foot-col ul li { margin-bottom: 8px; }
.foot-col a:hover { color: var(--yellow); }
.foot-brand-block .brand { color: white; }
.foot-brand-block p { font-size: 14px; line-height: 1.6; margin: 12px 0 0; max-width: 280px; }
.foot-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.foot-bottom a { color: rgba(255,255,255,.6); }
.foot-bottom a:hover { color: var(--yellow); }

/* mobile floating call */
.mob-call {
  display: none;
}

/* responsive */
@media (max-width: 980px) {
  nav.primary { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .svc-grid, .why-grid, .areas-grid, .tstm-grid, .about-grid, .contact-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding: 70px 24px 90px; }
}
@media (max-width: 640px) {
  .head-cta { padding: 10px 14px; font-size: 13px; }
  .head-cta span.cta-text { display: none; }
  .svc-grid, .why-grid, .areas-grid, .tstm-grid, .about-grid, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  section { padding: 56px 20px; }
  .lead-card { padding: 24px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-stat strong { font-size: 22px; }
  .mob-call {
    display: flex;
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 100;
  }
  .mob-call svg { width: 26px; height: 26px; }
}
