@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");
:root {
  --navy: #112c34;
  --navy2: #1a3c42;
  --ink: #20363b;
  --muted: #617479;
  --lime: #93c84f;
  --lime2: #b5d96f;
  --lime-dark: #5d8137;
  --pale: #f3f7ee;
  --line: #d8e2d3;
  --white: #fff;
  --shadow: 0 20px 48px rgba(17, 44, 52, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html.smooth-engine {
  scroll-behavior: auto;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  background: #fff;
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.header {
  height: 82px;
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(7, 26, 43, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.25s;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.brand img {
  flex: none;
}
.brand span {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  margin-left: 10px;
}
.brand b,
.brand em {
  font:
    700 17px/1 Space Grotesk,
    sans-serif;
  letter-spacing: 0.06em;
}
.brand em {
  font-style: normal;
  color: var(--lime);
  margin-left: 5px;
}
.brand small {
  grid-column: 1/3;
  margin-top: 5px;
  color: #a9b8c4;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  margin-left: auto;
  gap: 25px;
}
.desktop-nav a {
  text-decoration: none;
  color: #dce5eb;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: var(--lime);
}
.call-pill {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.15;
  color: var(--navy);
  background: var(--lime);
  border-radius: 0;
  padding: 10px 17px;
}
.call-pill span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.menu-btn,
.mobile-nav {
  display: none;
}
.hero {
  height: min(850px, 100vh);
  min-height: 690px;
  position: relative;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
  padding-top: 82px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.3);
  transform-origin: center center;
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0) scale(1.2);
  transform-origin: center center;
  will-change: transform;
  background: linear-gradient(
    90deg,
    rgba(7, 26, 43, 0.98) 0%,
    rgba(7, 26, 43, 0.92) 27%,
    rgba(7, 26, 43, 0.42) 55%,
    rgba(7, 26, 43, 0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 11vh;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.availability i {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--lime);
  box-shadow: none;
}
h1,
h2,
h3 {
  font-family:
    Space Grotesk,
    Manrope,
    sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(50px, 6vw, 82px);
  max-width: 780px;
  margin: 25px 0;
}
.hero h1 span {
  color: var(--lime);
}
.hero-content > p {
  font-size: 17px;
  max-width: 610px;
  color: #d4dde3;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 23px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.lime {
  background: var(--lime);
  color: var(--navy);
  box-shadow: none;
}
.lime:hover {
  background: var(--lime2);
  transform: translateY(-2px);
}
.glass,
.outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.navy {
  background: var(--navy);
  color: #fff;
}
.trust {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  gap: 25px;
  color: #c7d2da;
  font-size: 12px;
}
.trust b {
  color: var(--lime);
  margin-right: 6px;
}
.quickbar {
  background: var(--lime);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-grid > div {
  display: flex;
  align-items: center;
  padding: 27px 35px;
  border-right: 1px solid rgba(7, 26, 43, 0.18);
}
.quick-grid > div:first-child {
  border-left: 1px solid rgba(7, 26, 43, 0.18);
}
.quick-grid span {
  font: 700 29px Space Grotesk;
  color: rgba(7, 26, 43, 0.28);
  margin-right: 16px;
}
.quick-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}
.quick-grid b {
  display: block;
  font-size: 15px;
}
.section {
  padding: 105px 0;
}
.section.pale {
  background: var(--pale);
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px;
  gap: 30px;
}
.section-head h2,
.two-col h2,
.contact-split h2 {
  font-size: clamp(35px, 4vw, 52px);
}
.section-head > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}
.eyebrow {
  display: block;
  color: #647668;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 13px;
}
.dark .eyebrow,
.subhero .eyebrow,
.footer .eyebrow {
  color: var(--lime);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: 0.25s;
}
.service-card.featured {
  grid-row: span 2;
  min-height: 538px;
  background: var(--navy2);
  color: #fff;
  border: 0;
  padding: 36px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #bdcecb;
}
.service-card .icon {
  font-size: 35px;
  margin-bottom: auto;
  color: #647668;
}
.service-card.featured .icon {
  font-size: 65px;
  color: var(--lime);
}
.service-card small {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.service-card h3 {
  font-size: 24px;
  margin: 16px 0 10px;
}
.service-card.featured h3 {
  font-size: 36px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
}
.service-card.featured p {
  color: #c9d4db;
}
.service-card > b {
  font-size: 12px;
  margin-top: auto;
  color: #647668;
}
.service-card.featured > b {
  color: var(--lime);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.two-col p {
  color: #bdcbd4;
  max-width: 560px;
}
.text-link {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}
.check-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 35px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}
.check-panel h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.check-panel ul,
.side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-panel li {
  padding: 13px 0 13px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  color: #d7e0e5;
}
.check-panel li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}
.district-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.district-grid a b {
  color: #647668;
}
.district-grid a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.contact-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.contact-split > div > p {
  color: var(--muted);
  max-width: 470px;
}
.phone-box {
  margin-top: 35px;
  border-left: 4px solid var(--lime);
  padding-left: 18px;
}
.phone-box small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.phone-box a,
.big-phone {
  font: 700 30px Space Grotesk;
  text-decoration: none;
  color: var(--ink);
}
.form-card {
  background: #fff;
  padding: 35px;
  border-radius: 0;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-card label {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.form-card label:nth-of-type(3),
.form-card .consent,
.form-card .btn,
.notice {
  grid-column: 1/3;
}
.form-card input,
.form-card textarea {
  font: 500 15px Manrope;
  margin-top: 7px;
  border: 1px solid #cfdbdb;
  border-radius: 0;
  padding: 13px;
  resize: vertical;
  outline: none;
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: #7f9183;
  box-shadow: 0 0 0 2px rgba(127, 145, 131, 0.16);
}
.form-card .consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.consent input {
  margin: 0;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
}
.notice {
  padding: 11px;
  border-radius: 0;
  font-size: 13px;
}
.notice.ok {
  background: #e9f8cf;
  color: #385300;
}
.notice.error {
  background: #ffe8e5;
  color: #8a1d12;
}
.faq-wrap {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 23px 45px 23px 0;
  cursor: pointer;
  font-weight: 800;
  position: relative;
  list-style: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 23px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  margin: 0 0 23px;
  color: var(--muted);
  max-width: 760px;
}
.subhero {
  padding: 165px 0 95px;
  background: var(--navy);
  color: #fff;
}
.subhero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: center;
}
.subhero h1 {
  font-size: clamp(45px, 5.5vw, 72px);
  margin: 20px 0;
}
.subhero p {
  max-width: 680px;
  color: #c4d0d8;
  font-size: 17px;
}
.crumb {
  font-size: 11px;
  color: #9eacb7;
  text-decoration: none;
}
.bolt-card {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  font-size: 70px;
  color: var(--lime);
}
.bolt-card small {
  font: 700 10px Manrope;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #99aab5;
  margin-top: auto;
}
.bolt-card b {
  font: 600 21px Space Grotesk;
  color: #fff;
  margin-top: 10px;
}
.big-phone {
  display: inline-block;
  color: var(--lime);
  font-size: 40px;
  margin-top: 20px;
}
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 90px;
  align-items: start;
}
.article-grid article {
  max-width: 720px;
}
.article-grid article h2 {
  font-size: 34px;
  margin: 0 0 15px;
}
.article-grid article h2:not(:first-of-type) {
  margin-top: 45px;
}
.article-grid article p {
  color: var(--muted);
}
.side-card {
  background: var(--pale);
  border-radius: 0;
  padding: 30px;
  position: sticky;
  top: 110px;
}
.side-card h3 {
  font-size: 24px;
  margin-bottom: 17px;
}
.side-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.side-card .btn {
  width: 100%;
  margin-top: 22px;
}
.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.link-cards a {
  padding: 25px;
  background: #fff;
  border-radius: 0;
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.link-cards span {
  color: #647668;
  font-size: 12px;
}
.not-found {
  min-height: 75vh;
  padding: 170px 20px 90px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--navy);
  color: #fff;
}
.not-found span {
  font: 700 100px Space Grotesk;
  color: var(--lime);
}
.not-found h1 {
  font-size: 45px;
}
.not-found p {
  color: #bccbd4;
}
.footer {
  background: #061522;
  color: #fff;
  padding: 80px 0 22px;
}
.footer-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cta h2 {
  font-size: 44px;
}
.footer-cta p {
  color: #9fb0bc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 70px;
  padding: 55px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #9fb0bc;
  font-size: 12px;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--lime);
}
.footer-brand {
  margin-bottom: 10px;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #708491;
  font-size: 10px;
  display: flex;
  gap: 10px;
}
.legal a {
  margin-left: auto;
  color: #708491;
}
.mobile-call {
  display: none;
}
.scroll-progress {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(7, 26, 43, 0.2);
}
.header.scrolled {
  border-bottom-color: rgba(181, 217, 111, 0.32);
  box-shadow: 0 14px 38px rgba(7, 28, 34, 0.2);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--lime-dark), var(--lime2));
  box-shadow: 0 0 14px rgba(181, 217, 111, 0.65);
  will-change: transform;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-photo {
    transform: none;
    will-change: auto;
  }
  .hero-shade {
    transform: none;
    will-change: auto;
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: grid;
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
  }
  .menu-btn i {
    height: 2px;
    background: #fff;
    width: 100%;
  }
  .header.open .mobile-nav {
    display: flex;
  }
  .mobile-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav a {
    padding: 11px;
    color: #fff;
    text-decoration: none;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card.featured {
    grid-row: auto;
    min-height: 300px;
    grid-column: 1/3;
  }
  .two-col,
  .contact-split,
  .article-grid,
  .subhero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bolt-card {
    min-height: 220px;
  }
  .side-card {
    position: static;
  }
  .link-cards {
    grid-template-columns: 1fr;
  }
  .quick-grid > div {
    padding: 20px 10px;
  }
  .footer-cta {
    align-items: start;
    gap: 25px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 28px);
  }
  .header {
    height: 70px;
  }
  .nav-wrap {
    gap: 10px;
  }
  .brand img {
    width: 38px;
  }
  .brand b,
  .brand em {
    font-size: 13px;
  }
  .brand small {
    font-size: 7px;
  }
  .call-pill {
    display: none;
  }
  .menu-btn {
    margin-left: auto;
  }
  .mobile-nav {
    top: 70px;
  }
  .hero {
    min-height: 790px;
    padding-top: 70px;
  }
  .hero-photo {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.98),
      rgba(7, 26, 43, 0.75)
    );
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .mobile-break {
    display: block;
  }
  .hero-content > p {
    font-size: 15px;
  }
  .trust {
    flex-direction: column;
    gap: 7px;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid > div {
    border-bottom: 1px solid rgba(7, 26, 43, 0.15);
    border-right: 0;
    padding: 13px 5px;
  }
  .quick-grid span {
    font-size: 21px;
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .section-head h2,
  .two-col h2,
  .contact-split h2 {
    font-size: 36px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: auto;
    min-height: 350px;
  }
  .district-grid {
    grid-template-columns: 1fr 1fr;
  }
  .district-grid a {
    padding: 14px 12px;
  }
  .form-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .form-card label:nth-of-type(3),
  .form-card .consent,
  .form-card .btn,
  .notice {
    grid-column: auto;
  }
  .subhero {
    padding: 125px 0 70px;
  }
  .subhero h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }
  .article-grid article h2 {
    font-size: 29px;
  }
  .footer-cta h2 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 45;
    bottom: 12px;
    left: 14px;
    right: 14px;
    background: var(--lime);
    color: var(--navy);
    padding: 13px;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    font-weight: 800;
    box-shadow: 0 10px 35px rgba(7, 26, 43, 0.35);
  }
  .footer {
    padding-bottom: 80px;
  }
}

.footer-map-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 330px;
  margin-bottom: 45px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  overflow: hidden;
  background: #0b2031;
}
.footer-map-info {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-map-info h3 {
  font-size: 29px;
  margin-bottom: 14px;
}
.footer-map-info p {
  color: #9fb0bc;
  font-size: 13px;
  margin: 0 0 25px;
}
.map-contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.map-contact span {
  color: #758a98;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.map-contact a {
  color: var(--lime);
  font:
    700 25px Space Grotesk,
    Manrope,
    sans-serif;
  text-decoration: none;
}
.map-link {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.map-link:hover {
  color: var(--lime);
}
.footer-map {
  min-height: 330px;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(0.82) contrast(1.03);
}
@media (max-width: 900px) {
  .footer-map-section {
    grid-template-columns: 1fr;
  }
  .footer-map-info {
    padding: 30px;
  }
  .footer-map,
  .footer-map iframe {
    min-height: 300px;
  }
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}
.header {
  background: rgba(23, 43, 53, 0.96);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(23, 43, 53, 0.97) 0%,
    rgba(23, 43, 53, 0.88) 30%,
    rgba(23, 43, 53, 0.38) 62%,
    rgba(23, 43, 53, 0.08) 100%
  );
}
.lime {
  box-shadow: none;
}
.availability i {
  background: var(--lime);
  box-shadow: none;
}
.quickbar {
  background: #dce3d7;
}
.quick-grid span {
  color: #758275;
}
.eyebrow,
.service-card > b,
.district-grid a b,
.link-cards span {
  color: #647668;
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: #7f9183;
  box-shadow: 0 0 0 2px rgba(127, 145, 131, 0.16);
}
.check-panel li:before {
  content: "";
  width: 10px;
  height: 1px;
  top: 24px;
  background: var(--lime);
}
.trust li {
  position: relative;
  padding-left: 17px;
}
.trust li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--lime);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  display: block;
}
.service-card .icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.service-card.featured .icon {
  width: 64px;
  height: 64px;
}
.service-card.featured .icon svg {
  fill: currentColor;
  stroke: none;
}
.bolt-card > svg {
  width: 74px;
  height: 74px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.bolt-card > svg path[d^="M27"] {
  fill: currentColor;
  stroke: none;
}
.service-card > b,
.text-link,
.link-cards span,
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.service-card > b:after,
.arrow-link:after,
.link-cards span:after {
  content: "";
  width: 16px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewX(-35deg);
}
.district-grid a:after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.mobile-call {
  gap: 10px;
}
.mobile-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.footer-map iframe {
  filter: grayscale(0.15) saturate(0.65) contrast(1.02);
}

body {
  background: #fbfcfa;
}
.header {
  background: linear-gradient(
    90deg,
    rgba(14, 38, 45, 0.98),
    rgba(22, 54, 59, 0.96)
  );
  border-bottom-color: rgba(147, 200, 79, 0.2);
  box-shadow: 0 10px 30px rgba(7, 28, 34, 0.12);
}
.brand em,
.desktop-nav a:hover,
.mobile-nav a:hover,
.map-contact a,
.map-link:hover,
.text-link {
  color: var(--lime);
}
.hero-shade {
  background:
    radial-gradient(
      circle at 49% 30%,
      rgba(147, 200, 79, 0.15),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(13, 38, 45, 0.98) 0%,
      rgba(17, 47, 54, 0.91) 31%,
      rgba(17, 47, 54, 0.42) 62%,
      rgba(17, 47, 54, 0.08) 100%
    );
}
.hero h1 span {
  color: var(--lime2);
  background: linear-gradient(100deg, #c1df83 0%, #8fc548 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.availability {
  background: linear-gradient(
    90deg,
    rgba(147, 200, 79, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  border-color: rgba(181, 217, 111, 0.34);
}
.availability i {
  background: linear-gradient(135deg, var(--lime2), var(--lime));
}
.lime,
.call-pill,
.mobile-call {
  color: #102b32;
  background: linear-gradient(135deg, #afd66a 0%, #8abd49 100%);
  box-shadow: 0 12px 28px rgba(113, 159, 59, 0.2);
}
.lime:hover,
.call-pill:hover,
.mobile-call:hover {
  background: linear-gradient(135deg, #bfdf7d 0%, #96c856 100%);
}
.quickbar {
  background: linear-gradient(100deg, #dce9cd 0%, #c8dda9 48%, #dce9cd 100%);
  border-top: 1px solid rgba(112, 150, 64, 0.26);
  border-bottom: 1px solid rgba(112, 150, 64, 0.22);
}
.quick-grid span {
  color: #6b853f;
}
.section.pale {
  background:
    radial-gradient(circle at 8% 12%, rgba(147, 200, 79, 0.1), transparent 24%),
    linear-gradient(135deg, #f6f8f2 0%, #eef4e9 100%);
}
.section.dark {
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(147, 200, 79, 0.13),
      transparent 30%
    ),
    linear-gradient(135deg, #102a32 0%, #173b3f 100%);
}
.eyebrow,
.service-card > b,
.link-cards span {
  color: var(--lime-dark);
}
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f8faf6 100%);
  border-color: #d7e1d2;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: #a9c889;
  box-shadow: 0 24px 56px rgba(33, 66, 54, 0.15);
}
.service-card.featured {
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(147, 200, 79, 0.22),
      transparent 30%
    ),
    linear-gradient(145deg, #15363d 0%, #1c4848 100%);
}
.service-card .icon {
  color: #69973e;
}
.service-card.featured .icon,
.service-card.featured > b,
.service-card.featured small {
  color: #b8dc79;
}
.check-panel,
.bolt-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(147, 200, 79, 0.06)
  );
  border-color: rgba(181, 217, 111, 0.22);
  box-shadow: inset 3px 0 0 rgba(147, 200, 79, 0.72);
}
.bolt-card {
  color: var(--lime2);
}
.district-grid a {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f7faf4 100%);
  border-color: #d4e0cf;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}
.district-grid a:hover {
  color: #112c34;
  background: linear-gradient(135deg, #dcebc9 0%, #bddc94 100%);
  border-color: #93bd62;
  transform: translateY(-2px);
}
.form-card {
  border: 1px solid #d5dfd1;
  border-top: 3px solid var(--lime);
  background: linear-gradient(145deg, #fff, #fafcf8);
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: #7da34e;
  box-shadow: 0 0 0 2px rgba(147, 200, 79, 0.18);
}
.subhero {
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(147, 200, 79, 0.17),
      transparent 30%
    ),
    linear-gradient(120deg, #102a32 0%, #183d42 100%);
}
.side-card {
  border-left: 3px solid var(--lime);
  background: linear-gradient(145deg, #f2f7ec, #eaf2e3);
}
.link-cards a {
  background: linear-gradient(135deg, #fff, #f3f8ee);
  border-color: #d5e2ce;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.link-cards a:hover {
  transform: translateY(-3px);
  border-color: #9fc378;
  box-shadow: 0 16px 36px rgba(41, 75, 59, 0.1);
}
.footer {
  background:
    radial-gradient(
      circle at 83% 6%,
      rgba(147, 200, 79, 0.12),
      transparent 25%
    ),
    linear-gradient(135deg, #0b252d 0%, #12343a 100%);
}
.footer-map-section {
  background: linear-gradient(135deg, #173940 0%, #1b4544 100%);
  border-color: rgba(181, 217, 111, 0.2);
  box-shadow: 0 24px 60px rgba(4, 22, 27, 0.22);
}
.footer-map iframe {
  filter: grayscale(0.08) saturate(0.78) contrast(1.03);
}
