:root {
  --teal: #1b6668;
  --teal-dark: #104d50;
  --teal-soft: #e8f2f1;
  --lime: #b7da00;
  --lime-dark: #8eb000;
  --orange: #f79400;
  --orange-dark: #df7d00;
  --yellow: #fff0a5;
  --yellow-soft: #fff8d5;
  --cream: #fffdf7;
  --white: #ffffff;
  --ink: #222933;
  --muted: #5f6770;
  --line: #e8e4d9;
  --shadow-sm: 0 8px 24px rgba(31, 43, 45, 0.08);
  --shadow-md: 0 20px 55px rgba(31, 43, 45, 0.13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.7vw, 4.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.6vw, 3.6rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.25;
}

.eyebrow,
.mini-kicker,
.service-label {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(247, 148, 0, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 13px 28px rgba(247, 148, 0, 0.3);
}

.button-light {
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-block {
  width: 100%;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 77, 80, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 18px rgba(31, 43, 45, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 236px;
  height: auto;
}

.brand-location {
  padding-left: 18px;
  border-left: 1px solid #cbd2d0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-actions,
.header-phone,
.call-inline,
.call-card {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 22px;
}

.header-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3b444e;
  font-size: 0.87rem;
  white-space: nowrap;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.06em;
}

.header-phone,
.call-inline,
.call-card {
  gap: 10px;
  color: var(--ink);
}

.header-phone small,
.header-phone strong,
.call-inline small,
.call-inline strong,
.call-card small,
.call-card strong {
  display: block;
}

.header-phone small,
.call-inline small,
.call-card small {
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.25;
}

.header-phone strong,
.call-inline strong,
.call-card strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.icon-circle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--lime);
  border-radius: 50%;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 66px;
  background:
    radial-gradient(circle at 87% 15%, rgba(255, 255, 255, 0.7) 0 9%, transparent 27%),
    linear-gradient(110deg, var(--yellow-soft) 0%, var(--yellow) 50%, #ffed9a 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(rgba(16, 77, 80, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.18;
}

.hero-swoop {
  position: absolute;
  z-index: -1;
  width: 62%;
  height: 95px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-swoop-top {
  top: -74px;
  left: -7%;
  border-bottom: 15px solid var(--lime);
  transform: rotate(-3deg);
}

.hero-swoop-bottom {
  right: -12%;
  bottom: -57px;
  border-top: 13px solid var(--lime);
  box-shadow: 0 -9px 0 -4px var(--orange);
  transform: rotate(-5deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.2fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 5vw, 70px);
}

/* ── Hero mascot row ── */
.hero-mascot {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.hero-mascot-img {
  position: relative;
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), transparent 50%),
    linear-gradient(140deg, var(--lime), #d6ec4a);
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(85, 109, 0, 0.18);
  overflow: hidden;
}

.hero-mascot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 4px 8px rgba(33, 47, 47, 0.15));
}

.hero-mascot-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.local-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(16, 77, 80, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  line-height: 1.25;
}

.local-badge-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 22px;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hero-tagline {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 24px;
  color: #40484e;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.call-inline {
  padding: 4px 0;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  color: #465057;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.72rem;
}

.quote-card {
  position: relative;
  z-index: 4;
  scroll-margin-top: 120px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 77, 80, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.quote-card-heading {
  margin-bottom: 22px;
  text-align: center;
}

.quote-card-heading .mini-kicker {
  margin-bottom: 7px;
  color: var(--orange-dark);
}

.quote-card-heading h2 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-family: inherit;
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -0.035em;
}

.quote-card-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #313941;
  font-size: 0.86rem;
  font-weight: 750;
}

.field-control {
  position: relative;
}

.field-control > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #81898e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 11px 40px 11px 45px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #cbd0ce;
  border-radius: 9px;
  outline: 0;
  font-size: 1rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder {
  color: #9aa09f;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #687170 50%),
    linear-gradient(135deg, #687170 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27, 102, 104, 0.12);
}

.field input:user-invalid,
.field select:user-invalid {
  border-color: #b83d32;
}

.quote-form .button {
  margin-top: 3px;
}

.form-reassurance {
  margin: -3px 0 0;
  color: #5b6367;
  font-size: 0.78rem;
  text-align: center;
}

.form-reassurance span:first-child {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  margin-right: 3px;
  color: var(--white);
  background: var(--lime-dark);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.form-status {
  display: none;
  padding: 10px 12px;
  margin: 0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #8d261d;
  background: #fff0ed;
}

.form-status.is-success {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.trust-section {
  position: relative;
  z-index: 5;
  padding: 22px 0;
  background: var(--cream);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.trust-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.3;
}

.trust-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  color: var(--lime-dark);
  background: var(--yellow-soft);
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.rating-icon {
  color: var(--orange);
  font-size: 1.65rem;
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 44px;
}

.section-heading h2 {
  color: var(--teal-dark);
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.steps-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 34px 30px 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--lime-dark);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--orange);
  background: var(--yellow-soft);
  border-radius: 50%;
}

.step-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.services-section {
  background: var(--teal-soft);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

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

.service-card {
  display: flex;
  min-height: 395px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 77, 80, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card.featured {
  border-top: 5px solid var(--orange);
}

.service-label {
  color: var(--orange-dark);
}

.service-card h3 {
  font-size: 1.55rem;
}

.service-card > p:not(.service-label) {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0 25px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 25px;
  color: #465057;
  font-size: 0.92rem;
}

.service-card li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--lime-dark);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 850;
}

.text-link span {
  color: var(--orange);
  font-size: 1.2em;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.technician-section {
  background: var(--cream);
}

.technician-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.technician-photo-wrap {
  position: relative;
  padding: 16px 16px 0 0;
}

.technician-photo-wrap::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 74%;
  height: 65%;
  background: var(--lime);
  border-radius: var(--radius-lg);
  content: "";
}

.technician-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.43;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.photo-badge {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: -27px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 19px;
  color: var(--white);
  background: var(--teal-dark);
  border: 6px solid var(--cream);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.photo-badge strong {
  color: var(--lime);
  font-size: 1.65rem;
}

.photo-badge span {
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
}

.technician-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  margin-top: 1px;
  color: var(--white);
  background: var(--lime-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  color: var(--teal-dark);
  line-height: 1.35;
}

.feature-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.technician-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
}

.testimonial-section {
  padding: 28px 0;
  background: var(--cream);
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 40px 44px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: var(--radius-md);
}

.testimonial-card::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(183, 218, 0, 0.3);
  border-radius: 50%;
  content: "";
}

.quote-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card .eyebrow {
  margin-bottom: 8px;
  color: var(--lime);
}

.testimonial-card blockquote {
  max-width: 720px;
  margin: 0 0 11px;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-name {
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.testimonial-name span {
  margin-left: 10px;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.testimonial-card .button {
  position: relative;
  z-index: 1;
}

.area-section {
  background: var(--cream);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 72px;
}

.area-copy h2 {
  color: var(--teal-dark);
}

.area-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.city-list li {
  position: relative;
  padding: 13px 12px 13px 35px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 750;
  box-shadow: 0 4px 14px rgba(31, 43, 45, 0.04);
}

.city-list li::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--lime-dark);
  content: "";
  transform: translateY(-50%);
}

.faq-section {
  background: var(--yellow-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.faq-intro h2 {
  color: var(--teal-dark);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.call-card {
  width: fit-content;
  padding: 12px 17px 12px 12px;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 77, 80, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(16, 77, 80, 0.12);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(31, 43, 45, 0.05);
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 62px 21px 21px;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  color: var(--white);
  background: var(--teal);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -120px;
  left: -80px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(183, 218, 0, 0.24);
}

.final-cta::after {
  right: -45px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  background: rgba(247, 148, 0, 0.13);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 58px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #123c3f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.6fr;
  gap: 60px;
  padding-bottom: 36px;
}

.footer-brand img {
  width: 230px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand p {
  max-width: 470px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .header-rating {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
    gap: 28px;
  }

  .quote-card-heading {
    margin-bottom: 0;
    text-align: left;
  }

  .quote-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .quote-form .button,
  .form-reassurance,
  .form-status {
    grid-column: 1 / -1;
  }

  .city-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 205px;
  }

  .header-phone small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 30px;
  }

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

  .trust-item {
    justify-content: flex-start;
    min-height: 90px;
    padding-inline: 26px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
    text-align: left;
  }

  .step-number {
    right: 18px;
    left: auto;
  }

  .step-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step-card h3 {
    align-self: end;
    margin: 0 50px 4px 0;
  }

  .service-card {
    min-height: 0;
  }

  .split-heading,
  .technician-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-heading {
    gap: 16px;
  }

  .technician-photo-wrap {
    width: min(100%, 710px);
  }

  .testimonial-card {
    grid-template-columns: auto 1fr;
  }

  .testimonial-card .button {
    grid-column: 2;
    width: fit-content;
  }

  .city-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 170px;
  }

  .brand-location {
    padding-left: 10px;
    font-size: 0.78rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 42px 0 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    padding: 0;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mascot {
    display: none;
  }

  .hero-actions .call-inline {
    display: none;
  }

  .quote-card {
    display: block;
    order: 3;
    padding: 26px 20px;
  }

  .quote-card-heading {
    margin-bottom: 21px;
    text-align: center;
  }

  .quote-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

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

  .trust-section {
    padding-top: 15px;
  }

  .trust-item {
    padding: 17px 20px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .step-card {
    display: block;
    padding: 28px 22px;
    text-align: center;
  }

  .step-icon {
    margin: 0 auto 18px;
  }

  .step-card h3 {
    margin: 0 42px 7px;
  }

  .service-card {
    padding: 26px 22px;
  }

  .photo-badge {
    right: -2px;
    bottom: -32px;
  }

  .technician-copy {
    margin-top: 14px;
  }

  .testimonial-card {
    display: block;
    padding: 32px 24px;
  }

  .quote-mark {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    font-size: 3rem;
  }

  .testimonial-card .button {
    width: 100%;
    margin-top: 20px;
  }

  .city-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-list summary {
    padding-inline: 17px;
  }

  .faq-list details p {
    padding: 0 48px 18px 17px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 66px;
    background: var(--white);
    border-top: 1px solid rgba(16, 77, 80, 0.12);
    box-shadow: 0 -8px 28px rgba(31, 43, 45, 0.14);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 850;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    color: var(--teal-dark);
  }

  .mobile-cta a:last-child {
    color: var(--white);
    background: var(--orange);
  }

  .mobile-cta svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 154px;
  }

  .brand-location {
    font-size: 0.71rem;
  }

  .city-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .city-list li {
    padding-right: 8px;
    padding-left: 29px;
    font-size: 0.76rem;
  }

  .city-list li::before {
    left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
