.nav-cta {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-inner { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--text-muted); background: var(--surface); }
.hero-note {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* How it works */
.how {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--surface);
}
.how h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 3rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Pricing */
.pricing {
  padding: 5rem 1.5rem;
  text-align: center;
}
.pricing h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.pricing-sub {
  color: var(--text-muted);
  margin: 0 0 3rem;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.pricing-card--pro {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(230,57,70,0.06) 100%);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  flex: 1;
}
.plan-features li.muted { color: var(--text-muted); }
.plan-annual { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer a { color: var(--text-muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
