/* ══════════════════════════════════════
   LONGEVITY · style.css
   Keine Cookies · Keine Drittanbieter
══════════════════════════════════════ */

:root {
  --mint:        #4a9b6f;
  --mint-dark:   #3a7d58;
  --mint-light:  #e8f5ee;
  --mint-mid:    #b8dfc9;
  --mint-pale:   #f2f9f5;
  --green-deep:  #1e3528;
  --green-mid:   #2c4a38;
  --gray-100:    #f4f4f1;
  --gray-200:    #e6e6e2;
  --gray-400:    #9e9e98;
  --gray-600:    #686864;
  --gray-800:    #2a2a26;
  --gray-900:    #181815;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md:   0 8px 36px rgba(74,155,111,0.12), 0 2px 10px rgba(0,0,0,0.06);
  --font:        Georgia, 'Times New Roman', serif;
  --font-ui:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --topbar-h:    38px;
  --header-h:    58px;
  --ease:        cubic-bezier(0.34, 1.3, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--mint-pale);
  border-bottom: 1px solid rgba(74,155,111,0.15);
  height: var(--topbar-h);
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-text {
  font-size: 11px;
  color: var(--mint-dark);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  color: var(--mint-dark);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.topbar-social a:hover { background: var(--mint-light); }
.topbar-social svg { width: 14px; height: 14px; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--mint-mid));
  transition: width 0.1s linear;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--gray-200);
  box-shadow: 0 1px 14px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-leaf { width: 22px; height: 28px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

/* ── NAV ── */
.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--mint-dark); background: var(--mint-light); }
.nav-link.active { color: var(--mint-dark); background: var(--mint-light); font-weight: 500; }

/* ── MOBILE TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gray-800);
  transition: all 0.3s; border-radius: 2px;
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.6rem 1.5rem 1rem;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--gray-100);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 15px;
  color: var(--gray-800);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link.active { color: var(--mint-dark); font-weight: 500; }
.mobile-nav-link:hover { color: var(--mint); }

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint); display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--gray-900);
  letter-spacing: -0.02em; line-height: 1.1;
}
.section-sub {
  font-size: 14px; font-weight: 300;
  color: var(--gray-600); margin-top: 0.5rem;
  line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }

/* ── HERO ── */
.hero {
  min-height: calc(100svh - var(--topbar-h) - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 4rem 2rem 3rem;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #dff0e8 0%, transparent 65%);
  opacity: 0.75;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, #eaf5ef 0%, transparent 70%);
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 1.1rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400; font-style: italic;
  color: var(--gray-900);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s ease 0.35s forwards;
}
.hero-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300; color: var(--gray-600);
  line-height: 1.7; text-align: center;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint-dark);
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid rgba(74,155,111,0.35);
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-cta:hover {
  background: var(--mint-light);
  border-color: var(--mint-mid);
  transform: translateY(-2px);
}
.hero-cta svg { width: 14px; height: 14px; }

/* ── ANSATZ ── */
.ansatz-section {
  background: var(--mint-pale);
  border-top: 1px solid rgba(74,155,111,0.1);
  border-bottom: 1px solid rgba(74,155,111,0.1);
  padding: 3.5rem 2rem;
}
.ansatz-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.ansatz-title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--gray-900); margin-bottom: 1rem;
  line-height: 1.3;
}
.ansatz-text {
  font-size: 15px; font-weight: 300;
  color: var(--gray-600); line-height: 1.75;
}

/* ── SÄULEN ── */
.saeulen-section { padding: 3.5rem 0 4rem; background: var(--white); }
.cards-wrap {
  padding: 0 clamp(1rem, 2.5vw, 3rem);
  max-width: 1160px; margin: 0 auto;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 1.2rem 1.15rem 1.1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.2s;
}
.card.visible { animation: cardIn 0.5s var(--ease) forwards; }
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--mint-mid));
  opacity: 0; transition: opacity 0.25s;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card.open, .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-mid);
}
.card.open::before, .card:hover::before { opacity: 1; }
.card-bg-icon {
  position: absolute; bottom: -5px; right: -2px;
  font-size: 58px; opacity: 0.05;
  pointer-events: none; transform: rotate(-8deg);
  transition: opacity 0.3s, transform 0.3s;
  user-select: none;
}
.card.open .card-bg-icon, .card:hover .card-bg-icon {
  opacity: 0.09; transform: rotate(-4deg) scale(1.05);
}
.card-num {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 0.6rem; display: block;
}
.card-icon { font-size: 22px; display: block; margin-bottom: 0.5rem; line-height: 1; }
.card-name {
  font-family: var(--font);
  font-size: 1.05rem; font-weight: 400;
  color: var(--gray-900); line-height: 1.2;
  margin-bottom: 0.3rem;
}
.card-tagline { font-size: 10.5px; color: var(--gray-400); line-height: 1.4; }
.card-body {
  max-height: 0; overflow: hidden;
  opacity: 0; margin-top: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, margin-top 0.25s ease;
}
.card.open .card-body { max-height: 480px; opacity: 1; margin-top: 0.85rem; }
.card-body-inner {
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}
.card-body p {
  font-size: 12.5px; font-weight: 400;
  color: var(--gray-600); line-height: 1.78;
  margin-bottom: 0.75rem;
}
.card-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.card-pill {
  font-size: 9.5px; font-weight: 500;
  color: var(--mint-dark);
  background: var(--mint-pale);
  border: 1px solid rgba(74,155,111,0.2);
  border-radius: 100px;
  padding: 2.5px 9px;
}

/* ── SELBSTTEST ── */
.test-section {
  background: var(--mint-pale);
  border-top: 1px solid rgba(74,155,111,0.1);
  border-bottom: 1px solid rgba(74,155,111,0.1);
  padding: 3.5rem 2rem 4rem;
}
.test-inner { max-width: 760px; margin: 0 auto; }
.quiz-wrap { display: flex; flex-direction: column; gap: 1rem; }

/* question card */
.q-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(14px);
}
.q-card.visible { animation: cardIn 0.45s var(--ease) forwards; }
.q-num {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--mint);
  text-transform: uppercase; margin-bottom: 0.5rem; display: block;
}
.q-text {
  font-family: var(--font);
  font-size: 1rem; font-weight: 400;
  color: var(--gray-900); margin-bottom: 1rem;
  line-height: 1.35;
}
.q-options { display: flex; flex-direction: column; gap: 6px; }
.q-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 13px; color: var(--gray-700, #454540);
  background: var(--white);
  user-select: none;
}
.q-option:hover { background: var(--mint-pale); border-color: var(--mint-mid); }
.q-option.selected {
  background: var(--mint-light);
  border-color: var(--mint);
  color: var(--mint-dark);
  font-weight: 500;
}
.q-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  flex-shrink: 0; transition: border-color 0.2s, background 0.2s;
}
.q-option.selected .q-dot { border-color: var(--mint); background: var(--mint); }

/* CTA button */
.quiz-cta-wrap { text-align: center; margin-top: 1.5rem; }
.quiz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint); color: var(--white);
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; padding: 12px 28px;
  border: none; border-radius: 100px; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(74,155,111,0.3);
}
.quiz-btn:hover { background: var(--mint-dark); transform: translateY(-2px); }
.quiz-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ── QUIZ JOURNEY ── */
.quiz-journey { display: flex; flex-direction: column; gap: 1.25rem; }
.quiz-progress-bar-wrap {
  display: flex; align-items: center; gap: 12px;
}
.quiz-progress-bar-track {
  flex: 1; height: 4px;
  background: var(--gray-200); border-radius: 100px; overflow: hidden;
}
.quiz-progress-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--mint), var(--mint-mid));
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.quiz-progress-label {
  font-size: 11px; font-weight: 500;
  color: var(--gray-400); white-space: nowrap;
  letter-spacing: 0.04em;
}
.quiz-nav {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.quiz-nav-back {
  background: none; border: 1px solid var(--gray-200);
  color: var(--gray-600); font-family: var(--font-ui);
  font-size: 12px; font-weight: 400;
  padding: 8px 18px; border-radius: 100px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.quiz-nav-back:hover { border-color: var(--gray-400); color: var(--gray-800); }
.quiz-nav-next {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint); color: var(--white);
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border: none; border-radius: 100px;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(74,155,111,0.28);
}
.quiz-nav-next:hover { background: var(--mint-dark); transform: translateY(-1px); }
.quiz-nav-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── QUIZ RESULT ── */
.quiz-result { margin-top: 2rem; }
.result-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.055);
  padding: 2rem 2rem 1.75rem;
}
.result-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.result-title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400; color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.result-subtitle { font-size: 13px; color: var(--gray-600); font-weight: 300; max-width: 540px; margin: 0 auto; line-height: 1.6; }
.result-bars { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.result-bar-row { display: flex; align-items: center; gap: 10px; }
.result-bar-label {
  font-size: 11.5px; font-weight: 500;
  color: var(--gray-800);
  width: 148px; min-width: 148px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.result-bar-label-name {
  display: flex; align-items: center; gap: 5px; line-height: 1.2;
}
.result-bar-label-name span { font-size: 13px; flex-shrink: 0; }
.result-bar-track {
  flex: 1; height: 8px;
  background: var(--gray-200); border-radius: 100px; overflow: hidden;
}
.result-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--mint), var(--mint-mid));
  width: 0%; transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.result-bar-fill.low  { background: linear-gradient(90deg, #e07070, #eda0a0); }
.result-bar-fill.mid  { background: linear-gradient(90deg, #d4a040, #e8c870); }
.result-bar-fill.high { background: linear-gradient(90deg, var(--mint), var(--mint-mid)); }
.result-bar-pct {
  font-size: 11px; font-weight: 600;
  color: var(--gray-600); width: 32px; text-align: right; flex-shrink: 0;
}
.result-tips { display: flex; flex-direction: column; gap: 0.75rem; }
.result-tip {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--mint);
  padding: 1rem 1.1rem;
}
.result-tip-head {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 0.4rem;
}
.result-tip-icon { font-size: 16px; }
.result-tip-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.result-tip p { font-size: 12.5px; color: var(--gray-600); line-height: 1.7; }
.quiz-retry {
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  background: var(--mint-pale);
  border: 1px solid rgba(74,155,111,0.3);
  color: var(--mint-dark);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.quiz-retry:hover {
  background: var(--mint-light);
  border-color: var(--mint-mid);
  transform: translateY(-1px);
}

/* result actions area */
.result-actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.result-plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--green-deep);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  padding: 14px 24px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(30,53,40,0.25);
  letter-spacing: 0.01em;
}
.result-plan-btn:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ── PLAN MODAL ── */
.plan-modal-box {
  max-width: 480px;
  text-align: center;
}
.plan-modal-leaf {
  display: flex; justify-content: center;
  margin-bottom: 0.75rem;
}
.plan-modal-leaf svg { width: 28px; height: 38px; opacity: 0.8; }
.plan-modal-badge {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  border: 1px solid rgba(74,155,111,0.25);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 0.75rem;
}
.plan-modal-title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  font-weight: 400; color: var(--gray-900);
  line-height: 1.2; margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.plan-modal-sub {
  font-size: 13px; font-weight: 300;
  color: var(--gray-600); line-height: 1.65;
  margin-bottom: 1.1rem;
}
.plan-modal-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 1.2rem; text-align: left;
}
.plan-modal-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-800);
  font-weight: 400; line-height: 1.4;
}
.plan-modal-list svg {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: var(--mint); stroke-width: 2.2;
}
.plan-modal-price {
  margin-bottom: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74,155,111,0.15);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex-wrap: wrap;
}
.plan-modal-price-inner { display: flex; flex-direction: column; gap: 2px; }
.plan-modal-price-old {
  font-size: 13px; color: var(--gray-400);
  font-weight: 300;
  text-decoration: line-through;
  text-decoration-color: var(--gray-400);
}
.plan-modal-price-row {
  display: flex; align-items: baseline; gap: 6px;
}
.plan-modal-price-label {
  font-size: 12px; font-weight: 500; color: var(--mint-dark);
}
.plan-modal-price-amount {
  font-family: var(--font); font-size: 1.7rem;
  font-weight: 400; color: var(--gray-900);
  letter-spacing: -0.02em; line-height: 1;
}
.plan-modal-price-note {
  font-size: 11px; color: var(--gray-400); font-weight: 300;
}
.plan-modal-price-paypal {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--gray-400); font-weight: 400;
}
.plan-modal-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--gray-200);
  color: var(--gray-400);
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  padding: 14px 20px;
  border: none; border-radius: var(--radius-sm);
  cursor: not-allowed;
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
  flex-wrap: wrap; gap: 8px;
}
.plan-modal-cta-soon {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-400);
  background: var(--gray-100);
  border-radius: 100px;
  padding: 2px 8px;
}
.plan-modal-legal {
  font-size: 11px; color: var(--gray-400);
  font-weight: 300; letter-spacing: 0.03em;
  line-height: 1.6;
}

/* result badges */
.result-bar-badge {
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  border: 1px solid rgba(74,155,111,0.3);
  border-radius: 100px;
  padding: 1px 6px;
  white-space: nowrap;
  display: inline-block;
}
.result-bar-badge-low {
  color: #8a3a10;
  background: #fdf0e6;
  border-color: rgba(160,80,20,0.25);
}
/* top row subtle highlight */
.result-bar-row-top .result-bar-label-name { color: var(--mint-dark); }
.result-bar-track-top { height: 10px; }

@media (max-width: 580px) {
  .result-bar-label { width: 110px; min-width: 110px; font-size: 10.5px; }
}

/* ── KONTAKT ── */
.kontakt-section {
  background: var(--white);
  padding: 3.5rem 2rem 4rem;
}
.kontakt-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.kontakt-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: var(--gray-900); margin-bottom: 1rem;
}
.kontakt-sub {
  font-size: 14px; font-weight: 300;
  color: var(--gray-600); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.kontakt-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.65rem;
}
.kontakt-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-700, #454540);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.kontakt-link:hover {
  background: var(--mint-light);
  border-color: var(--mint-mid);
  color: var(--mint-dark);
}
.kontakt-link svg { width: 14px; height: 14px; }

/* ── CLOSING ── */
.closing {
  background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 4.5rem 2rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,155,111,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.closing-leaf { width: 40px; height: 52px; opacity: 0.75; }
.closing-quote {
  font-family: var(--font);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 600px; line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ── MODAL OVERLAY (shared) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10,16,12,0.6);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  animation: modalIn 0.32s cubic-bezier(0.34,1.2,0.64,1) forwards;
  margin: auto;
  flex-shrink: 0;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gray-100);
  border: none; border-radius: 50%;
  width: 28px; height: 28px;
  font-size: 11px; cursor: pointer;
  color: var(--gray-600);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.modal-close:hover { background: var(--gray-200); }

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(74,155,111,0.12);
  padding: 1.75rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.footer-brand { display: flex; align-items: center; gap: 7px; }
.footer-leaf { width: 18px; height: 23px; }
.footer-brand-text {
  font-family: var(--font);
  font-size: 0.95rem; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.6); letter-spacing: -0.01em;
}
.footer-links { display: flex; align-items: center; gap: 0.5rem; }
.footer-link {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.15);
  transition: color 0.2s; cursor: pointer;
}
.footer-link:hover { color: var(--mint-mid); }
.footer-dot { color: rgba(255,255,255,0.15); font-size: 12px; }
.footer-copy {
  font-size: 10px; color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em; text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; } 50% { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .result-bar-label { width: 140px; }
}
@media (max-width: 580px) {
  :root { --topbar-h: 34px; --header-h: 52px; }
  .cards-grid { grid-template-columns: 1fr; gap: 9px; }
  .cards-wrap { padding: 0 1rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; min-height: unset; padding-top: 2.5rem; }
  .hero-cta { font-size: 11px; }
  .ansatz-section, .test-section, .kontakt-section { padding: 2.5rem 1.25rem; }
  .saeulen-section { padding: 2.5rem 0 3rem; }
  .closing { padding: 3.5rem 1.5rem 4rem; }
  .header-inner { padding: 0 1.1rem; }
  .topbar-inner { padding: 0 1.1rem; }
  .topbar-text { display: none; }
  .result-bar-label { width: 110px; font-size: 11px; }
  .footer-top { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section-header { margin-bottom: 1.75rem; }
}

/* ── PRINT ── */
@media print {
  .site-header, .topbar, .hero-cta { display: none !important; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
  .closing { background: var(--green-deep) !important; -webkit-print-color-adjust: exact; }
}
