:root {
  --navy: #0d253f;
  --blue: #0b6cbf;
  --light-blue: #eaf5ff;
  --orange: #f58220;
  --dark: #1b1f24;
  --muted: #64748b;
  --white: #ffffff;
  --soft: #f8fafc;
  --border: #e2e8f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--dark); line-height: 1.6; background: var(--white); }
a { color: inherit; text-decoration: none; }
.top-bar { background: var(--navy); color: var(--white); padding: 9px 5%; font-size: 0.95rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 16px 5%; max-width: 1280px; margin: 0 auto; flex-wrap: wrap; }
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
}
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-size: 1.12rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand span {
  color: var(--muted);
  font-size: 0.85rem;
}
.nav-links { display: flex; align-items: center; gap: 18px; font-weight: 700; font-size: 0.95rem; flex-wrap: wrap; }
.mobile-toggle { display: none; background: var(--navy); color: white; border: 0; border-radius: 999px; padding: 10px 14px; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: var(--white); padding: 13px 20px; border-radius: 999px; font-weight: 800; box-shadow: 0 10px 24px rgba(245,130,32,0.25); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245,130,32,0.32); }
.btn.secondary { background: var(--navy); box-shadow: 0 10px 24px rgba(13,37,63,0.25); }
.btn.light { background: white; color: var(--navy); }
.hero { background: linear-gradient(110deg, rgba(13,37,63,.95), rgba(11,108,191,.78)), url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1800&q=80') center/cover; color: white; padding: 92px 5% 76px; }
.subhero { background: linear-gradient(110deg, rgba(13,37,63,.95), rgba(11,108,191,.78)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1800&q=80') center/cover; color: white; padding: 74px 5%; }
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 52px; align-items: center; }
.subhero-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.eyebrow { display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 8px 13px; border-radius: 999px; font-weight: 800; margin-bottom: 18px; color: #f9fbff; }
h1 { margin: 0 0 18px; font-size: clamp(2.35rem,5vw,4.9rem); line-height: 1.02; letter-spacing: -0.05em; }
.subhero h1 { font-size: clamp(2.2rem,4vw,4.2rem); }
.hero p, .subhero p { font-size: 1.2rem; max-width: 820px; color: #eef6ff; }
.subhero p { margin: 0 auto 28px; }
.hero p { margin: 0 0 28px; }
.hero-actions, .center-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.center-actions { justify-content: center; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; max-width: 720px; }
.trust-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 14px; border-radius: 16px; font-weight: 800; }
.quote-box { background: white; color: var(--dark); border-radius: 28px; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.quote-box h2 { color: var(--navy); font-size: 1.65rem; margin: 0 0 10px; }
section { padding: 76px 5%; }
.container { max-width: 1280px; margin: 0 auto; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { color: var(--navy); font-size: clamp(2rem,4vw,3.1rem); line-height: 1.08; margin: 0 0 14px; letter-spacing: -0.04em; }
.section-heading p { color: var(--muted); font-size: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; align-items: start; }
.card { background: white; border: 1px solid var(--border); border-radius: 24px; padding: 26px; box-shadow: 0 16px 36px rgba(15,23,42,.06); }
.card h3, .card h2 { margin-top: 0; color: var(--navy); }
.card p { color: var(--muted); }
.card a.text-link { color: var(--blue); font-weight: 800; }
.soft { background: var(--soft); }
.service-list { display: grid; gap: 14px; }
.service-line { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px; background: white; border: 1px solid var(--border); border-radius: 16px; }
.check { width: 28px; height: 28px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 900; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--light-blue); color: var(--navy); padding: 10px 14px; border-radius: 999px; font-weight: 800; border: 1px solid #cfe7ff; }
.cta { background: linear-gradient(120deg,var(--navy),var(--blue)); color: white; border-radius: 32px; padding: 46px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: center; }
.cta h2 { font-size: clamp(2rem,4vw,3.2rem); margin: 0 0 12px; line-height: 1.08; }
.cta p { color: #eaf5ff; font-size: 1.1rem; margin: 0; }
.faq details { background: white; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 900; color: var(--navy); }
.local-note { border-left: 5px solid var(--orange); background: #fff7ed; padding: 18px 20px; border-radius: 14px; margin-top: 18px; }
footer { background: var(--navy); color: white; padding: 52px 5% 26px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
footer h3 { margin-top: 0; }
footer p, footer li { color: #d7e7f6; }
footer ul { padding-left: 18px; }
.copyright { max-width: 1280px; margin: 30px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #cfe7ff; font-size: .9rem; }
input, textarea { font: inherit; }
@media (max-width: 980px) {
  .brand-logo { height: 48px; }
  .hero-inner, .grid-3, .grid-2, .cta, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding-top: 15px; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .trust-row { grid-template-columns: 1fr; }
  section { padding: 56px 5%; }
  .hero { padding-top: 66px; }
}