/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #009966;     /* Lesbares Grün für Text auf hellem Hintergrund */
  --green-dark: #007a52;
  --green-light:#15FFA5;     /* Neon-Mint – App-Primärfarbe */
  --green-dim:  rgba(21,255,165,0.13);
  --navy:       #002E34;     /* App-Dunkel-Navy – Logo-Hintergrund */
  --teal:       #46BEC8;     /* App-Teal-Akzent */
  --text:       #002E34;
  --text-sub:   #1a4a52;
  --muted:      #6b8e95;
  --bg:         #f4f3ef;
  --surface:    #ffffff;
  --border:     #e2eeef;
  --shadow-sm:  0 2px 12px rgba(0,46,52,0.07);
  --shadow-md:  0 8px 32px rgba(0,46,52,0.10);
  --shadow-lg:  0 20px 60px rgba(0,46,52,0.14);
  --radius:     20px;
  --radius-sm:  12px;
}

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

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  background: rgba(244,243,239,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--text);
}
.nav-logo img { border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-sub); transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--radius-sm); font-weight: 600;
  cursor: pointer; transition: all 0.15s; border: none;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-primary {
  background: var(--green-light); color: var(--navy);
  box-shadow: 0 4px 16px rgba(21,255,165,0.35);
}
.btn-primary:hover { background: #3fffc0; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(21,255,165,0.45); }
.btn-secondary {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.btn-primary.btn-sm { background: var(--green-light); color: var(--navy); box-shadow: none; }
.btn-primary.btn-sm:hover { background: #3fffc0; }

/* ─── Section Labels ──────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: var(--green-dim);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #eaf9f4 0%, var(--bg) 60%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,255,165,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: var(--green-dim); padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Newsreader', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600; line-height: 1.1; letter-spacing: -1px;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 17px; color: var(--text-sub); line-height: 1.7;
  max-width: 480px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 12px; color: var(--muted); }

/* ── Phone Mockup ──────────────────────────────────────────────────── */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 260px; height: 530px;
  background: var(--text);
  border-radius: 46px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative; z-index: 1;
}
.phone-screen {
  background: #f4f3ef;
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 11px;
}
.phone-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(21,255,165,0.45), transparent 70%);
  filter: blur(20px);
}


/* ─── Stats ───────────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  text-align: center;
}
.stat { padding: 8px 0; }
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.15); }
.stat-num {
  font-family: 'Newsreader', serif;
  font-size: 42px; font-weight: 600; color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─── Features ────────────────────────────────────────────────────────────── */
.features { padding: 100px 0; }
.features h2, .topics-section h2, .sources h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ─── Sources ─────────────────────────────────────────────────────────────── */
.sources {
  background: linear-gradient(180deg, #eaf9f4, var(--bg));
  padding: 100px 0;
}
.sources-sub { font-size: 17px; color: var(--text-sub); margin-top: -32px; margin-bottom: 48px; }
.sources-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.source-group {
  background: var(--surface); border-radius: var(--radius);
  padding: 22px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.source-group-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: 10px;
}
.source-list { font-size: 13px; color: var(--text-sub); line-height: 1.7; }

/* ─── Topics ──────────────────────────────────────────────────────────────── */
.topics-section { padding: 100px 0; }
.topics-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.topic-chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.topic-chip:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); }

/* ─── Download ────────────────────────────────────────────────────────────── */
.download {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}
.download-icon {
  width: 88px; height: 88px; border-radius: 22px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.download h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; color: #fff; margin-bottom: 12px;
}
.download p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.download-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.15s;
  min-width: 180px;
}
.store-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.store-sub { font-size: 11px; opacity: 0.75; }
.store-name { font-size: 16px; font-weight: 700; }
.pwa-hint { font-size: 14px; color: rgba(255,255,255,0.7); }
.pwa-hint a { color: rgba(255,255,255,0.95); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--text); padding: 40px 0 32px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; color: #fff;
}
.footer-brand img { border-radius: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }

/* ─── Legal Pages ─────────────────────────────────────────────────────────── */
.legal-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin: 2rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.4rem;
}
.legal-content p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-content ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-content ul li { margin-bottom: 0.25rem; }
.text-muted { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem !important; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-phone { display: flex; justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sources-groups { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
  .nav-links a:not(.btn) { display: none; }
}

@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .sources-groups { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-frame { width: 220px; height: 450px; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .download-btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; min-width: unset; }
}

/* ─── Pricing ──────────────────────────────────────────────────────────────── */
.pricing {
  padding: 96px 0 80px;
  background: var(--bg);
}
.pricing-sub {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 16px 0 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card-pro {
  border-color: #f59e0b;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}
.pricing-badge-pro {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-period {
  font-size: 0.95rem;
  color: var(--muted);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.check-pro {
  color: #f59e0b;
}
.feature-tag {
  background: rgba(245,158,11,0.12);
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: opacity 0.15s, transform 0.15s;
}
.pricing-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pricing-btn-free {
  background: var(--green-dim);
  color: var(--green);
  border: 1.5px solid rgba(0,153,102,0.2);
}
.pricing-btn-pro {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.pricing-enterprise {
  margin-top: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-sub);
  text-align: center;
}
.pricing-enterprise a {
  color: var(--green);
  font-weight: 600;
  margin-left: 6px;
}
.pricing-enterprise a:hover { text-decoration: underline; }
