/* ============================================================
   RAPP — Roof Asset Protection Program
   v2 — clean, strong, professional commercial-roofing look
   Type: Archivo (display) + Inter (body).  Palette: navy / white / gray, red used sparingly.
   ============================================================ */

:root {
  --navy: #0f2747;
  --navy-deep: #0a1c34;
  --ink: #1a2332;
  --muted: #5b6b82;
  --hairline: #e2e8f0;
  --surface: #f4f6f9;
  --white: #ffffff;
  --red: #d51f26;
  --red-dark: #b3121a;
  --shadow-sm: 0 1px 2px rgba(15, 39, 71, 0.06), 0 2px 8px rgba(15, 39, 71, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 39, 71, 0.12);
  --radius: 5px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: "Archivo", "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

a { color: var(--navy); }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* Thin single accent rule at the very top */
.topbar { height: 3px; background: var(--red); }

/* ============================================================
   Eyebrow label
   ============================================================ */
.eyebrow {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  display: inline-block;
  margin-bottom: 14px;
}

/* ============================================================
   Header + de-bounced underline nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav > a:not(.nav-cta) {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-nav > a:not(.nav-cta):hover { color: var(--navy); }
.site-nav > a[aria-current="page"]:not(.nav-cta) { color: var(--navy); }

/* Sliding underline — no bounce, no pill */
.nav-underline {
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
}
.nav-underline.ready {
  opacity: 1;
  transition: left 0.22s ease, width 0.22s ease;
}

.nav-cta { margin-left: 10px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Buttons — squared, solid, no motion
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

/* ============================================================
   Hero — full-bleed static image, navy overlay, left aligned
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture, .page-hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 52, 0.94) 0%, rgba(10, 28, 52, 0.82) 45%, rgba(10, 28, 52, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 104px 0;
  max-width: 720px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  font-weight: 800;
}
.hero p.hero-sub {
  margin-top: 20px;
  font-size: clamp(16px, 2.2vw, 19px);
  color: #cdd9ea;
  max-width: 560px;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Page hero — compact, solid navy (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.page-hero-media { position: absolute; inset: 0; opacity: 0.28; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 52, 0.96), rgba(10, 28, 52, 0.7));
}
.page-hero-inner { position: relative; z-index: 1; padding: 66px 0; max-width: 840px; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 46px); }
.page-hero .lede { margin-top: 16px; color: #cdd9ea; font-size: 18px; max-width: 720px; }

/* ============================================================
   Sections & headings
   ============================================================ */
.section { padding: 88px 0; }
.section--surface { background: var(--surface); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.8vw, 40px); }
.section-head .lede { margin-top: 14px; color: var(--muted); font-size: 18px; }

/* ============================================================
   Fact band (real flyer facts, bold)
   ============================================================ */
.fact-band { background: var(--navy); color: #fff; }
.credbar {
  text-align: center;
  padding: 16px 0;
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9c8de;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.credbar strong { color: #fff; font-weight: 700; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact {
  padding: 40px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact .fact-num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}
.fact .fact-num em { font-style: normal; color: #ff5a60; }
.fact .fact-cap { margin-top: 10px; font-size: 14.5px; color: #b9c8de; }

/* ============================================================
   Media wrapper
   ============================================================ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
  aspect-ratio: 16 / 10;
}
.media--card { aspect-ratio: 4 / 3; }
.media--wide { aspect-ratio: 16 / 9; }
.media > img, .media > picture { width: 100%; height: 100%; }
.media > picture { display: block; }
.media > img, .media > picture > img { width: 100%; height: 100%; object-fit: cover; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  text-decoration: none;
}
.textlink svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.textlink:hover svg { transform: translateX(4px); }

/* ============================================================
   Program highlights grid (icon + label)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Four-up variant — 2×2 rather than a 3 + 1 orphan row */
.feature-grid--four { grid-template-columns: repeat(2, 1fr); }
.feature {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  border-top: 3px solid var(--navy);
  transition: box-shadow 0.2s ease, border-top-color 0.2s ease;
}
.feature:hover { box-shadow: var(--shadow-md); border-top-color: var(--red); }
.feature .ficon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  margin-bottom: 16px;
}
.feature .ficon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   Page cards (home: link to the four sections)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .media { border-radius: 0; }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 19px; }
.card-body p { font-size: 14.5px; color: var(--muted); flex: 1; }

/* ============================================================
   Contractor path
   ============================================================ */
.contractor-callout,
.contractor-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: center;
}
.contractor-callout {
  padding: 48px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contractor-callout h2,
.contractor-copy h2 { font-size: clamp(27px, 3.4vw, 36px); }
.contractor-callout p,
.contractor-copy p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.contractor-media-grid { grid-template-columns: 1fr 1fr; }
.contractor-copy .btn { margin-top: 24px; }

/* ============================================================
   Split rows (problem page)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 46px 0;
}
.split + .split { border-top: 1px solid var(--hairline); }
.split.flip .split-media { order: -1; }
.split-text .rownum {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--red);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.split-text h3 { font-size: 26px; margin-bottom: 12px; }
.split-text .summary { font-size: 17px; color: var(--ink); font-weight: 500; }
.split-text .detail { margin-top: 12px; font-size: 15.5px; color: var(--muted); }

/* ============================================================
   Numbered program list (solution page)
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
}
.step:first-child { border-top: 0; }
.step-num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  padding-top: 2px;
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step .summary { font-size: 16.5px; font-weight: 500; color: var(--ink); }
.step .detail { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* Without a cap these render the full width of the step column (~1100px) and
   dwarf the step text they belong to. */
.inline-media { margin: 14px 0 22px; max-width: 640px; }

/* ============================================================
   Comparison (how warranties work)
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.compare-head {
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  padding: 14px 20px;
  background: var(--navy);
  border-radius: var(--radius);
}
.compare-head.roof { background: var(--red); }
.comp-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.comp-card.roof { border-left-color: var(--red); }
.comp-card .comp-k {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.comp-card h3 { font-size: 16.5px; margin: 3px 0 5px; }
.comp-card p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   Benefits list (SVG check, no playful marks)
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.benefit .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--red);
  margin-top: 2px;
}
.benefit .check svg { width: 24px; height: 24px; }
.benefit p { font-size: 15.5px; color: var(--ink); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--navy-deep); color: #fff; }
.cta-inner {
  padding: 72px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-copy { max-width: 560px; }
.cta-copy h2 { color: #fff; font-size: clamp(28px, 3.6vw, 38px); }
.cta-copy p { margin-top: 12px; color: #cdd9ea; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 300px; }
.cta-actions .btn { justify-content: flex-start; }

/* ============================================================
   Contact cards (SVG icons, not emoji)
   ============================================================ */
.contact-grid {
  display: grid;
  /* 300px min keeps 3-up on desktop but drops to 2-up before the email
     address is too wide for its card. */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card .cicon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  margin-bottom: 16px;
}
.contact-card .cicon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-card .value { font-family: "Archivo", sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 4px; overflow-wrap: anywhere; }

/* ============================================================
   Contact form
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
  gap: 40px;
  align-items: start;
}
.form-panel {
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-aside h3 { font-size: 17px; margin-bottom: 18px; }
.form-aside ol { list-style: none; counter-reset: step; }
.form-aside li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 14.5px;
  color: var(--muted);
}
.form-aside li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.form-aside strong { color: var(--ink); font-weight: 600; }
.form-aside .aside-rule { border: 0; border-top: 1px solid var(--hairline); margin: 26px 0 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row .field { margin-bottom: 0; }
.field label {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  padding: 12px 14px;
  border: 1px solid #c9d3e0;
  border-radius: var(--radius);
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 71, 0.12);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--red); }
.field .err { font-size: 13px; color: var(--red-dark); min-height: 0; }

/* Spam honeypot — hidden from people, visible to naive bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.form-actions .btn[disabled] { opacity: 0.6; pointer-events: none; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 18px; }

.form-status { font-size: 15px; font-weight: 500; }
.form-status.ok { color: #12693a; }
.form-status.bad { color: var(--red-dark); }

.form-success {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-left: 4px solid #12693a;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 760px;
}
.form-success svg { width: 26px; height: 26px; color: #12693a; flex-shrink: 0; margin-top: 2px; }
.form-success h3 { font-size: 19px; margin-bottom: 4px; }
.form-success p { color: var(--muted); font-size: 15px; }
[hidden] { display: none !important; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-deep); color: #9fb2cc; padding: 56px 0 30px; font-size: 14.5px; }
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-brand { background: #fff; border-radius: var(--radius); padding: 10px 16px; display: inline-flex; }
.footer-brand img { height: 40px; width: auto; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.footer-col a { color: #cdd9ea; text-decoration: none; display: block; line-height: 2; }
.footer-col a:hover { color: #fff; }
.footer-note { max-width: 320px; line-height: 1.7; }
.footer-note strong { color: #fff; }
.footer-legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #6c809b;
}

/* ============================================================
   Reveal once (subtle, one-time)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

/* ============================================================
   Responsive
   ============================================================ */
/* Six labels plus the Get Started button need ~1145px on one line (nav 946 +
   logo 125 + gap 24 + container margins 48). Below that they wrap to two lines,
   so collapse to the hamburger — not at 1000px, which was sized for five. */
@media (max-width: 1160px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
    padding: 12px 20px 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.nav-cta) { padding: 12px 10px; border-radius: var(--radius); }
  .site-nav > a:not(.nav-cta):hover { background: var(--surface); }
  .nav-underline { display: none; }
  .nav-cta { margin: 10px 0 0; }
}

@media (max-width: 1000px) {
  .hero-inner { padding: 72px 0; }
  .cta-actions { min-width: 0; width: 100%; }
}

@media (max-width: 940px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { border-left: 0; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .fact:nth-child(-n+2) { border-top: 0; }
  .split, .compare-grid, .benefit-grid, .contractor-callout, .contractor-media-grid { grid-template-columns: 1fr; }
  .split { gap: 26px; padding: 32px 0; }
  .split.flip .split-media { order: 0; }
  .form-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel { padding: 30px 24px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
}

/* ============================================================
   Reduced motion — nothing moves on its own or on interaction
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
