/* ORDENA – Stylesheet
   Farbwelt aus dem Logo (Navy/Blau), Akzent #1c5cab validiert auf Weiß,
   #5598e7 validiert auf dunkler Sektion #0e1c30 (dataviz-Validator). */

:root {
  --paper: #ffffff;
  --paper-alt: #f4f6fa;
  --ink-bg: #0e1c30;
  --ink-bg-soft: #16294a;
  --text: #182338;
  --text-2: #46536b;
  --muted: #6b7789;
  --accent: #1c5cab;
  --accent-deep: #104281;
  --accent-soft: #e5eefb;
  --on-dark: #f2f6fb;
  --on-dark-2: #b9c6da;
  --accent-on-dark: #5598e7;
  --line: #e2e7ef;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(14, 28, 48, 0.06), 0 8px 24px rgba(14, 28, 48, 0.07);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

h1, h2, h3 { line-height: 1.18; color: var(--text); letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; margin: 0 0 0.6em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 750; margin: 0 0 0.7em; }
h3, .h3 { font-size: 1.18rem; font-weight: 700; margin: 0 0 0.5em; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--text-2); max-width: 46em; }
.prose { color: var(--text-2); max-width: 46em; }
.prose-lg { font-size: 1.12rem; color: var(--text-2); max-width: 46em; }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.7em;
}

.container { max-width: 1120px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-ghost:hover { background: var(--accent-soft); color: var(--accent-deep); }
.btn-light { background: #fff; color: var(--accent-deep); }
.btn-light:hover { background: var(--accent-soft); color: var(--accent-deep); }
.btn-ghost-light { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; gap: 24px;
}
.brand img { width: 204px; height: auto; }
@media (max-width: 480px) { .brand img { width: 168px; } }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.site-nav a:not(.btn) {
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover { color: var(--accent); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--accent); color: var(--accent); }
.nav-cta { padding: 10px 20px; }
.nav-toggle, .nav-burger { display: none; }

@media (max-width: 760px) {
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px;
  }
  .nav-burger span {
    width: 24px; height: 2.5px; background: var(--text); border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px clamp(18px, 4vw, 32px) 20px;
    box-shadow: var(--shadow);
  }
  .site-nav a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Sektionen ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--text-2); font-size: 1.08rem; }
.center-link { text-align: center; margin-top: 36px; font-weight: 600; }

/* ---------- Hero (dunkel, mit Markenmotiv) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink-bg) 0%, var(--ink-bg-soft) 100%);
  padding: clamp(56px, 8vw, 110px) 0 clamp(52px, 7vw, 96px);
}
.hero h1 { color: #fff; }
.hero .lead { color: var(--on-dark-2); }
.hero-eyebrow { color: var(--accent-on-dark); }
.hero-note { margin-top: 14px; font-size: 0.92rem; color: rgba(185, 198, 218, 0.75); }

/* Banner-Band unter dem Header (nur Startseite) */
.masthead {
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
}
.masthead img {
  display: block;
  width: 100%; height: auto;
  max-height: 420px;
  object-fit: cover; object-position: center;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-visual { display: flex; flex-direction: column; align-items: center; }

/* Dashboard-Karte */
.dash {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  padding: 22px 24px 16px;
  width: min(400px, 100%);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.dash-title {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.dash-chip {
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}
.dash-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.dash-row {
  display: grid; grid-template-columns: 74px 1fr auto;
  align-items: center; gap: 12px; font-size: 0.86rem;
}
.dash-k { font-weight: 700; color: var(--text); }
.dash-bar {
  display: block; height: 8px; border-radius: 4px;
  background: var(--paper-alt); overflow: hidden;
}
.dash-bar i {
  display: block; height: 100%; border-radius: 4px;
  background: var(--accent);
}
.w-78 { width: 78%; }
.w-56 { width: 56%; }
.w-88 { width: 88%; }
.dash-v { font-weight: 600; color: var(--text-2); white-space: nowrap; }
.dash-v.up { color: var(--ok); }
.dash-spark { width: 100%; height: 60px; }
.dash-foot {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--line); margin-top: 12px; padding-top: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
}
.dash-badge {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--accent); color: #fff;
  border-radius: 12px; padding: 14px 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  margin-top: -16px; margin-left: clamp(0px, 6vw, 70px);
  transform: rotate(-1.2deg);
  max-width: 340px;
}
.dash-badge-title { font-weight: 800; font-size: 1rem; }
.dash-badge-sub { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { align-items: flex-start; }
}

/* ---------- Seiten-Hero ---------- */
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(8px, 2vw, 16px); }
.breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--text-2); font-weight: 600; }

/* ---------- Dunkle Bänder & Stat-Tiles ---------- */
.dark-band {
  background: linear-gradient(135deg, var(--ink-bg) 0%, var(--ink-bg-soft) 100%);
  color: var(--on-dark);
  padding: clamp(52px, 7vw, 88px) 0;
}
.dark-band h2 { color: var(--on-dark); }
.on-dark { color: var(--on-dark-2); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.stat-tile {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.03);
}
.eyebrow-dark { color: var(--accent-on-dark); }
.retainer-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.retainer-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.retainer-points li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--accent-on-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.retainer-points strong { color: var(--on-dark); font-size: 1.02rem; }
.retainer-points span { color: var(--on-dark-2); font-size: 0.92rem; }
@media (max-width: 860px) { .retainer-grid { grid-template-columns: 1fr; } }

.stat-value {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem); font-weight: 800;
  color: var(--accent-on-dark); margin: 0 0 2px; line-height: 1.1;
}
.stat-label { font-weight: 700; margin: 0 0 8px; color: var(--on-dark); }
.stat-detail { font-size: 0.9rem; color: var(--on-dark-2); margin: 0; line-height: 1.5; }
@media (max-width: 960px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- Karten ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
}
.card p { color: var(--text-2); font-size: 0.99rem; margin-bottom: 0; }
.service-card { text-decoration: none; display: flex; flex-direction: column; gap: 4px; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.service-card h3 { color: var(--text); }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.service-card:hover .card-more { color: var(--accent-deep); }
.card-more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: 0.95rem; color: var(--accent); }
@media (max-width: 960px) { .card-grid, .card-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid, .card-grid.two, .card-grid.three { grid-template-columns: 1fr; } }

/* ---------- Listen ---------- */
.check-list, .pain-list { list-style: none; padding: 0; margin: 0 0 1.2em; max-width: 46em; }
.check-list li, .pain-list li {
  position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--text-2);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 7' fill='none' stroke='%231c5cab' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.pain-list li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 12px; height: 3px; border-radius: 2px; background: var(--accent);
  opacity: 0.55;
}
.city-list {
  list-style: none; padding: 0; margin: 0 0 2em;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.city-list li {
  background: var(--accent-soft); color: var(--accent-deep);
  font-weight: 600; font-size: 0.95rem;
  padding: 7px 16px; border-radius: 999px;
}

/* ---------- Ablauf-Schritte ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px); counter-reset: step;
}
.steps li { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent); color: #fff;
  font-weight: 800; font-size: 1.15rem;
}
.steps h3 { margin-bottom: 0.35em; }
.steps p { color: var(--text-2); font-size: 0.97rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Controlling-Check / Preiskarte ---------- */
.check-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 30px 28px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.price-card .minibars { width: 72px; height: 48px; margin-bottom: 10px; }
.price-card-title { font-size: 1.25rem; font-weight: 800; margin: 0; }
.price-card-duration { color: var(--muted); font-weight: 600; margin: 0 0 6px; }
.price-card-price { font-size: 1.55rem; font-weight: 800; color: var(--accent-deep); margin: 0 0 8px; }
.price-card-note { font-size: 0.93rem; color: var(--text-2); margin-bottom: 16px; }
@media (max-width: 860px) { .check-grid { grid-template-columns: 1fr; } }

/* ---------- Preismodelle ---------- */
.model-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
.model-card { display: flex; flex-direction: column; }
.model-badge {
  align-self: flex-start;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.model-featured { border-color: var(--accent); border-top: 4px solid var(--accent); box-shadow: var(--shadow); }
.model-featured .model-badge { background: var(--accent); color: #fff; }
.model-price {
  margin-top: auto; padding-top: 16px;
  font-weight: 800; color: var(--accent-deep);
}
@media (max-width: 960px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .model-grid { grid-template-columns: 1fr; } }

/* ---------- Person ---------- */
.person-grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4.5vw, 56px); align-items: center;
}
.portrait {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%; max-width: 360px;
}
@media (max-width: 760px) {
  .person-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 280px; }
}

/* ---------- Prinzipien (Philosophie) ---------- */
.principle-card { position: relative; padding-top: 30px; }
.principle-num {
  position: absolute; top: 18px; right: 22px;
  font-size: 2rem; font-weight: 800; color: var(--accent-soft);
  line-height: 1;
}

/* ---------- Hervorgehobener Zusatzblock ---------- */
.extra-panel {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 30px 16px;
  margin-top: 36px;
  max-width: 46em;
}
.extra-panel h2 { color: var(--accent-deep); }
.extra-panel p { color: var(--text-2); }

/* ---------- Ergebnis-Band ---------- */
.result-band {
  background: var(--accent-soft);
  padding: clamp(44px, 6vw, 72px) 0;
}
.result-text {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 650; color: var(--accent-deep);
  max-width: 40em; margin: 0; line-height: 1.45;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 40px 18px 2px;
  font-weight: 700; font-size: 1.05rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { color: var(--text-2); padding: 0 2px 20px; margin: 0; max-width: 46em; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
}
.cta-inner {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: 0.35em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 34em; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-mail {
  color: #fff; font-weight: 700; font-size: 1.05rem;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.cta-mail:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-bg); color: var(--on-dark-2); }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
}
.footer-wordmark {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--on-dark); margin: 0 0 2px;
}
.footer-claim { font-size: 0.9rem; color: var(--on-dark-2); margin-bottom: 18px; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer a { color: var(--on-dark-2); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-heading {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--on-dark); margin: 0 0 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 0.97rem; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px; padding-bottom: 30px;
  font-size: 0.88rem;
}
.footer-legal p { margin: 0; }
.footer-note { color: var(--muted); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Rechtstexte ---------- */
.legal h2 { font-size: 1.25rem; margin-top: 1.8em; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--text-2); max-width: 46em; }

/* ---------- Kontakt ---------- */
.contact-card { align-items: flex-start; display: flex; flex-direction: column; }
.contact-card .btn { margin-top: auto; }
.contact-card p { margin-bottom: 18px; }
.contact-primary { border-top: 4px solid var(--accent); }
.contact-mail-big {
  display: inline-block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800; color: var(--accent-deep);
  margin-bottom: 20px; word-break: break-all;
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .cta-band, .site-footer, .hero-visual { display: none; }
  body { font-size: 12pt; }
}
