/* ============================================================
   NeoCore Capital — Website Design System (Creme Premium)
   Basis: NeoCore Creme-Look (Memmingen/Pitchdeck-Linie)
   Fonts: Montserrat (Text) + Playfair Display (Headlines)
   ============================================================ */

:root {
  --nc-bg:           #F5EDE1;
  --nc-bg-soft:      #FAF5EC;
  --nc-card:         #FFFFFF;
  --nc-navy:         #1F273E;
  --nc-navy-deep:    #161D30;
  --nc-text:         #1C1F2A;
  --nc-muted:        #4B4D57;
  --nc-muted-2:      #6B6E78;
  --nc-line:         rgba(28, 31, 42, 0.12);
  --nc-line-strong:  rgba(28, 31, 42, 0.28);
  --nc-gold:         #B99B67;
  --nc-shadow:       0 12px 40px -16px rgba(28, 31, 42, 0.25);
  --nc-shadow-soft:  0 8px 28px -14px rgba(28, 31, 42, 0.18);
  --nc-radius:       18px;
  --nc-radius-sm:    10px;
  --nc-max:          1180px;

  /* Aliase für compliance/cookie-banner.css (erwartet die Dark-Theme-Variablen) */
  --nc-bg-2:         #FAF5EC;
  --nc-radius-lg:    18px;
  --nc-accent:       #1F273E;
  --nc-accent-2:     #2C3654;
  --nc-font:         'Montserrat', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--nc-bg);
  color: var(--nc-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */

h1, h2, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--nc-text);
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nc-gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--nc-muted);
  max-width: 46rem;
}

.muted { color: var(--nc-muted); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */

.container { max-width: var(--nc-max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

.section { padding: 88px 0; }
.section--sub { padding: 64px 0; }
.section-head { margin-bottom: 3rem; }

.divider {
  height: 1px; background: var(--nc-line);
  max-width: var(--nc-max); margin: 0 auto;
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 237, 225, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nc-line);
}

.nav__inner {
  max-width: var(--nc-max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand img { height: 38px; width: auto; }
.nav__brand span {
  font-weight: 700; letter-spacing: 0.18em; font-size: 1.02rem; color: var(--nc-text);
}

.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  text-decoration: none; font-size: 0.92rem; font-weight: 600;
  color: var(--nc-muted); transition: color 0.15s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--nc-text); }
.nav__links a.btn--primary, .nav__links a.btn--primary:hover { color: #FFF; }

.nav__toggle {
  display: none; background: none; border: none; padding: 6px;
}
.nav__toggle svg { width: 26px; height: 26px; stroke: var(--nc-text); }

@media (max-width: 900px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--nc-bg-soft); border-bottom: 1px solid var(--nc-line);
    flex-direction: column; padding: 18px 24px; gap: 16px; align-items: flex-start;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--nc-navy); color: #FFF;
  box-shadow: var(--nc-shadow-soft);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--nc-shadow); }

.btn--ghost {
  background: transparent; color: var(--nc-text);
  border-color: var(--nc-line-strong);
}
.btn--ghost:hover { border-color: var(--nc-text); }

.btn--light { background: #FFF; color: var(--nc-navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--nc-shadow); }

.btn--sm { padding: 11px 24px; font-size: 0.88rem; }

/* ---------- Hero ---------- */

.hero { padding: 84px 0 72px; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero .lead { margin-bottom: 1.8rem; }

.hero__media img {
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.check-list { list-style: none; margin: 0 0 2rem; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; }
.check-list strong { display: block; font-size: 0.95rem; letter-spacing: 0.02em; }
.check-list span { font-size: 0.9rem; color: var(--nc-muted); }

.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 1.8rem;
}

.rating { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; }
.rating__stars { color: var(--nc-gold); letter-spacing: 2px; font-size: 1rem; }

.badge-clients {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--nc-card); border: 1px solid var(--nc-line);
  border-radius: 999px; padding: 8px 18px;
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--nc-shadow-soft);
}
.badge-clients .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nc-gold); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 10; }
}

/* ---------- Dark (Navy) Sections ---------- */

.dark {
  background: var(--nc-navy); color: #EDEAE2;
}
.dark h1, .dark h2, .dark h3 { color: #FFF; }
.dark .lead, .dark .muted { color: rgba(237, 234, 226, 0.75); }
.dark .eyebrow { color: var(--nc-gold); }

/* ---------- Stats ---------- */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 28px; text-align: center;
}
.stat__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: #FFF; line-height: 1.1;
}
.stat__label {
  margin-top: 6px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(237, 234, 226, 0.65);
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Cards & Grids ---------- */

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 30px 28px;
  box-shadow: var(--nc-shadow-soft);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.93rem; color: var(--nc-muted); }

.icon-box {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--nc-bg); border: 1px solid var(--nc-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--nc-navy); }

/* ---------- Pain points ---------- */

.pain-list { list-style: none; display: grid; gap: 14px; }
.pain-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--nc-card); border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-sm); padding: 16px 20px;
  font-size: 0.95rem; color: var(--nc-muted);
}
.pain-list svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; }

/* ---------- City cards ---------- */

.city-card { overflow: hidden; padding: 0; }
.city-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.city-card__body { padding: 22px 24px 26px; }
.city-card__body h3 { margin-bottom: 1rem; }
.city-card__facts { display: grid; gap: 8px; font-size: 0.88rem; color: var(--nc-muted); }
.city-card__facts div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--nc-line); padding-bottom: 6px; }
.city-card__facts div:last-child { border-bottom: none; padding-bottom: 0; }
.city-card__facts strong { color: var(--nc-text); font-weight: 700; }

/* ---------- Process steps ---------- */

.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--nc-line);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: var(--nc-gold); line-height: 1;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--nc-muted); max-width: 40rem; }

/* ---------- Testimonials ---------- */

.t-card { display: flex; flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.t-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--nc-navy-deep); }
.t-card__body { padding: 22px 24px 26px; }
.t-card__quote { font-size: 0.95rem; color: var(--nc-muted); font-style: italic; margin-bottom: 1rem; }
.t-card__name { font-weight: 700; font-size: 0.92rem; }
.t-card__role { font-size: 0.82rem; color: var(--nc-muted-2); letter-spacing: 0.04em; }

/* ---------- Szenario-Rechner ---------- */

.calc {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow);
  padding: 44px 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; padding: 28px 22px; } }

.calc__label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--nc-muted-2); margin-bottom: 6px;
}
.calc__input {
  width: 100%; border: none; border-bottom: 1.5px solid var(--nc-line-strong);
  background: transparent; padding: 6px 2px 10px;
  font-family: inherit; font-size: 1.15rem; font-weight: 600; color: var(--nc-text);
  margin-bottom: 1.6rem;
}
.calc__input:focus { outline: none; border-bottom-color: var(--nc-navy); }

.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 0.4rem; }
.toggle {
  position: relative; width: 46px; height: 26px; flex: 0 0 46px;
  border-radius: 999px; background: var(--nc-line-strong);
  border: none; transition: background 0.2s ease;
}
.toggle::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #FFF; transition: transform 0.2s ease;
}
.toggle.on { background: var(--nc-navy); }
.toggle.on::after { transform: translateX(20px); }

.calc__hint { font-size: 0.78rem; color: var(--nc-muted-2); margin-bottom: 1.4rem; }
.calc__assumptions { font-size: 0.78rem; color: var(--nc-muted-2); border-top: 1px dashed var(--nc-line); padding-top: 1rem; }

.calc__result-card {
  background: var(--nc-bg-soft); border-radius: var(--nc-radius-sm);
  padding: 22px 24px; margin-bottom: 16px;
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
}
.calc__result-card h3 { font-size: 1rem; margin-bottom: 2px; }
.calc__result-card .sub { font-size: 0.78rem; color: var(--nc-muted-2); }

.donut { width: 128px; height: 128px; position: relative; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut__center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.donut__center .lbl { font-size: 0.55rem; letter-spacing: 0.16em; color: var(--nc-muted-2); font-weight: 700; }
.donut__center .val { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; }

.legend { display: grid; gap: 10px; font-size: 0.85rem; }
.legend__item { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.legend__dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px; align-self: center; }
.legend__range { font-size: 0.76rem; color: var(--nc-muted-2); width: 100%; padding-left: 17px; }

.calc__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  border-left: 3px solid var(--nc-gold); background: var(--nc-bg-soft);
  padding: 14px 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--nc-muted);
}
.calc__bar strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; letter-spacing: 0; text-transform: none; color: var(--nc-text);
}

/* ---------- Slider (Beispielrechnung) ---------- */

.range-row { display: grid; grid-template-columns: 130px 1fr 110px; gap: 16px; align-items: center; margin-bottom: 1.1rem; }
.range-row label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nc-muted-2); }
.range-row output { font-weight: 700; font-size: 0.95rem; text-align: right; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px; background: var(--nc-line-strong); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--nc-navy); border: 3px solid #FFF; box-shadow: var(--nc-shadow-soft); cursor: pointer;
}
@media (max-width: 640px) { .range-row { grid-template-columns: 1fr; gap: 6px; } .range-row output { text-align: left; } }

.projection { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
@media (max-width: 800px) { .projection { grid-template-columns: 1fr; } }
.projection__item { border-top: 3px solid var(--nc-gold); background: var(--nc-card); border-radius: 0 0 var(--nc-radius-sm) var(--nc-radius-sm); padding: 20px 22px; box-shadow: var(--nc-shadow-soft); }
.projection__item .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--nc-muted-2); }
.projection__item .val { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; font-weight: 700; margin-top: 4px; }

/* ---------- Dunkle Vergleichstabelle ---------- */

.dark-panel { background: var(--nc-navy); border-radius: var(--nc-radius); padding: 44px 42px; color: #EDEAE2; box-shadow: var(--nc-shadow); overflow-x: auto; }
@media (max-width: 640px) { .dark-panel { padding: 28px 20px; } }
.dark-panel h2 { color: #FFF; margin-bottom: 1.6rem; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
.cmp-table th {
  text-align: right; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(237, 234, 226, 0.55); font-weight: 700; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; }
.cmp-table td { text-align: right; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cmp-table .hl { font-weight: 700; color: #FFF; }

/* ---------- Vergleich hell (München vs. Chemnitz) ---------- */

.cmp-light { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.cmp-light th { text-align: right; padding: 12px 14px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nc-muted-2); border-bottom: 1px solid var(--nc-line-strong); }
.cmp-light th:first-child, .cmp-light td:first-child { text-align: left; }
.cmp-light td { text-align: right; padding: 13px 14px; border-bottom: 1px dashed var(--nc-line); }
.cmp-light tr:last-child td { border-bottom: none; }
.cmp-light .good { font-weight: 700; }
.cmp-light .bad { color: #A0522D; font-weight: 700; }

/* ---------- Medien-Kacheln (1,4 Mio) ---------- */

.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .press { grid-template-columns: 1fr; } }
.press__tile { background: var(--nc-card); border: 1px solid var(--nc-line); border-radius: var(--nc-radius-sm); overflow: hidden; box-shadow: var(--nc-shadow-soft); }
.press__head { background: var(--nc-navy); color: #FFF; text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; padding: 9px 10px; }
.press__tile p { padding: 16px 18px; font-size: 0.9rem; }

/* ---------- Hebel-Grafik ---------- */

.lever { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 2.2rem 0; }
.lever__node { text-align: center; }
.lever__node .icon-box { margin: 0 auto 0.8rem; }
.lever__node strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; }
.lever__node span { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nc-muted-2); }
.lever__arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--nc-muted-2); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; }
.lever__arrow svg { width: 90px; height: 14px; stroke: var(--nc-gold); }

.check-x { list-style: none; display: grid; gap: 10px; font-size: 0.92rem; }
.check-x li { display: flex; gap: 10px; align-items: center; }
.check-x .y { color: #4C6B48; font-weight: 700; }
.check-x .n { color: #A0522D; font-weight: 700; }

/* ---------- Segment-Karten ---------- */

.segment { border-top: 3px solid var(--nc-navy); }
.segment .price { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; margin: 0.4rem 0 0.8rem; }

/* ---------- Info-Chips ---------- */

.info-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.info-chips span {
  border: 1px solid var(--nc-line-strong); border-radius: 999px;
  padding: 8px 18px; font-size: 0.82rem; color: var(--nc-muted); background: var(--nc-card);
}

/* ---------- Nummerierte Punkte (Problem) ---------- */

.num-list { display: grid; gap: 18px; max-width: 42rem; margin: 0 auto; }
.num-list li { list-style: none; display: flex; gap: 16px; align-items: baseline; font-size: 1.02rem; }
.num-list .n { font-family: 'Playfair Display', Georgia, serif; color: var(--nc-gold); font-weight: 700; font-size: 0.9rem; flex: 0 0 26px; }

/* ---------- Kaufpreis-Badge & Filter ---------- */

.price-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(185, 155, 103, 0.14);
  border: 1px solid rgba(185, 155, 103, 0.45);
  color: #8A713F;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  vertical-align: middle;
}

.filter-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 2.4rem;
}
.chip {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--nc-line-strong);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nc-muted);
  transition: all 0.15s ease;
}
.chip:hover { color: var(--nc-text); border-color: var(--nc-text); }
.chip.active { background: var(--nc-navy); color: #FFF; border-color: var(--nc-navy); }

/* ---------- Team ---------- */

.team-card { text-align: left; padding: 0; overflow: hidden; }
.team-card__photo {
  background: linear-gradient(180deg, var(--nc-bg-soft) 0%, #E9DFCE 100%);
  aspect-ratio: 4 / 4.4; display: flex; align-items: flex-end; justify-content: center;
}
.team-card__photo img { object-fit: cover; object-position: top center; width: 100%; height: 100%; }
.team-card__body { padding: 20px 22px 24px; }
.team-card__body h3 { margin-bottom: 0.15rem; font-size: 1.05rem; }
.team-card__role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nc-gold); margin-bottom: 0.7rem; }
.team-card__body p { font-size: 0.88rem; color: var(--nc-muted); }

/* ---------- Timeline ---------- */

.timeline { display: grid; gap: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--nc-line-strong);
}
.timeline__item { position: relative; padding: 0 0 34px 42px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--nc-gold); border: 3px solid var(--nc-bg);
}
.timeline__year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem;
}
.timeline__item p { font-size: 0.95rem; color: var(--nc-muted); max-width: 44rem; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 14px; }
.faq details {
  background: var(--nc-card); border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-sm); padding: 0;
  box-shadow: var(--nc-shadow-soft); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 18px 22px;
  font-weight: 700; font-size: 0.97rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--nc-gold);
  transition: transform 0.2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; font-size: 0.93rem; color: var(--nc-muted); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--nc-navy); color: #EDEAE2;
  border-radius: var(--nc-radius);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  box-shadow: var(--nc-shadow);
}
.cta-band h2 { color: #FFF; margin-bottom: 0.6rem; }
.cta-band p { color: rgba(237, 234, 226, 0.75); font-size: 0.98rem; max-width: 38rem; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 40px 28px; } }

/* ---------- Forms (Gespräch-Funnel) ---------- */

.funnel {
  max-width: 620px; margin: 0 auto;
  background: var(--nc-card); border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius); padding: 42px 40px;
  box-shadow: var(--nc-shadow);
}
@media (max-width: 640px) { .funnel { padding: 30px 22px; } }

.funnel__step { display: none; }
.funnel__step.active { display: block; }
.funnel__question { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.4rem; text-align: center; }

.choice-stack { display: grid; gap: 12px; }
.choice {
  display: block; width: 100%; text-align: center;
  padding: 16px 20px; border-radius: var(--nc-radius-sm);
  background: var(--nc-bg-soft); border: 1.5px solid var(--nc-line-strong);
  font-weight: 600; font-size: 0.98rem; color: var(--nc-text);
  transition: all 0.15s ease;
}
.choice:hover, .choice.selected {
  background: var(--nc-navy); color: #FFF; border-color: var(--nc-navy);
}

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--nc-radius-sm);
  border: 1.5px solid var(--nc-line-strong); background: #FFF;
  font-family: inherit; font-size: 0.95rem; color: var(--nc-text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--nc-navy);
}

.funnel__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.6rem; }
.funnel__back {
  background: none; border: none; color: var(--nc-muted); font-size: 0.9rem; font-weight: 600;
}
.funnel__back:hover { color: var(--nc-text); }

.progress { height: 5px; background: var(--nc-line); border-radius: 999px; margin-bottom: 2rem; overflow: hidden; }
.progress__bar { height: 100%; background: var(--nc-gold); border-radius: 999px; width: 25%; transition: width 0.3s ease; }

/* ---------- Footer ---------- */

.footer {
  background: var(--nc-navy-deep); color: rgba(237, 234, 226, 0.75);
  padding: 56px 0 32px; margin-top: 88px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer__brand img { height: 34px; filter: brightness(0) invert(1); }
.footer__brand span { font-weight: 700; letter-spacing: 0.18em; color: #FFF; }
.footer h4 {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(237, 234, 226, 0.5); margin-bottom: 1rem; font-weight: 700;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(237, 234, 226, 0.75); text-decoration: none; font-size: 0.92rem; }
.footer a:hover { color: #FFF; }
.footer__social { display: flex; gap: 14px; margin-top: 0.5rem; }
.footer__social a { display: flex; }
.footer__social svg { width: 22px; height: 22px; fill: rgba(237, 234, 226, 0.75); }
.footer__social a:hover svg { fill: #FFF; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.82rem; color: rgba(237, 234, 226, 0.5);
}
.footer__bottom a { font-size: 0.82rem; color: rgba(237, 234, 226, 0.5); }
.footer__bottom button {
  background: none; border: none; color: rgba(237, 234, 226, 0.5);
  font-size: 0.82rem; text-decoration: underline; padding: 0;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Utilities ---------- */

.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; } .mt-5 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2.5rem; }

/* Kein Scroll-Hiding: Inhalte sind IMMER sichtbar (Lektion aus der alten Seite,
   deren Lazy-/GSAP-Animationen weiße Lücken hinterließen). .reveal bekommt nur
   eine dezente Einblend-Animation, wenn das Element beim Laden sichtbar ist. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.visible { animation: nc-fade-in 0.6s ease both; }
}
@keyframes nc-fade-in {
  from { opacity: 0.01; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
