:root {
  --ink: #15241f;
  --muted: #607069;
  --forest: #173f35;
  --forest-2: #0f2f28;
  --cream: #f7f3e8;
  --orange: #f26b38;
  --orange-dark: #d95122;
  --white: #ffffff;
  --line: #dbe2dd;
  --shadow: 0 26px 70px rgba(15, 47, 40, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

.demo-banner {
  padding: 8px 20px;
  color: #fff7ef;
  background: var(--forest-2);
  font-size: 13px;
  text-align: center;
}

.site-header {
  min-height: 78px;
  padding: 14px clamp(22px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 243, 232, 0.94);
  border-bottom: 1px solid rgba(23, 63, 53, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font: 800 18px/1 "Manrope", sans-serif;
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
}

.brand-mark svg { width: 29px; fill: var(--white); }
.brand-mark .brand-detail { fill: var(--forest); }

.header-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--forest);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  min-height: 670px;
  padding: clamp(60px, 9vw, 120px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 107, 56, 0.15), transparent 25%),
    linear-gradient(135deg, #fffdf6 0%, var(--cream) 54%, #e6eee8 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.98;
}

.hero-text {
  max-width: 630px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.trust-row { display: flex; flex-wrap: wrap; gap: 13px 22px; color: var(--forest); font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--orange); }

.finder-card {
  padding: clamp(25px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(23, 63, 53, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card-heading { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.step-label { color: var(--orange-dark); font-weight: 800; }
.step-count { color: var(--muted); font-size: 14px; }
.finder-card h2 { font-size: clamp(28px, 3vw, 40px); }

form { margin-top: 28px; }
label { display: block; margin: 18px 0 7px; font-weight: 700; }

input, select {
  width: 100%;
  height: 55px;
  padding: 0 16px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 11px;
  font: 600 17px "DM Sans", sans-serif;
  outline: none;
}

input:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242, 107, 56, 0.12); }
.amount-control { position: relative; }
.amount-control span { position: absolute; z-index: 1; top: 14px; left: 16px; color: var(--muted); font-weight: 800; }
.amount-control input { padding-left: 33px; }

button {
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  padding: 13px 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 12px;
  font: 800 17px "DM Sans", sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

button:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.demo-result {
  margin-top: 22px;
  padding: 16px;
  display: flex;
  gap: 12px;
  color: var(--forest);
  background: #edf7ef;
  border: 1px solid #cce5d1;
  border-radius: 12px;
}

.demo-result[hidden] { display: none; }
.demo-result p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.result-icon { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; color: white; background: #2c815d; border-radius: 50%; font-weight: 800; }

.how-it-works {
  padding: 90px clamp(22px, 7vw, 110px);
  color: var(--white);
  background: var(--forest);
}

.how-it-works h2 { max-width: 620px; font-size: clamp(34px, 4vw, 56px); }
.steps { margin: 52px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; }
.steps li { padding: 28px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 17px; }
.steps span { display: block; margin-bottom: 30px; color: #ff9a6f; font: 800 14px "Manrope", sans-serif; }
.steps strong { display: block; font: 800 20px "Manrope", sans-serif; }
.steps p { margin-bottom: 0; color: #c8d7d1; }

footer { padding: 34px clamp(22px, 7vw, 110px); display: flex; align-items: center; justify-content: space-between; gap: 28px; color: var(--muted); background: #fffdf6; font-size: 13px; }
.footer-brand { flex: 0 0 auto; font-size: 15px; }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-brand svg { width: 24px; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .trust-row { justify-content: center; }
  .finder-card { max-width: 560px; width: 100%; margin: auto; }
  .steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .site-header { min-height: 68px; }
  .header-cta { display: none; }
  .hero { padding-top: 52px; }
  h1 { font-size: 45px; }
  .finder-card { border-radius: 18px; }
  .card-heading { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  button { transition: none; }
}
