/* ── VARIABLES ── */
:root {
  --navy: #174477;
  --navy-light: #1d5499;
  --navy-dark: #0f2e50;
  --navy-deeper: #091d35;
  --green: #37B44A;
  --green-dark: #2a9139;
  --green-glow: rgba(55,180,74,0.15);
  --gray: #767B86;
  --gray-light: #a0a5af;
  --offwhite: #F8F9FB;
  --cream: #FAFAF8;
  --white: #ffffff;
  --black: #1C1C1C;
  --text-body: #3a3f48;
  --border: rgba(23,68,119,0.12);
  --border-light: rgba(23,68,119,0.07);
  --shadow-sm: 0 2px 8px rgba(23,68,119,0.08);
  --shadow-md: 0 4px 24px rgba(23,68,119,0.11);
  --shadow-lg: 0 8px 48px rgba(23,68,119,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --nav-h: 64px;
  --max-w: 960px;
  --section-px: 24px;
  --section-py: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 0; }
body {
  font-family: 'Domine', Georgia, serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5,
nav, button, .btn, .section-label,
.price-amount, .why-num, .step-num,
.service-badge, .report-label, .trust-loan,
.trust-num, .trust-label, .form-group label,
fieldset legend { font-family: 'Montserrat', sans-serif; }

/* ── LAYOUT UTILITIES ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-header { margin-bottom: 40px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-intro,
.section-body {
  font-size: 17px;
  color: var(--text-body);
  max-width: 680px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  min-height: 48px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(55,180,74,0.3); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(23,68,119,0.04); }

.btn-full { width: 100%; margin-top: 20px; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: white;
  font-size: 15px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  margin-top: 8px;
  position: relative;
  min-height: 52px;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }
.btn-submit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-submit.loading .btn-spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0.7; }

@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ── NAV ── */
.nav { display: none; }

/* ── FAB ── */
.fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 300;
  background: var(--green);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 26px;
  height: 52px;
  border-radius: 26px;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(55,180,74,0.45), 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.fab.fab-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab.fab-visible:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 28px rgba(55,180,74,0.55), 0 2px 8px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .fab { transition: opacity 0.3s ease, visibility 0.3s ease; transform: none !important; }
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: none; /* hidden on mobile */
  min-height: 44px;
  align-items: center;
}
.nav-link:hover { color: white; }

.nav-cta {
  background: var(--green);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-cta:focus-visible { outline: 3px solid white; outline-offset: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('/images/inspector-hero.jpg');
  background-size: cover;
  background-position: top center;
  z-index: 0;
}

.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(23,68,119,0.93) 0%, rgba(15,46,80,0.90) 60%, rgba(23,68,119,0.85) 100%);
}

.hero-logo {
  margin-bottom: 36px;
}
.hero-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  padding: 72px var(--section-px) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-glow);
  border: 1px solid rgba(55,180,74,0.3);
  color: #7be98a;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp 0.6s 0.05s ease both;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-headline-em {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.25s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.6s 0.35s ease both;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.6s 0.45s ease both;
}

.trust-loan-types {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.trust-loan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.trust-sep {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

.trust-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.trust-turnaround {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.trust-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── WHAT IS IT ── */
.what-section {
  background: white;
  padding: var(--section-py) 0;
}

.what-intro {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.what-intro p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 780px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.what-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
  overflow: hidden;
}

.what-photo-strip {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.what-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.what-card-body {
  padding: 24px;
}

.what-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.what-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-section {
  background: var(--offwhite);
  padding: var(--section-py) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(23,68,119,0.28);
  transform: translateY(-2px);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.service-card.featured {
  border-color: var(--navy);
  border-width: 2px;
}

.service-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #111;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.3s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.03);
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 1;
}

.img-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.62));
  color: rgba(255,255,255,0.92);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.3;
  pointer-events: none;
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card-body h3 {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.25;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 16px 0 20px;
}

.price-amount {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
}

.price-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.service-card-body > p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.service-includes li {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.service-includes li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── WHY HOUSE FLUENT ── */
.why-section {
  background: var(--navy);
  padding: 0 0 var(--section-py);
  overflow: hidden;
}

.why-section .section-label { color: #7be98a; }
.why-section .section-title { color: white; }
.why-section .section-intro { color: rgba(255,255,255,0.68); }

.why-photo-banner {
  width: 100%;
  height: 260px;
  background-image: url('/images/inspector-outdoor.jpg');
  background-size: cover;
  background-position: center 42%;
  position: relative;
  margin-bottom: 0;
}

.why-photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,68,119,0.15) 0%, var(--navy) 100%);
}

.why-section .section-inner {
  padding-top: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: background 0.2s;
}

.why-card:hover { background: rgba(255,255,255,0.1); }

.why-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: white;
  padding: var(--section-py) 0;
}

.how-layout {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.steps-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-col::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--navy) 100%);
  z-index: 0;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step-marker { flex-shrink: 0; position: relative; z-index: 1; }

.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: white;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px white;
}

.step-content { padding-top: 14px; }

.step-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 540px;
}

.steps-wrap {
  display: flex;
  flex-direction: column;
}

.turnaround-callout {
  margin-top: 36px;
  background: rgba(23,68,119,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.turnaround-icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.turnaround-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.turnaround-text p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.how-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── OUR REPORTS ── */
.reports-section {
  background: var(--offwhite);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.report-frame {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.report-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.report-type {
  font-family: 'Domine', serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.report-img-wrap {
  padding: 20px;
  background: white;
  flex: 1;
  display: flex;
  align-items: center;
}

.report-img-wrap img {
  width: 100%;
  height: auto;
}

.report-caption {
  padding: 10px 18px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--border-light);
}

.reports-note {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reports-note svg { color: var(--navy); flex-shrink: 0; margin-top: 3px; }

.reports-note p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── SERVICE AREA ── */
.area-section {
  background: #eef2f8;
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.area-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  flex-wrap: wrap;
}

.area-pin {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.area-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-section {
  background: white;
  padding: var(--section-py) 0;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  line-height: 1.45;
  transition: background 0.15s;
  min-height: 60px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-q:hover { background: rgba(23,68,119,0.03); }
.faq-q:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.faq-q[aria-expanded="true"] { background: rgba(23,68,119,0.04); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.28s ease;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

.faq-a-inner {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-a-inner p, .faq-a-inner li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-a-inner strong { color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; }

.faq-a-inner ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 4px;
}

.faq-a-inner ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-a-inner ul li::before {
  content: '–';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── MID-PAGE CTA ── */
.section-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-section .section-cta {
  border-top: 1px solid var(--border-light);
  padding-top: 48px;
}

/* ── ORDER CARD PHONE ── */
.order-contact-line {
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.order-contact-line a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.order-contact-line a:hover { text-decoration: underline; }

/* ── ORDER FORM ── */
.order-section {
  background: var(--offwhite);
  padding: var(--section-py) 0;
}

.order-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 36px;
  max-width: 720px;
  box-shadow: var(--shadow-md);
}

.order-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.order-card-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.order-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.req {
  color: var(--green);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d8dfe8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Domine', serif;
  font-size: 15px;
  color: var(--black);
  background: var(--offwhite);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(23,68,119,0.08);
}

.form-group input.error,
.form-group select.error {
  border-color: #d9534f;
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23767B86' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.additions-fieldset {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px 18px;
  margin-bottom: 16px;
}

.additions-fieldset legend {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 6px;
  margin-left: -6px;
}

.checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-height: 28px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--navy);
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 3px;
}

.checkbox-item span {
  font-family: 'Domine', serif;
  font-size: 15px;
  color: var(--black);
  line-height: 1.4;
}

.form-error {
  display: none;
  background: #fdf2f2;
  border: 1px solid #f5c2c7;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #842029;
  margin-bottom: 12px;
  line-height: 1.5;
}

.form-error.visible { display: block; }

.form-disclaimer {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* Success state */
.success-msg {
  text-align: center;
  padding: 40px 20px;
}

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

.success-icon {
  width: 68px;
  height: 68px;
  background: rgba(55,180,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
}

.success-msg h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-msg p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.success-phone a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.success-phone a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deeper);
  padding: 36px var(--section-px);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.8;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover { color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-actions,
  .hero-trust { animation: none; opacity: 1; }
  .btn-spinner { animation: none; }
}

/* ── BREAKPOINTS ── */

/* 480px: modest layout improvements */
@media (min-width: 480px) {
  .hero-actions { flex-wrap: nowrap; }
  .checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; }
}

/* 640px: two-column grids */
@media (min-width: 640px) {
  .nav-link { display: flex; }
  .nav-logo-img { height: 40px; }

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

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

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

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

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

/* 900px: desktop hero split + wider layouts */
@media (min-width: 900px) {
  :root {
    --nav-h: 72px;
    --section-px: 40px;
    --section-py: 96px;
  }
  .nav-logo-img { height: 44px; }

  /* Hero desktop split */
  .hero {
    display: grid;
    grid-template-columns: 58% 42%;
    grid-template-rows: 1fr;
    min-height: 100vh;
  }

  .hero-bg-photo {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    background-size: 125%;
    background-position: center 25%;
    inset: unset;
  }

  .hero-bg-photo::after {
    background: linear-gradient(to right, var(--navy) 0%, transparent 16%);
  }

  .hero-content-wrap {
    grid-column: 1;
    grid-row: 1;
    padding: 100px 60px 80px;
    justify-content: center;
  }

  .hero-logo img { height: 56px; }
  .what-photo-strip { height: 260px; }

  /* Why section */
  .why-photo-banner { height: 340px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  /* How It Works */
  .how-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
  }

  .how-photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 480px;
    position: sticky;
    top: calc(var(--nav-h) + 40px);
  }

  /* Order form wider */
  .order-card {
    padding: 48px 44px 52px;
  }

  /* Footer */
  .footer-nav { gap: 32px; }
}

/* 1100px: max content width refinements */
@media (min-width: 1100px) {
  :root { --section-px: 48px; }

  .hero-content-wrap {
    padding: 100px 80px 80px;
  }
}

/* 1440px: cap hero width on ultra-wide displays */
@media (min-width: 1440px) {
  .hero {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}
