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

:root {
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-light: #fff7ed;
  --accent-border: #fed7aa;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --danger: #dc2626;
  --success: #059669;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ---- NAV ---- */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-logo .exclaim { color: var(--accent-dark); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover { background: var(--bg); color: var(--text); }
.nav-link.active { color: var(--accent); background: var(--accent-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-ghost { background: transparent; color: var(--text-2); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 16px 34px; font-size: 16px; border-radius: 11px; }

/* ---- LAYOUT ---- */
section { padding: 80px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }

/* ---- HERO ---- */
.hero {
  padding: 80px 40px 60px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 100%);
  text-align: center;
}

.hero-inner { max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--accent-border);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.6;
}

/* ---- STEP GRID ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-card.available:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.12);
}

.step-card.soon {
  background: var(--bg);
  opacity: 0.85;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.step-card.soon .step-number { background: var(--border); color: var(--text-3); }

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.step-card.available .step-link:hover { color: var(--accent-dark); }

.step-card .soon-badge {
  display: inline-block;
  background: var(--border);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- ARTICLE HEADER ---- */
.article-hero {
  padding: 50px 40px 40px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 100%);
}

.article-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb .sep { color: var(--text-3); margin: 0 8px; }

.article-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: left;
}

.article-lead {
  font-size: 20px;
  color: var(--text-2);
  line-height: 1.5;
  font-weight: 500;
}

/* ---- ARTICLE BACK LINK ---- */
.back-to-step {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 40px 0;
}

.back-to-step a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.back-to-step a:hover { color: var(--accent-dark); }

/* ---- RELATED ARTICLES ---- */
.related-articles {
  max-width: 720px;
  margin: 40px auto 80px;
  padding: 32px 40px;
  background: var(--bg);
  border-radius: 14px;
}

.related-articles h2 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 20px;
}

.related-articles ul {
  list-style: none;
  padding: 0;
}

.related-articles li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.related-articles li:last-child { border-bottom: none; }

.related-articles a {
  font-weight: 600;
  color: var(--text);
}

.related-articles a:hover { color: var(--accent); }

/* ---- LONG FORM SALES LETTER ---- */
.sales-hero {
  padding: 70px 40px 50px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--white) 100%);
}

.sales-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.section-image {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  margin: 20px auto 10px;
}

.sales-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

.sales-body h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text);
  margin: 56px 0 20px;
  text-align: left;
}

.sales-body h2:first-child { margin-top: 0; }

.sales-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 40px 0 14px;
  color: var(--text);
}

.sales-body p { margin-bottom: 22px; color: var(--text-2); }

.sales-body p.lead {
  font-size: 21px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 28px;
}

.sales-body strong { color: var(--text); font-weight: 700; }

.sales-body ul, .sales-body ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
  color: var(--text-2);
}

.sales-body li { margin-bottom: 8px; }

.sales-body .highlight-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 6px;
  margin: 32px 0;
}

.sales-body .highlight-box p:last-child { margin-bottom: 0; }

.sales-body .pull-quote {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 22px;
  margin: 40px 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.sales-body .recipe-card {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 28px;
  margin: 32px 0;
}

.sales-body .recipe-card h3 {
  margin-top: 0;
  color: var(--accent);
}

.sales-body .recipe-card ul {
  list-style: none;
  padding-left: 0;
}

.sales-body .recipe-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 17px;
  color: var(--text);
}

.sales-body .recipe-card li:last-child { border-bottom: none; }

.sales-body .recipe-card .amount {
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.sales-body .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.sales-body .stat {
  text-align: center;
  padding: 18px 12px;
  background: var(--bg);
  border-radius: 12px;
}

.sales-body .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.sales-body .stat-label {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

/* ---- INLINE CTA (kleiner CTA zwischen Sektionen) ---- */
.cta-inline {
  text-align: center;
  margin: 36px 0 44px;
}

.sales-body .cta-inline { margin: 32px 0 40px; }

/* ---- CTA ---- */
.cta-box {
  background: var(--text);
  color: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  margin: 48px auto;
  max-width: 720px;
}

.cta-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-box p {
  color: #d1d5db;
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn-primary {
  background: var(--accent);
  color: white;
}

.cta-box .btn-primary:hover {
  background: #fb923c;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

/* ---- FASTING BAND (Full-width flächige Section) ---- */
.band {
  background: var(--accent);
  color: white;
  padding: 80px 40px;
  margin: 40px 0 0;
}

.band-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.band-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.band h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: left;
  max-width: 780px;
}

.band .band-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 40px;
}

.band .band-lead strong { color: white; }

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0 36px;
}

.band-card {
  background: white;
  color: var(--text);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.band-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.band-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.band-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.band-footer {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  max-width: 780px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 28px;
  margin-top: 8px;
}

/* ---- CHART (Schere Grundumsatz vs Zufuhr, sitzt direkt auf Orange-Band) ---- */
.chart-card {
  padding: 8px 0 20px;
  margin: 12px 0 28px;
}

.chart-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  text-align: center;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-svg text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 600;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: white;
  font-weight: 600;
}

.chart-legend-swatch {
  width: 22px;
  height: 3px;
  border-radius: 2px;
}

.band-footer strong { color: white; font-weight: 700; }

@media (max-width: 720px) {
  .band { padding: 56px 20px; }
  .band-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ---- ARTIKEL / WEITERE INFOS ---- */
.further-info {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg);
  border-radius: 14px;
  margin-bottom: 80px;
}

.further-info h2 {
  font-size: 22px;
  text-align: left;
  margin-bottom: 8px;
}

.further-info .lead-in {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 24px;
}

.further-info ul {
  list-style: none;
  padding: 0;
}

.further-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.further-info li:last-child { border-bottom: none; }

.further-info a {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.further-info a:hover { color: var(--accent); }

.further-info .article-summary {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ---- FOOTER ---- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-3);
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 720px) {
  nav.site-nav { padding: 0 20px; gap: 16px; }
  .nav-links { gap: 2px; }
  .nav-link { padding: 6px 8px; font-size: 13px; }
  section, .hero, .sales-hero { padding-left: 20px; padding-right: 20px; }
  .sales-body { padding: 30px 20px 60px; }
  .cta-box { padding: 32px 24px; }
  .sales-body .stat-row { grid-template-columns: 1fr; }
}
