:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef3f8;
  --text: #102033;
  --muted: #506274;
  --line: #d7e0ea;
  --primary: #0f4c81;
  --primary-dark: #0b3960;
  --accent: #d98e04;
  --shadow: 0 20px 45px rgba(16, 32, 51, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 251, 0.9);
  border-bottom: 1px solid rgba(215, 224, 234, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  padding: 4.8rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero-buttons,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--primary); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--primary); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-badges span,
.service-note {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.announcement {
  padding-bottom: 1rem;
}

.announcement-inner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { margin-bottom: 2rem; }
.section h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.12; margin-bottom: 0; letter-spacing: -0.03em; }
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.two-column p { color: var(--muted); }

.card-grid,
.reasons-grid,
.service-area-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid { grid-template-columns: repeat(4, 1fr); }
.reasons-grid { grid-template-columns: repeat(2, 1fr); }
.service-area-grid { grid-template-columns: repeat(3, 1fr); }

.card,
.reason-item,
.area-box,
.contact-form,
.contact-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.reason-item,
.area-box,
.contact-form {
  padding: 1.4rem;
}

.card h3,
.reason-item h3,
.area-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p,
.reason-item p,
.area-box p,
.contact-info p,
.form-note { color: var(--muted); }
.card-icon { width: 46px; height: 46px; margin-bottom: 1rem; }

.reason-number {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.quote-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.quote-band .light { color: #d9e8f6; }
.quote-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: block;
  padding: 1rem 1.1rem;
}

.contact-method strong {
  display: block;
  margin-bottom: 0.2rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label { font-weight: 700; }
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}

input:focus {
  outline: 3px solid rgba(15, 76, 129, 0.12);
  border-color: var(--primary);
}

.site-footer {
  background: #0d1722;
  color: #d9e1ea;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p { margin-bottom: 0; color: #aab7c5; }
.footer-links { display: flex; gap: 1rem; }

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .quote-band-inner,
  .card-grid,
  .service-area-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .hero-art img { margin: 0 auto; }
  .quote-band-inner,
  .footer-inner { align-items: flex-start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 82px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero { padding-top: 3.5rem; }
  .brand-tagline { display: none; }
  .hero-badges { gap: 0.5rem; }
}
