/* ─── Weststadt-Taschengeld Landing Page ─────────────────────────── */

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

:root {
  --primary: #2D5A27;
  --primary-light: #B0F0A4;
  --primary-dark: #1E4A1A;
  --secondary: #8B5A2B;
  --tertiary: #D97706;
  --surface: #F7F4EE;
  --surface-dark: #1C1B17;
  --text: #1C1B17;
  --text-muted: #65635B;
  --border: #C9C6BC;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ── Header ──────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,238,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.125rem; color: var(--primary);
  text-decoration: none;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }

.btn-cta {
  background: var(--primary) !important; color: #fff !important;
  padding: 10px 24px; border-radius: 999px; font-weight: 600;
  transition: all .2s;
}
.btn-cta:hover { background: var(--primary-dark) !important; box-shadow: 0 4px 12px rgba(45,90,39,.2); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--surface) 0%, #EAE7DC 100%);
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary-dark);
  padding: 6px 16px; border-radius: 999px;
  font-weight: 500; font-size: 0.85rem; margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.text-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub { font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; max-width: 520px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 14px 32px;
  border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(45,90,39,.25); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); color: var(--text); padding: 12px 28px;
  border-radius: 999px; font-weight: 500; font-size: 1rem;
  text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-title { font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 48px; }

.section-dark {
  background: var(--surface-dark); color: #F4F1E6;
}
.section-dark .section-title { color: #F4F1E6; }
.section-dark .section-sub { color: #a8a39a; }

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

.step-card {
  background: #fff; border-radius: 16px; padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  position: relative; transition: all .3s;
}
.step-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-4px); }

.step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}

.step-number {
  position: absolute; top: 20px; right: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}

.step-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

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

.safety-item {
  padding: 28px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transition: all .3s;
}
.safety-item:hover { background: rgba(255,255,255,.08); border-color: var(--primary); }

.safety-item .material-symbols-rounded {
  font-size: 36px; color: var(--primary-light); margin-bottom: 16px; display: block;
}
.safety-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: #F4F1E6; }
.safety-item p { font-size: 0.85rem; color: #a8a39a; line-height: 1.5; }

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, #D4EDDA 100%);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--surface-dark); color: #F4F1E6;
  padding: 48px 0 24px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; color: #d1cec5; }
.footer a { display: block; color: #a8a39a; text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color .2s; }
.footer a:hover { color: var(--primary-light); }

.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.8rem; color: #65635B; text-align: center;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 24px; }
  .nav-links a:not(.btn-cta) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
