:root {
  --accent: #1769aa;
  --accent-dark: #0d4f83;
  --ink: #111c27;
  --muted: #596775;
  --line: #d8e2ea;
  --surface: #f4f8fb;
  --surface-strong: #eaf3f8;
  --white: #ffffff;
  --warning: #fff8df;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(17, 28, 39, 0.16);
  --shadow-soft: 0 10px 28px rgba(17, 28, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.demo-banner {
  background: var(--warning);
  border-bottom: 1px solid #eadca7;
  color: #59440d;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-bar,
.nav,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  color: #405163;
  font-size: 0.85rem;
  font-weight: 700;
}

.top-bar a {
  color: var(--accent-dark);
  font-weight: 800;
}

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

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(23, 105, 170, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #3e4d5c;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta,
.button {
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.1rem;
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(23, 105, 170, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(17, 28, 39, 0.06);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  min-height: 42px;
  padding: 0 0.9rem;
  font-weight: 900;
}

.section {
  padding: 88px 0;
}

.compact {
  padding: 34px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 4.5rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(244, 248, 251, 0.95), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 90% 20%, rgba(23, 105, 170, 0.1), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  max-width: 720px;
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 620px;
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  font-size: 1.25rem;
  font-weight: 950;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
}

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

.estimate-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 234, 0.82);
  padding: 1.15rem;
}

.estimate-card strong,
.estimate-card span {
  display: block;
}

.estimate-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.conversion-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.conversion-band div {
  border-left: 3px solid var(--accent);
  padding: 0.35rem 1rem;
}

.conversion-band strong,
.conversion-band span {
  display: block;
}

.conversion-band strong {
  font-size: 1rem;
  font-weight: 950;
}

.conversion-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 3rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}

.service-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.why,
.service-area {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--surface), #ffffff);
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.proof-list,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-list article,
.review-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.proof-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.04rem;
}

.proof-list p,
.review-grid p {
  color: var(--muted);
}

.review-grid cite {
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 1rem;
}

.gallery-grid img {
  aspect-ratio: 4 / 3.1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: stretch;
}

.map-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #cbdad3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 122, 91, 0.82), rgba(23, 33, 43, 0.68)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  color: var(--white);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.map-card span {
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.map-card small {
  font-size: 1rem;
  font-weight: 800;
}

.area-panel ul {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.25rem;
  list-style: none;
  box-shadow: var(--shadow-soft);
}

.area-panel li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  font-weight: 900;
}

.area-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 4rem;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: #0f1d2a;
  color: var(--white);
}

.contact .eyebrow,
.contact-copy p {
  color: #bbd7ea;
}

.business-info {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: #d9e8f2;
  font-weight: 800;
}

.business-info a {
  color: var(--white);
  font-size: 1.4rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5dc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.14);
  outline: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  gap: 1rem;
  border-top: 0;
  color: #d0d9e3;
  background: #0f1d2a;
  padding: 2rem max(16px, calc((100% - 1180px) / 2)) 6rem;
  font-size: 0.92rem;
}

.footer strong {
  color: var(--white);
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 0.95rem 1.2rem;
  font-weight: 950;
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .nav {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .conversion-band,
  .split,
  .contact,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    padding-top: 42px;
  }

  .conversion-band {
    gap: 0.8rem;
  }

  .hero-media {
    order: -1;
  }

  .trust-strip,
  .service-grid,
  .proof-list,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 0;
  }

  .compact {
    padding: 28px 0;
  }

  .why,
  .service-area,
  .contact,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer {
    display: grid;
  }

  .contact {
    padding-bottom: 96px;
  }
}

@media (max-width: 520px) {
  .top-bar,
  .nav,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: 1.4rem;
  }

  .estimate-card {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .service-card,
  .proof-list article,
  .review-grid blockquote,
  .lead-form {
    padding: 1.1rem;
  }

  .sticky-call {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
