* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img { height: 34px; display: block; }

nav.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  font-weight: 700;
}
nav.site-nav a:hover { color: var(--color-primary); }

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--color-primary-hover); }

.btn-light {
  background: #fff;
  color: var(--color-orange);
}
.btn-light:hover { background: #fff; opacity: 0.9; }

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #2c2c2c;
}

.hero p.lead {
  font-size: 19px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

section {
  padding: 72px 0;
}

section h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

section > .container > p.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.card h3 { margin-top: 0; font-size: 18px; }
.card p { color: var(--color-text-muted); font-size: 15px; margin-bottom: 0; }

/* Full-bleed "promise" band, styled after chrisian.com's orange section */
.promise-band {
  background: var(--color-orange);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.promise-band h2 { color: #fff; }
.promise-band p { color: rgba(255, 255, 255, 0.9); }
.promise-band .accent-bar {
  width: 64px;
  height: 6px;
  background: var(--color-green);
  margin: 0 auto 28px;
  border-radius: 3px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding-left: 44px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.step h3 { margin: 2px 0 6px; font-size: 16px; }
.step p { color: var(--color-text-muted); font-size: 14px; margin: 0; }

form#lead-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 700; color: var(--color-text); }

.field input,
.field select,
.field textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--color-text);
  font-size: 15px;
  font-family: inherit;
}

.field textarea { resize: vertical; min-height: 120px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

#lead-form .btn { justify-self: start; }

#form-status {
  font-size: 14px;
  min-height: 20px;
  font-weight: 700;
}
#form-status[data-state="ok"] { color: #1a9e6d; }
#form-status[data-state="error"] { color: #e12f14; }

footer {
  background: var(--color-orange);
  color: #fff;
  padding: 56px 0 32px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
}

footer .footer-grid h4 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

footer .footer-grid a,
footer .footer-grid p {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0;
  font-size: 15px;
}

footer .footer-brand {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer .footer-brand img { height: 40px; margin-bottom: 16px; }

footer .copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
}

@media (max-width: 640px) {
  nav.site-nav { display: none; }
  .hero h1 { font-size: 32px; }
}
