/* ------------------------------------------------------------------
   SwiftPro — HVAC second-opinion landing page
   Single consolidated stylesheet. Sections:
   1. Tokens & base   2. Buttons   3. Header   4. Hero   5. Offer
   6. Proof           7. Request   8. Form     9. FAQ    10. Closing
   11. Footer         12. Motion   13. Responsive
   ------------------------------------------------------------------ */

/* 1. Tokens & base ------------------------------------------------- */
:root {
  --blue: #004299;
  --navy: #07396d;
  --orange: #f47920;
  --orange-hover: #ff8a35;
  --ink: #153553;
  --muted: #526477;
  --pale: #f2f6fa;
  --pale-2: #e8eff6;
  --line: #dbe3ea;
  --bg: #fcfcfa;
  --radius: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --heading: 'Open Sans', system-ui, sans-serif;
  --ui: 'Poppins', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 var(--heading);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: clamp(24px, 4.2vw, 76px);
  padding-right: clamp(24px, 4.2vw, 76px);
}

.eyebrow {
  font: 600 11px/1.7 var(--ui);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
}
.eyebrow--dot::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: 1px;
}

h1 {
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -2.9px;
  font-weight: 800;
  color: var(--navy);
  max-width: 720px;
  margin-bottom: 0;
  text-wrap: balance;
}
.headline-top {
  display: block;
  font-size: .66em;
  line-height: 1.18;
  letter-spacing: -1.7px;
  margin-bottom: 22px;
}
h1 em { display: block; }
em { font-style: normal; color: var(--blue); }

h2 {
  font-size: clamp(32px, 3.5vw, 49px);
  line-height: 1.15;
  letter-spacing: -1.7px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  text-wrap: balance;
}
h3 { line-height: 1.35; letter-spacing: -.3px; color: var(--navy); }

.cta-note { font-size: 12px; color: var(--muted); margin: 0; }
.caption-label {
  display: block;
  font: 600 10px/1.8 var(--ui);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* 2. Buttons ------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #12294a;
  font: 600 15px/1.2 var(--ui);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .10);
  transition: background .2s ease, transform .2s var(--ease), box-shadow .2s ease, border-color .2s ease;
}
.button:active { transform: translateY(0) scale(.985); }

.button--ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #cfd9e3;
  box-shadow: none;
}
.button--small { min-height: 46px; padding: 0 22px; font-size: 14px; }
.button--block { width: 100%; }
.button[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* Booking CTA (ServiceTitan) states — see booking-cta.js */
.booking-slot { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.booking-cta--pending {
  background: var(--pale-2);
  color: var(--muted);
  box-shadow: none;
  cursor: default;
}
.booking-cta--pending:hover { background: var(--pale-2); transform: none; box-shadow: none; }
.booking-fallback { font-size: 14px; color: var(--muted); margin: 0; }
.booking-fallback a { color: var(--blue); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.booking-fallback--primary { font-size: 15px; color: var(--ink); }

/* 3. Header -------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: #fff;
  font: 500 11px/1.5 var(--ui);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; }
.topbar-phone { color: #fff; text-decoration: none; letter-spacing: .3px; text-transform: none; font-weight: 600; white-space: nowrap; }
.topbar-phone:hover { color: #fba768; }

.header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { object-fit: contain; }

/* 4. Hero ---------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(40px, 5vw, 82px);
  align-items: center;
  padding-top: 28px;
  padding-bottom: 96px;
}
.hero .eyebrow { margin-bottom: 26px; }
.intro {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 28px 0 0;
}
.hero-actions { margin-top: 32px; }
.hero-actions .cta-note { margin-top: 14px; max-width: 380px; }

.hero-photo {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 49% center;
}
/* Crossfading hero slides. The first slide is active without JS. */
.hero-slide { opacity: 0; transition: opacity 1.4s ease-in-out; will-change: opacity; }
.hero-slide.is-active { opacity: 1; }
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 40, 67, .82));
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  left: 34px; right: 34px; bottom: 32px;
  z-index: 1;
  color: #fff;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}
.hero-photo .caption-label { margin-bottom: 6px; color: #dbe6f2; }
.hero-photo strong {
  display: block;
  font: 700 28px/1.25 var(--heading);
  letter-spacing: -.6px;
}

/* 5. Offer --------------------------------------------------------- */
.offer {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: 44px clamp(28px, 3.5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(22, 63, 96, .06);
  margin-bottom: 96px;
}
.offer .eyebrow { margin-bottom: 12px; }
.offer h2 { font-size: clamp(26px, 2.2vw, 32px); letter-spacing: -1px; margin: 0; }
.offer-terms { position: relative; padding-left: 28px; }
.offer-terms::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: var(--orange);
}
.offer-terms p { font-size: 15px; line-height: 1.8; margin-bottom: 10px; }
.offer-terms p:last-child { margin-bottom: 0; }
.offer-terms strong { color: var(--navy); }

/* 6. Proof --------------------------------------------------------- */
.proof-section { background: #edf2f5; padding: 88px 0 96px; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { max-width: 900px; margin: 0; }
.section-heading h2 em,
.request-intro h2 em,
.faq h2 em { display: block; }

.proof-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 4.5vw, 80px);
  align-items: stretch;
}

.service-photo {
  position: relative;
  margin: 0;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #184878;
}
.service-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 43% center;
  transition: transform .7s var(--ease);
}
.service-photo::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 40, 67, .9));
}
.service-photo figcaption {
  position: absolute;
  left: 32px; right: 32px; bottom: 30px;
  z-index: 1;
  color: #fff;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}
.service-photo .caption-label { color: #dbe6f2; margin-bottom: 8px; }
.service-photo strong {
  display: block;
  font: 700 26px/1.25 var(--heading);
  letter-spacing: -.6px;
  max-width: 380px;
}

.proof-list { display: flex; flex-direction: column; justify-content: center; }
.proof-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid #d4dee7;
}
.proof-item:last-of-type { border-bottom: 1px solid #d4dee7; }
.proof-icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 1px 0 rgba(7, 57, 109, .06), 0 8px 20px rgba(7, 57, 109, .07);
  transition: background .25s ease, color .25s ease, transform .3s var(--ease);
}
.proof-icon svg { width: 26px; height: 26px; }
.proof-label {
  font: 600 11px/1 var(--ui);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 10px;
}
.proof-item h3 { font-size: 24px; margin: 0 0 8px; }
.proof-item p:last-child { font-size: 15px; color: var(--muted); max-width: 520px; margin: 0; }

.proof-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding-top: 34px;
}

/* 7. Request ------------------------------------------------------- */
.request-section {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  max-width: 1460px;
  padding-top: 110px;
  padding-bottom: 100px;
}
.request-intro { position: sticky; top: 36px; }
.request-intro h2 { font-size: clamp(34px, 3vw, 46px); }
.request-lead { color: var(--muted); max-width: 400px; }

.steps { list-style: none; margin: 0; padding: 14px 0 0; }
.steps li {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pale-2);
  color: var(--blue);
  text-align: center;
  line-height: 38px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.steps li:hover > span { background: var(--blue); color: #fff; }
.steps h3 { font-size: 16px; margin: 6px 0 6px; }
.steps p { font-size: 14px; color: var(--muted); margin: 0; }

.prepared {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  background: #edf2f5;
  border-radius: 14px;
  padding: 24px 26px;
  margin-top: 34px;
}
.prepared-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--blue);
}
.prepared-icon svg { width: 22px; height: 22px; }
.prepared h3 { font-size: 17px; margin: 4px 0 6px; }
.prepared p { font-size: 14px; color: var(--muted); margin: 0; max-width: 320px; }

/* 8. Form ---------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid #e3e9ee;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 22px 70px rgba(22, 63, 96, .07);
}
.form-card .eyebrow { margin-bottom: 12px; }
.form-card h2 { font-size: 30px; letter-spacing: -1px; margin-bottom: 10px; }

.form-progress { margin: 26px 0 14px; }
.form-progress > div {
  display: flex;
  justify-content: space-between;
  font: 500 11px var(--ui);
  color: var(--muted);
}
progress {
  appearance: none;
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 10px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e9eef2;
}
progress::-webkit-progress-bar { background: #e9eef2; }
progress::-webkit-progress-value { background: var(--blue); transition: width .3s var(--ease); }
progress::-moz-progress-bar { background: var(--blue); }
.form-note { font-size: 12px; color: var(--muted); margin-bottom: 25px; }

fieldset { border: 0; margin: 0 0 30px; padding: 0; min-width: 0; }
legend {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 0 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
}
label:focus-within { color: var(--blue); }
.optional { font-weight: 400; color: var(--muted); }

input, select, textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  background: #f6f8fa;
  border: 1px solid #e0e6eb;
  border-radius: 8px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  background: #fff;
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 66, 153, .08);
}
textarea { resize: vertical; }

.fields { display: grid; gap: 14px; }
.two { grid-template-columns: 1fr 1fr; }
.address { grid-template-columns: 1.7fr .7fr 1fr; }
.fields label { margin-bottom: 4px; }

.pending {
  background: #fff8ef;
  border: 1px dashed #dca76d;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 12px;
  color: #715029;
  margin-bottom: 22px;
}
.form-terms { font-size: 13px; line-height: 1.8; color: var(--muted); margin: 22px 0 24px; }
.form-terms strong { color: var(--ink); }
.form-terms p { margin: 7px 0 0; }
.preview-note { font-size: 12px; text-align: center; color: var(--muted); margin: 13px 0 0; }
#form-status.is-error:not(:empty) { background: #fff3ee; border: 1px solid #f2c4ad; color: #7a2e0e; }
#form-status:not(:empty) {
  background: var(--pale);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0 0;
  font-size: 14px;
}

/* Context fields: present and enabled in the DOM (so the CRM tracker reads them) but not shown. */
.context-fields { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.context-fields input { width: 1px; height: 1px; min-height: 0; padding: 0; margin: 0; border: 0; }
/* Honeypot: visually removed, still in the DOM for bots. */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* 8b. Thank-you page ---------------------------------------------- */
.thanks { padding-top: 40px; padding-bottom: 110px; }
.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e3e9ee;
  border-radius: 18px;
  padding: 48px clamp(24px, 5vw, 56px) 44px;
  box-shadow: 0 22px 70px rgba(22, 63, 96, .07);
}
.thanks-check {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #12294a;
  margin-bottom: 26px;
}
.thanks-check svg { width: 26px; height: 26px; }
.thanks h1 { font-size: clamp(36px, 4vw, 52px); letter-spacing: -2px; margin-bottom: 18px; }
.thanks h1::first-letter { color: var(--navy); }
.thanks-lead { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 600px; }
.thanks-call {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--pale);
  border-radius: 12px;
  font-size: 16px;
}
.thanks-call strong { color: var(--navy); }
.thanks-next { border-top: 1px solid var(--line); padding-top: 26px; margin-bottom: 30px; }
.thanks-next h2 { font-size: 20px; letter-spacing: -.5px; margin-bottom: 8px; }
.thanks-next p { font-size: 15px; color: var(--muted); margin: 0; max-width: 600px; }

.consent { margin: 4px 0 26px; padding-top: 4px; }
.consent legend { font-size: 15px; }
.check {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
  cursor: pointer;
}
.check input {
  width: 20px; height: 20px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.check:focus-within { color: var(--ink); }
/* Short accessible label for the CRM/screen readers; the disclosure text is what people see. */
.check-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.check-text { cursor: default; }
.consent-links { font-size: 13px; color: var(--muted); margin: 4px 0 0; }
.consent-links a, .footer-legal a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.thanks-phone { font-weight: 700; color: var(--blue); text-decoration: none; font-size: 18px; }
.thanks-phone:hover { text-decoration: underline; }

/* 9. FAQ ----------------------------------------------------------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12%;
  padding-top: 85px;
  padding-bottom: 95px;
  border-top: 1px solid var(--line);
}
.faq h2 { font-size: clamp(30px, 2.6vw, 38px); }
.questions details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding: 25px 40px 25px 0;
  transition: color .2s ease;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 19px;
  font-size: 25px;
  font-weight: 400;
  color: var(--blue);
  transition: transform .2s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details p { font-size: 15px; color: var(--muted); max-width: 550px; padding-right: 24px; }
details[open] p { animation: answer-in .24s ease-out; }

/* 10. Closing ------------------------------------------------------ */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 68px 0;
}
.closing::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .07), transparent);
  pointer-events: none;
}
.closing > .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.closing .eyebrow { color: #fba768; margin-bottom: 10px; }
.closing h2 { color: #fff; font-size: clamp(30px, 2.6vw, 38px); margin: 0; }

/* 11. Footer ------------------------------------------------------- */
.site-footer { padding-top: 40px; padding-bottom: 36px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.footer-top img { object-fit: contain; }
.footer-phone { font: 600 15px var(--ui); color: var(--navy); text-decoration: none; white-space: nowrap; }
.footer-phone:hover { color: var(--blue); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  padding-top: 18px;
  font-size: 13px; color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-area { max-width: 620px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px; white-space: nowrap; }

:focus-visible { outline: 3px solid #b94d00; outline-offset: 4px; }
.skip { position: absolute; top: -70px; left: 10px; z-index: 10; background: #fff; padding: 10px; }
.skip:focus { top: 10px; }

/* 12. Motion ------------------------------------------------------- */
@keyframes enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes answer-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (hover: hover) {
  .button:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244, 121, 32, .28); }
  .button--ghost:hover { background: var(--pale); border-color: var(--navy); box-shadow: none; }
  .service-photo:hover img { transform: scale(1.04); }
  .proof-item:hover .proof-icon { background: var(--blue); color: #fff; transform: translateY(-2px); }
  summary:hover { color: var(--blue); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > .eyebrow { animation: enter .6s var(--ease) both; }
  .hero h1 { animation: enter .75s .08s var(--ease) both; }
  .hero .intro { animation: enter .75s .16s var(--ease) both; }
  .hero-actions { animation: enter .75s .24s var(--ease) both; }
  .hero-photo { animation: enter .9s .12s var(--ease) both; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .button:hover, .service-photo:hover img, .proof-item:hover .proof-icon { transform: none; }
}

/* 13. Responsive --------------------------------------------------- */
@media (min-width: 1700px) {
  .hero-photo { min-height: 650px; }
}

@media (max-width: 1100px) {
  h1 { font-size: 51px; letter-spacing: -2px; }
  .hero { gap: 38px; }
  .hero-photo { min-height: 540px; }
  .hero-photo strong { font-size: 23px; }
  .proof-grid { grid-template-columns: 1fr 1.25fr; gap: 36px; }
  .service-photo { min-height: 480px; }
  .service-photo strong { font-size: 22px; }
  .proof-item { padding: 24px 0; gap: 20px; }
  .proof-item h3 { font-size: 21px; }
  .request-section { gap: 45px; }
  .form-card { padding: 28px; }
}

@media (max-width: 900px) {
  .header { height: 96px; }
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 24px; padding-bottom: 56px; }
  .hero-photo { min-height: 0; height: 420px; align-self: auto; }
  .offer { grid-template-columns: 1fr; gap: 22px; padding: 32px 28px; margin-bottom: 64px; }
  .offer-terms { padding-left: 22px; }
  .proof-section { padding: 60px 0 68px; }
  .section-heading { margin-bottom: 30px; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-photo { min-height: 0; height: 340px; }
  .request-section { grid-template-columns: 1fr; gap: 36px; padding-top: 60px; padding-bottom: 60px; }
  .request-intro { position: static; }
  .request-lead { max-width: none; }
  .faq { grid-template-columns: 1fr; gap: 8px; padding-top: 52px; padding-bottom: 56px; }
  .closing { padding: 48px 0; }
  .closing > .wrap { display: block; }
  .closing h2 { margin-bottom: 26px; }
  .closing .button { width: 100%; }
}

@media (max-width: 760px) {
  .topbar { font-size: 9px; letter-spacing: .6px; }
  .header { height: 84px; gap: 12px; }
  .header img { width: 137px; height: auto; }
  .header .button--small { min-height: 40px; padding: 0 14px; font-size: 12px; white-space: normal; text-align: center; line-height: 1.2; }
  h1 { font-size: 42px; letter-spacing: -1.9px; text-wrap: initial; }
  .headline-top { font-size: 28px; letter-spacing: -1.1px; margin-bottom: 16px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 1.2px; margin-bottom: 18px; }
  .intro { font-size: 15px; margin-top: 20px; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .button { width: 100%; }
  .hero-photo { height: 380px; border-radius: 16px; }
  .hero-photo figcaption { left: 22px; right: 22px; bottom: 22px; padding-left: 14px; }
  .hero-photo strong { font-size: 22px; }
  .offer { padding: 26px 22px; border-radius: 16px; }
  .offer h2 { font-size: 25px; }
  .offer-terms p { font-size: 14px; }
  h2 { font-size: 30px; letter-spacing: -1.2px; }
  .service-photo { height: 300px; border-radius: 16px; }
  .service-photo figcaption { left: 22px; right: 22px; bottom: 22px; padding-left: 14px; }
  .service-photo strong { font-size: 21px; }
  .proof-item { grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; }
  .proof-icon { width: 50px; height: 50px; border-radius: 13px; }
  .proof-icon svg { width: 22px; height: 22px; }
  .proof-item h3 { font-size: 20px; }
  .proof-cta { padding-top: 26px; }
  .proof-cta .button { width: 100%; }
  .request-intro h2 { font-size: 34px; }
  .steps li { padding: 20px 0; }
  .prepared { padding: 20px; margin-top: 26px; }
  .form-card { padding: 24px 18px; border-radius: 14px; }
  .form-card h2 { font-size: 26px; }
  .form-card label { font-size: 13px; }
  .two { grid-template-columns: 1fr; }
  .address { grid-template-columns: 1.4fr .7fr 1fr; }
  input, select, textarea { font-size: 16px; padding: 10px 12px; }
  .form-terms { font-size: 12px; }
  .form-progress > div { font-size: 10px; }
  summary { font-size: 15px; padding: 20px 36px 20px 0; }
  summary::after { top: 14px; }
  .closing { padding: 40px 0; }
  .site-footer { padding-top: 28px; }
  .footer-top img { width: 150px; height: auto; }
  .footer-legal { white-space: normal; }
  .topbar .wrap { flex-wrap: wrap; gap: 4px 12px; }
}
