:root {
  --ink: #101820;
  --ink-soft: #27333e;
  --paper: #fffaf2;
  --paper-deep: #f3eadc;
  --white: #ffffff;
  --orange: #f26a2e;
  --orange-dark: #d65017;
  --blue: #2f6f89;
  --green: #2d7d63;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 28px 80px rgba(16, 24, 32, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: "Oswald", sans-serif; font-weight: 700; letter-spacing: .04em; font-size: 1.08rem; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--ink); color: var(--paper); font-size: .82rem; letter-spacing: -.02em; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a { text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.site-header nav a:hover { color: var(--orange-dark); }
.header-cta { padding: 11px 17px; color: white; background: var(--ink); border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .9rem; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 690px;
  padding: 70px 0 78px;
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.eyebrow { margin: 0 0 16px; color: var(--orange-dark); font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.hero h1, .section-intro h2, .standard h2, .contrast h2, .pros h2, .final-cta h2 { margin: 0; font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: -.035em; line-height: .98; text-transform: uppercase; }
.hero h1 { font-size: clamp(3.7rem, 7vw, 6.75rem); max-width: 720px; }
.hero h1 span { color: var(--orange); }
.hero-lede { max-width: 630px; margin: 28px 0 30px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 11px 18px; font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.trust-strip span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.match-card { position: relative; background: var(--white); border: 1px solid rgba(16,24,32,.09); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.match-card::before { content: ""; display: block; height: 8px; background: var(--orange); }
.match-card-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding: 26px 28px 18px; border-bottom: 1px solid var(--line); }
.card-kicker { margin: 0 0 5px; font-size: .7rem; letter-spacing: .13em; color: var(--ink-soft); font-weight: 800; }
.match-card h2 { margin: 0; font-size: 1.45rem; }
.availability { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 700; font-size: .78rem; }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(45,125,99,.12); }
.chat-log { min-height: 178px; max-height: 270px; overflow-y: auto; padding: 26px 28px 10px; display: flex; flex-direction: column; gap: 13px; scroll-behavior: smooth; }
.message { display: flex; align-items: end; gap: 9px; animation: message-in .25s ease both; }
.message p { max-width: 82%; margin: 0; padding: 12px 14px; border-radius: 15px 15px 15px 5px; background: var(--paper-deep); font-size: .94rem; }
.message.user { justify-content: flex-end; }
.message.user p { background: var(--ink); color: white; border-radius: 15px 15px 5px 15px; }
.avatar { flex: 0 0 auto; width: 29px; height: 29px; border-radius: 9px; display: grid; place-items: center; background: var(--orange); color: white; font-family: "Oswald"; font-size: .62rem; font-weight: 700; }
.typing { display: inline-flex; gap: 4px; align-items: center; min-height: 42px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #7a8288; animation: bounce 1s infinite; }
.typing i:nth-child(2) { animation-delay: .13s; }
.typing i:nth-child(3) { animation-delay: .26s; }
.quick-prompts { padding: 8px 28px 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.quick-prompts button { border: 1px solid var(--line); background: white; color: var(--ink-soft); border-radius: 999px; padding: 8px 11px; cursor: pointer; font-size: .78rem; font-weight: 700; }
.quick-prompts button:hover { border-color: var(--orange); color: var(--orange-dark); }
.chat-form { margin: 0 20px; padding: 7px; display: flex; align-items: center; gap: 8px; border: 1.5px solid rgba(16,24,32,.22); border-radius: 14px; background: white; }
.chat-form:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,46,.12); }
.chat-form input { min-width: 0; flex: 1; padding: 9px 10px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.chat-form button { flex: 0 0 auto; display: flex; align-items: center; gap: 7px; border: 0; border-radius: 10px; padding: 10px 13px; background: var(--orange); color: white; font-weight: 800; cursor: pointer; }
.chat-form button:hover { background: var(--orange-dark); }
.chat-form svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note { margin: 13px 24px 21px; text-align: center; font-size: .74rem; color: #697178; }

.proof-band { background: var(--ink); color: var(--paper); padding: 25px max(20px, calc((100vw - 1180px)/2)); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.proof-band p { margin: 0; font-family: "Oswald"; font-size: .75rem; letter-spacing: .15em; color: #b7c0c7; }
.proof-band strong { font-family: "Oswald"; font-size: clamp(1.1rem, 2vw, 1.6rem); text-transform: uppercase; text-align: center; }

.process { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-intro { max-width: 760px; }
.section-intro h2, .standard h2, .contrast h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.section-intro > p:last-child { max-width: 620px; color: var(--ink-soft); font-size: 1.1rem; }
.steps { list-style: none; margin: 55px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps li { padding: 31px 34px 12px 0; }
.steps li + li { padding-left: 34px; border-left: 1px solid var(--line); }
.steps span { font-family: "Oswald"; color: var(--orange); font-weight: 700; }
.steps h3 { margin: 30px 0 10px; font-family: "Oswald"; font-size: 1.55rem; text-transform: uppercase; }
.steps p { margin: 0; color: var(--ink-soft); }

.standard { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 720px; background: var(--ink); color: white; }
.standard-photo { min-height: 520px; background: linear-gradient(rgba(16,24,32,.06), rgba(16,24,32,.26)), url("./technician-with-mom.webp"); background-size: cover; background-position: center 20%; }
.photo-placeholder { height: 100%; display: flex; align-items: end; padding: 35px; }
.photo-placeholder span { padding: 9px 12px; background: var(--orange); color: white; font-family: "Oswald"; font-size: .78rem; letter-spacing: .13em; }
.standard-copy { padding: clamp(64px, 8vw, 115px); align-self: center; }
.standard-copy .eyebrow { color: #ff8d5b; }
.standard-copy > p { color: #d3d9dd; }
.standard-copy .big-copy { margin: 28px 0 8px; color: white; font-size: 1.2rem; font-weight: 700; }
.check-list { list-style: none; margin: 28px 0; padding: 0; }
.check-list li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #ff8d5b; font-weight: 900; }
blockquote { margin: 32px 0 15px; padding: 0 0 0 20px; border-left: 4px solid var(--orange); font-family: "Oswald"; font-size: 1.7rem; line-height: 1.25; text-transform: uppercase; }

.contrast { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; display: grid; gap: 45px; align-items: start; }
.comparison { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.comparison-card { border-radius: 18px; padding: 28px; border: 1px solid var(--line); }
.comparison-card.muted { background: #eee7dc; color: #5f656a; }
.comparison-card.accent { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 22px 50px rgba(242,106,46,.23); }
.comparison-label { margin: 0 0 18px; font-size: .875rem; font-weight: 900; letter-spacing: .1em; }
.comparison-card strong { display: block; font-family: "Oswald"; font-size: 2rem; text-transform: uppercase; }
.comparison-card ul { margin: 24px 0 0; padding-left: 19px; }
.comparison-card li { margin: 11px 0; }

.pros { background: var(--paper-deep); padding: 80px max(20px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pros h2 { font-size: clamp(3rem, 6vw, 5.4rem); }
.pros > div:last-child { max-width: 560px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 12px; color: var(--orange-dark); font-weight: 800; text-decoration: none; border-bottom: 2px solid currentColor; }
.pending-link { cursor: default; }
.final-cta { text-align: center; padding: 105px 20px; background: var(--orange); color: white; }
.final-cta .eyebrow { color: #4a1e0a; }
.final-cta h2 { font-size: clamp(3.6rem, 8vw, 7rem); }
.final-cta a { display: inline-block; margin-top: 30px; padding: 14px 20px; background: var(--ink); border-radius: 10px; color: white; text-decoration: none; font-weight: 800; }
footer { min-height: 110px; padding: 28px max(20px, calc((100vw - 1180px)/2)); background: var(--ink); color: #b9c1c7; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-size: .82rem; }
.footer-brand { color: white; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@keyframes message-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }

@media (max-width: 920px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .trust-strip { justify-content: center; }
  .match-card { width: min(100%, 610px); margin: 0 auto; }
  .standard { grid-template-columns: 1fr; }
  .standard-photo { min-height: 480px; }
  .contrast { grid-template-columns: 1fr; gap: 45px; }
  .comparison { grid-template-columns: 1fr; }
  .pros { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .site-header { width: min(100% - 28px, 1180px); min-height: 70px; }
  .header-cta { padding: 10px 12px; font-size: .8rem; }
  .brand { font-size: .95rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { width: min(100% - 28px, 1180px); padding: 48px 0 60px; gap: 38px; }
  .hero h1 { font-size: clamp(3.35rem, 17vw, 5.3rem); }
  .hero-lede { font-size: 1rem; }
  .trust-strip { font-size: .78rem; }
  .match-card-head, .chat-log { padding-left: 18px; padding-right: 18px; }
  .quick-prompts { padding-left: 18px; padding-right: 18px; flex-wrap: nowrap; overflow-x: auto; }
  .quick-prompts button { flex: 0 0 auto; }
  .chat-form { margin: 0 12px; }
  .proof-band { justify-content: center; text-align: center; }
  .proof-band p { display: none; }
  .process, .contrast { width: min(100% - 28px, 1180px); padding: 82px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { padding: 25px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .steps h3 { margin-top: 14px; }
  .standard-photo { min-height: 390px; }
  .standard-copy { padding: 65px 24px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-card.accent { transform: none; }
  .pros { padding-top: 70px; padding-bottom: 70px; }
  footer { flex-direction: column; text-align: center; padding-top: 42px; padding-bottom: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Keep guided intake suggestions hidden after the first answer. */
[hidden] { display: none !important; }

.ai-consent{display:block;font-size:14px;line-height:1.5;margin:14px 0;color:#50595e}.ai-consent input{margin-right:8px}.request-review{margin-top:20px;padding:18px;background:#fff4e9;border:1px solid #eed6c3;border-radius:12px}.request-review h3{margin-bottom:12px}.request-review p{font-size:15px;line-height:1.5;margin-bottom:12px;white-space:pre-wrap}.request-review form>label:not(.ai-consent){display:block;margin:12px 0 6px}.request-review form>input{width:100%;border:1px solid #bbb;border-radius:8px;padding:12px;font:inherit}.request-review button,.chat-restart{font:inherit;border:0;border-radius:8px;padding:12px 16px;cursor:pointer}.request-review button{background:#101820;color:white}.chat-restart{background:transparent;text-decoration:underline;font-size:14px;padding:8px 0}button:disabled{cursor:wait;opacity:.6}
