:root {
  --ink: #13231e;
  --muted: #64716c;
  --cream: #f7f5ee;
  --paper: #ffffff;
  --green: #17654d;
  --green-dark: #0f4938;
  --mint: #dcefe7;
  --lime: #e3b341;
  --line: #dde4df;
  --shadow: 0 24px 60px rgba(19, 35, 30, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: auto;
  padding: 0 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 16px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}
.header-link {
  font-weight: 700;
  text-decoration: none;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 92px;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(21, 95, 72, .12);
  border-radius: 50%;
  left: -240px;
  top: 20px;
  box-shadow: 0 0 0 80px rgba(21, 95, 72, .025), 0 0 0 160px rgba(21, 95, 72, .02);
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 22px;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--green);
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -.055em;
  margin-bottom: 26px;
}
h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 590px;
  margin: 0 0 26px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #385249;
}
.trust-row span::first-letter {
  color: var(--green);
}
.availability {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding: 18px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, .55);
}
.availability strong,
.availability small {
  display: block;
}
.availability small {
  color: var(--muted);
  margin-top: 2px;
}
.pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #49a879;
  box-shadow: 0 0 0 6px rgba(73, 168, 121, .15);
}
.form-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .8);
}
.form-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.step {
  color: var(--green);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.form-heading h2 {
  font-size: 30px;
  letter-spacing: -.03em;
  margin: 8px 0 7px;
}
.form-heading p {
  margin: 0;
  color: var(--muted);
}
form>label,
.field-grid label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 17px;
}
label>span,
legend>span {
  color: #a54335;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #d8dfda;
  background: #fbfcfa;
  border-radius: 10px;
  padding: 13px 14px;
  margin-top: 7px;
  color: var(--ink);
  outline: none;
  transition: .2s;
}
textarea {
  resize: vertical;
  min-height: 118px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 95, 72, .1);
  background: #fff;
}
.field-grid {
  display: grid;
  gap: 14px;
}
.field-grid.two {
  grid-template-columns: 1fr 1fr;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}
legend {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.choice span {
  display: block;
  border: 1px solid #d8dfda;
  border-radius: 10px;
  padding: 11px 12px;
  color: #53625d;
  font-size: 13px;
  cursor: pointer;
  transition: .2s;
}
.choice input:checked+span {
  background: var(--mint);
  border-color: var(--green);
  color: var(--green);
  font-weight: 700;
}
.choice input:focus-visible+span {
  outline: 3px solid rgba(21, 95, 72, .2);
}
.cf-turnstile {
  margin: 4px 0 18px;
  min-height: 65px;
}
button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(21, 95, 72, .22);
  transition: .2s;
}
button:hover {
  background: #0d4c39;
  transform: translateY(-1px);
}
button:disabled {
  opacity: .65;
  cursor: wait;
}
.privacy-note {
  font-size: 11px;
  text-align: center;
  color: #7a8581;
  margin: 13px 8px 0;
}
.website-field {
  position: absolute!important;
  left: -10000px!important;
}
.notice {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 14px;
}
.notice.success {
  background: #e0f3e8;
  color: #195d3f;
}
.notice.error {
  background: #fce8e5;
  color: #8a352b;
}
.process {
  background: #fff;
  padding: 92px 28px;
  text-align: center;
}
.centered {
  justify-content: center;
}
.process h2 {
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -.045em;
  margin-bottom: 50px;
}
.steps {
  max-width: 1060px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.steps article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.steps b {
  font-family: Manrope, sans-serif;
  color: var(--green);
  font-size: 13px;
}
.steps h3 {
  font-size: 20px;
  margin: 30px 0 10px;
}
.steps p {
  color: var(--muted);
  margin: 0;
}
.bottom-cta {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 78px 28px;
}
.bottom-cta p {
  color: var(--lime);
  font-weight: 700;
  margin: 0 0 12px;
}
.bottom-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 750px;
  margin: 0 auto 30px;
  letter-spacing: -.045em;
}
.bottom-cta a {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  padding: 15px 24px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 28px;
  max-width: 1180px;
  margin: auto;
  color: var(--muted);
  font-size: 13px;
}
/* Website Services Section */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 100px 28px;
  background: radial-gradient( circle at 90% 10%, rgba(215, 237, 228, 0.75), transparent 32% ), #f5f2e9;
}
.services-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(21, 95, 72, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(21, 95, 72, 0.025), 0 0 0 140px rgba(21, 95, 72, 0.018);
  pointer-events: none;
}
.services-section .section-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.services-section .section-copy .eyebrow {
  justify-content: center;
}
.services-section .section-copy h2 {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.services-section .section-copy > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.service-grid article {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 95, 72, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(21, 37, 31, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 42px;
  background: var(--green);
  border-radius: 999px;
}
.service-grid article::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Serving South Dakota Section */
.local-section {
  position: relative;
  overflow: hidden;
  padding: 105px 28px;
  background: var(--green);
  color: #fff;
}
.local-section::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -190px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.025), 0 0 0 170px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}
.local-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(217, 239, 111, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.local-content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
}
.local-section .eyebrow {
  margin-bottom: 22px;
  color: var(--lime);
}
.local-section .eyebrow span {
  background: var(--lime);
}
.local-section h2 {
  max-width: 800px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.local-section .local-content > p {
  max-width: 770px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}
.city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 42px 0 34px;
  padding: 0;
  list-style: none;
}
.city-list li {
  position: relative;
  padding: 15px 17px 15px 42px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.city-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 239, 111, 0.12);
  transform: translateY(-50%);
}
.city-list li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(217, 239, 111, 0.4);
}
.local-section .rural-note {
  max-width: 800px;
  margin: 0;
  padding: 22px 25px;
  background: rgba(217, 239, 111, 0.1);
  border-left: 4px solid var(--lime);
  border-radius: 0 12px 12px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
/* Tablet */
@media (max-width: 900px) {
  .local-section {
    padding: 85px 24px;
  }
  .city-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Small tablet */
@media (max-width: 700px) {
  .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Mobile */
@media (max-width: 480px) {
  .local-section {
    padding: 65px 18px;
  }
  .local-section h2 {
    font-size: 36px;
  }
  .local-section .local-content > p {
    font-size: 16px;
  }
  .city-list {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 32px 0;
  }
  .city-list li {
    padding: 13px 15px 13px 40px;
  }
  .local-section .rural-note {
    padding: 19px 20px;
    font-size: 15px;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .city-list li {
    transition: none;
  }
  .city-list li:hover {
    transform: none;
  }
}
/* Website Services: interaction and card content */
.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 95, 72, 0.3);
  box-shadow: 0 22px 48px rgba(21, 37, 31, 0.12);
}
.service-grid article:hover::after {
  transform: scale(1.2);
  opacity: 0.7;
}
.service-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.service-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.service-grid article:nth-child(2)::before,
.service-grid article:nth-child(5)::before {
  background: #72a990;
}
.service-grid article:nth-child(3)::before,
.service-grid article:nth-child(6)::before {
  background: #b5ce4d;
}
/* Start With Clarity Section */
.why-section {
  position: relative;
  padding: 100px 28px;
  overflow: hidden;
  background: radial-gradient( circle at 10% 90%, rgba(215, 237, 228, 0.65), transparent 30% ), #fff;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -170px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(21, 95, 72, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(21, 95, 72, 0.02), 0 0 0 130px rgba(21, 95, 72, 0.015);
  pointer-events: none;
}
.why-section .section-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0 auto 52px;
  text-align: center;
}
.why-section .section-copy h2 {
  max-width: 720px;
  margin: 0 auto 22px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.why-section .section-copy > p:last-child {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}
.benefit-grid article {
  position: relative;
  padding: 35px 30px 31px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(21, 95, 72, 0.11);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.benefit-grid article::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  background: var(--green);
  border-radius: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(21, 95, 72, 0.2);
}
.benefit-grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.5;
  transition: transform 0.25s ease;
}
.benefit-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 95, 72, 0.28);
  box-shadow: 0 20px 45px rgba(21, 37, 31, 0.09);
}
.benefit-grid article:hover::after {
  transform: scale(1.2);
}
.benefit-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.benefit-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
/* Frequently Asked Questions Section */
.faq-section {
  position: relative;
  padding: 100px 28px 110px;
  overflow: hidden;
  background: var(--cream);
}
.faq-section::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(21, 95, 72, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(21, 95, 72, 0.02), 0 0 0 130px rgba(21, 95, 72, 0.014);
  pointer-events: none;
}
.faq-section > .eyebrow {
  position: relative;
  z-index: 1;
}
.faq-section > h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 48px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.045em;
}
.faq-list {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}
.faq-list details {
  margin-bottom: 13px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21, 95, 72, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(21, 37, 31, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-list details:hover {
  border-color: rgba(21, 95, 72, 0.28);
}
.faq-list details[open] {
  border-color: rgba(21, 95, 72, 0.3);
  box-shadow: 0 14px 35px rgba(21, 37, 31, 0.08);
}
.faq-list summary {
  position: relative;
  padding: 23px 65px 23px 25px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 23px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: var(--mint);
  border-radius: 50%;
  color: var(--green);
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--green);
  transform: translateY(-50%) rotate(180deg);
}
.faq-list summary:focus-visible {
  outline: 3px solid rgba(21, 95, 72, 0.22);
  outline-offset: -3px;
  border-radius: 14px;
}
.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 65px 25px 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
/* Tablet */
@media (max-width: 900px) {
  .why-section, .faq-section {
    padding: 80px 24px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .benefit-grid article {
    min-height: auto;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .why-section, .faq-section {
    padding: 65px 18px;
  }
  .why-section .section-copy {
    margin-bottom: 36px;
    text-align: left;
  }
  .why-section .section-copy .eyebrow {
    justify-content: flex-start;
  }
  .why-section .section-copy h2, .faq-section > h2 {
    font-size: 36px;
  }
  .why-section .section-copy > p:last-child {
    font-size: 16px;
  }
  .benefit-grid {
    gap: 14px;
  }
  .benefit-grid article {
    padding: 27px 24px;
  }
  .benefit-grid article::before {
    margin-bottom: 24px;
  }
  .faq-section > h2 {
    margin-bottom: 34px;
  }
  .faq-list summary {
    padding: 20px 58px 20px 20px;
    font-size: 16px;
  }
  .faq-list summary::after {
    right: 18px;
  }
  .faq-list details p {
    padding: 0 20px 22px;
    font-size: 14px;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .benefit-grid article, .benefit-grid article::after, .faq-list details, .faq-list summary::after {
    transition: none;
  }
  .benefit-grid article:hover {
    transform: none;
  }
}
/* Responsive layout */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 45px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .form-card {
    width: 100%;
    max-width: 620px;
    margin: auto;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid article {
    min-height: 225px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }
  .brand {
    font-size: 14px;
  }
  .header-link {
    display: none;
  }
  .hero {
    padding: 38px 18px 62px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .lede {
    font-size: 17px;
  }
  .trust-row {
    gap: 8px 14px;
  }
  .form-card {
    padding: 25px 19px;
    border-radius: 18px;
  }
  .field-grid.two, .choice-grid {
    grid-template-columns: 1fr;
  }
  .field-grid {
    gap: 0;
  }
  .process {
    padding: 65px 18px;
  }
  .steps article {
    padding: 24px;
  }
  .services-section {
    padding: 65px 18px;
  }
  .services-section .section-copy {
    margin-bottom: 36px;
    text-align: left;
  }
  .services-section .section-copy .eyebrow {
    justify-content: flex-start;
  }
  .services-section .section-copy h2 {
    font-size: 36px;
  }
  .services-section .section-copy > p:last-child {
    font-size: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-grid article {
    min-height: auto;
    padding: 27px 24px;
  }
  .service-grid article::before {
    margin-bottom: 28px;
  }
  .bottom-cta {
    padding: 62px 18px;
  }
  footer {
    flex-direction: column;
    padding: 25px 18px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
  .benefit-grid article:hover, .city-list li:hover, .service-grid article:hover {
    transform: none;
  }
}
