:root {
  --navy: #0e4c92;
  --navy-2: #102033;
  --blue: #1f7ed6;
  --blue-2: #4aa7df;
  --orange: #f47c20;
  --orange-2: #ffb066;
  --ice: #eef7fc;
  --soft: #f4f8fc;
  --line: #dbe6ef;
  --text: #102033;
  --muted: #5d6e82;
  --white: #ffffff;
  --success: #176f5d;
  --shadow: 0 18px 42px rgba(10, 36, 66, 0.12);
  --grid-blue: rgba(14, 76, 146, 0.055);
  --grid-orange: rgba(244, 124, 32, 0.06);
  --radius: 10px;
  --space: clamp(3.5rem, 7vw, 6.5rem);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(1.85rem, 5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

ul,
ol {
  padding-left: 1.2rem;
}

:focus-visible {
  outline: 3px solid rgba(74, 167, 223, 0.72);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.section {
  padding-block: var(--space);
}

.section-soft,
.section-grid {
  background:
    linear-gradient(var(--grid-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-blue) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(255, 176, 102, 0.12), transparent 28%),
    var(--soft);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.section-grid:not(.section-soft) {
  background-color: #f8fbfe;
}

.section-blue {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 167, 223, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy), #07182d);
}

.section-blue h2,
.section-blue .eyebrow {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.final-image-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 25, 47, 0.94), rgba(7, 25, 47, 0.76)),
    url("../assets/images/hero-homeowners-van.jpg") center / cover no-repeat;
}

.final-image-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.final-image-cta .container {
  position: relative;
  z-index: 1;
}

.problem-section {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 20%, rgba(31, 126, 214, 0.26), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(244, 124, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #07192f, #102033 58%, #0e4c92);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}

.problem-section h2,
.problem-section .eyebrow {
  color: var(--white);
}

.problem-section .lead,
.problem-section p {
  color: rgba(255, 255, 255, 0.82);
}

.problem-section .problem-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.choice-section {
  background:
    linear-gradient(var(--grid-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-blue) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(244, 124, 32, 0.16), transparent 30%),
    #ffffff;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.choice-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 1px solid rgba(14, 76, 146, 0.18);
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 124, 32, 0.24), transparent 28%),
    linear-gradient(135deg, #07192f, #102033 54%, #0e4c92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.choice-panel h2,
.choice-panel .eyebrow {
  color: var(--white);
}

.choice-panel .lead {
  color: rgba(255, 255, 255, 0.84);
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.choice-list span {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0.85rem 0.9rem 0.85rem 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.choice-list span::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid var(--orange-2);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--orange) 0 35%, transparent 38%),
    rgba(244, 124, 32, 0.12);
}

.section-head h2,
.diagnosis-copy h2,
.final-image-cta h2,
.choice-panel h2 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.section-head {
  margin-bottom: 1.6rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 1rem;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.94), rgba(16, 32, 51, 0.74)),
    rgba(16, 32, 51, 0.84);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 340px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
}

.logo-short,
.cta-short {
  display: none;
}

.logo img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--orange);
}

.nav-toggle {
  display: none;
}

.nav-button {
  display: none;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--orange-2);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn::after,
.header-cta::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  margin-left: 0.55rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.btn-primary,
.header-estimate {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(244, 124, 32, 0.28);
}

.header-call {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(31, 126, 214, 0.26);
}

.header-call::after {
  display: none;
}

.btn-primary:hover,
.btn-primary:focus,
.header-estimate:hover,
.header-estimate:focus {
  background: #d96513;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(244, 124, 32, 0.35);
}

.header-call:hover,
.header-call:focus {
  background: #1566b1;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 126, 214, 0.34);
}

.btn:hover::after,
.btn:focus::after,
.header-estimate:hover::after,
.header-estimate:focus::after {
  transform: translateX(4px) rotate(45deg);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--blue);
  border-color: var(--blue-2);
}

.btn-block,
.btn-submit {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: 0;
  padding-top: calc(var(--space) + 7.5rem);
  padding-bottom: calc(var(--space) + 4.5rem);
  display: flex;
  align-items: center;
  background-color: #07192f;
  background-image:
    linear-gradient(90deg, rgba(4, 10, 18, 0.9) 0%, rgba(9, 20, 35, 0.82) 38%, rgba(9, 21, 36, 0.56) 64%, rgba(8, 18, 30, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.34), rgba(5, 10, 16, 0.82)),
    url("../assets/images/hero-homeowners-van.jpg");
  background-position: center top, center top, center center;
  background-size: 100% 100%, 100% 100%, cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 10% 8rem auto;
  width: min(35vw, 520px);
  height: min(35vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.22), transparent 62%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-grid,
.split-grid,
.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.25rem);
}

.hero .hero-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  min-height: min(68vh, 660px);
  align-items: end;
}

.hero-copy .lead {
  max-width: 650px;
}

.hero h1 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.46);
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(244, 124, 32, 0.52);
  border-radius: 8px;
  color: var(--orange-2);
  background: rgba(244, 124, 32, 0.12);
  box-shadow: 0 0 28px rgba(244, 124, 32, 0.12);
}

.hero-service-line {
  max-width: 700px;
  padding-left: 0.95rem;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus {
  color: var(--orange-2);
  border-color: rgba(255, 176, 102, 0.7);
  background: rgba(16, 32, 51, 0.42);
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-badges li {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-support-panel {
  display: grid;
  gap: 1rem;
  align-self: end;
  justify-self: end;
  width: min(100%, 520px);
  padding: clamp(1.1rem, 3vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 32, 51, 0.72), rgba(16, 32, 51, 0.38));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-support-panel .lead {
  margin-bottom: 0;
}

.btn-large {
  min-height: 64px;
  font-size: 1.13rem;
}

.hero-phone {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, rgba(31, 126, 214, 0.72), rgba(16, 32, 51, 0.66));
  font-size: 1.13rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-phone span {
  color: var(--orange-2);
  font-size: 1.2rem;
}

.hero-mini-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.26);
}

.hero-mini-badges span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.hero-mini-badges span:first-child,
.hero-mini-badges span:nth-child(2) {
  color: #ffffff;
}

.hero-mini-badges span:last-child {
  color: var(--orange-2);
}

.hero-integrity-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 7vw, 7rem);
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
}

.hero-integrity-bar span {
  position: relative;
  padding-left: 1.8rem;
}

.hero-integrity-bar span::before {
  content: "\25C7";
  position: absolute;
  left: 0;
  color: var(--white);
}

.hero-card,
.card,
.service-card,
.process-card,
.testimonial-card,
.faq-item,
.note-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.hero-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(16, 32, 51, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-card h2,
.hero-card p {
  color: var(--white);
}

.hero-mini-meter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-mini-meter span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--orange) 0 26%, transparent 27%),
    conic-gradient(var(--orange), var(--blue-2), var(--orange));
  animation: spin 8s linear infinite;
}

.airflow {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 102, 0.85), transparent);
  opacity: 0.72;
  animation: drift 7s ease-in-out infinite;
}

.airflow-one {
  left: 8%;
  top: 22%;
}

.airflow-two {
  left: 16%;
  top: 34%;
  animation-delay: 1.8s;
}

.visual-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 230px;
  margin-bottom: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 36, 66, 0.97), rgba(18, 58, 99, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.18) 18px 20px);
}

.visual-panel::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 18%;
  width: 42%;
  aspect-ratio: 1;
  border: 12px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.visual-panel::after {
  content: "";
  position: absolute;
  right: 11%;
  bottom: 15%;
  width: 39%;
  height: 28%;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.visual-line {
  position: absolute;
  right: 16%;
  width: 28%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.visual-line.one {
  bottom: 28%;
}

.visual-line.two {
  bottom: 20%;
}

.visual-dot {
  position: absolute;
  left: 26%;
  top: 39%;
  width: 42px;
  aspect-ratio: 1;
  border: 8px solid var(--blue-2);
  border-radius: 50%;
  background: var(--white);
}

.mobile-snap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  overflow: visible;
  padding: 0;
  margin-inline: auto;
}

.snap-card {
  width: auto;
  min-width: 0;
}

.card,
.service-card,
.process-card,
.testimonial-card {
  padding: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.service-card:hover,
.process-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 124, 32, 0.42);
  box-shadow: 0 18px 38px rgba(16, 32, 51, 0.12);
}

.card:active,
.service-card:active,
.process-card:active,
.testimonial-card:active {
  transform: translateY(-2px);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.problem-card {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.problem-card h3,
.problem-card p {
  color: var(--white);
}

.card p,
.service-card p,
.process-card p,
.testimonial-card p,
.faq-item p {
  color: var(--muted);
}

.card-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--orange);
  background: #fff2e8;
  font-size: 0.86rem;
  font-weight: 900;
}

.problem-card .card-mark {
  color: var(--white);
  background: var(--orange);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), #fbfdff);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--orange);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 176, 102, 0.72), transparent 26%),
    linear-gradient(135deg, #fff7ef, #edf7ff);
  box-shadow: inset 0 0 0 1px rgba(244, 124, 32, 0.16), 0 12px 24px rgba(16, 32, 51, 0.08);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: rotate(-2deg) scale(1.04);
}

.service-card .service-link {
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
}

.service-card .service-link:hover,
.service-card .service-link:focus {
  color: var(--navy);
}

.estimate-anchor {
  position: relative;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.note-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 5px solid var(--orange);
}

.tech-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.tech-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.tech-photo-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(16, 32, 51, 0.78);
  backdrop-filter: blur(14px);
}

.diagnosis-meter-section {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 78% 16%, rgba(244, 124, 32, 0.2), transparent 32%),
    linear-gradient(135deg, #07192f, #102033 52%, #0e4c92);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.diagnosis-meter-section h2,
.diagnosis-meter-section .eyebrow {
  color: var(--white);
}

.diagnosis-meter-section .lead,
.diagnosis-meter-section p {
  color: rgba(255, 255, 255, 0.82);
}

.diagnosis-meter-section .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  grid-template-areas:
    "copy photo"
    "meter meter";
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.diagnosis-copy {
  grid-area: copy;
}

.diagnosis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.diagnosis-layout .tech-photo-card {
  grid-area: photo;
}

.diagnosis-layout .diagnosis-meter {
  grid-area: meter;
}

.diagnosis-meter {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(16, 32, 51, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.diagnosis-meter .small-muted,
.diagnosis-meter strong,
.diagnosis-meter span {
  color: rgba(255, 255, 255, 0.88);
}

.meter-fan {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--white) 0 18%, transparent 19%),
    conic-gradient(var(--orange), var(--blue), var(--orange-2), var(--blue));
  animation: spin 10s linear infinite;
}

.meter-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 0.8rem;
  font-weight: 850;
}

.meter-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.meter-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 900ms cubic-bezier(.2,.9,.2,1);
}

.diagnosis-meter.is-active .fill-one {
  width: 35%;
}

.diagnosis-meter.is-active .fill-two {
  width: 68%;
}

.diagnosis-meter.is-active .fill-three {
  width: 94%;
}

.customer-stories {
  background:
    linear-gradient(var(--grid-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-blue) 1px, transparent 1px),
    radial-gradient(circle at 16% 12%, rgba(244, 124, 32, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, var(--soft));
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.video-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.4rem;
  border: 1px solid rgba(14, 76, 146, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(14, 76, 146, 0.18), rgba(16, 32, 51, 0.92)),
    radial-gradient(circle at 50% 38%, rgba(255, 176, 102, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), #07192f);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.video-card strong {
  color: var(--white);
  font-size: 1.2rem;
}

.video-card > span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.coming-soon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(244, 124, 32, 0.45);
  animation: pulse 1.8s ease-out infinite;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.modal-backdrop,
.message-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(16, 32, 51, 0.72);
  backdrop-filter: blur(7px);
}

.modal-backdrop[hidden],
.message-modal[hidden],
.quiz-step[hidden],
[data-quiz-submit][hidden] {
  display: none;
}

.estimate-modal {
  position: relative;
  width: min(940px, 100%);
  max-height: min(94vh, 820px);
  overflow: auto;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.modal-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 560px;
}

.modal-intro {
  padding: clamp(1.05rem, 3vw, 1.65rem);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(14, 76, 146, 0.78), rgba(16, 32, 51, 0.84)),
    url("../assets/images/hero-homeowners-van.jpg") center / cover no-repeat;
}

.modal-intro h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.modal-intro h2,
.modal-intro .eyebrow,
.modal-intro p {
  color: var(--white);
}

.modal-quiz-form {
  padding: clamp(0.95rem, 3vw, 1.45rem);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
}

.quiz-progress {
  display: grid;
  gap: 0.36rem;
  margin-bottom: 0.8rem;
  color: var(--navy-2);
  font-weight: 900;
}

.quiz-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef6;
}

.quiz-progress-track span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width 220ms ease;
}

.quiz-step {
  min-height: 245px;
  padding: 0;
  border: 0;
}

.quiz-step h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.65rem;
}

.quiz-error {
  min-height: 1.4rem;
  margin: 0;
  color: #b34100;
  font-weight: 850;
}

.comfort-gauge {
  width: min(100%, 260px);
  height: 10px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.comfort-gauge span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  animation: breathe 2.8s ease-in-out infinite;
}

.message-card {
  position: relative;
  width: min(520px, 100%);
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.35;
  }
  50% {
    transform: translateX(80px);
    opacity: 0.9;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 124, 32, 0.42);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(244, 124, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 124, 32, 0);
  }
}

@keyframes breathe {
  0%, 100% {
    width: 58%;
  }
  50% {
    width: 88%;
  }
}

.quiz-form {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-header {
  padding-bottom: 1.2rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.quiz-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

fieldset {
  padding: 0 0 1.35rem;
  margin: 0 0 1.35rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}

legend,
.question-label {
  width: 100%;
  margin: 0 0 0.9rem;
  color: var(--navy);
  font-weight: 900;
}

.field-grid {
  display: grid;
  gap: 0.75rem;
}

.field-grid.two {
  grid-template-columns: 1fr;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--navy);
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.62rem 0.78rem;
  border: 1px solid #cbd9e7;
  border-radius: var(--radius);
  color: var(--text);
  background: #fbfdff;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(74, 167, 223, 0.28);
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.radio-card {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid #cbd9e7;
  border-radius: var(--radius);
  color: var(--navy);
  background: #fbfdff;
  font-weight: 850;
}

.radio-card:hover,
.radio-card:focus-within {
  border-color: var(--blue);
  background: var(--ice);
}

.radio-card input,
.agreement input {
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.agreement {
  padding: 0.76rem;
  margin-bottom: 0.65rem;
  border-radius: var(--radius);
  background: var(--ice);
}

.agreement label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 800;
}

.btn-submit {
  min-height: 58px;
  border: 0;
  font-size: 1rem;
}

.form-disclaimer,
.small-muted {
  color: var(--muted);
  font-size: 0.93rem;
}

.process-card {
  min-height: 240px;
}

.process-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.testimonial-card {
  margin: 0;
  min-height: 270px;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem;
}

.faq-item h3 {
  margin-bottom: 0.55rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--blue);
}

.page-hero {
  padding-top: calc(var(--space) + 6rem);
  background:
    radial-gradient(circle at 80% 10%, rgba(74, 167, 223, 0.17), transparent 28%),
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.content-panel {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.link-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list a {
  color: var(--blue);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--blue-2);
}

.site-footer {
  padding-block: 3rem;
  color: rgba(255, 255, 255, 0.82);
  background: #07192f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 1.4rem 1.1rem;
}

.footer-grid > div:first-child {
  grid-column: 1 / -1;
}

.footer-grid > div:nth-child(2) {
  grid-column: 1;
  grid-row: 2 / span 2;
}

.footer-grid > div:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.footer-grid > div:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
}

.footer-disclaimer {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (min-width: 480px) {
  .radio-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .site-header .container {
    width: min(100% - 0.75rem, var(--container));
  }

  .nav-button {
    display: inline-flex;
    min-height: 42px;
    padding: 0.55rem 0.62rem;
    font-size: 0.82rem;
  }

  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 58px;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: 14px;
  }

  .logo {
    min-width: 0;
    gap: 0.45rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .logo span {
    display: none;
  }

  .logo::after {
    content: "AlwaysAir";
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 950;
  }

  .logo img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .logo-full,
  .logo-short {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(16, 32, 51, 0.96);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .main-nav a {
    padding: 0.65rem 0;
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-cta {
    width: auto;
    min-height: 42px;
    padding: 0.48rem 0.58rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .header-estimate::after {
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.38rem;
  }

  .hero-card {
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 6.25rem;
    background-color: #07192f;
    background-image:
      linear-gradient(180deg, rgba(5, 11, 20, 0.38) 0%, rgba(5, 11, 20, 0.5) 38%, rgba(7, 25, 47, 0.9) 100%),
      url("../assets/images/hero-mobile-van.jpeg");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
  }

  .hero .container {
    width: min(100% - 2rem, var(--container));
  }

  .hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 1.15rem;
    width: 100%;
    min-height: calc(100svh - 14rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero h1 span {
    display: block;
  }

  .hero .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-service-line {
    max-width: 100%;
    font-size: 1.06rem;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-support-panel {
    width: 100%;
    justify-self: stretch;
    align-self: end;
    margin-top: auto;
    padding: 0.95rem;
  }

  .mobile-snap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .mobile-snap.cols-4,
  .mobile-snap.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #services .mobile-snap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .mobile-snap .snap-card {
    min-width: 0;
    width: auto;
  }

  .mobile-snap .card,
  .mobile-snap .service-card,
  .mobile-snap .process-card,
  .mobile-snap .testimonial-card,
  .mobile-snap .video-card {
    min-height: 0;
    padding: 0.85rem;
  }

  .mobile-snap h3,
  .mobile-snap strong {
    font-size: clamp(0.86rem, 3.4vw, 1rem);
    line-height: 1.15;
  }

  .mobile-snap p,
  .mobile-snap cite,
  .video-card > span:last-child {
    font-size: clamp(0.76rem, 3vw, 0.9rem);
    line-height: 1.32;
  }

  #services .mobile-snap h3,
  #services .mobile-snap p,
  #services .service-link,
  .customer-stories .video-card > span:last-child {
    font-size: clamp(0.58rem, 2.4vw, 0.76rem);
    line-height: 1.18;
  }

  #services .mobile-snap .service-card {
    padding: 0.56rem;
  }

  #services .service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0.46rem;
  }

  .card-mark,
  .service-icon,
  .process-number {
    width: 34px;
    height: 34px;
    margin-bottom: 0.65rem;
    border-radius: 10px;
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
  }

  .video-card {
    aspect-ratio: auto;
  }

  .play-button {
    width: 46px;
    height: 46px;
    top: 34%;
  }

  .play-button::after {
    left: 19px;
    top: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .hero-integrity-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-height: 84px;
    padding-left: 1rem;
  }

  .choice-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 14px;
  }

  .choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .choice-list span {
    min-height: 0;
    padding: 0.72rem 0.62rem 0.72rem 2.15rem;
    font-size: clamp(0.66rem, 2.7vw, 0.82rem);
    line-height: 1.2;
  }

  .choice-list span::before {
    left: 0.62rem;
    width: 0.88rem;
    height: 0.88rem;
  }

  .meter-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .video-card {
    aspect-ratio: auto;
    min-height: 230px;
  }

  .modal-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .estimate-modal {
    max-height: calc(100svh - 1rem);
    border-radius: 14px;
  }

  .modal-intro {
    padding: 0.78rem 4.7rem 0.78rem 0.9rem;
    background:
      linear-gradient(160deg, rgba(14, 76, 146, 0.72), rgba(16, 32, 51, 0.8)),
      url("../assets/images/hero-homeowners-van.jpg") center / cover no-repeat;
  }

  .modal-intro .eyebrow {
    margin-bottom: 0.22rem;
    font-size: 0.62rem;
  }

  .modal-intro h2 {
    margin-bottom: 0.32rem;
    font-size: 1.12rem;
  }

  .modal-intro p {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .comfort-gauge {
    width: 150px;
    height: 7px;
    margin-top: 0.46rem;
  }

  .modal-quiz-form {
    padding: 0.78rem;
  }

  .quiz-progress {
    margin-bottom: 0.52rem;
    font-size: 0.82rem;
  }

  .quiz-progress-track {
    height: 7px;
  }

  .quiz-step {
    min-height: auto;
  }

  .quiz-step h3 {
    margin-bottom: 0.52rem;
    font-size: 1.02rem;
  }

  .radio-group {
    gap: 0.42rem;
  }

  .radio-card {
    min-height: 40px;
    padding: 0.48rem 0.58rem;
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .field-grid {
    gap: 0.52rem;
  }

  .field label,
  .question-label {
    margin-bottom: 0.24rem;
    font-size: 0.84rem;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    min-height: 38px;
    padding: 0.48rem 0.58rem;
  }

  textarea {
    min-height: 66px;
    padding: 0.5rem 0.58rem;
  }

  .agreement {
    padding: 0.56rem;
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .form-disclaimer {
    margin-bottom: 0;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .quiz-controls {
    flex-direction: column;
  }

  .quiz-controls .btn {
    width: 100%;
  }

  .visual-panel {
    min-height: 0;
  }
}

@media (min-width: 768px) {
  .mobile-snap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .mobile-snap.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .snap-card {
    width: auto;
    min-width: 0;
  }

  .card {
    aspect-ratio: auto;
    min-height: 250px;
  }

  .service-card {
    min-height: 270px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.8rem clamp(3rem, 8vw, 7rem);
  }
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .faq-list.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radio-group.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "meter";
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

