
:root {
  --green: #2f6f3e;
  --green-dark: #173a2a;
  --blue: #315df4;
  --navy: #12172a;
  --ink: #101827;
  --muted: #5b6473;
  --line: #e3e8ef;
  --soft: #f4f8f5;
  --cool: #f2f6ff;
  --gold: #d5a526;
  --shadow: 0 24px 70px rgba(18, 23, 42, 0.14);
}
* { 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;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: fit-content;
  max-width: calc(100vw - 28px);
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 20px 60px rgba(16,24,39,0.14);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green-dark);
}
.brand img { width: 208px; height: auto; }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
  padding: 12px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 4px;
}
.nav-links { display: flex; align-items: center; gap: 18px; margin: 0; }
.nav-links a, .mobile-panel a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 13px 19px;
  border-radius: 999px;
}
.mobile-panel { display: none; }
main { overflow: hidden; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 150px clamp(22px, 5vw, 78px) 78px;
  background: linear-gradient(180deg, #fff 0%, #fff 62%, var(--cool) 62%, var(--cool) 100%);
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; color: var(--navy); }
h1 { margin: 0; font-size: clamp(44px, 6.4vw, 82px); max-width: 860px; }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 52px); }
h3 { margin: 0 0 10px; font-size: 22px; }
p { color: var(--muted); font-size: 17px; }
.hero-copy > p:not(.eyebrow) { max-width: 670px; font-size: 20px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 28px 0; }
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 0;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.btn.primary, .contact-form button { color: #fff; background: var(--blue); box-shadow: 0 14px 32px rgba(49,93,244,0.28); }
.btn.secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  margin: 30px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.proof-strip div { padding: 18px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip dt { color: var(--green-dark); font-size: 24px; font-weight: 900; }
.proof-strip dd { margin: 2px 0 0; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.hero-media { position: relative; min-width: 0; }
.hero-media > img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 38px rgba(16,24,39,0.18);
}
.hero-note span { color: var(--muted); }
.workflow-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-dark);
  padding: 0 clamp(20px, 5vw, 78px);
}
.workflow-band div { padding: 38px; background: var(--green-dark); color: #fff; }
.workflow-band span { color: #9fe3ad; font-weight: 900; }
.workflow-band h2 { color: #fff; font-size: 24px; margin: 8px 0; }
.workflow-band p { color: rgba(255,255,255,0.78); margin: 0; }
section { padding: 84px clamp(20px, 5vw, 78px); }
.section-heading { max-width: 900px; margin-bottom: 32px; }
.services-overview, .post-grid, .service-index { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card, .post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16,24,39,0.07);
}
.service-card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.service-card div, .post-card div { padding: 22px; }
.service-card a, .post-card a, .pill-link, .footer-grid a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}
.risk-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: center;
  background: var(--soft);
}
.risk-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.risk-board article { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.risk-board img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.risk-board article h3, .risk-board article p { padding: 0 18px; }
.risk-board article h3 { padding-top: 18px; }
.risk-board article p { padding-bottom: 18px; font-size: 15px; }
.reviews-section { background: var(--navy); color: #fff; }
.reviews-section h2, .reviews-section .section-kicker { color: #fff; }
.reviews-section h2 { max-width: 960px; }
.gr-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  padding: 18px;
  margin: 30px 0;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}
.gr-g {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}
.gr-stars { color: var(--gold); letter-spacing: 0; }
.gr-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gr-track { display: flex; gap: 14px; width: max-content; animation: marquee 38s linear infinite; }
.gr-marquee-reverse .gr-track { animation-direction: reverse; }
.review-card {
  width: 340px;
  min-height: 178px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}
.review-card .avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 900;
}
.review-card p { color: var(--muted); font-size: 15px; }
.gr-mark { color: var(--blue); font-weight: 900; float: right; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.area-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 44px;
  align-items: center;
  background: #fff;
}
.area-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 30px;
  min-height: 320px;
  align-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
}
.area-map span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 8px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 900;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--cool);
  color: var(--navy);
  font-weight: 800;
}
.about-band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--cool);
}
.about-band img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 8px; }
.cta-band {
  text-align: center;
  background: var(--green-dark);
}
.cta-band h2, .cta-band p { color: #fff; }
.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding-top: 150px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, var(--soft) 72%);
}
.subpage-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
  background: #fff;
}
.article-layout article, .article-layout aside, .local-proof {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}
.article-layout article p:first-child { font-size: 20px; color: var(--ink); }
.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.feature-list li { padding: 14px 16px; background: var(--soft); border-radius: 8px; font-weight: 800; }
.faq-inline { background: var(--soft); }
details {
  max-width: 980px;
  margin: 10px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
summary { cursor: pointer; font-weight: 900; color: var(--navy); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blog-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 150px 22px 70px;
}
.blog-article h1 { font-size: clamp(38px, 5vw, 68px); }
.blog-article > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; margin: 32px 0; }
.article-body { max-width: 760px; }
.article-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 40px;
  padding-top: 150px;
  background: var(--soft);
}
.contact-phone a { color: var(--green-dark); font-size: 30px; font-weight: 900; text-decoration: none; }
.contact-details { display: grid; gap: 12px; margin-top: 26px; }
.contact-details div { padding: 16px; background: #fff; border-radius: 8px; border: 1px solid var(--line); }
.contact-details dt { font-weight: 900; color: var(--navy); }
.contact-details dd { margin: 4px 0 0; color: var(--muted); }
.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}
.site-footer {
  padding: 72px clamp(20px, 5vw, 78px) 84px;
  background: #0e1726;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
.footer-logo { width: 220px; height: auto; background: var(--green-dark); border-radius: 8px; padding: 10px; }
.footer-grid h2 { color: #fff; font-size: 18px; }
.footer-grid p { color: rgba(255,255,255,0.72); }
.footer-grid a { display: block; color: rgba(255,255,255,0.86); margin: 8px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
}
.footer-credit a { color: #fff; }
.mobile-sticky-cta { display: none; }
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1120px) {
  .hero, .subpage-hero, .risk-panel, .area-panel, .about-band, .contact-hero { grid-template-columns: 1fr; }
  .service-grid, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    justify-content: space-between;
    border-radius: 8px;
  }
  .brand { padding: 7px 11px; }
  .brand img { width: 176px; }
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  body.menu-open .mobile-panel { display: grid; gap: 12px; }
  .hero, .subpage-hero, .contact-hero {
    padding-top: 118px;
    min-height: unset;
  }
  section { padding: 58px 18px; }
  h1 { font-size: 42px; }
  h2 { font-size: 31px; }
  .proof-strip, .workflow-band, .risk-board, .area-map, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .workflow-band { padding: 0; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid, .post-grid { grid-template-columns: 1fr; }
  .article-layout { padding-left: 18px; padding-right: 18px; }
  .blog-article { padding-top: 118px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mobile-sticky-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
  }
  .mobile-sticky-cta a:first-child { background: var(--green); }
  .mobile-sticky-cta a:last-child { background: #0a0a0a; }
  .site-footer { padding-bottom: 110px; }
}
