:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --accent: #2d6a4f;
  --accent-light: #40916c;
  --accent-bg: #d8f3dc;
  --warm: #f4a261;
  --warm-bg: #fef3e2;
  --muted: #6b7280;
  --border: #e5e2dd;
  --card-bg: #ffffff;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- HERO --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--warm-bg) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  position: relative;
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --- PRICING --- */
.pricing {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #f0ede8 100%);
}

.pricing-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.price-card {
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--warm));
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.price-period {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-features li:last-child {
  border-bottom: none;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- WHY CURBDAY --- */
.why {
  padding: 100px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.why-card.highlight {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  grid-column: span 2;
}

.why-card.highlight h3,
.why-card.highlight p {
  color: white;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --- CLOSING --- */
.closing {
  padding: 100px 24px 80px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- FOOTER --- */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card.highlight {
    grid-column: span 1;
  }
  .price-card {
    padding: 36px 24px;
  }
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }
}