/* ============================================================
   Credo Concierge — v2 Stylesheet
   Apple-inspiriert: System-Sans, großzügiges Spacing, ruhige Hierarchie
   ============================================================ */

/* -------- Design Tokens -------- */
:root {
  --navy: #091828;
  --navy-2: #0d2238;
  --navy-3: #14304a;
  --teal: #00C4AE;
  --teal-bright: #00e6cc;
  --teal-soft: rgba(0, 196, 174, 0.08);
  --amber: #F5C842;
  --ink: #1d2433;
  --ink-soft: #4b5563;
  --paper: #fafaf7;
  --paper-2: #f3f1eb;
  --paper-3: #e8e3d6;
  --line: #e1dccd;
  --line-2: #d6cfc2;
  --muted: #6b7280;
  --muted-soft: #9ca3af;
  --white: #ffffff;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Type scale */
  --t-xs: 0.78rem;
  --t-sm: 0.88rem;
  --t-base: 1rem;
  --t-lg: 1.125rem;
  --t-xl: 1.25rem;
  --t-2xl: 1.5rem;
  --t-3xl: 2rem;
  --t-4xl: 2.75rem;
  --t-5xl: 3.5rem;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", "Segoe UI", Roboto, Inter, sans-serif;
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* -------- Layout primitives -------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .container-narrow { padding: 0 2rem; }
}

/* -------- Top Navigation (sticky, glassy) -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 24, 40, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .nav__inner { padding: 0.875rem 2rem; }
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.nav__brand:hover { color: var(--teal); }
.nav__brand svg { width: 24px; height: 24px; flex-shrink: 0; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  color: rgba(247, 245, 240, 0.75);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: -0.003em;
  transition: color 0.18s;
  padding: 0.25rem 0;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--paper);
}
.nav__cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.85rem;
  transition: background 0.18s, transform 0.18s;
}
.nav__cta:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.nav__burger:hover { background: rgba(255, 255, 255, 0.06); }
.nav__burger svg { width: 22px; height: 22px; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav__burger { display: flex; align-items: center; justify-content: center; }
  .nav__menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem 1.5rem 4rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu li { width: 100%; flex-shrink: 0; }
  .nav__menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__cta {
    margin-top: 1.5rem;
    text-align: center;
    border-radius: 8px;
    padding: 1rem !important;
    font-size: 1rem !important;
  }
}

/* -------- Typography -------- */
.eyebrow {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--teal); }

h1, .h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
h2, .h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
h3, .h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
h4, .h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}
em.accent {
  font-style: normal;
  color: var(--teal);
}
.lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* -------- Sections -------- */
section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  section { padding: 7rem 0; }
}
.section-hd {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-hd .lede { margin-top: 1rem; }

/* Dunkler Section-Stil */
.section--dark {
  background: var(--navy);
  color: var(--paper);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .lede { color: rgba(247, 245, 240, 0.75); }
.section--dark .eyebrow { color: var(--teal); }

/* Mid-tone */
.section--soft {
  background: var(--paper-2);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.003em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn--accent:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--paper);
}
.section--dark .btn--ghost {
  color: var(--paper);
  border-color: rgba(247, 245, 240, 0.4);
}
.section--dark .btn--ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-row--center {
  justify-content: center;
}

/* -------- Hero -------- */
.hero {
  padding: 5rem 0 4rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 920px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__eyebrow span + span::before {
  content: "·";
  margin: 0 0.5rem;
  color: var(--muted-soft);
}
.hero h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero__meta {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero__meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero__meta-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

/* -------- Story-Section (Szene-Erzählung) -------- */
.story {
  background: var(--navy);
  color: var(--paper);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 196, 174, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.story__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story__scene {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin-bottom: 2.5rem;
}
.story__scene em {
  color: var(--teal);
  font-style: normal;
  font-weight: 500;
}
.story__quote {
  display: inline-block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin: 2rem 0;
  position: relative;
}
.story__caption {
  font-size: 0.95rem;
  color: rgba(247, 245, 240, 0.6);
  letter-spacing: 0.02em;
}

/* -------- Split Cards (Zwei-Wege) -------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.split-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
}
.split-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(9, 24, 40, 0.08);
}
.split-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.split-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.split-card p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.split-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding-top: 0.5rem;
  transition: gap 0.18s;
}
.split-card__link:hover {
  gap: 0.7rem;
  color: var(--teal);
}
.split-card__link::after {
  content: "→";
  transition: transform 0.18s;
}

/* -------- Feature Grid (Pain / Solution) -------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.22s;
}
.feature:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.feature__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.feature--pain .feature__icon {
  background: rgba(245, 200, 66, 0.12);
  color: var(--amber);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.feature p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* -------- Process Steps -------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.step {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  transition: all 0.22s;
}
.step:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.step__num {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  width: 2rem;
  height: 2rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}
.step h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* -------- Lead Card -------- */
.leadcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(9, 24, 40, 0.06);
}
.leadcard__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.leadcard__id {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.leadcard__id strong { color: var(--navy); }
.leadcard__score {
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.leadcard__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .leadcard__grid { grid-template-columns: 1fr 1fr; }
}
.leadcard__col h4 { margin-bottom: 0.65rem; color: var(--navy); }
.leadcard__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px dotted var(--line);
}
.leadcard__row:last-child { border-bottom: none; }
.leadcard__row span:first-child { color: var(--muted); }
.leadcard__row span:last-child { color: var(--navy); font-weight: 500; }
.leadcard__note {
  background: var(--paper);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 1.25rem 0;
  border-radius: 0 8px 8px 0;
}
.leadcard__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
@media (min-width: 600px) {
  .leadcard__meta { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.leadcard__meta strong {
  display: block;
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

/* -------- CPC Compare -------- */
.cpc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cpc { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.cpc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
}
.cpc-card--online { border-top: 4px solid var(--amber); }
.cpc-card--f2f { border-top: 4px solid var(--teal); }
.cpc-card h3 { margin-bottom: 1.2rem; font-size: 1.1rem; }
.cpc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.93rem;
}
.cpc-row span:last-child { font-weight: 600; color: var(--navy); }
.cpc-result {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.cpc-conclusion {
  margin: 2rem auto 0;
  max-width: 880px;
  background: var(--paper-2);
  border-left: 3px solid var(--teal);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  border-radius: 0 8px 8px 0;
}
.cpc-conclusion strong { color: var(--navy); }

/* -------- Price Table -------- */
.price-wrap { overflow-x: auto; max-width: 920px; margin: 0 auto; border-radius: 14px; }
.price {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}
.price th, .price td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price thead {
  background: var(--navy);
  color: var(--paper);
}
.price th {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price tbody tr:hover { background: var(--paper); }
.price .num--online { color: var(--muted); }
.price .num--ex { color: var(--teal); font-weight: 600; }
.price .num--multi { color: var(--amber); font-weight: 600; }
.price-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.price-note strong { color: var(--navy); }

/* -------- FAQ -------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 196, 174, 0.08);
}
.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.003em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper); }
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  margin-bottom: 4px;
  transition: transform 0.22s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}
.faq-answer {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}
.faq-answer p + p { margin-top: 0.65rem; }
.faq-answer strong { color: var(--navy); font-weight: 600; }

/* -------- Final CTA -------- */
.final {
  background: var(--navy);
  color: var(--paper);
  text-align: center;
  padding: 6rem 0;
}
.final h2 { color: var(--paper); margin-bottom: 1.25rem; }
.final p {
  color: rgba(247, 245, 240, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.5;
}

/* -------- Footer -------- */
footer {
  background: var(--navy);
  color: rgba(247, 245, 240, 0.65);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer__brand {
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.footer__col h4 {
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__col a {
  color: rgba(247, 245, 240, 0.65);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(247, 245, 240, 0.45);
}

/* -------- Sticky Mobile Call -------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  background: var(--teal);
  color: var(--navy);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(9, 24, 40, 0.25);
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.18s, background 0.18s;
}
.sticky-call:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
}
.sticky-call svg { width: 16px; height: 16px; }
@media (max-width: 860px) {
  .sticky-call { display: inline-flex; }
}

/* -------- About / Über uns specific -------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.stat__num {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.stat__lbl {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.mandates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.mandate {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

/* -------- Timeline (Endkunden) -------- */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
  counter-reset: tlstep;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--teal);
  opacity: 0.25;
}
.tl-step {
  position: relative;
  padding: 0 0 2.2rem 4.5rem;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  counter-increment: tlstep;
  content: counter(tlstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--teal);
}
.tl-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.tl-step p { color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* -------- Form (Kontakt) -------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(9, 24, 40, 0.06);
}
@media (min-width: 640px) {
  .form-card { padding: 3rem 2.5rem; }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 600px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.003em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field--checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.field--checkbox label {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field--checkbox label a { color: var(--navy); text-decoration: underline; }

/* Form layout sections */
.form-section { margin-bottom: 1.5rem; }
.form-section:last-child { margin-bottom: 0; }
.form-section + .form-section { padding-top: 0.5rem; }
.form-actions { margin-top: 2rem; text-align: center; }

/* -------- Legal (Impressum, DSE) -------- */
.legal { padding: 5rem 0; }
.legal h2 {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.legal p, .legal li {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.legal ul { padding-left: 1.4rem; margin: 0.6rem 0 1rem; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--teal); }

/* -------- Pre-Deal Sektion: Pain vs. Cure -------- */
.predeal {
  background: var(--navy);
  color: var(--paper);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .predeal { padding: 7rem 0; }
}
.predeal::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; max-width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 196, 174, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.predeal__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .predeal__inner { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}
.predeal__col {
  padding: 2rem;
  border-radius: 16px;
}
.predeal__col--pain {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(245, 200, 66, 0.15);
}
.predeal__col--cure {
  background: rgba(0, 196, 174, 0.06);
  border: 1px solid rgba(0, 196, 174, 0.2);
}
.predeal__col h2 {
  color: var(--paper);
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.predeal__col--pain .eyebrow {
  color: var(--amber);
}
.predeal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.predeal__list li {
  padding: 0.65rem 0 0.65rem 1.6rem;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(247, 245, 240, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.predeal__list li:last-child { border-bottom: none; }
.predeal__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.predeal__list--cure li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
}
.predeal__lede {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--paper);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.predeal__col--pain .predeal__lede strong { color: var(--amber); }
.predeal__col--cure .predeal__lede strong { color: var(--teal); }

/* -------- Lead Card Carousel -------- */
.leadcarousel {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.leadcarousel__viewport {
  overflow: hidden;
  border-radius: 16px;
  /* Subtler shadow für gestackten Effekt */
  filter: drop-shadow(0 8px 24px rgba(9, 24, 40, 0.08));
}
.leadcarousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.leadcarousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.25rem;
}
.leadcarousel__slide .leadcard {
  margin: 0 auto;
  filter: none;
  box-shadow: none;
  border: 1px solid var(--line);
}

/* Nav buttons */
.leadcarousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.leadcarousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  flex-shrink: 0;
}
.leadcarousel__btn:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  transform: translateY(-1px);
}
.leadcarousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.leadcarousel__btn:disabled:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}
.leadcarousel__btn svg { width: 18px; height: 18px; }

.leadcarousel__counter {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
}
.leadcarousel__counter strong {
  color: var(--navy);
  font-weight: 600;
}

/* Dots-Indicator */
.leadcarousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.leadcarousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.leadcarousel__dot.is-active {
  background: var(--teal);
  width: 22px;
  border-radius: 4px;
}

/* Lead-Card Narrative-Box (zusätzlich zur bestehenden) */
.leadcard__narrative {
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.08) 0%, rgba(245, 200, 66, 0.03) 100%);
  border-left: 3px solid var(--amber);
  padding: 0.95rem 1.1rem;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 1rem 0 0;
  border-radius: 0 8px 8px 0;
}
.leadcard__narrative strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

/* Cross-Sell-Badge */
.leadcard__crosssell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dotted var(--line);
}
.leadcard__crosssell-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.15rem;
}
.leadcard__crosssell-tag {
  background: var(--teal-soft);
  color: var(--navy);
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  border-radius: 999px;
  font-weight: 500;
}

/* -------- Vs-Table (Online vs Credo) -------- */
.vs-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(9, 24, 40, 0.04);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.vs-table th, .vs-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.vs-table thead th {
  background: var(--navy);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
}
.vs-table thead th:nth-child(3) {
  background: linear-gradient(135deg, var(--teal) 0%, #00a896 100%);
  color: var(--navy);
}
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table tbody tr:hover { background: var(--paper); }
.vs-row-label {
  font-weight: 600;
  color: var(--navy);
  width: 28%;
}
.vs-other {
  color: var(--ink-soft);
  width: 36%;
}
.vs-credo {
  color: var(--navy);
  font-weight: 500;
  width: 36%;
}
.vs-credo::before {
  content: "✓";
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  margin-right: 0.4rem;
}

/* Mobile: Card-Layout statt Tabelle */
@media (max-width: 720px) {
  .vs-table-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow-x: visible;
  }
  .vs-table, .vs-table thead, .vs-table tbody, .vs-table tr, .vs-table th, .vs-table td {
    display: block;
    width: 100%;
  }
  .vs-table thead { display: none; }
  .vs-table tbody tr {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    overflow: hidden;
  }
  .vs-table tbody tr:hover { background: var(--white); }
  .vs-table td {
    border-bottom: 1px dotted var(--line);
    padding: 0.85rem 1.25rem;
  }
  .vs-table td:last-child { border-bottom: none; }
  .vs-row-label {
    background: var(--paper-2);
    margin: -0.5rem 0 0 0;
    padding: 0.9rem 1.25rem !important;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    width: 100%;
  }
  .vs-other::before {
    content: "Andere: ";
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
  }
  .vs-credo {
    background: var(--teal-soft);
    margin: 0 0 -0.5rem 0;
    padding: 0.9rem 1.25rem !important;
    width: 100%;
  }
  .vs-credo::before {
    content: "Credo:  ✓";
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.25rem;
  }
}

.vs-note {
  max-width: 960px;
  margin: 1.5rem auto 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}
.vs-conclusion {
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--paper-2);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}
.vs-conclusion strong { color: var(--navy); }
.vs-conclusion em { font-style: italic; color: var(--teal); font-weight: 500; }

/* -------- Utilities -------- */
.text-center { text-align: center; }
.text-muted { color: var(--ink-soft); }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
