/* ===== Skip Link (Barrierefreiheit) ===== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 200;
  text-decoration: none;
  font-size: 14px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ===== Header: Logo mittig, Menü rechts ===== */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 246, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.mkt-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.mkt-nav-side { display: flex; }
.mkt-nav-side--right { justify-content: flex-end; }
.mkt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  justify-self: center;
}
.mkt-logo svg { color: var(--primary); }

.mkt-menu-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.mkt-menu-btn:hover { border-color: var(--primary); background: var(--accent-soft); }

/* ===== Ausklapp-Menü ===== */
.mkt-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 20, 18, 0.35);
  z-index: 70;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mkt-menu-overlay.is-open { opacity: 1; }

.mkt-menu-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100%);
  background: #fff;
  z-index: 80;
  padding: 24px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mkt-menu-panel.is-open { transform: translateX(0); }

.mkt-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mkt-menu-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; }
.mkt-menu-list { list-style: none; padding: 0; margin: 0 0 8px; }
.mkt-menu-list li { margin-bottom: 4px; }
.menu-link {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease;
}
.menu-link:hover { background: var(--bg); }

.mkt-menu-cta { text-align: center; margin: 4px 0; }
.mkt-menu-divider { height: 1px; background: var(--border); margin: 16px 0; }
.mkt-menu-section { margin-bottom: 8px; }
.mkt-menu-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-secondary); margin-bottom: 10px; }

.mkt-lang-switch, .mkt-contrast-switch {
  display: flex;
  gap: 8px;
  background: var(--bg);
  padding: 4px;
  border-radius: 10px;
}
.lang-btn, .contrast-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}
.lang-btn.active, .contrast-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,0.1); font-weight: 500; }

/* ===== Hero ===== */
.mkt-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px 80px;
}
.mkt-motif { position: absolute; color: var(--primary); pointer-events: none; }
.mkt-motif--tl { top: -50px; left: -50px; opacity: 0.07; }
.mkt-motif--br { bottom: -40px; right: -30px; opacity: 0.06; }

.mkt-hero-inner { max-width: 680px; margin: 0 auto; position: relative; }
.mkt-badge {
  display: inline-flex;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.mkt-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--text);
}
.mkt-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 34px;
}
.mkt-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.mkt-hero-actions .btn-primary, .mkt-hero-actions .btn-secondary { padding: 14px 26px; font-size: 15px; }
.mkt-trust { font-size: 13px; color: var(--text-secondary); }

.mkt-microtrust {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0 24px 60px;
}

@media (max-width: 640px) {
  .mkt-hero { padding: 70px 20px 50px; }
  .mkt-hero h1 { font-size: 30px; }
  .mkt-hero-sub { font-size: 16px; }
}

/* ===== Fade-in (Hero) ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeUp 0.6s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== Scroll reveal (mit leichtem Zoom, wirkt lebendiger als reines Fade) ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===== Sections ===== */
.mkt-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mkt-icon-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.mkt-section > *:not(.mkt-icon-motif) {
  position: relative;
  z-index: 1;
}
.mkt-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.mkt-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.mkt-lede {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .mkt-section { padding: 56px 20px; }
  .mkt-section h2 { font-size: 25px; }
}

/* ===== Stats ===== */
.mkt-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.mkt-stat-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px 18px; }
.mkt-stat-num { font-family: 'Fraunces', serif; font-weight: 600; font-size: 30px; color: var(--primary); margin-bottom: 8px; }
.mkt-stat-label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 720px) { .mkt-stat-grid { grid-template-columns: 1fr; } }

/* ===== Feature cards ===== */
.mkt-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 44px; text-align: left; }
.mkt-feature-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mkt-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.mkt-feature-icon { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--primary); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 18px; }
.mkt-feature-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; margin: 0 0 10px; color: var(--text); }
.mkt-feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .mkt-feature-grid { grid-template-columns: 1fr; } }

/* ===== Steps ===== */
.mkt-steps { background: var(--bg); border-radius: 28px; }
.mkt-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; margin-top: 44px; }
.mkt-step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; margin: 0 auto 16px; }
.mkt-step h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; margin: 0 0 8px; }
.mkt-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
@media (max-width: 720px) { .mkt-step-grid { grid-template-columns: 1fr; } }

/* ===== Benefits ===== */
.mkt-benefit-grid { display: flex; flex-direction: column; gap: 18px; max-width: 640px; margin: 40px auto 0; text-align: left; }
.mkt-benefit-row { display: flex; gap: 14px; align-items: flex-start; }
.mkt-benefit-row i { color: var(--primary); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.mkt-benefit-row div { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.mkt-benefit-row strong { color: var(--text); }

/* ===== Add-ons ===== */
.mkt-addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 20px; text-align: left; }
.mkt-addon-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; }
.mkt-addon-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 16px; }
.mkt-addon-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; margin: 0 0 10px; }
.mkt-addon-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 14px; }
.mkt-addon-price { font-size: 13px; font-weight: 600; color: var(--primary); }
@media (max-width: 720px) { .mkt-addon-grid { grid-template-columns: 1fr; } }

/* ===== CTA band (pricing) ===== */
.mkt-cta-band { background: var(--primary); border-radius: 28px; max-width: 1000px; color: #fff; }
.mkt-cta-band .mkt-eyebrow { color: rgba(255,255,255,0.85); }
.mkt-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 40px 0; text-align: left; }
.mkt-price-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 26px; }
.mkt-price-title { font-size: 13px; opacity: 0.85; margin-bottom: 10px; }
.mkt-price-amount { font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px; margin-bottom: 10px; }
.mkt-price-amount span { font-size: 14px; font-weight: 400; opacity: 0.8; margin-left: 4px; }
.mkt-price-card p { font-size: 13px; opacity: 0.85; margin: 0; line-height: 1.5; }
.mkt-cta-btn { background: #fff; color: var(--primary); padding: 14px 28px; font-size: 15px; }
.mkt-cta-btn:hover { background: #f2f1ec; }
.mkt-price-note { margin-top: 16px; font-size: 12px; opacity: 0.75; text-align: center; }
@media (max-width: 720px) { .mkt-price-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.mkt-faq { max-width: 680px; margin: 40px auto 0; text-align: left; }
.mkt-faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.mkt-faq summary { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after { content: '+'; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 20px; color: var(--primary); margin-left: 12px; }
.mkt-faq details[open] summary::after { content: '–'; }
.mkt-faq p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 12px 0 0; }

/* ===== Final CTA ===== */
.mkt-final-cta h2 { max-width: 520px; }
.mkt-cta-btn-dark { padding: 14px 28px; font-size: 15px; }

/* ===== Über mich ===== */
.mkt-about-text {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}
.mkt-about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 20px;
}
.mkt-about-text strong { color: var(--text); }
.mkt-about-signature {
  max-width: 600px;
  margin: 8px auto 0;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text);
}

/* ===== Footer ===== */
.mkt-footer { border-top: 1px solid var(--border); padding: 40px 24px 24px; }
.mkt-footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.mkt-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.mkt-footer-links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; }
.mkt-footer-links a:hover { color: var(--text); }
.mkt-footer-copy { max-width: 1000px; margin: 24px auto 0; font-size: 12px; color: var(--text-secondary); }

/* ================= HOHER KONTRAST ================= */
body.high-contrast {
  --text: #000000;
  --text-secondary: #1a1a1a;
  --border: #000000;
  --bg: #ffffff;
  --primary: #054d3a;
  --accent-soft: #cdeee0;
}
body.high-contrast .mkt-nav { background: #ffffff; border-bottom: 2px solid #000; }
body.high-contrast .mkt-feature-card,
body.high-contrast .mkt-stat-card,
body.high-contrast .mkt-addon-card,
body.high-contrast .mkt-price-card { border-width: 2px; }
body.high-contrast a:focus-visible,
body.high-contrast button:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}
body.high-contrast .mkt-cta-band { background: #000; }
body.high-contrast .mkt-hero-sub,
body.high-contrast .mkt-lede { color: #1a1a1a; }
