/* ============================================================
   FinanzNest – Design System 2026
   Hell, organisch, mit Tiefe. Grün/Creme Markenwelt.
   ============================================================ */

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

/* ── Fonts (selbst gehostet, DSGVO-konform) ── */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/fraunces-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-latin-600-italic.woff2') format('woff2');
}

:root {
  /* Marke */
  --green-dark:    #1A4731;
  --green-mid:     #2D6A4F;
  --green-accent:  #52B788;
  --green-soft:    #D8EDDF;
  --mint:          #EAF6EE;
  --sage:          #F0F5EE;
  --cream:         #F7F3EC;
  --cream-dark:    #EDE8DF;
  --white:         #FDFCF9;
  --gold:          #E9C46A;
  --gold-soft:     #F6E7C1;
  --text-dark:     #182420;
  --text-muted:    #47594F;
  --text-light:    #7A9186;

  /* System */
  --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --max-width:     1140px;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm:     0 2px 10px rgba(26, 71, 49, 0.06);
  --shadow:        0 10px 40px -8px rgba(26, 71, 49, 0.12);
  --shadow-lg:     0 24px 70px -12px rgba(26, 71, 49, 0.18);
  --glass:         rgba(253, 252, 249, 0.72);
  --glass-border:  rgba(255, 255, 255, 0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--green-soft); color: var(--green-dark); }

img { max-width: 100%; }

h1, h2, h3, .display { font-family: var(--font-display); letter-spacing: -0.01em; }

/* ============================================================
   NAV
   ============================================================ */
nav#main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 14px 24px 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 14px 0 20px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
nav#main-nav.scrolled .nav-inner { box-shadow: var(--shadow); background: rgba(253, 252, 249, 0.88); }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-accent);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { right: 0; }

.btn-nav {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  box-shadow: 0 4px 14px rgba(26, 71, 49, 0.25);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26, 71, 49, 0.3); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  pointer-events: auto;
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: var(--max-width);
  margin: 8px auto 0;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); visibility: visible; }
.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-mobile-menu a:hover { background: var(--mint); }
.btn-nav-mobile {
  background: var(--green-dark);
  color: var(--white) !important;
  text-align: center;
  border-radius: 999px !important;
  margin-top: 6px;
  font-weight: 700 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(26, 71, 49, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(26, 71, 49, 0.34), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-secondary {
  display: inline-block;
  background: var(--glass);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid var(--green-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--green-accent); background: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: -94px;
  padding: 170px 32px 90px;
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(216, 237, 223, 0.9), transparent 62%),
    radial-gradient(900px 520px at 95% 8%, rgba(246, 231, 193, 0.55), transparent 60%),
    radial-gradient(700px 500px at 70% 95%, rgba(216, 237, 223, 0.65), transparent 65%),
    linear-gradient(180deg, #FBF9F4 0%, var(--white) 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--glass);
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.2);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-dark);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--green-accent);
  position: relative;
  white-space: nowrap;
}
.hero h1 em svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%; height: 12px;
}
.hero h1 em svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-underline 1s var(--ease) 0.9s forwards;
}
@keyframes draw-underline { to { stroke-dashoffset: 0; } }
.hero p.lead {
  font-size: 1.16rem;
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: 32px;
}
.hero-portrait-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.hero-portrait {
  position: relative;
  width: min(360px, 78vw);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
}
.hero-portrait .portrait-card {
  position: relative;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  background: var(--green-soft);
}
.hero-portrait img { display: block; width: 100%; height: auto; }
.portrait-ring {
  position: absolute;
  inset: -22px;
  border: 1.5px dashed rgba(82, 183, 136, 0.5);
  border-radius: 48% 52% 50% 50% / 46% 48% 52% 54%;
  animation: spin-slow 34s linear infinite;
  pointer-events: none;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.portrait-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  animation: float-chip 6s ease-in-out infinite;
}
.portrait-chip svg { width: 18px; height: 18px; flex-shrink: 0; }
.chip-1 { top: 6%; left: -14%; animation-delay: 0s; }
.chip-2 { bottom: 14%; right: -12%; animation-delay: 1.6s; }
.chip-3 { bottom: -5%; left: 2%; animation-delay: 3.1s; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { padding: 0 32px; margin-top: -30px; position: relative; z-index: 3; }
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  justify-content: center;
}
.trust-item .t-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 12px;
  color: var(--green-mid);
}
.trust-item .t-icon svg { width: 20px; height: 20px; }

/* ============================================================
   SECTIONS (Basics)
   ============================================================ */
section { padding: 100px 32px; position: relative; }
.section-inner { max-width: var(--max-width); margin: 0 auto; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--green-accent);
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: 22em;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 38em;
  margin-bottom: 48px;
}

/* ── Scroll-Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: linear-gradient(180deg, var(--white), var(--sage) 55%, var(--white)); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo-wrap { position: relative; display: flex; justify-content: center; }
.about-photo {
  position: relative;
  width: min(340px, 80vw);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.about-photo:hover { transform: rotate(0deg) scale(1.02); }
.about-photo img { display: block; width: 100%; height: auto; }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
}
.about-leaf {
  position: absolute;
  width: 84px; height: 84px;
  z-index: 2;
  opacity: 0.9;
}
.about-leaf.leaf-tl { top: -26px; left: 4%; transform: rotate(-24deg); }
.about-leaf.leaf-br { bottom: -20px; right: 6%; transform: rotate(130deg) scaleX(-1); width: 66px; height: 66px; }
.about-content p { margin-bottom: 18px; color: var(--text-muted); }
.about-content p strong { color: var(--text-dark); }
.about-badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--glass);
  border: 1px solid var(--green-soft);
  border-left: 4px solid var(--green-accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}
.about-badge .badge-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 10px;
  color: var(--green-mid);
}
.about-badge .badge-icon svg { width: 18px; height: 18px; }

/* ============================================================
   OFFER – Karten
   ============================================================ */
.offer { overflow: hidden; }
.offer .bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.offer .blob-1 { width: 480px; height: 480px; background: rgba(216, 237, 223, 0.75); top: -120px; right: -140px; }
.offer .blob-2 { width: 380px; height: 380px; background: rgba(246, 231, 193, 0.5); bottom: -80px; left: -120px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}
.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--green-soft));
  border-radius: 18px;
  margin-bottom: 20px;
  color: var(--green-mid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow-sm);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.card-list { list-style: none; }
.card-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 19px; height: 19px;
  background-color: var(--green-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ============================================================
   HOW – Schritte mit wachsender Ranke
   ============================================================ */
.how { background: linear-gradient(180deg, var(--white), var(--mint) 60%, var(--white)); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}
.vine-track {
  position: absolute;
  top: 44px;
  left: 12%; right: 12%;
  height: 40px;
  z-index: 0;
  pointer-events: none;
}
.vine-track svg { width: 100%; height: 100%; overflow: visible; }
.vine-track .vine-path {
  fill: none;
  stroke: var(--green-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.55;
  transition: stroke-dashoffset 2.2s var(--ease);
}
.steps.visible .vine-path { stroke-dashoffset: 0; }
.step {
  position: relative;
  z-index: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-plant {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--green-soft));
  border-radius: 50%;
  color: var(--green-mid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 6px 18px rgba(45, 106, 79, 0.15);
}
.step-plant svg { width: 34px; height: 34px; }
.step .step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  background: var(--white);
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  padding: 3px 13px;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.step p { font-size: 0.94rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 16px; max-width: 30em; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.contact-detail a { color: var(--green-mid); font-weight: 600; text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-detail .c-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 12px;
  color: var(--green-mid);
}
.contact-detail .c-icon svg { width: 19px; height: 19px; }
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 71, 49, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26, 71, 49, 0.32); }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 14px; text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: linear-gradient(180deg, var(--white), var(--sage) 65%, var(--white)); }
.faq-list { max-width: 760px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: left;
  padding: 20px 24px;
}
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--green-mid);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-accent); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.96rem; color: var(--text-muted); }

/* ============================================================
   BOOKING / CTA
   ============================================================ */
.booking { padding-bottom: 120px; }
.booking .booking-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(82, 183, 136, 0.22), transparent 60%),
    radial-gradient(500px 280px at 10% 100%, rgba(233, 196, 106, 0.2), transparent 60%),
    linear-gradient(150deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 70px 48px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking .booking-card .section-label { color: var(--gold-soft); }
.booking .booking-card .section-label::before { background: var(--gold); }
.booking .booking-card .section-title { color: var(--white); margin-left: auto; margin-right: auto; }
.booking .booking-card .section-subtitle { color: rgba(253, 252, 249, 0.82); margin-left: auto; margin-right: auto; }
.booking .booking-card .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.booking-note { font-size: 0.85rem; color: rgba(253, 252, 249, 0.65); margin-top: 20px; }
.booking-leaves {
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
}
.booking-leaves.bl-1 { width: 190px; height: 190px; top: -40px; left: -34px; transform: rotate(-32deg); }
.booking-leaves.bl-2 { width: 150px; height: 150px; bottom: -34px; right: -20px; transform: rotate(140deg); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 1000;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(24, 36, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.85);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: 0.87rem; line-height: 1.6; flex: 1; min-width: 220px; margin: 0; }
#cookie-banner a { color: var(--green-accent); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--green-accent);
  color: #0E1A12;
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}
.btn-cookie-accept:hover { background: #6BCB9E; transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.55); color: rgba(255,255,255,0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  color: rgba(253, 252, 249, 0.75);
  padding: 70px 32px 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold), var(--green-accent));
  opacity: 0.7;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 6px;
}
.footer-tagline { font-size: 0.92rem; margin-bottom: 24px; color: rgba(253, 252, 249, 0.6); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  color: rgba(253, 252, 249, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-accent); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0 auto 24px; max-width: 640px; }
.footer-legal { font-size: 0.78rem; color: rgba(253, 252, 249, 0.5); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   BLOG – Übersicht
   ============================================================ */
.blog-hero {
  padding: 150px 32px 60px;
  margin-top: -94px;
  background:
    radial-gradient(900px 420px at 15% -5%, rgba(216, 237, 223, 0.9), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(246, 231, 193, 0.5), transparent 60%),
    linear-gradient(180deg, #FBF9F4, var(--white));
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.blog-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 36em; margin: 0 auto; }
.blog-grid-section { padding-top: 30px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-card:hover::before { opacity: 1; }
.post-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--mint);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.post-card h2, .post-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-card p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}
.post-meta .read-link { color: var(--green-mid); margin-left: auto; font-weight: 700; }
.post-card:hover .read-link { text-decoration: underline; }
.post-card.coming-soon { opacity: 0.75; cursor: default; }
.post-card.coming-soon:hover { transform: none; box-shadow: var(--shadow-sm); }

/* ============================================================
   BLOG – Artikel
   ============================================================ */
.article-hero {
  padding: 150px 32px 40px;
  margin-top: -94px;
  background:
    radial-gradient(800px 380px at 12% -5%, rgba(216, 237, 223, 0.85), transparent 60%),
    radial-gradient(600px 340px at 92% 5%, rgba(246, 231, 193, 0.45), transparent 60%),
    linear-gradient(180deg, #FBF9F4, var(--white));
}
.article-hero .article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 14px 0 18px;
}
.article-hero .article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.86rem;
  color: var(--text-light);
  font-weight: 600;
}
.article-body { max-width: 780px; margin: 0 auto; padding: 30px 32px 90px; }
.article-body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 44px 0 16px;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 32px 0 12px;
}
.article-body p { margin-bottom: 18px; color: var(--text-muted); }
.article-body strong { color: var(--text-dark); }
.article-body a { color: var(--green-mid); font-weight: 600; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; color: var(--text-muted); }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--green-accent);
  background: var(--mint);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-body th {
  background: var(--green-dark);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
}
.article-body td { padding: 11px 16px; border-bottom: 1px solid var(--cream-dark); color: var(--text-muted); }
.article-body tr:last-child td { border-bottom: none; }
.info-box, .tip-box, .warning-box {
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.info-box { background: var(--mint); border-left: 4px solid var(--green-accent); }
.tip-box { background: var(--gold-soft); border-left: 4px solid var(--gold); }
.warning-box { background: #FDECEA; border-left: 4px solid #E76F51; }
.article-cta {
  background: linear-gradient(150deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0 0;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.article-cta h3, .article-cta h2 { color: var(--white); margin: 0 0 10px; }
.article-cta p { color: rgba(253, 252, 249, 0.85); margin-bottom: 20px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-mid);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* ============================================================
   LEGAL / SIMPLE PAGES
   ============================================================ */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 32px 90px;
}
.nav-sep { display: none; }
.nav-back {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-mid);
  text-decoration: none;
}
.nav-back:hover { text-decoration: underline; }
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}
.page-label::before {
  content: '';
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--green-accent);
}
.info-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--green-accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 14px 0 22px;
  box-shadow: var(--shadow-sm);
}
.info-block p { margin: 0; }
.legal-page .intro { font-size: 1.05rem; }
.disclaimer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  color: var(--text-light);
}
.disclaimer p { margin: 0; color: var(--text-light); }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 30px;
}
.legal-page h2 { font-size: 1.4rem; color: var(--green-dark); margin: 36px 0 14px; }
.legal-page h3 { font-size: 1.1rem; color: var(--green-dark); margin: 26px 0 10px; }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 14px; }
.legal-page ul { margin-left: 24px; }
.legal-page a { color: var(--green-mid); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .hero-portrait-wrap { order: -1; }
  .hero-portrait { width: min(300px, 70vw); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .vine-track { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  section { padding: 70px 22px; }
  .hero { padding: 150px 22px 80px; }
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  nav#main-nav { padding: 10px 14px 0; }
  .trust-bar { padding: 0 22px; }
  .trust-inner { grid-template-columns: 1fr 1fr; padding: 18px; }
  .trust-item { font-size: 0.82rem; flex-direction: column; text-align: center; gap: 8px; }
  .blog-grid { grid-template-columns: 1fr; }
  .booking .booking-card { padding: 50px 26px; }
  .portrait-chip { font-size: 0.76rem; padding: 8px 12px; }
  .chip-1 { left: -4%; }
  .chip-2 { right: -4%; }
  .contact-form { padding: 26px 20px; }
  .article-body { padding: 20px 22px 70px; }
  .legal-page { padding: 130px 22px 70px; }
}

/* ============================================================
   BLOG-ARTIKEL – Bausteine (article-header, Boxen, Tabellen)
   ============================================================ */
.article-header {
  padding: 150px 32px 46px;
  margin-top: -94px;
  background:
    radial-gradient(800px 380px at 12% -5%, rgba(216, 237, 223, 0.85), transparent 60%),
    radial-gradient(600px 340px at 92% 5%, rgba(246, 231, 193, 0.45), transparent 60%),
    linear-gradient(180deg, #FBF9F4, var(--white));
}
.article-header-inner { max-width: 780px; margin: 0 auto; }
.article-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 16px 0 18px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--green-mid); font-weight: 700; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.article-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--mint);
  border-radius: 999px;
  padding: 6px 14px;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.86rem;
  color: var(--text-light);
  font-weight: 600;
}
.article-body .back-link { margin-bottom: 8px; }

.highlight-box {
  background: var(--mint);
  border-left: 4px solid var(--green-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.highlight-box p { margin: 0; color: var(--text-muted); }
.warn-box {
  background: #FBEFE3;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.warn-box p { margin: 0; color: var(--text-muted); }

.example-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.example-box .example-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
  display: block;
}
.example-box h3 { margin: 0 0 16px; color: var(--green-dark); font-size: 1.08rem; }
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.96rem;
}
.example-row:last-child { border-bottom: none; padding-bottom: 0; }
.example-row .label { color: var(--text-muted); }
.example-row .value { font-weight: 700; color: var(--text-dark); white-space: nowrap; }
.example-row.total { border-top: 2px solid var(--green-soft); margin-top: 4px; padding-top: 14px; }
.example-row.total .value { color: var(--green-dark); font-size: 1.08rem; }
.example-note { font-size: 0.85rem; color: var(--text-light); margin-top: 14px; line-height: 1.6; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 0.93rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--green-dark);
  color: var(--white);
  text-align: left;
  padding: 13px 16px;
  font-weight: 700;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-muted);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--sage); }

.step-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.step-block .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}
.step-block h3 { margin-top: 0; }

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
}
.proscons-card {
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.proscons-card h3 { margin: 0 0 14px; font-size: 1.05rem; }
.proscons-card ul { margin: 0 0 0 20px; }
.proscons-card li { margin-bottom: 10px; font-size: 0.93rem; color: var(--text-muted); }
.proscons-card.pro { background: var(--mint); border: 1px solid var(--green-soft); }
.proscons-card.pro h3 { color: var(--green-dark); }
.proscons-card.con { background: #FBEFE3; border: 1px solid #F0DFC8; }
.proscons-card.con h3 { color: #9C6615; }

.cta-box {
  background:
    radial-gradient(500px 240px at 85% 0%, rgba(82, 183, 136, 0.25), transparent 60%),
    linear-gradient(150deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  margin: 56px 0 0;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-box h3, .cta-box h2 { color: var(--white); font-size: 1.35rem; margin: 0 0 10px; }
.cta-box p { color: rgba(253, 252, 249, 0.82); font-size: 0.97rem; margin-bottom: 24px; }
.cta-box a {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cta-box a:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28); }

@media (max-width: 700px) {
  .proscons { grid-template-columns: 1fr; }
  .example-box { padding: 22px 20px; }
  .compare-table { display: block; overflow-x: auto; }
  .article-header { padding: 130px 22px 36px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   ARTIKEL-SPEZIFISCHE BAUSTEINE (aus Originalen übernommen,
   an die neue helle Designsprache angepasst)
   ============================================================ */
.foerder-card, .goal-card {
  background: var(--glass);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.foerder-card.basis, .goal-card.tagesgeld { border-color: var(--green-accent); }
.foerder-card.familie, .goal-card.etf { border-color: var(--green-dark); }
.foerder-card .foerder-label, .goal-card .goal-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.foerder-card.basis .foerder-label, .goal-card.tagesgeld .goal-label { background: var(--green-soft); color: var(--green-mid); }
.foerder-card.familie .foerder-label, .goal-card.etf .goal-label { background: var(--green-dark); color: var(--white); }
.foerder-card h3, .goal-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.foerder-card p, .goal-card p { margin: 0; font-size: 0.97rem; color: var(--text-muted); }

.anbieter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.anbieter-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.anbieter-card .anbieter-typ { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.anbieter-card h3 { font-size: 1rem; margin: 0 0 8px; color: var(--text-dark); }
.anbieter-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.example-row.gap .value { color: #C97B4A; font-size: 1.05rem; }

.checklist {
  background: var(--mint);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.checklist h3 { color: var(--green-dark); margin: 0 0 18px; font-size: 1.05rem; }
.checklist ul { list-style: none; margin: 0; padding: 0; }
.checklist li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--green-soft);
}
.checklist li:last-child { border-bottom: none; padding-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 18px; height: 18px;
  background-color: var(--green-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.leistung-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.leistung-card .leistung-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px; display: block; }
.leistung-card h3 { margin: 0 0 10px; color: var(--green-dark); font-size: 1.1rem; }
.leistung-card p { margin: 0; font-size: 0.97rem; color: var(--text-muted); }
.leistung-betrag { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--green-dark); margin: 12px 0 8px; display: block; }

.calc-box {
  background: var(--glass);
  border: 2px solid var(--green-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.calc-box h3 { color: var(--green-dark); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.97rem;
  color: var(--text-muted);
}
.calc-row:last-child { border-bottom: none; font-weight: 700; color: var(--green-dark); font-size: 1.05rem; }
.calc-row span:last-child { font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.calc-row:last-child span:last-child { color: var(--green-dark); }

.decision-card {
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin: 16px 0;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.decision-card.green { background: var(--mint); border-color: var(--green-accent); }
.decision-card.neutral { background: var(--cream); border-color: var(--cream-dark); }
.decision-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.decision-card.green h3 { color: var(--green-dark); }
.decision-card.neutral h3 { color: var(--text-dark); }
.decision-card p { margin: 0; font-size: 0.97rem; color: var(--text-muted); }

@media (max-width: 700px) {
  .anbieter-grid { grid-template-columns: 1fr; }
  .checklist, .leistung-card, .calc-box { padding: 22px 20px; }
  .decision-card, .foerder-card, .goal-card { padding: 20px 18px; }
}
