:root {
  --brand: #1f47e0;
  --accent: #f59e0b;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #d9e1ea;
  --soft: #f5f7fb;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.12);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button:disabled {
  cursor: not-allowed;
  background: #c7d0da;
  box-shadow: none;
}

.hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 84px 0;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-strip {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.alt {
  width: 100%;
  background: var(--soft);
}

.section.alt > .section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.grid.three,
.grid.four {
  grid-template-columns: 1fr;
}

.service-card,
.review-card,
.area-chip,
.gallery-tile {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-card {
  padding: 24px;
}

.service-card .icon {
  font-size: 28px;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 20px;
}

.service-card p,
.review-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.gallery-tile {
  overflow: hidden;
  background: #fff;
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-tile span {
  display: block;
  padding: 14px 16px;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-chip {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
}

.reviews {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.review-card {
  padding: 24px;
}

.review-card strong {
  display: block;
  margin-top: 14px;
}

.quote-band {
  background: var(--ink);
  color: #fff;
}

.quote-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 32px;
  padding: 76px 0;
}

.quote-layout p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-top: 12px;
}

.demo-form {
  display: grid;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.demo-note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-layout {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}
