:root {
  --ink: #123142;
  --deep: #041d17;
  --green: #5f9830;
  --green-dark: #40711f;
  --mint: #eaf4f0;
  --mist: #f5f8f6;
  --line: #d9e3de;
  --text: #25342f;
  --muted: #68766f;
  --white: #ffffff;
  --amber: #c78624;
  --shadow: 0 18px 50px rgba(18, 49, 66, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.header-call:hover,
.footer a:hover {
  color: var(--green-dark);
}

.header-call {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: calc(100svh - 76px);
  padding: clamp(40px, 7vw, 86px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(234, 244, 240, 0.96), rgba(255, 255, 255, 0.84) 56%),
    radial-gradient(circle at 85% 25%, rgba(199, 134, 36, 0.15), transparent 28%),
    linear-gradient(160deg, #ffffff, #f4f8f5);
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 800px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(64, 113, 31, 0.24);
}

.button.primary:hover {
  background: var(--deep);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.hero-panel {
  justify-self: center;
  width: min(100%, 410px);
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto 20px;
}

.hero-stat {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.hero-stat strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.hero-stat span {
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.trust-strip div {
  min-height: 106px;
  padding: 26px clamp(18px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
}

.section,
.quote-section,
.agents,
.reviews {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 214px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.8rem;
}

.service-card p,
.agents p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.agents {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  background: var(--mint);
}

.agents h2,
.quote-copy h2 {
  margin-bottom: 18px;
}

.agents .button {
  margin-top: 26px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button-row .button {
  margin-top: 0;
}

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

.agent-list li {
  min-height: 58px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.areas {
  background: var(--white);
}

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

.area-list span,
.area-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.map-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-copy .button {
  margin-top: 26px;
}

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.standards {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background: var(--white);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.standards-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.standards-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background: var(--mint);
}

.pricing p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-list span {
  color: var(--ink);
  font-weight: 800;
}

.price-list strong {
  color: var(--green-dark);
  text-align: right;
  white-space: nowrap;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.review-copy {
  max-width: 780px;
}

.review-copy .eyebrow {
  color: #9bc56f;
}

.review-copy h2 {
  color: var(--white);
}

.review-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.review-action {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  text-align: center;
}

.review-action img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.review-action strong {
  font-size: 1.1rem;
}

.review-action span {
  color: var(--muted);
  line-height: 1.45;
}

.review-action .button {
  width: 100%;
  margin-top: 8px;
}

.faq {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 84px);
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

summary {
  min-height: 58px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.page-main {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 6vw, 84px);
  background: var(--white);
}

.page-content {
  max-width: 920px;
}

.page-content h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.page-content h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.page-content p,
.page-content li {
  color: var(--muted);
  line-height: 1.72;
}

.page-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.thank-you-panel {
  max-width: 760px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.thank-you-panel .button {
  margin-top: 18px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: linear-gradient(180deg, #f8faf8, #eef6f2);
  border-top: 1px solid var(--line);
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.contact-block {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9d6cf;
  border-radius: 7px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 10px;
}

.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.bot-field {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(95, 152, 48, 0.18);
  border-color: var(--green);
}

.wide {
  grid-column: 1 / -1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 6vw, 84px);
  background: var(--deep);
  color: var(--white);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.footer img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .agents,
  .quote-section,
  .reviews,
  .pricing,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quote-copy {
    position: static;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-call {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

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

  .service-grid,
  .quote-form,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    padding: 22px;
  }

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

  .footer address {
    text-align: left;
  }
}
