:root {
  --navy: #023a34;
  --navy-2: #0a5147;
  --blue: #e7f3f0;
  --blue-2: #fbf7ee;
  --gray: #f7f4ed;
  --gray-2: #e5dccd;
  --text: #142621;
  --muted: #657169;
  --white: #fffdf8;
  --teal: #0d6b5f;
  --gold: #ce9e5d;
  --shadow: 0 18px 45px rgba(2, 58, 52, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

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

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

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

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-blue {
  background: var(--blue-2);
}

.section-gray {
  background: var(--gray);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.28rem rgba(206, 158, 93, 0.22);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.1rem;
}

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

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(229, 220, 205, 0.92);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.top-strip a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.navbar {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  min-width: 10.5rem;
}

.brand-logo {
  width: 10.75rem;
  height: auto;
  max-height: 4.25rem;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
}

.nav-item {
  position: relative;
}

.nav-has-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-has-dropdown .nav-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  z-index: 20;
  width: min(18.5rem, 82vw);
  padding: 0.45rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.64rem 0.72rem;
  border-radius: calc(var(--radius) - 4px);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  color: var(--teal);
  background: rgba(231, 243, 240, 0.78);
}

.nav-link {
  padding: 0.68rem 0.76rem;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
  color: var(--teal);
  background: rgba(231, 243, 240, 0.78);
}

.nav-quote-link {
  margin-left: 0.25rem;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  font-weight: 900;
}

.nav-quote-link:hover,
.nav-quote-link:focus,
.nav-quote-link.is-active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(2, 58, 52, 0.15);
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

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

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(2, 58, 52, 0.22);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

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

.nav-toggle-lines::before {
  top: -0.42rem;
}

.nav-toggle-lines::after {
  bottom: -0.42rem;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 3rem));
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/lumimaid-cleaning-scenes.webp");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  background-position: 0% 0%;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 58, 52, 0.92), rgba(2, 58, 52, 0.7) 46%, rgba(2, 58, 52, 0.24));
}

.hero-home {
  min-height: min(760px, calc(100svh - 4.5rem));
}

.hero-inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.hero-copy {
  max-width: 820px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.08;
}

.hero p {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-badge {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border: 1px solid rgba(13, 107, 95, 0.2);
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(180deg, var(--blue-2), var(--white));
  font-weight: 850;
  text-align: center;
}

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

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

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

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

.service-card,
.trust-card,
.feature-card,
.checklist-card,
.process-step,
.quote-panel,
.contact-panel,
.review-callout {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 58, 52, 0.08);
}

.service-card {
  overflow: hidden;
}

.service-card .photo-crop {
  min-height: 220px;
}

.service-card-body {
  padding: 1.15rem;
}

.service-card h3,
.feature-card h3,
.trust-card h3,
.checklist-card h3,
.process-step h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.22;
}

.service-card p,
.feature-card p,
.trust-card p,
.checklist-card p,
.process-step p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  color: var(--teal);
  font-weight: 900;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.guide-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 58, 52, 0.08);
}

.guide-card h3 {
  margin: 0.55rem 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.22;
}

.guide-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.guide-card .card-link {
  margin-top: auto;
  padding-top: 0.8rem;
}

.guide-card-meta,
.guide-meta-row {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 2rem;
  align-items: start;
}

.guide-article {
  max-width: 820px;
}

.guide-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.guide-meta-row span {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(13, 107, 95, 0.2);
  border-radius: 999px;
  background: rgba(231, 243, 240, 0.62);
}

.guide-lede {
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.guide-section {
  margin-top: 2.4rem;
}

.guide-section h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.12;
}

.guide-section p {
  color: var(--muted);
}

.guide-callout {
  margin-top: 2.4rem;
  padding: 1.25rem;
  border: 1px solid rgba(206, 158, 93, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #fbf0dc);
  box-shadow: 0 12px 28px rgba(2, 58, 52, 0.08);
}

.guide-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 1.02rem;
}

.guide-callout p {
  margin: 0;
  color: var(--text);
}

.guide-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.2rem);
  display: grid;
  gap: 1rem;
}

.guide-sidebar-card {
  padding: 1.1rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 58, 52, 0.08);
}

.guide-sidebar-card h2 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.18;
}

.guide-sidebar-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-sidebar-card .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.guide-link-list {
  display: grid;
  gap: 0.65rem;
}

.guide-link-list a {
  color: var(--teal);
  font-weight: 850;
}

.feature-card,
.trust-card,
.checklist-card,
.process-step,
.review-callout {
  padding: 1.25rem;
}

.feature-card .feature-number,
.process-number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.95rem;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.highlight-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.highlight-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.25rem rgba(13, 107, 95, 0.13);
}

.compact-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.compact-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--gold);
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow);
}

.photo-crop {
  width: 100%;
  min-height: 320px;
  background-image: url("../images/lumimaid-cleaning-scenes.webp");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  background-color: var(--blue);
}

.photo-cleaner {
  background-position: 0% 0%;
}

.photo-apartment {
  background-position: 100% 0%;
}

.photo-common {
  background-position: 0% 50%;
}

.photo-str {
  background-position: 100% 50%;
}

.photo-kitchen {
  background-position: 0% 100%;
}

.photo-entry {
  background-position: 100% 100%;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mini-stat {
  padding: 1rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
}

.mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.1;
}

.mini-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.comparison-item {
  overflow: hidden;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-item .photo-crop {
  min-height: 260px;
}

.comparison-label {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-weight: 900;
}

.comparison-label span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-list li {
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--gray-2);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 58, 52, 0.07);
}

.faq-item summary {
  padding: 1rem 1.15rem;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.checklist-card ul {
  display: grid;
  gap: 0.55rem;
}

.checklist-card li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--teal);
}

.cta-section {
  padding: 4rem 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.cta-inner p {
  max-width: 650px;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/lumimaid-cleaning-scenes.webp");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  background-position: var(--hero-position, 0% 0%);
  transform: scale(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 58, 52, 0.93), rgba(2, 58, 52, 0.74) 55%, rgba(2, 58, 52, 0.28));
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.meta-pill {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.quote-panel {
  padding: 1.5rem;
}

.quote-panel h2 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: 1.45rem;
}

.quote-wizard {
  position: relative;
  display: block;
  overflow: visible;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(229, 220, 205, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--white), #fbf7ee);
  box-shadow: 0 22px 54px rgba(2, 58, 52, 0.13);
}

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

.wizard-progress {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.wizard-progress-bar {
  height: 0.45rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(2, 58, 52, 0.1);
}

.wizard-progress-bar span {
  display: block;
  width: 14.285%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e5c28f);
  transition: width 280ms ease;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.wizard-steps li {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.wizard-steps span {
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-2);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 16px rgba(2, 58, 52, 0.06);
}

.wizard-steps li.is-active {
  color: var(--navy);
}

.wizard-steps li.is-active span,
.wizard-steps li.is-complete span {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.wizard-steps li.is-complete {
  color: var(--teal);
}

.wizard-viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  transition: height 260ms ease;
}

.wizard-track {
  display: flex;
  align-items: flex-start;
  transform: translateX(0);
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.wizard-step {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0.25rem 0.1rem 0.2rem;
  opacity: 0;
  transform: translateX(1rem);
  transition: opacity 260ms ease, transform 320ms ease;
}

.wizard-step:not(.is-active) {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.wizard-step.is-active {
  max-height: none;
  opacity: 1;
  transform: translateX(0);
}

.wizard-step-heading {
  max-width: 740px;
  margin-bottom: 1.2rem;
}

.wizard-step-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.wizard-step-heading p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.choice-fieldset,
.addon-group {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.choice-fieldset legend,
.addon-group legend {
  margin-bottom: 0.15rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.choice-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  min-height: 6.8rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 28px rgba(2, 58, 52, 0.07);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(206, 158, 93, 0.72);
  box-shadow: 0 16px 34px rgba(2, 58, 52, 0.12);
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card.is-selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf8, #f7ead4);
  box-shadow: 0 18px 40px rgba(2, 58, 52, 0.14);
}

.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf8, #f7ead4);
  box-shadow: 0 18px 40px rgba(2, 58, 52, 0.14);
}

.choice-card.is-selected::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.32rem rgba(206, 158, 93, 0.18);
}

.choice-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.32rem rgba(206, 158, 93, 0.18);
}

.choice-card-small {
  grid-template-columns: 1fr;
  min-height: 3.6rem;
  padding: 0.85rem 1rem;
}

.choice-icon {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.choice-card.is-selected .choice-icon {
  color: var(--navy);
  background: var(--gold);
}

.choice-card:has(input:checked) .choice-icon {
  color: var(--navy);
  background: var(--gold);
}

.choice-text {
  display: grid;
  gap: 0.25rem;
  padding-right: 1rem;
}

.choice-text strong {
  color: var(--navy);
  line-height: 1.15;
}

.choice-text small {
  color: var(--muted);
  line-height: 1.35;
}

.addon-group {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(13, 107, 95, 0.18);
  border-radius: 14px;
  background: rgba(231, 243, 240, 0.58);
}

.addon-group.is-visible {
  display: grid;
}

.addon-question {
  display: grid;
  gap: 0.55rem;
}

.addon-question h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.addon-empty {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px dashed var(--gray-2);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.8);
}

.addon-empty.is-visible {
  display: block;
}

.addon-empty strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.upload-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px dashed rgba(2, 58, 52, 0.32);
  border-radius: 16px;
  background: rgba(231, 243, 240, 0.58);
}

.upload-icon {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}

.upload-card label {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
}

.upload-card p {
  color: var(--muted);
}

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

.review-item {
  padding: 0.9rem;
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  background: var(--white);
}

.review-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.review-item strong {
  color: var(--navy);
  line-height: 1.3;
}

.wizard-error {
  min-height: 1.45rem;
  margin: 0.75rem 0 0;
  color: #8a3f10;
  font-size: 0.92rem;
  font-weight: 850;
}

.wizard-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-2);
}

.wizard-controls .btn {
  min-width: 7.5rem;
}

.wizard-controls .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quote-success-screen {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: clamp(2rem, 8vw, 4.5rem) 1rem;
  text-align: center;
}

.quote-success-screen[hidden] {
  display: none;
}

.success-kicker {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(206, 158, 93, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-success-screen h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.02;
}

.quote-success-screen p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-form {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.jobber-embed-card {
  display: grid;
  gap: 1rem;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.jobber-embed-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.jobber-embed-copy h3 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.jobber-embed-copy p {
  color: var(--muted);
}

.jobber-embed-frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid rgba(229, 220, 205, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.jobber-embed-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.jobber-embed-fallback a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  height: min(820px, calc(100svh - 2rem));
  min-height: min(820px, calc(100svh - 2rem));
  overflow: hidden;
  border: 1px solid rgba(229, 220, 205, 0.95);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.booking-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
  background: linear-gradient(145deg, rgba(2, 58, 52, 0.98), rgba(10, 81, 71, 0.92));
  overflow: hidden;
}

.booking-intro::after {
  content: "";
  position: absolute;
  inset: auto -18% -20% 25%;
  height: 18rem;
  border-radius: 999px;
  background: rgba(206, 158, 93, 0.16);
  filter: blur(16px);
}

.booking-intro > * {
  position: relative;
  z-index: 1;
}

.booking-mark {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}

.booking-intro h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  line-height: 0.98;
}

.booking-intro p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.booking-intro-note {
  display: grid;
  gap: 0.45rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-intro-note strong {
  color: var(--white);
}

.booking-intro-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.booking-panel {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: clamp(1rem, 3vw, 2rem);
}

.booking-progress {
  flex: 0 0 auto;
  margin-bottom: 1.35rem;
}

.booking-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.booking-progress-bar {
  height: 0.52rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(2, 58, 52, 0.1);
}

.booking-progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
  transition: width 340ms ease;
}

.booking-step-dots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.booking-step-dot {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: center;
}

.booking-step-dot span {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-2);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  transition: background 220ms ease, color 220ms ease, border 220ms ease;
}

.booking-step-dot.is-active,
.booking-step-dot.is-complete {
  color: var(--navy);
}

.booking-step-dot.is-active span,
.booking-step-dot.is-complete span {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.booking-viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.booking-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-step {
  display: flex;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 0;
  flex-direction: column;
  opacity: 0;
  transition: opacity 220ms ease;
}

.booking-step.is-active {
  opacity: 1;
}

.booking-step-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0.15rem 0.1rem 1rem;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-step-heading {
  max-width: 760px;
  margin-bottom: 1rem;
}

.booking-step-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
}

.booking-step-heading p {
  margin-top: 0.7rem;
  color: var(--muted);
}

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

.booking-choice-card,
.booking-addon-card {
  position: relative;
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 36px rgba(2, 58, 52, 0.07);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-choice-card:hover,
.booking-choice-card:focus,
.booking-addon-card:hover,
.booking-addon-card:focus {
  transform: translateY(-2px);
  border-color: rgba(206, 158, 93, 0.8);
  box-shadow: 0 18px 42px rgba(2, 58, 52, 0.13);
  outline: none;
}

.booking-choice-card.is-selected,
.booking-addon-card.is-selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf8, #f8ecd8);
  box-shadow: 0 20px 44px rgba(2, 58, 52, 0.15);
}

.booking-choice-card.is-selected::after,
.booking-addon-card.is-selected::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0.34rem rgba(206, 158, 93, 0.2);
}

.booking-card-icon {
  display: inline-flex;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
}

.booking-choice-card.is-selected .booking-card-icon,
.booking-addon-card.is-selected .booking-card-icon {
  color: var(--navy);
  background: var(--gold);
}

.booking-choice-card h3,
.booking-addon-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.booking-choice-card small,
.booking-addon-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.booking-status-pill {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(231, 243, 240, 0.95);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-scope-layout,
.booking-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 1rem;
  align-items: start;
}

.booking-scope-card,
.booking-estimate-card,
.booking-summary-card,
.booking-contact-card {
  padding: 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 36px rgba(2, 58, 52, 0.08);
}

.booking-slider-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.booking-slider-top h3,
.booking-estimate-card h3,
.booking-summary-card h3,
.booking-contact-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.booking-slider-top p {
  margin: 0;
  color: var(--muted);
}

.booking-slider-value {
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 0.95;
  text-align: right;
}

.booking-slider-value span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-range {
  width: 100%;
  accent-color: var(--teal);
}

.booking-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-breakdown {
  display: grid;
  gap: 0.65rem;
}

.booking-quote-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(229, 220, 205, 0.88);
}

.booking-quote-row span:first-child {
  color: var(--muted);
  font-weight: 750;
}

.booking-quote-row strong {
  color: var(--navy);
  text-align: right;
}

.booking-quote-row.is-total {
  align-items: center;
  margin-top: 0.25rem;
  padding: 0.9rem;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  font-size: 1.15rem;
  font-weight: 950;
}

.booking-estimate-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.booking-addon-card {
  min-height: 8rem;
}

.booking-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.booking-trust-badge {
  display: flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border: 1px solid rgba(13, 107, 95, 0.18);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(231, 243, 240, 0.7);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.booking-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-2);
  background: rgba(255, 253, 248, 0.94);
}

.booking-actions .btn {
  min-width: 7.5rem;
}

.booking-error {
  min-height: 1.3rem;
  margin: 0.7rem 0 0;
  color: #8a3f10;
  font-size: 0.9rem;
  font-weight: 850;
}

.booking-success {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: clamp(2rem, 8vw, 4.5rem) 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.booking-success[hidden] {
  display: none;
}

.booking-success h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.02;
}

.booking-success p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-success-summary {
  width: min(100%, 620px);
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  background: var(--gray);
  text-align: left;
}

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

.form-field {
  display: grid;
  gap: 0.42rem;
}

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

.form-field label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.74rem 0.85rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  outline: none;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 107, 95, 0.16);
}

.conditional-fieldset {
  display: none;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(13, 107, 95, 0.25);
  border-radius: var(--radius);
  background: var(--blue-2);
}

.conditional-fieldset.is-visible {
  display: block;
}

.conditional-fieldset legend {
  padding: 0 0.35rem;
  color: var(--navy);
  font-weight: 900;
}

.form-help {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-help[data-file-summary] {
  display: block;
  margin-top: 0.55rem;
  color: var(--navy);
  font-weight: 800;
}

.success-message {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(13, 107, 95, 0.35);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(13, 107, 95, 0.1);
  font-weight: 800;
}

.success-message.is-visible {
  display: block;
}

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

.contact-panel {
  padding: 1.35rem;
}

.contact-panel-wide {
  max-width: 900px;
  margin: 0 auto;
}

.contact-panel-wide h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.contact-panel h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.contact-panel a {
  color: var(--teal);
  font-weight: 900;
}

.contact-panel .btn-primary {
  color: var(--white);
}

.contact-panel .btn-secondary {
  color: var(--navy);
}

.walkthrough-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.walkthrough-form .section-heading {
  margin-bottom: 1.35rem;
}

.walkthrough-form .section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.walkthrough-form .btn {
  margin-top: 1rem;
}

.walkthrough-success {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: clamp(2rem, 7vw, 4rem) 1rem;
  text-align: center;
}

.walkthrough-success[hidden] {
  display: none;
}

.walkthrough-success h3 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.walkthrough-success p {
  max-width: 560px;
  color: var(--muted);
}

.walkthrough-error {
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
  color: #8a3f10;
  font-size: 0.92rem;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #012820;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.footer-main h3,
.footer-main h4 {
  margin: 0 0 0.9rem;
  color: var(--white);
}

.footer-main p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 1180px) {
  .navbar {
    position: relative;
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header-height) - 2rem);
    overflow-y: auto;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 0.92rem 1rem;
    font-size: 0.96rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-has-dropdown .nav-link {
    display: flex;
  }

  .nav-has-dropdown .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    width: auto;
    margin: -0.2rem 0 0.35rem 0;
    padding: 0.2rem 0.35rem 0.35rem 0.7rem;
    border: 0;
    border-left: 2px solid rgba(13, 119, 102, 0.22);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 0.5rem 0.65rem;
    font-size: 0.91rem;
  }

  .nav-quote-link {
    margin-left: 0;
    text-align: center;
  }

  .header-actions {
    justify-self: end;
  }

  .phone-link {
    display: none;
  }

  .trust-grid,
  .grid-4,
  .guide-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .checklist-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .guide-layout,
  .quote-layout,
  .contact-grid,
  .booking-card,
  .booking-scope-layout,
  .booking-contact-layout {
    grid-template-columns: 1fr;
  }

  .quote-layout {
    gap: 1.25rem;
  }

  .wizard-steps {
    grid-template-columns: repeat(7, minmax(4.8rem, 1fr));
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .booking-intro {
    min-height: auto;
  }

  .booking-intro h2 {
    max-width: 16ch;
  }

  .booking-intro-note {
    display: none;
  }

  .booking-card {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .booking-panel {
    min-height: auto;
  }

  .booking-viewport {
    overflow: visible;
  }

  .booking-track {
    display: block;
    height: auto;
    transform: none !important;
    transition: none;
  }

  .booking-step {
    display: none;
    flex: 0 1 auto;
    min-width: 0;
    opacity: 1;
  }

  .booking-step.is-active {
    display: flex;
  }

  .booking-step-scroll {
    flex: 0 1 auto;
    overflow: visible;
    padding-bottom: 5.5rem;
    overscroll-behavior-y: auto;
  }

  .booking-actions {
    position: sticky;
    bottom: 1rem;
    z-index: 8;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-2);
    border-radius: 16px;
    box-shadow: 0 -16px 30px rgba(2, 58, 52, 0.09);
  }

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

  .guide-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 64px;
  }

  .top-strip {
    display: none;
  }

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

  .navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--header-height);
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 7.8rem;
    max-height: 3rem;
  }

  .nav-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  .nav-menu {
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    padding: 0.6rem;
    border-radius: 14px;
  }

  .nav-link {
    padding: 0.86rem 0.9rem;
    font-size: 0.95rem;
  }

  .nav-quote-link {
    margin-top: 0.25rem;
  }

  .hero,
  .hero-home {
    min-height: clamp(460px, 72svh, 620px);
  }

  .hero::after,
  .page-hero::after {
    background: linear-gradient(180deg, rgba(2, 58, 52, 0.9), rgba(2, 58, 52, 0.76));
  }

  .hero-inner {
    padding: 3.35rem 0 4.25rem;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    line-height: 1.06;
  }

  .hero p {
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .button-row {
    width: 100%;
    max-width: 25rem;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
    min-height: 3.05rem;
    text-align: center;
  }

  .trust-strip {
    margin-top: -1.4rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .guide-grid,
  .guide-grid-compact,
  .checklist-grid,
  .process-grid,
  .choice-grid,
  .choice-grid-compact,
  .review-summary,
  .form-grid,
  .footer-main,
  .comparison,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.65rem;
  }

  .trust-badge {
    min-height: 3.2rem;
    padding: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .trust-badge:last-child {
    grid-column: 1 / -1;
  }

  .guide-card {
    min-height: auto;
  }

  .guide-sidebar {
    grid-template-columns: 1fr;
  }

  .guide-meta-row {
    gap: 0.42rem;
  }

  .guide-section {
    margin-top: 2rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-tight {
    padding: 2.6rem 0;
  }

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

  .cta-inner h2,
  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .photo-crop {
    min-height: 250px;
  }

  .service-card .photo-crop {
    min-height: 190px;
  }

  .page-hero {
    min-height: auto;
    padding: 4rem 0 3.25rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-meta {
    gap: 0.45rem;
  }

  .meta-pill {
    padding: 0.44rem 0.62rem;
    font-size: 0.84rem;
  }

  .booking-card {
    height: auto;
    min-height: auto;
    overflow: visible;
    border-radius: 20px;
  }

  .booking-intro {
    padding: 1rem;
  }

  .booking-mark {
    width: 2.55rem;
    height: 2.55rem;
    margin-bottom: 0.65rem;
    border-radius: 13px;
  }

  .booking-intro h2 {
    font-size: 2.1rem;
  }

  .booking-intro p {
    font-size: 0.92rem;
  }

  .booking-panel {
    min-height: auto;
    padding: 1rem;
  }

  .booking-progress {
    margin-bottom: 1rem;
  }

  .booking-step-dots {
    gap: 0.2rem;
  }

  .booking-step-dot {
    font-size: 0;
  }

  .booking-step-dot.is-active::after {
    content: attr(data-label);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 900;
  }

  .booking-step-dot span {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }

  .booking-card-grid,
  .booking-addon-grid,
  .booking-trust-row {
    grid-template-columns: 1fr;
  }

  .booking-choice-card,
  .booking-addon-card {
    min-height: auto;
    padding: 0.9rem;
  }

  .booking-card-icon {
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.65rem;
    border-radius: 12px;
  }

  .booking-slider-top {
    align-items: start;
    flex-direction: column;
  }

  .booking-slider-value {
    text-align: left;
  }

  .booking-actions {
    position: sticky;
    bottom: 4.75rem;
    z-index: 4;
    margin: 0 -1rem -1rem;
    padding: 0.65rem 1rem;
    box-shadow: 0 -16px 30px rgba(2, 58, 52, 0.09);
  }

  .booking-form.is-mobile-active .booking-panel {
    padding-bottom: 6.25rem;
  }

  .booking-form.is-mobile-active .booking-actions {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 4.65rem;
    z-index: 1100;
    margin: 0;
    padding: 0.65rem;
    border: 1px solid var(--gray-2);
    border-radius: 16px;
  }

  .booking-actions .btn {
    flex: 1;
    min-width: 0;
  }

  .quote-wizard {
    display: flex;
    flex-direction: column;
    max-height: calc(100svh - var(--header-height) - 5.75rem);
    padding: 0.85rem;
    border-radius: 14px;
  }

  .wizard-progress {
    flex: 0 0 auto;
  }

  .wizard-viewport {
    min-height: 14rem;
    max-height: calc(100svh - var(--header-height) - 16.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .wizard-steps {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.18rem;
    overflow: visible;
    padding-bottom: 1.25rem;
  }

  .wizard-steps li {
    position: relative;
    min-width: 0;
    font-size: 0;
    gap: 0;
  }

  .wizard-steps span {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }

  .wizard-steps li.is-active::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: calc(100% + 0.35rem);
    transform: translateX(-50%);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
  }

  .wizard-step-heading {
    margin-bottom: 1rem;
  }

  .wizard-step {
    padding-bottom: 0.75rem;
  }

  .choice-card {
    grid-template-columns: 2.55rem 1fr;
    min-height: auto;
    align-items: start;
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .choice-card-small {
    grid-template-columns: 1fr;
    min-height: 3.3rem;
  }

  .choice-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 10px;
    font-size: 0.62rem;
  }

  .choice-text {
    padding-right: 0.7rem;
  }

  .choice-text strong {
    font-size: 0.96rem;
  }

  .choice-text small {
    font-size: 0.84rem;
  }

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

  .upload-card input[type="file"] {
    max-width: 100%;
  }

  .wizard-controls {
    position: static;
    flex: 0 0 auto;
    z-index: 10;
    margin-inline: -0.85rem;
    margin-bottom: -0.85rem;
    padding: 0.85rem;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 -12px 26px rgba(2, 58, 52, 0.08);
    backdrop-filter: blur(12px);
  }

  .wizard-controls .btn {
    flex: 1;
    min-width: 0;
  }

  .quote-panel,
  .contact-panel {
    padding: 1rem;
  }

  .jobber-embed-frame {
    min-height: 780px;
  }

  .comparison-label {
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 1200;
    display: inline-flex;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 28px rgba(2, 58, 52, 0.28);
    font-weight: 950;
  }

  body {
    padding-bottom: 5.1rem;
  }
}

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

  .brand-logo {
    width: 7.15rem;
  }

  .hero,
  .hero-home {
    min-height: clamp(440px, 70svh, 580px);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.3rem);
  }

  .hero-inner {
    padding: 3rem 0 3.75rem;
  }

  .quote-panel {
    padding: 0.85rem;
  }

  .quote-wizard {
    max-height: calc(100svh - var(--header-height) - 5.35rem);
  }

  .wizard-viewport {
    min-height: 13rem;
    max-height: calc(100svh - var(--header-height) - 15.75rem);
  }

  .choice-card {
    grid-template-columns: 2.35rem 1fr;
    gap: 0.62rem;
  }

  .choice-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .mobile-call {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

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