/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: hsl(160, 88%, 30%);
  --primary-fg: #fff;
  --primary-light: hsl(160, 88%, 30%, 0.1);
  --primary-hover: hsl(160, 88%, 25%);
  --bg: #fff;
  --fg: hsl(0, 0%, 7%);
  --muted: hsl(0, 0%, 45%);
  --muted-bg: hsl(0, 0%, 96%);
  --border: hsl(0, 0%, 90%);
  --card: #fff;
  --radius: 0.5rem;
  --font: 'Manrope', system-ui, sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');
body { font-family: var(--font); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; letter-spacing: -0.02em; }

/* ===== Utilities ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: none; border-radius: var(--radius); font-family: var(--font); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: background 0.2s; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-sm { padding: 0.625rem 1.25rem; }
.btn-full { width: 100%; padding: 0.75rem; }

/* ===== Navbar ===== */
.navbar { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); }
.navbar-inner { display: flex; height: 4rem; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.5rem; color: var(--fg); }
.logo svg { color: var(--primary); }
.logo span { font-size: 1.125rem; font-weight: 700; }

/* ===== Hero ===== */
.hero { position: relative; }
.hero-bg { position: absolute; inset: 0; display: none; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-grid { position: relative; z-index: 10; display: grid; gap: 3rem; padding: 4rem 1.5rem; }
.hero-copy { max-width: 36rem; }
.hero-eyebrow { margin-bottom: 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.hero h1 { margin-bottom: 1.5rem; font-size: 2.25rem; line-height: 1.1; color: var(--fg); }
.hero-subtitle { margin-bottom: 2rem; font-size: 1.125rem; line-height: 1.6; color: var(--muted); }
.hero-image-mobile { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }
.hero-image-mobile img { height: 14rem; width: 100%; object-fit: cover; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat { display: flex; align-items: flex-start; gap: 0.75rem; }
.stat-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: var(--primary-light); flex-shrink: 0; }
.stat-icon svg { color: var(--primary); }
.stat-value { font-size: 1.125rem; font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

/* ===== Lead Form ===== */
.hero-form-wrap { width: 100%; }
.lead-form { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lead-form h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.form-subtitle { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.375rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.625rem 1rem; font-size: 0.875rem; font-family: var(--font); background: var(--bg); color: var(--fg); outline: none; transition: box-shadow 0.2s; }
.form-group input:focus { box-shadow: 0 0 0 2px var(--primary); }
.interests-label { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.75rem; }
.interests-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
.interest-btn { display: flex; align-items: center; gap: 0.625rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.625rem 0.875rem; font-size: 0.875rem; font-family: var(--font); background: var(--bg); color: var(--fg); cursor: pointer; text-align: left; transition: border-color 0.2s; }
.interest-btn:hover { border-color: hsl(160,88%,30%,0.4); }
.interest-btn.selected { border-color: var(--primary); background: var(--primary-light); }
.interest-btn svg { flex-shrink: 0; }
.consent-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.consent-label input { margin-top: 0.25rem; width: 1rem; height: 1rem; accent-color: var(--primary); flex-shrink: 0; }
.consent-text { font-size: 0.75rem; line-height: 1.6; color: var(--muted); }
.consent-text a { text-decoration: underline; }
.form-error { font-size: 0.875rem; color: hsl(0,84%,60%); margin-bottom: 1rem; min-height: 1.25rem; }

/* ===== How It Works ===== */
.how-it-works { border-top: 1px solid var(--border); background: var(--muted-bg); padding: 5rem 0; }
.how-it-works h2 { font-size: 1.875rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--muted); margin-bottom: 3rem; }
.steps-grid { display: grid; gap: 2.5rem; max-width: 48rem; margin: 0 auto; }
.step-num { width: 2.5rem; height: 2.5rem; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary); color: var(--primary-fg); font-size: 0.875rem; font-weight: 700; }
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--muted); }

/* ===== Thank You ===== */
.thank-you-section { padding: 4rem 0; }
.ty-icon { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary-light); }
.ty-icon svg { color: var(--primary); }
.thank-you-section h1 { font-size: 1.875rem; margin-bottom: 1rem; }
.ty-subtitle { font-size: 1.125rem; color: var(--muted); margin-bottom: 3rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.offers-grid { display: grid; gap: 2rem; max-width: 64rem; margin: 0 auto; }
.offer-card { display: block; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.2s; text-decoration: none; color: inherit; }
.offer-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.offer-img { aspect-ratio: 4/3; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-body { padding: 1.25rem; }
.offer-body h2 { font-size: 1rem; margin-bottom: 0.5rem; }
.offer-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.offer-cta { font-size: 0.875rem; font-weight: 700; color: var(--primary); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--muted-bg); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--muted); text-align: center; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { text-decoration: underline; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .interests-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1024px) {
  .hero-bg { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 6rem 1.5rem; }
  .hero-eyebrow { color: rgba(255,255,255,0.8); }
  .hero h1 { font-size: 3rem; color: #fff; }
  .hero-subtitle { color: rgba(255,255,255,0.8); }
  .hero-image-mobile { display: none; }
  .stat-icon { background: rgba(255,255,255,0.1); }
  .stat-icon svg { color: #fff; }
  .stat-value { color: #fff; }
  .stat-label { color: rgba(255,255,255,0.7); }
  .hero-form-wrap { justify-self: end; max-width: 28rem; }
  .lead-form { padding: 2rem; }
  .thank-you-section h1 { font-size: 2.25rem; }
}
