:root {
  --navy: #0b2742;
  --blue: #0f6fb6;
  --light: #f4f8fb;
  --text: #18212b;
  --muted: #647282;
  --white: #ffffff;
  --border: #dce7ef;
  --accent: #ffc857;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 800; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -4px; }
nav { display: flex; gap: 18px; font-weight: 700; font-size: 14px; }
nav a { text-decoration: none; color: var(--navy); }
.call-btn, .primary, .secondary, button { border-radius: 999px; padding: 12px 18px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; }
.call-btn, .primary, button { background: var(--blue); color: var(--white); }
.secondary { background: var(--white); color: var(--navy); border: 1px solid var(--border); }
.hero { padding: 78px 0; background: linear-gradient(135deg, var(--light), #e8f3fb); }
.hero-grid, .split, .contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1; color: var(--navy); letter-spacing: -0.05em; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; color: var(--navy); letter-spacing: -0.035em; margin-bottom: 18px; }
h3 { color: var(--navy); margin-bottom: 8px; }
.hero-copy, .wide-copy { font-size: 19px; color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span, .area-grid span { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 8px 13px; font-weight: 700; color: var(--navy); }
.hero-card { background: var(--navy); color: var(--white); border-radius: 26px; padding: 32px; box-shadow: 0 24px 50px rgba(11,39,66,.18); }
.hero-card h2 { color: var(--white); font-size: 32px; }
.hero-card .phone { display: block; color: var(--accent); font-size: 30px; font-weight: 900; text-decoration: none; margin: 18px 0; }
.hero-card ul { margin: 0; padding-left: 22px; }
.section { padding: 74px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.cards article { border: 1px solid var(--border); border-radius: 22px; padding: 24px; background: var(--white); box-shadow: 0 10px 30px rgba(11,39,66,.06); }
.cards p, .feature-list span { color: var(--muted); }
.split-section { background: var(--light); }
.feature-list { display: grid; gap: 14px; }
.feature-list div { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 18px; }
.feature-list strong, .feature-list span { display: block; }
.area-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.contact-section { background: var(--navy); color: var(--white); }
.contact-section h2, .contact-section .eyebrow { color: var(--white); }
.big-phone { color: var(--accent); font-size: 34px; font-weight: 900; text-decoration: none; }
.contact-form { background: var(--white); color: var(--text); border-radius: 24px; padding: 24px; display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 700; }
input, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 12px; font: inherit; }
.site-footer { background: #071a2b; color: var(--white); padding: 26px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-grid p { margin: 0; }
@media (max-width: 850px) {
  nav { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .call-btn { display: none; }
  .section, .hero { padding: 54px 0; }
}
