:root {
  --navy: #14314f;
  --navy-dark: #0d2238;
  --blue: #1d6fb8;
  --orange: #e8762d;
  --orange-dark: #cf611c;
  --bg: #f7f9fb;
  --text: #2a3540;
  --muted: #5b6b7a;
  --border: #dde5ec;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.topbar { background: var(--navy-dark); color: #cfe0ef; font-size: 14px; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4px; }

header.site { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
header.site .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.logo { font-weight: 800; font-size: 20px; color: var(--navy); text-decoration: none; line-height: 1.2; }
.logo span { color: var(--blue); }
.logo small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

.call-header { display: flex; align-items: center; gap: 12px; }
.call-header .num { text-align: right; }
.call-header .num a { color: var(--navy); font-weight: 800; font-size: 22px; text-decoration: none; }
.call-header .num small { display: block; color: var(--muted); font-size: 12px; }

nav.main { background: var(--navy); }
nav.main ul { list-style: none; display: flex; flex-wrap: wrap; }
nav.main a { display: block; padding: 11px 16px; color: #dce9f5; text-decoration: none; font-size: 15px; font-weight: 600; }
nav.main a:hover, nav.main a.active { background: var(--blue); color: #fff; }

/* Buttons */
.btn { display: inline-block; padding: 14px 26px; border-radius: 6px; font-weight: 700; text-decoration: none; font-size: 17px; border: none; cursor: pointer; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 56px 0; }
.hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.hero h1 { font-size: 38px; line-height: 1.15; margin-bottom: 16px; }
.hero p.lead { font-size: 19px; color: #d9e6f2; margin-bottom: 22px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.ticks { list-style: none; }
.ticks li { padding-left: 30px; position: relative; margin-bottom: 9px; color: #e6eef6; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: #6fd18a; font-weight: 800; }

/* Quote form */
.quote-card { background: var(--white); border-radius: 10px; padding: 26px; color: var(--text); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.quote-card h2, .quote-card h3 { color: var(--navy); font-size: 21px; margin-bottom: 6px; }
.quote-card p.sub { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.quote-card label { display: block; font-size: 14px; font-weight: 600; margin: 12px 0 4px; }
.quote-card input, .quote-card textarea, .quote-card select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 16px; font-family: inherit;
}
.quote-card button { width: 100%; margin-top: 18px; }
.quote-card .privacy { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* Sections */
section.band { padding: 54px 0; }
section.band.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
h2.section { font-size: 30px; color: var(--navy); margin-bottom: 8px; }
p.section-sub { color: var(--muted); margin-bottom: 30px; max-width: 720px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; }
.card h3 a { color: var(--navy); text-decoration: none; }
.card h3 a:hover { color: var(--blue); }
.card p { font-size: 15.5px; color: var(--muted); margin-bottom: 12px; }
.card .more { color: var(--blue); font-weight: 700; text-decoration: none; font-size: 15px; }

/* Article / service pages */
article.service { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 40px; }
article.service h1 { color: var(--navy); font-size: 34px; margin-bottom: 14px; line-height: 1.2; }
article.service h2 { color: var(--navy); font-size: 24px; margin: 32px 0 12px; }
article.service h3 { color: var(--navy); font-size: 19px; margin: 24px 0 8px; }
article.service p { margin-bottom: 14px; }
article.service ul, article.service ol { margin: 0 0 16px 24px; }
article.service li { margin-bottom: 8px; }
.layout { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; padding: 44px 0; align-items: start; }
.sidebar .quote-card { box-shadow: 0 4px 16px rgba(20,49,79,.10); position: sticky; top: 90px; }

.callout { background: #eef5fb; border-left: 4px solid var(--blue); border-radius: 6px; padding: 18px 20px; margin: 20px 0; }
.callout strong { color: var(--navy); }
.callout a { color: var(--blue); font-weight: 700; }

/* FAQ */
details.faq { background: var(--white); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; padding: 0; }
details.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 20px; font-size: 17px; list-style: none; position: relative; padding-right: 44px; }
details.faq summary::after { content: "+"; position: absolute; right: 20px; top: 14px; font-size: 22px; color: var(--blue); }
details.faq[open] summary::after { content: "–"; }
details.faq .a { padding: 0 20px 18px; color: var(--muted); }

/* Areas */
.areas ul { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.areas li { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 9px 14px; font-size: 15px; color: var(--navy); font-weight: 600; text-align: center; }

/* CTA band */
.cta-band { background: var(--blue); color: #fff; padding: 44px 0; text-align: center; }
.cta-band h2 { font-size: 28px; margin-bottom: 10px; }
.cta-band p { margin-bottom: 22px; color: #e3effa; }
.cta-band a.phone { color: #fff; font-weight: 800; font-size: 26px; text-decoration: none; display: inline-block; margin-bottom: 18px; }

/* Footer */
footer.site { background: var(--navy-dark); color: #9fb4c8; padding: 44px 0 28px; font-size: 15px; }
footer.site .cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
footer.site h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
footer.site a { color: #b9cbdd; text-decoration: none; display: block; margin-bottom: 7px; }
footer.site a:hover { color: #fff; }
footer.site .legal { border-top: 1px solid #22405e; padding-top: 18px; font-size: 13px; }

/* Mobile sticky call bar */
.mobile-call { display: none; }

@media (max-width: 860px) {
  .hero .container, .layout, .grid-3, .grid-2, footer.site .cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 29px; }
  .areas ul { grid-template-columns: repeat(2, 1fr); }
  article.service { padding: 26px 20px; }
  .sidebar .quote-card { position: static; }
  .mobile-call { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--orange); text-align: center; padding: 14px; }
  .mobile-call a { color: #fff; font-weight: 800; font-size: 18px; text-decoration: none; }
  body { padding-bottom: 58px; }
}
