/* =========================================
   01. ROOT TOKENS
   ========================================= */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f4f8fc;

  --text: #14202b;
  --text-soft: #4f6072;
  --text-faint: #718297;

  --line: #dbe3ec;
  --line-strong: #c4d0dc;

  --primary: #0f6cbd;
  --primary-2: #145ea8;
  --primary-soft: #e7f2fc;
  --success: #1e8e5a;
  --danger: #d14545;

  --shadow-sm: 0 8px 24px rgba(15, 32, 55, 0.06);
  --shadow-md: 0 16px 42px rgba(15, 32, 55, 0.11);
  --shadow-lg: 0 24px 70px rgba(15, 32, 55, 0.16);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  --wrap: 1220px;
  --header-h: 82px;
  --transition: 180ms ease;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================================
   02. RESET + BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(15, 108, 189, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(30, 142, 90, 0.06), transparent 25%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    radial-gradient(circle at 10% 10%, rgba(15,108,189,0.035), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(30,142,90,0.03), transparent 20%);
}

main {
  overflow: clip;
}

section {
  position: relative;
}

section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 208, 220, 0.65), transparent);
  transform: translateX(-50%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 108, 189, 0.65);
  box-shadow: 0 0 0 4px rgba(15, 108, 189, 0.12);
}

label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--text);
  background: rgba(15, 108, 189, 0.18);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 108, 189, 0.18);
  outline-offset: 2px;
}

/* =========================================
   03. LAYOUT + UTILITIES
   ========================================= */
.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  color: #fff;
  background: var(--text);
  border-radius: 12px;
}

.skip-link:focus {
  top: 1rem;
}

.fineprint {
  margin: 0.5rem 0 0;
  color: var(--text-faint);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

/* =========================================
   04. ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  to {
    transform: translateX(160%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   05. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 14px;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(15, 108, 189, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(15, 108, 189, 0.3);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: #fff;
}

.btn--full {
  width: 100%;
}

.hero__actions .btn--primary::before,
.quote-actions .btn--primary::before,
.contact__form .btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.18) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.hero__actions .btn--primary:hover::before,
.quote-actions .btn--primary:hover::before,
.contact__form .btn--primary:hover::before {
  transform: translateX(120%);
}
/* =========================================
   06. MARQUEE
   ========================================= */
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  border-top: 1px solid rgba(219, 227, 236, 0.8);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  padding: 0.78rem 1rem;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  color: var(--text-soft);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   07. HERO
   ========================================= */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem) 0 2rem;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 18, 30, 0.72) 0%,
    rgba(8, 18, 30, 0.48) 42%,
    rgba(8, 18, 30, 0.26) 100%
  );
}

.hero__copy,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 720px;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.hero__eyebrow {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero__eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(255, 255, 255, 0.25) 35%,
    transparent 60%
  );
  transform: translateX(-140%);
  pointer-events: none;
  animation: shine 5.8s linear infinite;
}

.hero__title {
  margin: 0 0 1rem;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero__points {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.4rem;
}

.hero__points li {
  position: relative;
  padding-left: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.hero__points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: #7bdba9;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(123, 219, 169, 0.16);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero__trust {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__copy > * {
  animation: fadeUp 560ms ease both;
}

.hero__copy > *:nth-child(2) { animation-delay: 60ms; }
.hero__copy > *:nth-child(3) { animation-delay: 120ms; }
.hero__copy > *:nth-child(4) { animation-delay: 180ms; }
.hero__copy > *:nth-child(5) { animation-delay: 240ms; }
.hero__copy > *:nth-child(6) { animation-delay: 300ms; }

.hero__panel {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  margin-top: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  animation: fadeUp 620ms ease both;
  animation-delay: 180ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  to {
    transform: translateX(160%);
  }
}
/* =========================================
   05. HEADER + NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 248, 251, 0.82);
  border-bottom: 1px solid rgba(219, 227, 236, 0.8);
  backdrop-filter: blur(12px);
}

.site-header.is-open {
  background: rgba(246, 248, 251, 0.96);
  box-shadow: 0 18px 40px rgba(15, 32, 55, 0.08);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(196, 208, 220, 0.9);
  box-shadow: 0 10px 30px rgba(15, 32, 55, 0.06);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 108, 189, 1), rgba(30, 142, 90, 0.95));
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.2);
}

.brand__text {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav a {
  padding: 0.8rem 0.95rem;
  color: var(--text-soft);
  font-weight: 700;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
}

.nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.site-header.is-open .nav-toggle {
  border-color: rgba(15, 108, 189, 0.28);
  background: var(--primary-soft);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.site-header.is-open .nav-toggle__bars {
  background: transparent;
}

.site-header.is-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================
   06. MARQUEE
   ========================================= */
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  border-top: 1px solid rgba(219, 227, 236, 0.8);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  padding: 0.78rem 1rem;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  color: var(--text-soft);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   07. HERO
   ========================================= */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 4rem) 0 2rem;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 18, 30, 0.72) 0%,
    rgba(8, 18, 30, 0.48) 42%,
    rgba(8, 18, 30, 0.26) 100%
  );
}

.hero__copy,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 720px;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.hero__eyebrow {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero__eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(255, 255, 255, 0.25) 35%,
    transparent 60%
  );
  transform: translateX(-140%);
  pointer-events: none;
  animation: shine 5.8s linear infinite;
}

.hero__title {
  margin: 0 0 1rem;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero__points {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.4rem;
}

.hero__points li {
  position: relative;
  padding-left: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.hero__points li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: #7bdba9;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(123, 219, 169, 0.16);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero__trust {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__copy > * {
  animation: fadeUp 560ms ease both;
}

.hero__copy > *:nth-child(2) { animation-delay: 60ms; }
.hero__copy > *:nth-child(3) { animation-delay: 120ms; }
.hero__copy > *:nth-child(4) { animation-delay: 180ms; }
.hero__copy > *:nth-child(5) { animation-delay: 240ms; }
.hero__copy > *:nth-child(6) { animation-delay: 300ms; }

.hero__panel {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  margin-top: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  animation: fadeUp 620ms ease both;
  animation-delay: 180ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  to {
    transform: translateX(160%);
  }
}

/* =========================================
   08. QUOTE FORM
   ========================================= */
.tabs {
  display: flex;
  flex-direction: column;
}

.tabs__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(180deg, #f8fbff, #f2f6fb);
  border-bottom: 1px solid var(--line);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.tabs__tab {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.45rem;
  overflow: hidden;
  min-height: 78px;
  padding: 0.9rem 0.75rem;
  color: var(--text-soft);
  font-weight: 800;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.tabs__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 108, 189, 0.35);
  box-shadow: var(--shadow-sm);
}

.tabs__tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 108, 189, 0.08), transparent 56%);
  opacity: 0;
  transition: opacity var(--transition);
}

.tabs__tab::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--success));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.tabs__tab.is-active,
.tabs__tab[aria-selected="true"] {
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f0f7ff);
  border-color: rgba(15, 108, 189, 0.45);
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.12);
}

.tabs__tab:hover::before,
.tabs__tab.is-active::before,
.tabs__tab[aria-selected="true"]::before {
  opacity: 1;
}

.tabs__tab.is-active::after,
.tabs__tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

.tab__icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: transform var(--transition), color var(--transition);
}

.tab__icon svg {
  width: 100%;
  height: 100%;
}

.tabs__tab:hover .tab__icon,
.tabs__tab.is-active .tab__icon,
.tabs__tab[aria-selected="true"] .tab__icon {
  color: var(--primary-2);
  transform: translateY(-1px) scale(1.04);
}

.tab__label {
  font-size: 0.9rem;
  line-height: 1.1;
}

.tabs__form {
  padding: 1.1rem;
}

.quote-step[hidden] {
  display: none !important;
}

.quote-step.is-active {
  display: block;
}

.tabs__panel {
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0 0.4rem;
}

.tabs__panel[hidden] {
  display: none !important;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

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

.form-row--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  position: relative;
  min-width: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a1b2;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #c4d0dc;
}

.field input:required:valid,
.field select:required:valid,
.field textarea:required:valid {
  background:
    linear-gradient(0deg, rgba(30, 142, 90, 0.03), rgba(30, 142, 90, 0.03)),
    #fff;
  border-color: rgba(30, 142, 90, 0.45);
}

.field input:required:invalid:not(:placeholder-shown),
.field textarea:required:invalid:not(:placeholder-shown),
.field select:required:invalid {
  background:
    linear-gradient(0deg, rgba(209, 69, 69, 0.03), rgba(209, 69, 69, 0.03)),
    #fff;
  border-color: rgba(209, 69, 69, 0.42);
}

.panel-divider {
  height: 1px;
  margin: 0.25rem 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.tabs__form #get-quote.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.18);
}

.quote-box {
  position: relative;
  margin-top: 0;
  padding: 1rem;
  background: linear-gradient(180deg, #fbfdff, #f4f8fc);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 10px 26px rgba(15, 32, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

.quote-box > * {
  position: relative;
  z-index: 1;
}

.quote-box:not(.is-addons-open) .addon-list {
  display: none;
}

.addon-main,
.addon-list,
.quote-customer-summary {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.addon-item__service {
  font-weight: 800;
  color: var(--text);
}

.addon-item__meta {
  margin-top: 0.18rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.addon-item__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.addon-item__price {
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.addon-trigger {
  width: 100%;
  min-height: 48px;
  color: var(--primary);
  font-weight: 800;
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
}

.addon-trigger:hover {
  background: var(--primary-soft);
  border-color: rgba(15, 108, 189, 0.36);
}

.addon-item__btn {
  min-width: 88px;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  color: var(--primary);
  font-weight: 800;
  background: var(--primary-soft);
  border: 1px solid rgba(15, 108, 189, 0.22);
  border-radius: 12px;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.addon-item__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #eaf4ff;
  border-color: rgba(15, 108, 189, 0.38);
}

.addon-item__btn.is-on {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.addon-item__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quote-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quote-price span {
  color: var(--text-soft);
  font-weight: 700;
}

.quote-price strong {
  color: var(--text);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.quote-actions {
  display: grid;
  gap: 0.75rem;
}

#quote-total,
#quote-price {
  font-variant-numeric: tabular-nums;
}

#quote-status {
  min-height: 1.2em;
}

#notes,
#c-msg {
  min-height: 92px;
}

#other-solar-fields[hidden],
#other-lawn-fields[hidden] {
  display: none !important;
}

/* =========================================
   09. SHARED SECTION HEADINGS
   ========================================= */
.section-title {
  position: relative;
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--primary), rgba(30, 142, 90, 0.92));
  border-radius: 999px;
}

.section-lead {
  max-width: 62ch;
  margin-bottom: 1.4rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  text-wrap: balance;
}

.fineprint {
  margin: 0.5rem 0 0;
  color: var(--text-faint);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

/* =========================================
   10. SHARED SECTION SPACING
   ========================================= */
.proof-strip,
.areas,
.services,
.recent-jobs,
.how-it-works,
.prices,
.reviews,
.contact {
  padding: clamp(3.25rem, 6vw, 5.75rem) 0;
}

.contact {
  padding-bottom: 2.25rem;
}

/* =========================================
   11. AREAS
   ========================================= */

.areas__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.areas__intro,
.areas__panel {
  min-width: 0;
}

/* ---------- panel ---------- */

.areas__panel--pro {
  position: relative;
  isolation: isolate;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}

.areas__panel--pro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.areas__panelTop {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ---------- headings ---------- */

.areas__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.15rem;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.areas__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(30, 142, 90, 0.12);
}

.areas__hint {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---------- live status ---------- */

.areas__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  overflow: hidden;
  padding: 0.55rem 0.8rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.areas__pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 10%, rgba(255,255,255,0.25) 35%, transparent 60%);
  transform: translateX(-140%);
  animation: shine 5.8s linear infinite;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(30,142,90,0.14);
}

/* ---------- area shortcuts ---------- */

.areas__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.chip {
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  color: var(--text-soft);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all var(--transition);
}

.chip:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: var(--primary-soft);
  border-color: rgba(15,108,189,0.35);
  box-shadow: 0 10px 20px rgba(15,32,55,0.08);
}

/* ---------- trust bullets ---------- */

.areas__trust {
  display: grid;
  gap: 0.75rem;
}

.areas__trust li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
  font-weight: 600;
}

.areas__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 999px;
}

/* ---------- search ---------- */

.area-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

/* ---------- result panel ---------- */

.areas__result {
  margin-top: 1rem;
  min-height: 172px;
  padding: 1rem;
  background: rgba(255,255,255,0.72);
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  transition: all var(--transition);
}

/* covered (green) */

.areas__result.is-success {
  background:
    linear-gradient(180deg, rgba(30,142,90,0.08), rgba(30,142,90,0.03)),
    #fff;
  border: 1px solid rgba(30,142,90,0.35);
  box-shadow: 0 10px 26px rgba(30,142,90,0.08);
}

/* not covered (orange) */

.areas__result.is-warning {
  background:
    linear-gradient(180deg, rgba(231,155,19,0.10), rgba(231,155,19,0.04)),
    #fff;
  border: 1px solid rgba(231,155,19,0.45);
  box-shadow: 0 10px 26px rgba(231,155,19,0.08);
}

/* ---------- status pill ---------- */

.areas__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.areas__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.areas__status--yes {
  color: var(--success);
  background: rgba(30,142,90,0.12);
}

.areas__status--maybe {
  color: #9a6700;
  background: rgba(231,155,19,0.18);
}

/* ---------- empty state ---------- */

.areas__empty {
  min-height: 140px;
  display: grid;
  place-items: center;
  gap: 0.75rem;
  text-align: center;
}

.areas__emptyIcon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--surface-2);
  border-radius: 16px;
}

.areas__result.is-success {
  background:
    linear-gradient(180deg, rgba(30,142,90,0.08), rgba(30,142,90,0.03)),
    #fff;
  border: 1px solid rgba(30,142,90,0.35);
  box-shadow: 0 10px 26px rgba(30,142,90,0.08);
}

.areas__result.is-warning {
  background:
    linear-gradient(180deg, rgba(231,155,19,0.10), rgba(231,155,19,0.04)),
    #fff;
  border: 1px solid rgba(231,155,19,0.45);
  box-shadow: 0 10px 26px rgba(231,155,19,0.08);
}

.areas__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.areas__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.areas__status--yes {
  color: var(--success);
  background: rgba(30,142,90,0.12);
}

.areas__status--maybe {
  color: #9a6700;
  background: rgba(231,155,19,0.18);
}

/* =========================================
   12. SECTION CARDS + CONTENT SECTIONS
   Services / Jobs / Steps / Prices / Reviews / Contact
   ========================================= */

/* ---------- section spacing ---------- */
.proof-strip,
.services,
.recent-jobs,
.how-it-works,
.prices,
.reviews,
.contact {
  padding: clamp(3.25rem, 6vw, 5.75rem) 0;
}

/* ---------- shared grids ---------- */
.proof-strip__grid,
.services-grid,
.recent-jobs__grid,
.how-it-works__grid,
.pc-track,
.reviews__grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.proof-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid,
.recent-jobs__grid,
.how-it-works__grid,
.pc-track,
.reviews__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- shared card shell ---------- */
.proof-strip__item,
.service-card,
.job-card,
.step-card,
.pc-card,
.review-card,
.contact__left,
.contact__panel--pro {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fafe);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.proof-strip__item:hover,
.service-card:hover,
.job-card:hover,
.step-card:hover,
.pc-card:hover,
.review-card:hover,
.contact__left:hover,
.contact__panel--pro:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 108, 189, 0.22);
  box-shadow: var(--shadow-md);
}

/* =========================================
   13. PROOF STRIP
   ========================================= */
.proof-strip {
  padding-top: 2rem;
}

.proof-strip__item {
  padding: 1.35rem 1.2rem;
}

.proof-strip__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
  background: var(--primary-soft);
  border-radius: 14px;
}

.proof-strip__item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.proof-strip__item p {
  margin: 0;
  font-size: 0.96rem;
}

/* =========================================
   14. SERVICES
   ========================================= */
.service-card__media {
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.service-card__media--windows {
  background:
    linear-gradient(135deg, rgba(15,108,189,0.18), rgba(15,108,189,0.04)),
    linear-gradient(180deg, #cde7ff, #f3f9ff);
}

.service-card__media--jetwash {
  background:
    linear-gradient(135deg, rgba(20,94,168,0.20), rgba(231,242,252,0.08)),
    linear-gradient(180deg, #d4ebff, #f7fbff);
}

.service-card__media--gutters {
  background:
    linear-gradient(135deg, rgba(30,142,90,0.18), rgba(255,255,255,0.06)),
    linear-gradient(180deg, #d8f1e5, #f8fdf9);
}

.service-card__media--bins {
  background:
    linear-gradient(135deg, rgba(120,93,255,0.16), rgba(255,255,255,0.06)),
    linear-gradient(180deg, #e9e2ff, #faf8ff);
}

.service-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
}

.service-card__title {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-card__desc {
  margin: 0;
  min-height: 72px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--primary);
  font-weight: 900;
}

/* =========================================
   15. RECENT JOBS
   ========================================= */
.job-card__media {
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15,108,189,0.16), rgba(15,108,189,0.04)),
    linear-gradient(180deg, #d8ebfb, #eff6fb);
}

.job-card__body {
  padding: 1.15rem;
}

.job-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.job-card__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(30,142,90,0.12);
}

.job-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.job-card__desc {
  margin: 0;
}

/* =========================================
   16. HOW IT WORKS
   ========================================= */
.step-card {
  padding: 1.35rem 1.2rem 1.25rem;
}

.step-card__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(15,108,189,0.22);
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
}

/* =========================================
   17. PRICES
   ========================================= */
.pc-card {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.pc-media {
  min-height: 170px;
  border-bottom: 1px solid var(--line);
}

.pc-media--windows {
  background:
    linear-gradient(135deg, rgba(15,108,189,0.18), rgba(255,255,255,0.05)),
    linear-gradient(180deg, #d4eaff, #f7fbff);
}

.pc-media--jetwash {
  background:
    linear-gradient(135deg, rgba(20,94,168,0.20), rgba(255,255,255,0.05)),
    linear-gradient(180deg, #d8ecff, #f9fcff);
}

.pc-media--gutters {
  background:
    linear-gradient(135deg, rgba(30,142,90,0.18), rgba(255,255,255,0.05)),
    linear-gradient(180deg, #dcf3e5, #fbfefc);
}

.pc-body {
  padding: 1.2rem;
}

.pc-title {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.pc-desc {
  margin: 0 0 0.9rem;
  min-height: 48px;
}

.pc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pc-price {
  color: var(--text-soft);
  font-weight: 700;
}

.pc-price strong {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 900;
}

/* =========================================
   18. REVIEWS
   ========================================= */
.review-card {
  padding: 1.3rem 1.2rem;
}

.review-card__stars {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.45rem 0.65rem;
  color: #efb008;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  background: rgba(239,176,8,0.12);
  border-radius: 999px;
}

.review-card__text {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 600;
}

.review-card__name {
  margin: 0;
  padding-top: 0.85rem;
  color: var(--text-faint);
  font-size: 0.95rem;
  font-weight: 700;
  border-top: 1px dashed var(--line);
}

/* =========================================
   19. CONTACT
   ========================================= */
.contact {
  padding-bottom: 2.25rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
  align-items: start;
}

.contact__left,
.contact__panel--pro {
  min-width: 0;
  padding: 1.4rem;
}

.contact__panelTitle {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.contact__panelLead {
  margin-bottom: 1rem;
}

.contact__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact__list li {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact__list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 0.96rem;
}

.contact__list a {
  color: var(--primary);
  font-weight: 900;
  word-break: break-word;
}

.contact__meta {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-faint);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  color: var(--text-soft);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

/* =========================================
   20. RESPONSIVE FOR THESE SECTIONS
   ========================================= */
@media (max-width: 1180px) {
  .proof-strip__grid,
  .services-grid,
  .recent-jobs__grid,
  .how-it-works__grid,
  .pc-track,
  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .proof-strip__grid,
  .services-grid,
  .recent-jobs__grid,
  .how-it-works__grid,
  .pc-track,
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   13. CONTACT
   ========================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
  align-items: start;
}

.contact__panel {
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.contact__panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.contact__panel h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--primary), rgba(30, 142, 90, 0.92));
  border-radius: 999px;
}

.contact__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact__list li {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact__list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(30, 142, 90, 0.9));
  opacity: 0.9;
}

.contact__list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.contact__list a {
  color: var(--primary);
  font-weight: 900;
  word-break: break-word;
}

.contact__list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

/* =========================================
   14. FOOTER
   ========================================= */
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  color: var(--text-faint);
  border-top: 1px solid var(--line);
}

.footer__row p,
.footer__row .fineprint {
  margin: 0;
}

/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 1180px) {
  .hero__grid,
  .areas__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 860px;
    justify-self: stretch;
  }

  .hero__title {
    max-width: 11ch;
  }

  .proof-strip__grid,
  .services-grid,
  .recent-jobs__grid,
  .how-it-works__grid,
  .pc-track,
  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(15, 32, 55, 0.16);
    backdrop-filter: blur(12px);
  }

  .site-header.is-open .nav a {
    padding: 0.95rem 1rem;
    background: transparent;
    border-radius: 14px;
  }

  .site-header.is-open .nav a:hover {
    background: var(--surface-2);
  }

  .site-header.is-open .nav .btn {
    margin-top: 0.25rem;
  }

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

  .form-row--double,
  .form-row--triple,
  .proof-strip__grid,
  .services-grid,
  .recent-jobs__grid,
  .how-it-works__grid,
  .pc-track,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .area-search {
    grid-template-columns: 1fr;
  }

  .hero__copy > *,
  .hero__panel,
  .hero__eyebrow::after,
  .areas__pill::after,
  .review-card__stars::after {
    animation-duration: 0s;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 1rem), var(--wrap));
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .tabs__tab {
    min-height: 72px;
    padding: 0.75rem 0.55rem;
  }

  .addon-item {
    flex-direction: column;
    align-items: stretch;
  }

  .addon-item__right {
    justify-content: space-between;
  }

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

  .site-header.is-open .nav {
    left: 0.5rem;
    right: 0.5rem;
    top: calc(100% + 0.45rem);
    padding: 0.65rem;
    border-radius: 18px;
  }

  .site-header.is-open .nav a {
    padding: 0.85rem 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


