:root {
  --blue: #0057d9;
  --blue-dark: #003ea0;
  --yellow: #ffe14a;
  --ink: #0b0f14;
  --muted: #3e4a57;
  --bg: #f4f7fb;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: 0.02em; line-height: 0.95; text-wrap: balance; }
p { margin: 0; }
button { cursor: pointer; font-family: inherit; }
.wrap { width: min(1100px, calc(100% - 32px)); margin-inline: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 16px;
  background: var(--blue);
  color: #fff;
}
.brand { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; text-decoration: none; }
.nav-links { display: flex; gap: 16px; align-items: center; font-weight: 700; font-size: 0.92rem; }
.nav-links a { color: #fff; text-decoration: none; }
.nav-toggle { display: none; height: 44px; background: var(--yellow); border: 0; font-weight: 800; padding: 0 12px; }

.hero {
  background: var(--blue);
  color: #fff;
  padding: 36px 0 0;
}
.hero-grid { display: grid; gap: 20px; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: end; } }
.hero h1 { font-size: clamp(3.2rem, 9vw, 6.4rem); }
.hero p { margin: 12px 0 20px; max-width: 36ch; font-size: 1.1rem; }
.hero img { width: 100%; height: 340px; object-fit: cover; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn:hover { background: #ffd400; }
.btn-white { background: #fff; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #fff;
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div { padding: 18px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stats strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--yellow); }

.services { padding: 56px 0; background: var(--bg); }
.services h2 { font-size: 3rem; margin-bottom: 16px; }
.svc-grid { display: grid; gap: 10px; }
@media (min-width: 800px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc { background: #fff; padding: 18px; border-left: 6px solid var(--blue); }
.svc h3 { font-size: 1.6rem; color: var(--blue); margin-bottom: 6px; }

.compare-sec { padding: 56px 0; }
.compare-sec h2 { font-size: 3rem; margin-bottom: 8px; }
.compare-wrap { max-width: 900px; }
.compare { height: 380px; background: #111; }
.compare img { object-fit: cover; }

.split-svc { display: grid; }
@media (min-width: 800px) { .split-svc { grid-template-columns: 1fr 1fr; } }
.split-svc article { padding: 40px 24px; }
.split-svc article:first-child { background: var(--blue); color: #fff; }
.split-svc article:last-child { background: var(--ink); color: #fff; }
.split-svc h2 { font-size: 2.6rem; margin-bottom: 10px; }

.area { padding: 48px 0; }
.area h2 { font-size: 2.6rem; }

.quote {
  background: var(--yellow);
  padding: 48px 0;
}
.quote h2 { font-size: 3rem; }
form { display: grid; gap: 10px; margin-top: 16px; max-width: 480px; }
input, textarea {
  font: inherit;
  min-height: 48px;
  border: 2px solid var(--ink);
  padding: 0 12px;
  font-weight: 600;
}
textarea { min-height: 90px; padding: 10px 12px; }
form .btn { background: var(--ink); color: #fff; }

.site-footer { padding: 24px 16px 40px; font-size: 0.9rem; color: var(--muted); }
.sticky-action { background: #fff; }
.sticky-action a { background: var(--yellow); color: var(--ink); font-weight: 800; text-transform: uppercase; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 12px 16px 16px;
    z-index: 20;
  }
  body.nav-open .nav-links { display: flex; }
  .nav { position: relative; }
  .compare { height: 260px; }
}
