* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-soft: #f5f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5b6474;
  --line: #e5e7eb;
  --primary: #d61f26;
  --secondary: #1254c7;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18,84,199,.08), transparent 30%),
    radial-gradient(circle at top right, rgba(214,31,38,.08), transparent 28%),
    #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(229,231,235,.75);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
}

.brand-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #334155;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ef4444);
  color: white;
  box-shadow: 0 12px 30px rgba(214,31,38,.22);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--line);
}

.btn-lg {
  padding: 16px 24px;
  font-size: 1rem;
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--secondary);
  margin-bottom: 14px;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 28px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  padding: 14px;
}

.hero-media img {
  border-radius: calc(var(--radius) - 8px);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.trust-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: .94rem;
}

.info-strip {
  padding: 14px 0 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #0f172a;
  color: white;
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.info-grid p, .info-grid a {
  color: rgba(255,255,255,.92);
  margin: 8px 0 0;
}

.label {
  color: rgba(255,255,255,.68);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

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

.service-card,
.review-card,
.stat,
.location-card {
  padding: 28px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18,84,199,.10), rgba(214,31,38,.10));
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3,
.review-card strong {
  margin: 0 0 10px;
}

.section-dark {
  background: linear-gradient(180deg, #f8fbff, #eef3f9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col,
.location-grid,
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  color: #334155;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18,84,199,.12);
  color: var(--secondary);
  font-size: .85rem;
  font-weight: 800;
}

.stats-wrap {
  display: grid;
  gap: 16px;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cta-band {
  padding-top: 20px;
}

.cta-band-inner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.cta-band-inner h2,
.cta-band-inner .eyebrow {
  color: white;
}

.location-card p {
  margin: 0 0 18px;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
}

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

.footer-links {
  display: flex;
  gap: 18px;
  color: #475569;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-col,
  .location-grid,
  .cta-band-inner,
  .cards-3,
  .info-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .nav {
    min-height: 74px;
  }

  .brand-text {
    font-size: .92rem;
  }

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

  .btn, .btn-lg {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
