:root {
  /* App-Farben */
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-muted: #F3EFE8;
  --ink: #1B2421;
  --muted: #6E7873;
  --soft: #9AA29F;
  --primary: #6FB394;
  --primary-dark: #4F9678;
  --primary-soft: #E6F2EC;
  --accent: #FF8E72;
  --accent-soft: #FFE8E0;
  --warning: #E8A547;
  --warning-soft: #FCEFD9;
  --info: #6B9BC9;
  --info-soft: #E2EDF7;
  --border: #E2DCD0;
  --divider: #EDE8DF;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 18px rgba(27, 36, 33, 0.06);
  --shadow: 0 18px 50px rgba(27, 36, 33, 0.10);
  --shadow-lg: 0 30px 80px rgba(27, 36, 33, 0.14);
  --max: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header (wird nur auf Impressum/Datenschutz verwendet) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; color: var(--ink); }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 18% 10%, rgba(111, 179, 148, 0.22), transparent 70%),
    radial-gradient(600px 320px at 85% 0%, rgba(255, 142, 114, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600; font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--primary); }

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600; font-size: 16px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(79, 150, 120, 0.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); text-decoration: none; }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { text-decoration: none; border-color: var(--ink); transform: translateY(-2px); }

.platforms {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--muted); font-size: 14px;
  background: var(--surface);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--divider);
  margin-top: 6px;
}
.platforms .sep { color: var(--soft); }

/* Geräte-Showcase: iPhone + iPad + Mac als Komposition */
.showcase {
  position: relative;
  padding: 60px 0 100px;
}
.showcase > .container { text-align: center; }
.showcase-eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600; font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.showcase-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.showcase-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 540px;
}
.device-hero {
  display: block;
  width: 100%;
  max-width: 360px;     /* iPhone-Mockup */
  height: auto;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .device-hero { max-width: 280px; }
}
/* Sections */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 14px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 50px;
}

/* Features grid – 3 oben, 2 zentriert darunter */
.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.features .feature           { grid-column: span 2; }
.features .feature:nth-child(4) { grid-column: 2 / span 2; }
.features .feature:nth-child(5) { grid-column: 4 / span 2; }
.feature {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feature.c-primary .icon { background: var(--primary-soft); }
.feature.c-accent  .icon { background: var(--accent-soft); }
.feature.c-warning .icon { background: var(--warning-soft); }
.feature.c-info    .icon { background: var(--info-soft); }
.feature h3 { margin: 0 0 8px; font-size: 19px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Datenschutz & Sicherheit */
.privacy-section {
  background:
    radial-gradient(600px 320px at 12% 10%, rgba(111, 179, 148, 0.12), transparent 70%),
    radial-gradient(500px 300px at 88% 90%, rgba(111, 179, 148, 0.10), transparent 70%),
    var(--bg);
}
.privacy-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600; font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 auto 18px;
}
.privacy-section .section-title,
.privacy-section .section-sub,
.privacy-section .privacy-eyebrow { display: block; text-align: center; }
.privacy-section .privacy-eyebrow { width: max-content; }

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.privacy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.privacy-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.privacy-card h3 { margin: 0 0 8px; font-size: 19px; }
.privacy-card p  { margin: 0; color: var(--muted); font-size: 15px; }
.privacy-card a  { font-weight: 600; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg, var(--surface-muted), var(--bg)); }
.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 26px;
  padding: 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.price-card .badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.price-card .amount { font-size: 60px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.price-card .amount .currency { font-size: 32px; vertical-align: top; margin-right: 4px; color: var(--muted); }
.price-card .note { color: var(--muted); margin-bottom: 28px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.price-card li {
  padding: 10px 0; border-bottom: 1px solid var(--divider);
  display: flex; gap: 12px; align-items: center;
  color: var(--ink);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "✓"; color: var(--primary-dark); font-weight: 800;
  width: 22px; height: 22px;
  background: var(--primary-soft);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--divider);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); text-decoration: none; }

/* Legal pages */
.legal { padding: 60px 24px 80px; max-width: 760px; }
.legal h1 { font-size: 36px; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal h2 { font-size: 22px; margin-top: 36px; color: var(--primary-dark); }
.legal p, .legal li { color: #2c3140; }
.legal .updated { color: var(--muted); margin-bottom: 28px; }
.legal .placeholder { background: var(--warning-soft); color: var(--ink); padding: 1px 6px; border-radius: 4px; }
.legal ul { padding-left: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
  .features .feature,
  .features .feature:nth-child(4),
  .features .feature:nth-child(5) { grid-column: auto; }
  .privacy-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 50px 0 20px; }
  section { padding: 60px 0; }
}
