/* =====================================================
   Notfallordner – Gemeinsames Stylesheet v3
   ===================================================== */

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

:root {
  --bg: #FFFFFF;
  --text: #1A1A1A;
  --text-sec: #555555;
  --accent: #2E6F95;
  --cta: #C0392B;
  --cta-hover: #922B21;
  --border: #D8D4CE;
  --surface: #F8F7F5;
  --problem-bg: #FDF4F3;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-sec);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--cta);
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cta-hover) !important; }
.nav-back {
  font-size: 0.875rem;
  color: var(--text-sec);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

/* ---- LAYOUT ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.container-xs { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
section { padding: 80px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  line-height: 1.2;
  text-align: center;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
.btn-outline:hover { background: var(--cta); color: #fff; }
.btn-ghost {
  background: none;
  border: none;
  color: var(--text-sec);
  font-size: 0.875rem;
  font-family: var(--font);
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem 0;
  display: block;
  width: 100%;
  text-align: center;
}
.btn-ghost:hover { color: var(--text); }

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}
h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ---- PRICE ---- */
.price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.price { font-size: 1.85rem; font-weight: 700; color: var(--text); }
.price span { font-size: 0.875rem; font-weight: 400; color: var(--text-sec); }

/* ---- HERO (Index) ---- */
.hero-main { background: var(--surface); border-bottom: 1px solid var(--border); padding: 96px 0 80px; }
.hero-inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.hero-sub { font-size: 1.05rem; color: var(--text-sec); line-height: 1.65; max-width: 540px; margin: 0 auto 1.5rem; }
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 0 auto 2rem; max-width: 420px; text-align: left; }
.hero-bullets li { font-size: 0.9rem; color: var(--text-sec); padding-left: 1.5rem; position: relative; line-height: 1.5; }
.hero-bullets li::before { content: '✕'; position: absolute; left: 0; color: var(--cta); font-size: 0.8rem; font-weight: 700; top: 0.15rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- HERO (Unterseiten) ---- */
.hero-sub-page { background: var(--surface); border-bottom: 1px solid var(--border); padding: 80px 0; }
.hero-target {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding-left: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.hero-desc { font-size: 1rem; color: var(--text-sec); line-height: 1.65; margin-bottom: 2rem; max-width: 560px; }

/* ---- PROBLEM ---- */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.problem-text p { font-size: 0.95rem; color: var(--text-sec); line-height: 1.65; margin-bottom: 1rem; }
.problem-text p:last-child { margin-bottom: 0; }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.problem-list li {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--cta);
  background: var(--problem-bg);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.problem-list li strong { color: var(--cta); font-weight: 600; display: block; margin-bottom: 0.2rem; }

/* ---- PRODUCT CARDS ---- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.card-target { font-size: 0.8rem; color: var(--text-sec); border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.75rem; margin-bottom: 1.25rem; line-height: 1.5; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.card-features li { font-size: 0.875rem; color: var(--text-sec); padding-left: 1rem; position: relative; line-height: 1.45; }
.card-features li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }
.card-price { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.card-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-sec); }
.card .btn { width: 100%; }

/* ---- BUNDLE ---- */
.bundle-recommended {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cta);
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.bundle-box {
  border: 2px solid var(--cta);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 720px;
  background: var(--problem-bg);
  margin-top: 2.5rem;
}
.bundle-box h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.bundle-reason { font-size: 0.95rem; color: var(--text-sec); line-height: 1.6; margin-bottom: 1.5rem; }
.bundle-includes { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.75rem; }
.bundle-includes li { font-size: 0.9rem; color: var(--text-sec); padding-left: 1.1rem; position: relative; }
.bundle-includes li::before { content: '–'; position: absolute; left: 0; color: var(--cta); font-weight: 600; }
.bundle-price { font-size: 2rem; font-weight: 700; color: var(--text); }
.bundle-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-sec); }
.bundle-saving { font-size: 0.9rem; color: var(--text-sec); margin-bottom: 1.5rem; }
.bundle-saving s { color: #aaa; }
.bundle-note { font-size: 0.8rem; color: var(--text-sec); line-height: 1.5; margin-bottom: 1.75rem; }

/* ---- TRUST ---- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.trust-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.trust-item p { font-size: 0.85rem; color: var(--text-sec); line-height: 1.55; }

/* ---- CTA BOX ---- */
.cta-box {
  background: var(--problem-bg);
  border: 2px solid var(--cta);
  border-radius: 8px;
  padding: 2.5rem 2rem;
}
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box p { font-size: 0.9rem; color: var(--text-sec); line-height: 1.6; margin-bottom: 1.5rem; }
.cta-box .btn { display: block; }

/* ---- FEATURE LIST ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.feature-list li { font-size: 0.925rem; color: var(--text-sec); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.feature-list li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

/* ---- CONTENT TEXT ---- */
.content-text p { font-size: 0.95rem; color: var(--text-sec); line-height: 1.65; margin-bottom: 1rem; }
.content-text a { color: var(--accent); text-decoration: none; font-weight: 500; }
.content-text a:hover { text-decoration: underline; }
.link-cta { color: var(--cta) !important; }

/* ---- DIVIDER / FOOTER ---- */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--text-sec); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--text-sec); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ---- UTILITY ---- */
.section-intro { font-size: 0.975rem; color: var(--text-sec); line-height: 1.6; max-width: 560px; }
.surface-bg { background: var(--surface); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .bundle-box { padding: 2rem 1.5rem; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; display: block; text-align: center; }
  .hero-actions { flex-direction: column; }
  .bundle-box { max-width: 100%; }
  .cta-box { padding: 1.75rem 1.25rem; }
  .price-row { flex-direction: column; gap: 0.25rem; }
}
