@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --black:   #0B0E14;
  --white:   #F7F5F0;
  --green:   #1A7A45;
  --green-lt:#E8F5F0;
  --green-md:#A8D5BE;
  --gold:    #C5A55A;
  --gold-lt: #F5EDD8;
  --gray-1:  #F0F2F4;
  --gray-2:  #D5D9DE;
  --gray-3:  #8A929C;
  --gray-4:  #3B4350;
  --radius:  14px;
  --font-d:  'Fraunces', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────── */
.display-xl { font-family: var(--font-d); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.03em; }
.display-lg { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.025em; }
.display-md { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; }
.display-sm { font-family: var(--font-d); font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 400; line-height: 1.25; }
.eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--gray-4); }
.body-md { font-size: 1rem; line-height: 1.6; color: var(--gray-3); }

em { font-style: italic; color: var(--green); }

/* ── Layout ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.25rem; }

/* ── Nav ────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .2s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.95rem 0; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-mark { width: 32px; height: 32px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 18px; height: 18px; fill: white; }
.nav-logo-name { font-family: var(--font-d); font-size: 1.2rem; font-weight: 500; color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--gray-4); text-decoration: none; padding: 0.4rem 0.75rem; border-radius: 8px; transition: background .15s, color .15s; }
.nav-links a:hover { background: var(--gray-1); color: var(--black); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }

/* ── Buttons ────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all .18s; cursor: pointer; border: none; white-space: nowrap; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #1e2530; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,14,20,.2); }
.btn-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--gray-2); }
.btn-ghost:hover { background: var(--gray-1); border-color: var(--gray-3); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #15693a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,122,69,.25); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; border-radius: 8px; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; }

/* ── Hero ───────────────────────────────────────── */
.hero { padding: clamp(5rem, 12vw, 10rem) 0 0; text-align: center; position: relative; overflow: hidden; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green-lt); color: var(--green); padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-bottom: 1.75rem; border: 1px solid var(--green-md); }
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
.hero-title { max-width: 820px; margin: 0 auto 1.5rem; }
.hero-sub { max-width: 540px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.8rem; color: var(--gray-3); margin-bottom: clamp(3rem, 6vw, 5rem); }
.hero-trust span { display: flex; align-items: center; gap: 0.35rem; }

/* ── App Screenshot Frame ───────────────────────── */
.app-frame {
  position: relative; margin: 0 auto;
  max-width: 1100px;
  perspective: 1200px;
}
.app-frame-inner {
  background: #1A1A1A; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(11,14,20,.35), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotateX(3deg) rotateY(0deg) scale(0.98);
  transition: transform .4s ease;
}
.app-frame-inner:hover { transform: rotateX(0) rotateY(0) scale(1); }
.app-frame-bar { background: #2D2D2D; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.app-frame-dot { width: 12px; height: 12px; border-radius: 50%; }
.app-frame-url { background: #3D3D3D; flex: 1; max-width: 300px; height: 24px; border-radius: 6px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.app-frame-url span { font-size: 0.7rem; color: rgba(255,255,255,.4); }
.app-screen { width: 100%; display: block; background: #F6F7F8; }

/* ── Feature Cards ──────────────────────────────── */
.feature-card { background: white; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 1.75rem; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: 0 8px 32px rgba(11,14,20,.08); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--black); }
.feature-card p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-3); }

/* ── Testimonials ───────────────────────────────── */
.testimonial-card { background: white; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; line-height: 1.65; color: var(--gray-4); font-style: italic; font-family: var(--font-d); font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--green-lt); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1rem; color: var(--green); font-weight: 500; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-3); }

/* ── Pricing Cards ──────────────────────────────── */
.price-card { background: white; border: 1px solid var(--gray-2); border-radius: 20px; padding: 2.25rem; position: relative; display: flex; flex-direction: column; }
.price-card.featured { background: var(--black); color: var(--white); border-color: var(--black); box-shadow: 0 20px 60px rgba(11,14,20,.25); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 100px; }
.price-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-3); margin-bottom: 0.5rem; }
.price-card.featured .price-name { color: rgba(247,245,240,.5); }
.price-amount { font-family: var(--font-d); font-size: 3.5rem; font-weight: 300; line-height: 1; letter-spacing: -.04em; margin-bottom: 0.25rem; }
.price-period { font-size: 0.85rem; color: var(--gray-3); margin-bottom: 1.5rem; }
.price-card.featured .price-period { color: rgba(247,245,240,.5); }
.price-divider { border: none; border-top: 1px solid var(--gray-1); margin: 1.5rem 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 1.75rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.4; }
.price-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.price-card.featured .price-features li::before { color: #6BE09A; }
.price-card.featured .price-features li { color: rgba(247,245,240,.8); }

/* ── FAQ ────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-1); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-size: 1rem; font-weight: 500; color: var(--black); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q:hover { color: var(--green); }
.faq-icon { width: 24px; height: 24px; background: var(--gray-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s, background .2s; font-size: 1rem; line-height: 1; }
.faq-q.open .faq-icon { background: var(--green); color: white; transform: rotate(45deg); }
.faq-a { font-size: 0.95rem; line-height: 1.65; color: var(--gray-3); padding-bottom: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-a p { margin: 0; }
.faq-a.open { max-height: 400px; padding-bottom: 1.25rem; }

/* ── Mockup SVG Screen ──────────────────────────── */
.screen-mockup { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(11,14,20,.12), 0 0 0 1px rgba(11,14,20,.06); }

/* ── Stats Bar ──────────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; border: 1px solid var(--gray-1); border-radius: var(--radius); overflow: hidden; background: white; }
.stat-cell { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--gray-1); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-d); font-size: 2.75rem; font-weight: 300; line-height: 1; color: var(--black); letter-spacing: -.04em; }
.stat-label { font-size: 0.8rem; color: var(--gray-3); margin-top: 0.35rem; }

/* ── Logo Marquee ───────────────────────────────── */
.marquee-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)}to{transform:translateX(-50%)} }
.marquee-item { font-family: var(--font-d); font-size: 1.3rem; font-weight: 300; color: var(--gray-2); white-space: nowrap; }

/* ── Integration chips ──────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; background: var(--gray-1); color: var(--gray-4); border: 1px solid var(--gray-2); }

/* ── Section markers ────────────────────────────── */
.section-marker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-marker-line { height: 1px; width: 32px; background: var(--green); }

/* ── Footer ─────────────────────────────────────── */
footer { background: var(--black); color: var(--white); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(247,245,240,.5); margin-top: 0.75rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,245,240,.35); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: rgba(247,245,240,.6); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(247,245,240,.08); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: rgba(247,245,240,.3); }

/* ── Dark sections ──────────────────────────────── */
.bg-dark { background: var(--black); color: var(--white); }
.bg-dark .eyebrow { color: var(--green-md); }
.bg-dark .body-lg, .bg-dark .body-md { color: rgba(247,245,240,.6); }
.bg-green-lt { background: var(--green-lt); }
.bg-cream { background: #FAF8F4; }

/* ── Forms ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.85rem; font-weight: 500; color: var(--gray-4); }
.form-input { background: white; border: 1.5px solid var(--gray-2); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.95rem; font-family: var(--font-b); outline: none; transition: border-color .15s; width: 100%; }
.form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,69,.12); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.8rem; color: #DC2626; }
.form-success { background: var(--green-lt); border: 1px solid var(--green-md); color: var(--green); padding: 1rem 1.25rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; }

/* ── Page Hero (inner pages) ────────────────────── */
.page-hero { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem); background: var(--black); color: var(--white); }
.page-hero .eyebrow { color: var(--green-md); }

/* ── Feature Detail Sections ────────────────────── */
.feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }
.feature-detail-text { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-4); line-height: 1.5; }
.feature-list li::before { content: "→"; color: var(--green); font-weight: 600; flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .feature-detail { grid-template-columns: 1fr; }
  .feature-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(even) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--gray-1); }
}

/* ── Animations ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ── Misc ───────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--gray-1); }
.tag { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.tag-green { background: var(--green-lt); color: var(--green); }
.tag-gold { background: var(--gold-lt); color: #7A5C00; }
.tag-gray { background: var(--gray-1); color: var(--gray-4); }

/* ── Blog card ──────────────────────────────────── */
.blog-card { background: white; border: 1px solid var(--gray-1); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(11,14,20,.08); transform: translateY(-2px); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--green-lt); display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-card-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 400; line-height: 1.3; color: var(--black); text-decoration: none; }
.blog-card-title:hover { color: var(--green); }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-3); }

/* Tooltip */
.tooltip-wrap { position: relative; }
.tooltip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--black); color: var(--white); font-size: 0.75rem; padding: 0.35rem 0.65rem; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s; }
.tooltip-wrap:hover .tooltip { opacity: 1; }

/* Zusätzliche Styles für Rechtstexte — an bestehendes Design angelehnt */
.legal-page { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem); }
.legal-header { margin-bottom: 2.5rem; }
.legal-updated { font-size: 0.85rem; color: var(--gray-3); margin-top: 0.5rem; }
.legal-body h2 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 500; color: var(--black); margin: 2.25rem 0 0.85rem; letter-spacing: -0.01em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin: 1.5rem 0 0.6rem; }
.legal-body p { font-size: 0.95rem; line-height: 1.7; color: var(--gray-4); margin-bottom: 0.9rem; }
.legal-body ul { margin: 0 0 0.9rem 1.25rem; }
.legal-body li { font-size: 0.95rem; line-height: 1.7; color: var(--gray-4); margin-bottom: 0.4rem; }
.legal-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-body strong { color: var(--black); font-weight: 600; }
.legal-toc { background: var(--gray-1); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.legal-toc-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 0.6rem; }
.legal-toc ol { margin: 0 0 0 1.1rem; }
.legal-toc li { font-size: 0.88rem; margin-bottom: 0.3rem; }
.legal-toc a { color: var(--gray-4); text-decoration: none; }
.legal-toc a:hover { color: var(--green); }
.legal-note { background: var(--gold-lt); border: 1px solid #E8D9A8; border-radius: 10px; padding: 1rem 1.25rem; font-size: 0.85rem; color: #6B5A1F; line-height: 1.6; margin-bottom: 2rem; }

/* ═══════════════ v3: Modul-Seiten, Guide, Utilities ═══════════════ */
.nav-links a.active { color: var(--green); }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--gray-3); line-height: 1.6; max-width: 640px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2.5rem; }

/* Modul-Übersicht (Landing + Funktionen-Kopf) */
.module-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.module-tile { display: block; background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s; }
.module-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,28,20,.08); border-color: var(--green-md); }
.module-tile .mt-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; }
.module-tile .mt-ico svg { width: 20px; height: 20px; }
.module-tile h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.module-tile p { font-size: .86rem; color: var(--gray-3); line-height: 1.5; }

/* Modul-Detailseiten: Sidebar + Sektionen */
.module-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.module-sidenav { position: sticky; top: 92px; }
.module-sidenav a { display: block; padding: .5rem .75rem; border-radius: 8px; font-size: .88rem; color: var(--gray-3); text-decoration: none; border-left: 2px solid transparent; }
.module-sidenav a:hover { color: var(--black); background: var(--gray-1); }
.module-sidenav a.active { color: var(--green); border-left-color: var(--green); background: var(--green-lt); font-weight: 600; }
.module-sidenav .sn-group { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-2); padding: 1.1rem .75rem .35rem; }
.module-section { padding: 2rem 0 3rem; border-bottom: 1px solid var(--gray-1); scroll-margin-top: 90px; }
.module-section:last-child { border-bottom: 0; }
.module-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .75rem; }
.module-head .mt-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.module-head .mt-ico svg { width: 22px; height: 22px; }
.module-head h2 { font-family: var(--font-d); font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 500; letter-spacing: -.01em; }
.module-head .nav-path { font-size: .78rem; color: var(--gray-2); }
.module-body { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: start; margin-top: 1.25rem; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.benefit-list li { display: flex; gap: .75rem; font-size: .95rem; line-height: 1.55; color: var(--gray-4); }
.benefit-list li .bl-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.benefit-list li .bl-dot svg { width: 13px; height: 13px; }
.benefit-list li strong { color: var(--black); }
.who { margin-top: 1.25rem; padding: .85rem 1rem; background: var(--gray-1); border-radius: 10px; font-size: .86rem; color: var(--gray-3); }
.who strong { color: var(--black); }

/* Mockups (reine CSS-Skizzen) */
.mock { background: var(--white); border: 1px solid var(--gray-1); border-radius: 14px; box-shadow: 0 20px 50px rgba(15,28,20,.08); overflow: hidden; font-size: .78rem; }
.mock-bar { height: 34px; background: var(--gray-1); display: flex; align-items: center; gap: .4rem; padding: 0 .8rem; border-bottom: 1px solid #E5E7E5; }
.mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: #D5D9D6; }
.mock-bar .mb-title { margin-left: .5rem; font-size: .7rem; color: var(--gray-2); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.mock-body { padding: 1rem; }
.mock-row { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid var(--gray-1); }
.mock-row:last-child { border-bottom: 0; }
.mock-row .mr-name { flex: 1; font-weight: 600; color: var(--black); }
.mock-row .mr-sub { flex: 1; color: var(--gray-2); }
.mock-row .mr-val { font-weight: 700; font-variant-numeric: tabular-nums; }
.mock-chip { padding: .18rem .55rem; border-radius: 99px; font-size: .68rem; font-weight: 700; }
.chip-g { background: #EBF6F0; color: var(--green); } .chip-a { background: #FFF6E5; color: #946200; } .chip-b { background: #EAF2FB; color: #2B6CB0; } .chip-r { background: #FDECEA; color: #C0392B; } .chip-n { background: var(--gray-1); color: var(--gray-3); }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: .8rem; }
.mock-kpi { border: 1px solid var(--gray-1); border-radius: 10px; padding: .6rem .7rem; }
.mock-kpi .k-l { font-size: .58rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-2); font-weight: 700; }
.mock-kpi .k-v { font-size: 1.1rem; font-weight: 300; margin-top: .15rem; }
.mock-kpi.dark { background: #202223; color: #fff; border-color: #202223; } .mock-kpi.dark .k-l { color: rgba(255,255,255,.5); }
.mock-bars { display: flex; align-items: flex-end; gap: .45rem; height: 90px; padding: .3rem 0; }
.mock-bars i { flex: 1; background: var(--green); border-radius: 4px 4px 0 0; display: block; }
.mock-btn { display: inline-block; padding: .4rem .8rem; border-radius: 8px; background: var(--black); color: #fff; font-weight: 700; font-size: .72rem; }
.mock-tag { display: inline-flex; flex-direction: column; border: 1px solid var(--gray-1); border-radius: 8px; padding: .7rem .9rem; min-width: 150px; }
.mock-tag .t-n { font-family: var(--font-d); font-size: .95rem; font-weight: 500; } .mock-tag .t-l { font-size: .62rem; color: var(--gray-2); font-style: italic; } .mock-tag .t-p { font-size: 1.15rem; font-weight: 700; margin-top: .35rem; }
.mock-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.mock-cal span { aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .7rem; position: relative; }
.mock-cal span.has::after { content: ""; position: absolute; bottom: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.mock-cal span.warn::after { background: #946200; }
.mock-cal span.today { background: #EBF6F0; color: var(--green); font-weight: 700; }
.mock-stepper { display: inline-flex; align-items: center; border: 1px solid var(--gray-1); border-radius: 8px; overflow: hidden; }
.mock-stepper b { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--gray-1); }
.mock-stepper span { width: 40px; text-align: center; font-weight: 700; }
.mock-progress { height: 6px; background: var(--gray-1); border-radius: 99px; overflow: hidden; } .mock-progress i { display: block; height: 100%; background: var(--green); border-radius: 99px; }

/* Guide */
.guide-layout { display: grid; grid-template-columns: 250px 1fr; gap: 3rem; align-items: start; }
.guide-toc { position: sticky; top: 92px; max-height: calc(100vh - 110px); overflow-y: auto; }
.guide-toc a { display: block; padding: .42rem .75rem; border-radius: 8px; font-size: .86rem; color: var(--gray-3); text-decoration: none; border-left: 2px solid transparent; }
.guide-toc a:hover { color: var(--black); background: var(--gray-1); }
.guide-toc a.active { color: var(--green); border-left-color: var(--green); background: var(--green-lt); font-weight: 600; }
.guide-toc .sn-group { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-2); padding: 1.1rem .75rem .35rem; }
.guide-section { padding: 1.5rem 0 2.5rem; border-bottom: 1px solid var(--gray-1); scroll-margin-top: 90px; }
.guide-section h2 { font-family: var(--font-d); font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 500; margin-bottom: .5rem; letter-spacing: -.01em; }
.guide-section h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .6rem; }
.guide-section p { font-size: .95rem; line-height: 1.7; color: var(--gray-4); margin-bottom: .8rem; }
.guide-section .g-intro { color: var(--gray-3); font-size: 1rem; }
.steps { list-style: none; counter-reset: st; display: flex; flex-direction: column; gap: .7rem; margin: .5rem 0 1rem; }
.steps li { counter-increment: st; display: flex; gap: .9rem; font-size: .95rem; line-height: 1.6; color: var(--gray-4); }
.steps li::before { content: counter(st); width: 26px; height: 26px; border-radius: 50%; background: var(--black); color: #fff; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .15rem; }
.steps li strong { color: var(--black); }
.kbd { display: inline-block; padding: .1rem .45rem; border: 1px solid var(--gray-1); border-bottom-width: 2px; border-radius: 5px; background: var(--white); font-size: .8rem; font-weight: 600; color: var(--black); white-space: nowrap; }
.tip { display: flex; gap: .75rem; padding: .9rem 1rem; border-radius: 10px; font-size: .88rem; line-height: 1.55; margin: 1rem 0; }
.tip.green { background: var(--green-lt); color: #14532D; } .tip.gold { background: var(--gold-lt); color: #6B5A1F; } .tip.gray { background: var(--gray-1); color: var(--gray-4); }
.tip .tip-ico { flex-shrink: 0; font-size: 1rem; }
.guide-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; margin: .75rem 0; }
.guide-card { border: 1px solid var(--gray-1); border-radius: 10px; padding: .85rem 1rem; }
.guide-card b { display: block; font-size: .88rem; margin-bottom: .2rem; } .guide-card span { font-size: .82rem; color: var(--gray-3); line-height: 1.5; }
.guide-search { width: 100%; padding: .8rem 1rem .8rem 2.6rem; border: 1px solid var(--gray-1); border-radius: 10px; font-size: .95rem; font-family: inherit; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239BA1A6' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat .9rem center; }
.guide-search:focus { outline: 2px solid var(--green-md); border-color: var(--green-md); }
.guide-section.hidden { display: none; }

/* Pricing-Vergleich */
.plan-compare { width: 100%; border-collapse: collapse; font-size: .9rem; }
.plan-compare th, .plan-compare td { padding: .75rem .6rem; border-bottom: 1px solid var(--gray-1); text-align: center; }
.plan-compare th:first-child, .plan-compare td:first-child { text-align: left; }
.plan-compare thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-3); }
.plan-compare td .ok { color: var(--green); font-weight: 700; } .plan-compare td .no { color: var(--gray-2); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .module-layout, .guide-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .module-sidenav, .guide-toc { position: static; display: flex; gap: .3rem; overflow-x: auto; padding-bottom: .5rem; max-height: none; }
  .module-sidenav .sn-group, .guide-toc .sn-group { display: none; }
  .module-sidenav a, .guide-toc a { white-space: nowrap; border-left: 0; border: 1px solid var(--gray-1); border-radius: 99px; padding: .4rem .8rem; }
  .module-sidenav a.active, .guide-toc a.active { border-color: var(--green); }
  .module-body { grid-template-columns: 1fr; }
}

/* Hero: App-Screen hell im dunklen Rahmen */
.app-frame-inner .app-screen-light { background: #F6F7F8; padding: 1.25rem; text-align: left; }
.app-frame-inner .app-screen-light .mock-body { background: #fff; border-radius: 12px; border: 1px solid #E5E7E5; padding: 1.2rem; font-size: .85rem; }
.app-frame-url { color: rgba(255,255,255,.55); font-size: .72rem; }
/* Preiskarten immer 3-spaltig ab 900px */
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr) !important; } }

/* ═══ Feature Showcase: abwechselnde Bild/Text-Blöcke ════════════ */
.showcase { padding: clamp(4rem, 7vw, 6rem) 0; }
.showcase + .showcase { padding-top: 0; }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.showcase-inner.reverse { direction: rtl; }
.showcase-inner.reverse > * { direction: ltr; }

/* iPad-Rahmen */
.ipad-frame { position: relative; flex-shrink: 0; }
.ipad-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  /* filter statt box-shadow: funktioniert sauber mit border-radius
     und verursacht keine Sub-Pixel-Unschärfe */
  filter: drop-shadow(0 20px 48px rgba(15,28,20,.18)) drop-shadow(0 4px 12px rgba(15,28,20,.1));
  /* Schärfe sicherstellen: keine zusätzlichen Transforms */
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Text-Seite */
.showcase-text {}
.showcase-eyebrow { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .6rem; }
.showcase-title { font-family: var(--font-d); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -.015em; line-height: 1.15; color: var(--black); margin-bottom: .9rem; }
.showcase-lead { font-size: 1rem; color: var(--gray-3); line-height: 1.65; margin-bottom: 1.75rem; }
.benefit-items { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: .85rem; }
.benefit-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-ico svg { width: 17px; height: 17px; }
.benefit-body {}
.benefit-label { font-size: .9rem; font-weight: 700; color: var(--black); margin-bottom: .15rem; }
.benefit-desc { font-size: .85rem; color: var(--gray-3); line-height: 1.55; }

/* Scroll-Animationen */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (max-width: 840px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-inner.reverse { direction: ltr; }
  /* Bild immer zuerst auf Mobile */
  .showcase-inner.reverse .showcase-text { order: 2; }
  .showcase-inner.reverse .ipad-frame { order: 1; }
}

/* Nav mobile: toggle via class */
.nav-mobile-menu { display:none; flex-direction:column; gap:.25rem; padding:.75rem 0 1rem; }
nav.nav-open .nav-mobile-menu { display:flex; }
.nav-mobile-menu a { padding:.7rem 1rem; font-weight:500; color:var(--gray-4); text-decoration:none; border-radius:8px; }
.nav-mobile-menu a:hover { background:var(--gray-1); }
.nav-mobile-menu hr { border:none; border-top:1px solid var(--gray-1); }
@media(max-width:900px){
  .nav-links,.nav-cta .btn-ghost { display:none; }
  .nav-mobile-toggle { display:flex; }
}
@media(min-width:901px){
  .nav-mobile-toggle { display:none; }
  .nav-mobile-menu { display:none!important; }
  .nav-cta { display:flex; }
  .btn-ghost { display:inline-flex!important; }
}

/* ═══ HERO v2 ══════════════════════════════════════════════════ */
.hero-v2 {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
  position: relative;
}
.hero-v2::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(26,122,69,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,3rem);
}
.hero-v2-text { z-index: 1; }
.hero-v2-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(168,213,190,.12); color: var(--green-md);
  border: 1px solid rgba(168,213,190,.25);
  padding: .35rem .85rem; border-radius: 99px;
  font-size: .75rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-v2-badge-dot { width:6px;height:6px;border-radius:50%;background:var(--green-md);animation:pulse 2s infinite; }
.hero-v2-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-v2-title em { font-style:italic; color:var(--green-md); }
.hero-v2-sub {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  line-height: 1.65;
  color: rgba(247,245,240,.6);
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-v2-actions { display:flex;gap:.85rem;flex-wrap:wrap;margin-bottom:2rem; }
.hero-v2-trust {
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-size: .77rem; color: rgba(247,245,240,.4);
}
.hero-v2-trust span::before { content:"✓ "; color:var(--green-md); }
.hero-v2-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.hero-v2-img img {
  width: 100%;
  max-width: 620px;
  border-radius: 20px 20px 0 0;
  display: block;
  filter: drop-shadow(0 -10px 40px rgba(26,122,69,.15));
  image-rendering: high-quality;
  transform: translateZ(0);
}
.hero-v2-img-label {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  background: rgba(15,28,20,.85); backdrop-filter: blur(10px);
  color: rgba(247,245,240,.7); font-size: .72rem; font-weight:500;
  padding: .3rem .75rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
@media(max-width:840px){
  .hero-v2-inner { grid-template-columns:1fr; text-align:center; }
  .hero-v2-sub { max-width:100%; }
  .hero-v2-actions { justify-content:center; }
  .hero-v2-trust { justify-content:center; }
  .hero-v2-img { margin-top:2rem; }
  .hero-v2-img img { border-radius: 16px 16px 0 0; }
}

/* Floating Stats unter dem Hero */
.hero-stats {
  background: var(--black);
  padding-bottom: clamp(2.5rem,5vw,4rem);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-stats-inner {
  max-width:1200px; margin:0 auto;
  padding: 1.5rem clamp(1.25rem,5vw,3rem);
  display: grid; grid-template-columns: repeat(3,1fr);
  gap:1px; background: rgba(255,255,255,.06);
  border-radius: 16px; overflow:hidden;
}
.hero-stat {
  background: rgba(255,255,255,.03);
  padding: 1.5rem 2rem;
  text-align:center;
}
.hero-stat-n { font-family:var(--font-d); font-size:2rem; font-weight:300; color:#fff; }
.hero-stat-l { font-size:.78rem; color:rgba(247,245,240,.4); margin-top:.2rem; }
@media(max-width:600px){ .hero-stats-inner { grid-template-columns:1fr; } }

/* Warum-Dreier-Grid */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.why-card { border:1px solid var(--gray-1); border-radius:16px; padding:1.75rem; background:#fff; }
.why-card-ico { width:44px;height:44px;border-radius:11px;background:var(--green-lt);color:var(--green);display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem; }
.why-card-ico svg { width:20px;height:20px; }
.why-card h3 { font-size:1rem;font-weight:700;margin-bottom:.5rem; }
.why-card p { font-size:.88rem;color:var(--gray-3);line-height:1.6; }
@media(max-width:700px){ .why-grid { grid-template-columns:1fr; } }

/* ═══════════════════════════════════════════════════════════════
   WARMES FLORIST-DESIGN — ersetzt das harte Schwarz/Weiß
   Palette: Waldgrün · Salbei · Terrakotta · Creme · Rose
═══════════════════════════════════════════════════════════════ */

:root {
  --black:    #1E2B1A;       /* warmes Dunkelgrün statt Kalt-Schwarz */
  --white:    #FBF8F2;       /* warmes Creme statt Eisweiß */
  --green:    #2A5C3F;       /* Waldgrün, tiefer und wärmer */
  --green-lt: #EAF2E8;       /* helles Salbeigrün */
  --green-md: #7DB88A;       /* Salbeigrün-Akzent */
  --bloom:    #C96B4A;       /* Terrakotta — CTA, Highlights */
  --bloom-lt: #F5E8E3;       /* helles Terrakotta */
  --gold:     #B8924A;       /* warmes Gold */
  --gold-lt:  #F5EDDB;       /* helles Gold */
  --rose:     #EDE0D8;       /* staubrosa Hintergrund */
  --sage:     #EEF4EC;       /* heller Salbei-Hintergrund */
  --gray-1:   #F0EDE8;       /* warm statt kalt */
  --gray-2:   #C8C2B8;
  --gray-3:   #8A8278;
  --gray-4:   #4A433C;
  --radius:   14px;
  --font-d:   'Fraunces', Georgia, serif;
  --font-b:   'Inter', system-ui, sans-serif;
}

/* Hintergrund warm */
body { background: var(--white); }

/* ── Navigation: weiß mit warmem Unterton ─────────────────────── */
nav { background: rgba(251,248,242,.92); border-bottom-color: #E8E2DA; }

/* ── Buttons: Terrakotta als primäre Farbe ─────────────────────── */
.btn-primary { background: var(--bloom); color: #fff; }
.btn-primary:hover { background: #b05c3c; box-shadow: 0 6px 20px rgba(201,107,74,.3); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #224d33; box-shadow: 0 6px 20px rgba(42,92,63,.3); }

/* ── Hero v2: warm statt dunkel ────────────────────────────────── */
.hero-v2 {
  background: linear-gradient(160deg, #2A5C3F 0%, #1E3D29 60%, #162D1E 100%);
}
.hero-v2::before {
  background: radial-gradient(ellipse, rgba(201,107,74,.2) 0%, transparent 65%);
}
.hero-v2-badge {
  background: rgba(125,184,138,.15);
  color: #9FD4A8;
  border-color: rgba(125,184,138,.25);
}
.hero-v2-badge-dot { background: #7DB88A; }
.hero-v2-title em { color: #9FD4A8; }

/* Hero-Stats: warm */
.hero-stats { background: linear-gradient(160deg, #1E3D29 0%, #1E2B1A 100%); }
.hero-stats-inner { background: rgba(255,255,255,.04); }
.hero-stat-n { color: #9FD4A8; }

/* ── Abschnittshintergründe ────────────────────────────────────── */
.bg-cream { background: #F5F0E8; }
.bg-dark   { background: linear-gradient(160deg, #2A5C3F, #1E2B1A); }

/* ── Why-Cards: cremefarben mit grünem Icon ─────────────────────── */
.why-card { background: #fff; border-color: #E8E2DA; }
.why-card-ico { background: var(--green-lt); color: var(--green); }

/* ── Module-Tiles: warm ─────────────────────────────────────────── */
.module-tile { background: #fff; border-color: #E8E2DA; }
.module-tile:hover { border-color: var(--green); box-shadow: 0 12px 30px rgba(42,92,63,.1); }
.module-tile .mt-ico { background: var(--green-lt); color: var(--green); }

/* ── Showcase-Benefit-Icons ─────────────────────────────────────── */
.benefit-ico { background: var(--green-lt); color: var(--green); }

/* ── Preiskarten ────────────────────────────────────────────────── */
.price-card { border-color: #E8E2DA; }
.price-card.featured { background: var(--green); border-color: var(--green); }
.price-card.featured .price-features li::before { color: #9FD4A8; }
.price-card.featured .price-features li { color: rgba(251,248,242,.85); }
.price-badge { background: var(--bloom); color: #fff; }

/* ── Eyebrow: warm grün ─────────────────────────────────────────── */
.eyebrow { color: var(--green); }
.page-hero .eyebrow { color: #9FD4A8; }
.bg-dark .eyebrow { color: #9FD4A8; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-q.open .faq-icon { background: var(--green); }

/* ── Legal ──────────────────────────────────────────────────────── */
.legal-body a { color: var(--green); }
.legal-body h2 { color: var(--black); }

/* ══ NEUE SEKTIONEN ════════════════════════════════════════════ */

/* Montag-Morgen Story */
.story-timeline { display:flex; flex-direction:column; gap:0; max-width:680px; margin:0 auto; }
.story-step { display:grid; grid-template-columns:80px 1fr; gap:1.5rem; padding:1.75rem 0; position:relative; }
.story-step:not(:last-child)::after { content:""; position:absolute; left:39px; top:72px; bottom:0; width:2px; background:var(--green-lt); }
.story-time { text-align:right; padding-top:.2rem; }
.story-time-val { font-family:var(--font-d); font-size:1.1rem; font-weight:500; color:var(--green); line-height:1.2; }
.story-time-label { font-size:.72rem; color:var(--gray-3); margin-top:.1rem; }
.story-dot { position:absolute; left:32px; top:1.9rem; width:16px; height:16px; border-radius:50%; background:var(--green); border:3px solid var(--white); z-index:1; }
.story-body h3 { font-size:1rem; font-weight:700; color:var(--black); margin-bottom:.35rem; }
.story-body p { font-size:.9rem; color:var(--gray-3); line-height:1.6; }
.story-body .story-tool { display:inline-flex; align-items:center; gap:.4rem; background:var(--green-lt); color:var(--green); font-size:.75rem; font-weight:600; padding:.25rem .65rem; border-radius:99px; margin-top:.5rem; }

/* Vor/Nachher */
.vs-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.vs-card { border-radius:20px; padding:2rem; }
.vs-card.before { background:var(--rose); }
.vs-card.after { background:var(--green); color:#fff; }
.vs-card h3 { font-size:1rem; font-weight:700; margin-bottom:1.25rem; }
.vs-card.before h3 { color:var(--gray-4); }
.vs-card.after h3 { color:rgba(251,248,242,.7); }
.vs-item { display:flex; align-items:flex-start; gap:.75rem; font-size:.9rem; margin-bottom:.85rem; line-height:1.5; }
.vs-card.before .vs-item { color:var(--gray-4); }
.vs-card.after .vs-item { color:rgba(251,248,242,.85); }
.vs-ico { width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.8rem; margin-top:.05rem; }
.vs-card.before .vs-ico { background:rgba(201,107,74,.15); color:var(--bloom); }
.vs-card.after .vs-ico { background:rgba(255,255,255,.15); color:rgba(251,248,242,.8); }
@media(max-width:640px){ .vs-grid { grid-template-columns:1fr; } }

/* iPad-Highlight */
.ipad-highlight { background:var(--sage); border-radius:24px; padding:clamp(2rem,5vw,3.5rem); display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:center; }
.ipad-highlight-text h2 { font-family:var(--font-d); font-size:clamp(1.6rem,3vw,2.2rem); font-weight:400; color:var(--black); margin-bottom:.75rem; letter-spacing:-.02em; }
.ipad-highlight-text p { font-size:.95rem; color:var(--gray-3); line-height:1.65; }
.ipad-features { display:flex; flex-direction:column; gap:.75rem; margin-top:1.25rem; }
.ipad-feature { display:flex; align-items:center; gap:.75rem; font-size:.9rem; color:var(--gray-4); font-weight:500; }
.ipad-feature::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--green); flex-shrink:0; }
@media(max-width:760px){ .ipad-highlight { grid-template-columns:1fr; } }
