* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; line-height: 1.6; color: #18202a; background: #fff; }
.container { width: min(1100px, 92%); margin: 0 auto; }
header { background: #111820; color: #fff; position: sticky; top: 0; z-index: 10; }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: #fff; text-decoration: none; font-size: 1.25rem; font-weight: 800; }
.hero { padding: 90px 0 85px; background: #eaf0f5; }
.eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; margin: 0 0 22px; max-width: 800px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-top: 0; }
h3 { font-size: 1.5rem; }
.lead { font-size: 1.25rem; max-width: 720px; margin-bottom: 30px; }
.text-button { display: inline-block; background: #111820; color: #fff; text-decoration: none; font-weight: 800; padding: 15px 22px; border-radius: 8px; text-align: center; }
.text-button:hover { opacity: .88; }
.text-button.small { padding: 10px 14px; font-size: .9rem; }
.small-note { margin-top: 12px; font-size: .95rem; }
.section { padding: 75px 0; }
.alt { background: #f4f6f8; }
.grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: start; }
li { margin: 15px 0; }
.card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.cta { padding: 75px 0; background: #111820; color: #fff; text-align: center; }
.cta h2 { margin-bottom: 10px; }
.phone { font-size: 1.2rem; font-weight: 700; margin-bottom: 0; }
footer { background: #0a0f14; color: #c8d0d8; padding: 35px 0; font-size: .9rem; }
@media (max-width: 700px) {
  .nav { min-height: 64px; }
  .brand { font-size: 1rem; }
  .text-button.small { font-size: .78rem; padding: 9px 10px; }
  .hero { padding: 65px 0; }
  .section, .cta { padding: 55px 0; }
  .grid { grid-template-columns: 1fr; gap: 30px; }
}
