:root {
  --bg: #FFFFFF;
  --fg: #000000;
  --muted: #8F8F8F;
  --muted-2: #646464;
  --line: #E0E0E0;
  --accent: #000000;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 80px;
}

.container {
  width: 100%;
  max-width: 640px;
}

/* ─── EYEBROW ─────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px 0;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  margin-bottom: 64px;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
}

.hero .subline {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted-2);
  margin: 0 0 24px 0;
  max-width: 520px;
}

.hero-bridge {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 32px 0;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 32px 0;
}

.hero-meta span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-meta span::before {
  content: '— ';
  color: var(--fg);
}

.section-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
  margin: 0 0 20px 0;
  max-width: 520px;
}

.section-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0 0 24px 0;
  max-width: 560px;
}

.prozess-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: prozess;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prozess-list li {
  counter-increment: prozess;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted-2);
}

.prozess-list li::before {
  content: counter(prozess);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  min-width: 16px;
  flex-shrink: 0;
}

.archetype-hint {
  border-left: 2px solid var(--fg);
  padding: 14px 20px;
  margin-top: 8px;
  background: #F6F6F6;
}

.archetype-hint p {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0;
  line-height: 1.6;
}

.archetype-hint strong {
  color: var(--fg);
}

/* ─── SECTION BLOCK ───────────────────────────── */
.section {
  margin-bottom: 56px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px 0;
}

/* ─── LEISTUNGSLISTE ──────────────────────────── */
.leistung-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-top: 1px solid var(--line);
}

.leistung-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.leistung-list li::before {
  content: '—';
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.delivery-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.featured {
  border-color: var(--fg);
}

.price-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.price-amount {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
  line-height: 1;
}

.price-content {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
  padding: 14px 24px;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.btn:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  color: var(--bg);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-subtext {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ─── ÜBER FRANKLYN ───────────────────────────── */
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0;
}

/* ─── DIFFERENZIERUNG ─────────────────────────── */
.differenz-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  margin-bottom: 56px;
}

.differenz-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-2);
  margin: 0;
  font-style: italic;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  text-align: center;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

footer a {
  color: var(--muted-2);
  text-decoration: none;
}

footer a:hover {
  color: var(--fg);
}

/* ─── DANKE-SEITE ─────────────────────────────── */
.danke-hero {
  padding-top: 80px;
  text-align: center;
}

.danke-hero h1 {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 32px 0;
}

.danke-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 440px;
  margin: 0 auto 48px;
}

.danke-back {
  font-size: 14px;
  color: var(--muted-2);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}

.danke-back:hover {
  color: var(--fg);
  border-color: var(--fg);
}

/* Reset Room Bridge */
.reset-bridge {
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.outlook-section {
  padding-bottom: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.outlook-intro {
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.7;
}

/* Journey-Linie links */
.outlook-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}

.outlook-cards::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

/* Punkt auf der Linie */
.outlook-card {
  position: relative;
  padding: 48px 0;
  border-bottom: none;
  background: transparent;
  overflow: hidden;
}

.outlook-card::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 56px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
}

/* Feiner Trenner zwischen Karten (außer letzte) */
.outlook-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.05);
}

/* Hintergrundwort */
.outlook-card[data-word]::before {
  content: attr(data-word);
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 108px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #000;
  opacity: 0.028;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

/* Punkt auf Linie überschreiben da ::before jetzt für Hintergrundwort genutzt wird */
.outlook-card-dot {
  position: absolute;
  left: -33px;
  top: 56px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  z-index: 1;
}

/* Leichte Hintergrundfächen-Variation */
.outlook-card:nth-child(2) {
  background: rgba(0,0,0,0.012);
  margin-left: -28px;
  padding-left: 28px;
  padding-right: 0;
}

.outlook-card-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.outlook-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

.outlook-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 2px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.outlook-btn:hover {
  opacity: 1;
}

.reset-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 2px;
}

.reset-link:hover {
  opacity: 0.6;
}

/* ── Accordion ─────────────────────────────────────────────── */

.accordion {
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 2px;
  background: #ffffff;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: var(--font);
}

.accordion-header:hover {
  background: rgba(0,0,0,0.015);
}

.accordion-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.accordion-chevron {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 250ms ease;
  display: flex;
  align-items: center;
}

.accordion-header[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  transition: height 250ms ease;
  height: 0;
  overflow: hidden;
}

.accordion-content {
  padding: 0 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.accordion-footer {
  margin-top: 20px;
  padding-top: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Accordion überschreibt section-label-Abstände wenn verschachtelt */
.section .accordion {
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════
   DESIGN OVERHAUL — 2026-07-03
   ══════════════════════════════════════════════════════ */

/* 1. Eyebrow — override (kleiner, schärfer) */
.eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 400;
}

/* 2. Outlook-Sektion invertiert */
.section.reset-bridge.outlook-section {
  background: #000;
  color: #fff;
  margin-left: -24px;
  margin-right: -24px;
  padding: 80px 24px;
  border-top: none;
}

.section.reset-bridge.outlook-section .section-label {
  color: rgba(255,255,255,0.5);
}

.section.reset-bridge.outlook-section .outlook-intro,
.section.reset-bridge.outlook-section .section-body.outlook-intro {
  color: rgba(255,255,255,0.6);
}

.section.reset-bridge.outlook-section .outlook-card-title {
  color: rgba(255,255,255,0.5);
}

.section.reset-bridge.outlook-section .outlook-card-body {
  color: #fff;
  font-size: 16px;
}

.section.reset-bridge.outlook-section .outlook-cards::before {
  background: rgba(255,255,255,0.12);
}

.section.reset-bridge.outlook-section .outlook-card[data-word]::before {
  color: #fff;
  opacity: 0.06;
}

.section.reset-bridge.outlook-section .outlook-card-dot {
  border-color: rgba(255,255,255,0.2);
  background: #000;
}

.section.reset-bridge.outlook-section .outlook-card:nth-child(2) {
  background: rgba(255,255,255,0.03);
}

.section.reset-bridge.outlook-section .outlook-card:not(:last-child)::after {
  background: rgba(255,255,255,0.06);
}

.section.reset-bridge.outlook-section .outlook-btn {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.3);
}

.section.reset-bridge.outlook-section .outlook-btn:hover {
  color: #fff;
  opacity: 1;
}

/* 3. Pricing Cards — schärfer, Hover-Invert */
.pricing-card {
  border: 1px solid #000;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.pricing-card:hover {
  background: #000;
  color: #fff;
}

.pricing-card:hover .price-label,
.pricing-card:hover .price-amount,
.pricing-card:hover .price-content {
  color: #fff;
}

.pricing-card:hover .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* 4. Prozess-Schritte — Journey-Optik */
.prozess-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: block;
  gap: 0;
  counter-reset: prozess;
}

.prozess-list::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--line);
}

.prozess-list li {
  position: relative;
  padding: 0 0 28px 44px;
  counter-increment: prozess;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  display: block;
  align-items: unset;
  gap: 0;
}

.prozess-list li:last-child {
  padding-bottom: 0;
}

.prozess-list li::before {
  content: counter(prozess);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: unset;
  flex-shrink: unset;
}

/* ── Korrekturen 2026-07-03 ─────────────────────────────────── */

/* Statement-Intro (Grundlage) */
.statement-intro {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 560px;
}

/* Eyebrow hell (auf dunklen Flächen) */
.eyebrow-light {
  color: rgba(255,255,255,0.45);
}

/* 02 LEISTUNG — Schwarze Box */
.section-inverted {
  background: #000;
  color: #fff;
  margin-left: -24px;
  margin-right: -24px;
  padding: 48px 24px 40px;
}

.section-inverted .eyebrow-light {
  display: block;
  margin-bottom: 28px;
}

.leistung-item {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}

.leistung-item:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.leistung-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.leistung-item > summary::-webkit-details-marker { display: none; }
.leistung-item > summary::marker { display: none; }

.leistung-item > summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 200;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.leistung-item[open] > summary::after {
  content: '−';
}

.leistung-key {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}

.leistung-detail {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  padding: 0 0 20px 0;
  margin: 0;
  max-width: 440px;
}

.leistung-footer {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Accordion — Kontrast-Update */
.accordion-title {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--fg);
  font-weight: 400;
}

/* 05 WEITER — Invertierter Ankerpunkt */
.section-anchor {
  background: #000;
  color: #fff;
  margin-left: -24px;
  margin-right: -24px;
  padding: 64px 24px 56px;
}

.anchor-lead {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  max-width: 400px;
}

.anchor-statements {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.anchor-item {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.anchor-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.anchor-title {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.anchor-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
  margin-bottom: 0;
}

.anchor-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.anchor-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Pricing Cards — harte Kanten, Hover-Invert */
.pricing-card {
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.pricing-card:hover {
  background: #000;
  color: #fff;
}

.pricing-card:hover .price-label,
.pricing-card:hover .price-amount,
.pricing-card:hover .price-content {
  color: #fff !important;
}

.pricing-card:hover .btn-primary {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

/* Mobile: negative Margins kompensieren */
@media (max-width: 600px) {
  .section-inverted,
  .section-anchor {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
