:root {
  --navy: #0b3d91;
  --navy-dark: #07286b;
  --accent: #ffb703;
  --bg: #f7f9fc;
  --text: #1a1f36;
  --muted: #5b6275;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(11, 61, 145, 0.08);
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.topbar__phone { color: var(--accent); font-weight: 800; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid #eef1f7;
  position: sticky; top: 0; z-index: 50;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 18px; }
.logo__mark { font-size: 24px; }
.nav { display: flex; gap: 24px; }
.nav a { color: var(--text); font-weight: 600; }
.nav a:hover { color: var(--navy); }
@media (max-width: 760px) { .nav { display: none; } }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .08s ease, box-shadow .2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--primary { background: var(--accent); color: #1a1f36; box-shadow: 0 4px 16px rgba(255, 183, 3, 0.4); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 183, 3, 0.5); color: #1a1f36; }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--navy); }
.btn--xl { padding: 16px 32px; font-size: 17px; }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--full { width: 100%; }
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,183,3,0.12), transparent 50%);
  pointer-events: none;
}
.hero__inner { max-width: 900px; margin: 0 auto; position: relative; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .accent { color: var(--accent); }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: #d6e0f5; max-width: 720px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero__bullets { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.hero__bullets li { color: #d6e0f5; font-weight: 500; }
.trust {
  background: var(--bg);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid #eef1f7;
}
.trust__item { font-weight: 700; color: var(--muted); font-size: 14px; letter-spacing: 0.4px; }
.section { padding: 80px 24px; }
.section--alt { background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; }
.container--two { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.container--narrow { max-width: 680px; margin: 0 auto; }
@media (max-width: 800px) { .container--two { grid-template-columns: 1fr; } }
.section__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.section__lead { color: var(--muted); font-size: 18px; margin-bottom: 40px; max-width: 700px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid #eef1f7;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .25s ease;
  color: var(--text);
  text-decoration: none;
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11, 61, 145, 0.12); }
.card__icon { font-size: 32px; margin-bottom: 12px; }
.card h3 { font-size: 20px; margin-bottom: 8px; color: var(--navy); }
.card p { color: var(--muted); font-size: 15px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.stat strong { display: block; font-size: 28px; color: var(--navy); font-weight: 800; }
.stat span { color: var(--muted); font-size: 14px; }
.area-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.area-grid li {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow);
}
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.cta p { color: #d6e0f5; margin-bottom: 32px; font-size: 18px; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.estimate { }
.estimate-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 15px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid #dde3f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.req { color: #e74c3c; }
.optional { color: var(--muted); font-weight: 400; }
.form-success { background: #d4edda; border: 1px solid #c3e6cb; border-radius: 10px; padding: 16px; text-align: center; color: #155724; font-weight: 600; }
.footer {
  background: var(--navy-dark);
  color: #a8b8d8;
  padding: 60px 24px 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer strong { color: var(--white); display: block; margin-bottom: 12px; }
.footer p { margin-bottom: 6px; font-size: 14px; }
.footer a { color: var(--accent); }
.footer a:hover { text-decoration: underline; }
.footer__legal { text-align: center; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--accent);
  color: #1a1f36;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  font-size: 16px;
  z-index: 100;
  display: none;
  text-decoration: none;
}
@media (max-width: 760px) { .sticky-call { display: block; } }
.breadcrumb { font-size: 14px; color: var(--muted); padding: 12px 24px; background: var(--bg); border-bottom: 1px solid #eef1f7; }
.breadcrumb a { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }
.article h1 { font-size: clamp(28px, 4vw, 40px); color: var(--navy); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.article .lede { font-size: 18px; color: var(--muted); margin-bottom: 28px; }
.article h2 { font-size: 22px; color: var(--navy); font-weight: 800; margin: 36px 0 12px; }
.article p { margin-bottom: 16px; color: var(--text); font-size: 16px; }
.article ul { margin: 16px 0 16px 24px; }
.article li { margin-bottom: 8px; }
.byline { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
