/* ============================================================
   anrufbeantworter24.ai — Premium Stylesheet
   100% KI Brand — World-Class Corporate Design
   ============================================================ */

/* === FONTS === */
@import url('../fonts/fontawesome/css/fontawesome.min.css');
@import url('../fonts/fontawesome/css/light.min.css');
@import url('../fonts/fontawesome/css/thin.min.css');

@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/200.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/300.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Soehne'; src: url('../fonts/soehne/900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

/* === CUSTOM PROPERTIES === */
:root {
  --primary: #D51D2B;
  --primary-light: #E24949;
  --primary-dark: #D12524;
  --primary-gradient: linear-gradient(135deg, #E24949 0%, #D12524 100%);
  --text: #0A253F;
  --text-light: #3A4A5C;
  --muted: #777C81;
  --surface: #F7FAFC;
  --border: #DDE1E6;
  --accent: #7AB3B8;
  --accent-dark: #5A9499;
  --bg-beige: #F6F6F6;
  --burgunder: #9C0154;
  --white: #FFFFFF;
  --black: #0A253F;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-pill: 2rem;
  --shadow-sm: 0 1px 3px rgba(10,37,63,0.06);
  --shadow: 0 2px 8px rgba(10,37,63,0.08);
  --shadow-lg: 0 4px 16px rgba(10,37,63,0.1);
  --transition: 180ms ease;
  --font: 'Soehne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: 1140px;
  --wrap-narrow: 780px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

::-moz-selection {
  background: var(--accent);
  color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
strong, b { font-weight: 600; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-feature-settings: "liga", "kern", "ss01";
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
h1 strong { font-weight: 600; }

h2 {
  font-size: 2rem;
  font-weight: 300;
}
h2 strong { font-weight: 600; }

h3 {
  font-size: 1.15rem;
  font-weight: 500;
}
h3 strong { font-weight: 600; }

h4 { font-size: 1.05rem; font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* === SKIP NAV === */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--text);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-nav:focus {
  top: 1rem;
  color: var(--white);
}

/* === SR ONLY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

/* === NAVIGATION === */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

nav.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}
.nav__logo:hover { color: var(--text); }
.nav__logo img { height: 2rem; width: auto; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  color: var(--text);
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__menu a:hover { color: var(--primary); }
.nav__menu a:hover::after { width: 100%; }

/* === KI BADGE === */
.ki-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--primary-gradient);
  border-radius: var(--radius-pill);
}

/* === HERO === */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero--dark {
  background: var(--text);
  color: var(--white);
}
.hero--dark h1,
.hero--dark h2,
.hero--dark .hero__title,
.hero--dark .hero__subtitle {
  color: var(--white);
}

.hero--small {
  padding: 3rem 0 2.5rem;
}

.hero--image {
  background-size: cover;
  background-position: center;
}
.hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,63,0.88) 0%, rgba(10,37,63,0.65) 100%);
  z-index: 1;
}
.hero--image > * {
  position: relative;
  z-index: 2;
}

/* Hero bright — image visible, text in frosted box */
.hero--bright {
  background-size: cover;
  background-position: center right;
  background-color: var(--bg-beige);
  min-height: 32rem;
}

.hero--bright::after {
  display: none; /* NO overlay — image stays bright */
}

.hero__box {
  max-width: 540px;
  background: rgba(10, 37, 63, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  color: var(--white);
}

.hero__box h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero__box .hero__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hero__box .hero__buttons {
  margin-bottom: 1rem;
}

.hero__box .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__box .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero__box .hero__trust {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Panorama Section — full-width image with centered text */
.section-panorama {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-beige);
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.section-panorama::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 63, 0.7);
}

.panorama-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 680px;
}

.panorama-content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.panorama-content h2 strong {
  font-weight: 600;
}

.panorama-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.panorama-content .btn--primary {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.panorama-content .btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 720px;
  font-feature-settings: "liga", "kern", "ss01";
}
.hero__title strong { font-weight: 600; }

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.hero--dark .hero__subtitle { color: rgba(255,255,255,0.7); }

.hero__sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero--dark .hero__sub { color: rgba(255,255,255,0.6); }
.hero__sub--large {
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero--dark .hero__sub--large { color: rgba(255,255,255,0.8); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero--dark .hero__trust { color: rgba(255,255,255,0.6); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* === SECTIONS === */
.section {
  padding: 4.5rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--surface {
  background: var(--surface);
}

.section--light {
  background: var(--bg-beige);
}

.section--dark {
  background: var(--text);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .section__title {
  color: var(--white);
}
.section--dark p,
.section--dark li {
  color: rgba(255,255,255,0.75);
}

.section--accent {
  background: var(--accent);
  color: var(--white);
}
.section--accent h1,
.section--accent h2,
.section--accent h3,
.section--accent .section__title {
  color: var(--white);
}

.section--alt {
  background: var(--surface);
}

.section--centered {
  text-align: center;
}

.section__title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-feature-settings: "liga", "kern", "ss01";
}
.section__title strong { font-weight: 600; }

.section__title::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--primary);
  margin-bottom: 0.75rem;
  border-radius: 2px;
}

.text-center .section__title::before,
.section__title.text-center::before,
.section--centered .section__title::before {
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.4;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #D12524 0%, #B91C1C 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.hero--dark .btn--ghost,
.section--dark .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero--dark .btn--ghost:hover,
.section--dark .btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
}
.btn--small:hover {
  background: linear-gradient(135deg, #D12524 0%, #B91C1C 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* === STATS === */
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
}

.stats__item {
  text-align: center;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.section--dark .stats__item + .stats__item::before {
  background: rgba(255,255,255,0.2);
}

.stats__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.section--dark .stats__number { color: var(--white); }

.stats__label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.section--dark .stats__label { color: rgba(255,255,255,0.6); }

/* === LIVE KI-TICKER === */
.ticker {
  background: var(--text);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ticker__item i {
  font-size: 1.1rem;
  color: var(--primary);
}

.ticker__item strong {
  color: var(--primary-light);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ticker__divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticker__inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .ticker__divider {
    display: none;
  }
  .ticker__item {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

/* === PROVOKATION BLOCKQUOTE === */
.provokation {
  border: none;
  margin: 0;
  padding: 2.5rem 0;
  text-align: center;
}

.provokation__text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.provokation__punch {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.provokation__punch strong {
  color: var(--primary);
  font-weight: 700;
}

.provokation__footer {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .provokation__text {
    font-size: 1.15rem;
  }
  .provokation__punch {
    font-size: 1.4rem;
  }
}

/* === BINGO PREVIEW (Startseite) === */
.bingo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.bingo-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 320px;
  width: 100%;
}

.bingo-preview__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.bingo-preview__cell--active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
  font-weight: 500;
}

.bingo-preview__cell--free {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
}

/* === STATEMENT === */
.statement__text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.statement__text strong { font-weight: 600; }

.statement__note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === BORDER GRID === */
.border-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.border-grid--spaced {
  gap: 1.5rem;
}

.border-grid__item {
  padding: 2rem;
  border: 1px solid var(--border);
  margin: -0.5px;
  transition: all var(--transition);
}
.border-grid--spaced .border-grid__item {
  margin: 0;
  border-radius: var(--radius-lg);
}

.border-grid__item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  z-index: 1;
}
.border-grid--spaced .border-grid__item:hover {
  box-shadow: var(--shadow-lg);
}

.border-grid__icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

/* === COMPARISON === */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.comparison__col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

.comparison__col--before {
  background: var(--surface);
  border-color: var(--border);
}

.comparison__col--after {
  border-color: var(--primary);
  border-width: 2px;
  position: relative;
}

.comparison__steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.comparison__steps li {
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.95rem;
}
.comparison__steps li:last-child { border-bottom: none; }

.comparison__result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 500;
  text-align: center;
}
.comparison__col--after .comparison__result {
  background: var(--primary);
  color: var(--white);
}

/* === TOOL FORM / OUTPUT === */
.tool-form {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.tool-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.tool-form textarea,
.tool-form input[type="text"],
.tool-form input[type="email"],
.tool-form input[type="tel"],
.tool-form input[type="number"],
.tool-form select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-feature-settings: "liga", "kern", "ss01";
  -webkit-appearance: none;
  appearance: none;
}

.tool-form textarea:focus,
.tool-form input:focus,
.tool-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122,179,184,0.12);
}

.tool-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.tool-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23777C81'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.tool-form .tool-form__group {
  margin-bottom: 1.25rem;
}

.tool-form .btn {
  margin-top: 0.5rem;
}

.tool-output-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.tool-output-wrap > label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.tool-output-wrap .tool-output {
  margin-bottom: 0.75rem;
}

.tool-output {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 4rem;
  transition: border-color var(--transition);
}
.tool-output:focus-within {
  border-color: var(--accent);
}

.tool-output--large {
  min-height: 10rem;
  font-size: 1rem;
}

/* Loading animation for tool output */
.tool-output.is-loading {
  position: relative;
  color: transparent;
}
.tool-output.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.75rem 0 0 -0.75rem;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === CHECKBOX GRID === */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.checkbox:hover {
  border-color: var(--accent);
  background: var(--surface);
}
.checkbox input[type="checkbox"] { accent-color: var(--primary); }

/* === RECHNER === */
.rechner {
  max-width: 800px;
  margin: 0 auto;
}

.rechner label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.rechner input[type="number"] {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-feature-settings: "liga", "kern", "ss01";
  -webkit-appearance: none;
  appearance: none;
}

.rechner input[type="number"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122,179,184,0.12);
}

.rechner__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rechner__box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.rechner__box--ohne {
  background: var(--surface);
  border: 1px solid var(--border);
}

.rechner__box--mit {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}

.rechner__savings {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
}

.rechner__provokation {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.price-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-card__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.75rem 0 0.25rem;
  line-height: 1.1;
}
.price-card--featured .price-card__price {
  color: var(--primary);
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-card__note {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-card__features li:last-child { border-bottom: none; }

/* === FAQ === */
.faq {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px dotted var(--border);
}
.faq__item:first-child {
  border-top: 1px dotted var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--primary); }

.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

details[open] > .faq__question::after {
  content: '\2212';
}
.faq__item.is-active > .faq__question::after {
  content: '\2212';
}

.faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

.footer__top {
  padding: 3rem 0 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer__logo img { height: 1.75rem; width: auto; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.footer__grid h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__grid li { margin-bottom: 0.5rem; }
.footer__grid a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__grid a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__copy {
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer__legal a:hover { color: var(--primary); }

/* === FORMS === */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group,
.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form__optional {
  font-weight: 300;
  color: var(--muted);
  font-size: 0.8rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122,179,184,0.15);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.form__textarea {
  min-height: 8rem;
  resize: vertical;
}

select.form__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23777C81' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  padding: 2rem 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-info__item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* === GENERATOR === */
.generator-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
}

.generator-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* === LEGAL === */
.legal-content {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p { margin-bottom: 0.75rem; }

/* === ERROR PAGE === */
.error-page {
  text-align: center;
  padding: 6rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page__headline {
  font-size: 8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.error-page__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.error-page__text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 400px;
}

.error-page__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === B2B NOTICE === */
.b2b-notice {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* === TOOL CARD === */
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.tool-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-sm { font-size: 0.9rem; }
.text-xs { font-size: 0.8rem; }
.muted { color: var(--muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

.hide-mobile { display: block; }

/* === RESPONSIVE: 1024px === */
@media (max-width: 1024px) {
  .border-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    gap: 2rem;
  }
}

/* === RESPONSIVE: 768px === */
@media (max-width: 768px) {
  h1, .hero__title { font-size: 1.8rem; }
  h2, .section__title { font-size: 1.5rem; }

  .section { padding: 3rem 0; }
  .section--sm { padding: 2rem 0; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero--small { padding: 2rem 0 1.5rem; }
  .hero--bright { min-height: auto; background-position: center top; }
  .hero__box { max-width: 100%; padding: 1.75rem; }
  .hero__box h1 { font-size: 1.8rem; }

  /* Nav collapse */
  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--surface);
  }
  .nav__menu a::after { display: none; }

  .comparison {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .border-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid .price-card:last-child {
    max-width: none;
  }
  .rechner__results {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .stats__item + .stats__item::before { display: none; }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .footer__legal { justify-content: center; }

  .form-card { padding: 1.5rem; }

  .hide-mobile { display: none; }
}

/* === RESPONSIVE: 480px === */
@media (max-width: 480px) {
  h1, .hero__title { font-size: 1.5rem; }
  h2, .section__title { font-size: 1.3rem; }

  .wrap { padding-left: 1rem; padding-right: 1rem; }

  .section { padding: 2.5rem 0; }

  .border-grid {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .btn { width: 100%; justify-content: center; }
  .hero__actions { width: 100%; }

  .error-page__headline { font-size: 5rem; }
  .error-page { padding: 4rem 1rem; }

  .stats__number { font-size: 1.8rem; }
  .statement__text { font-size: 1.2rem; }
}

/* === PRINT === */
@media print {
  nav,
  .footer,
  .skip-nav,
  .ki-badge,
  .hero__actions,
  #chatbot,
  .chatbot,
  [id*="chatbot"] {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  a { color: #000; text-decoration: underline; }

  .section,
  .hero { padding: 1.5rem 0; }

  .section--dark,
  .section--accent,
  .hero--dark {
    background: #fff !important;
    color: #000 !important;
  }
  .section--dark *,
  .section--accent *,
  .hero--dark * {
    color: #000 !important;
  }

  .wrap { max-width: 100%; padding: 0; }

  .border-grid,
  .pricing-grid,
  .comparison,
  .contact-grid {
    display: block;
  }
  .border-grid__item,
  .price-card,
  .comparison__col {
    page-break-inside: avoid;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* === ADDITIONAL CLASSES (HTML compatibility) === */

/* Hero variants used in HTML */
.hero__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,63,0.88) 0%, rgba(10,37,63,0.65) 100%);
  z-index: 1;
}

/* Manifesto section */
.manifesto__statement {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 2rem;
  letter-spacing: -0.01em;
}

.manifesto__statement strong {
  font-weight: 600;
  color: var(--primary);
}

.manifesto__body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.manifesto__note {
  font-size: 0.875rem;
  color: var(--muted);
}

.manifesto__note a {
  font-weight: 500;
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.7s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* === PARALLAX === */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Disable parallax on mobile (performance) */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

.parallax--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 63, 0.7);
  z-index: 1;
}

.parallax > * {
  position: relative;
  z-index: 2;
}

/* === MANIFEST PAGE — FULL-WIDTH IMMERSIVE SECTIONS === */
.manifest-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.manifest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,63,0.8) 0%, rgba(10,37,63,0.5) 50%, rgba(10,37,63,0.85) 100%);
}

.manifest-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.manifest-hero__tagline {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.manifest-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.manifest-hero h1 strong {
  font-weight: 700;
  display: block;
}

.manifest-hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .manifest-hero {
    min-height: 80vh;
    background-attachment: scroll;
  }
  .manifest-hero h1 {
    font-size: 2.2rem;
  }
}

/* Full-width statement section */
.manifest-statement {
  padding: 6rem 2rem;
  text-align: center;
}

.manifest-statement__text {
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
}

.manifest-statement__text strong {
  font-weight: 700;
  color: var(--primary);
}

.manifest-statement--dark {
  background: var(--text);
}

.manifest-statement--dark .manifest-statement__text {
  color: var(--white);
}

@media (max-width: 768px) {
  .manifest-statement {
    padding: 4rem 1.5rem;
  }
  .manifest-statement__text {
    font-size: 1.5rem;
  }
}

/* Immersive image + text overlay */
.manifest-fullimage {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.manifest-fullimage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,37,63,0.85) 0%, rgba(10,37,63,0.4) 60%, transparent 100%);
}

.manifest-fullimage--right::before {
  background: linear-gradient(270deg, rgba(10,37,63,0.85) 0%, rgba(10,37,63,0.4) 60%, transparent 100%);
}

.manifest-fullimage__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 4rem 2rem 4rem 4rem;
}

.manifest-fullimage--right .manifest-fullimage__content {
  margin-left: auto;
  padding: 4rem 4rem 4rem 2rem;
}

.manifest-fullimage__content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.manifest-fullimage__content h2 strong {
  font-weight: 600;
}

.manifest-fullimage__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .manifest-fullimage {
    min-height: 50vh;
    background-attachment: scroll;
  }
  .manifest-fullimage::before {
    background: rgba(10,37,63,0.75);
  }
  .manifest-fullimage--right::before {
    background: rgba(10,37,63,0.75);
  }
  .manifest-fullimage__content,
  .manifest-fullimage--right .manifest-fullimage__content {
    padding: 2rem;
    max-width: 100%;
    margin-left: 0;
  }
}

/* Large number counter */
.manifest-counter {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.manifest-counter__item {
  text-align: center;
}

.manifest-counter__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.manifest-counter__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.section--dark .manifest-counter__number {
  color: var(--primary-light);
}

.section--dark .manifest-counter__label {
  color: rgba(255,255,255,0.6);
}

/* Quote highlight */
.manifest-quote {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.manifest-quote__author {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Section variants used in HTML */
.section--bgimage {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section--bgimage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,63,0.92) 0%, rgba(10,37,63,0.82) 100%);
  z-index: 1;
}

.section--bgimage > * {
  position: relative;
  z-index: 2;
}

.section__content {
  position: relative;
  z-index: 2;
}

.section__header {
  margin-bottom: 2rem;
}

.section__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.section__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
}

.section--dark .section__note a {
  color: var(--accent);
}

.section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,63,0.9) 0%, rgba(10,37,63,0.75) 100%);
  z-index: 1;
}

/* Split layout (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.split__text h2 {
  margin-bottom: 1rem;
}

.split__text p {
  color: var(--muted);
  line-height: 1.7;
}

/* Steps section */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.steps__item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
}

.steps__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.steps__item h4 {
  margin-bottom: 0.5rem;
}

.steps__item p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Tool cards grid */
.tool-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Comparison card variant */
.comparison__card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.comparison__card--neutral {
  background: var(--white);
}

.comparison__card--accent {
  background: #FDF8F8;
  border-color: rgba(213,29,43,0.2);
}

.comparison__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.comparison__card--accent .comparison__icon {
  color: var(--primary);
}

/* Tool form variants */
.tool-form__group {
  margin-bottom: 1.25rem;
}

.tool-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tool-output-wrap__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* === BULLSHIT BINGO === */
.bingo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.bingo__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-user-select: none;
  user-select: none;
}

.bingo__cell:hover {
  border-color: var(--primary-light);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.bingo__cell--active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--white);
  font-weight: 500;
}

.bingo__cell--active:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.bingo__cell--free {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
  font-weight: 500;
  font-size: 0.72rem;
}

.bingo__cell--free:hover {
  transform: none;
  cursor: default;
}

.bingo__status {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.bingo__status strong,
.bingo__status span#bingo-count {
  font-weight: 600;
  color: var(--primary);
}

.bingo__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.bingo__overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 37, 63, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bingo__overlay[hidden] {
  display: none;
}

.bingo__win {
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.bingo__win i {
  font-size: 3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

.bingo__win h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.bingo__win p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.bingo__win-sub {
  font-weight: 500;
  color: var(--text) !important;
  margin-bottom: 1.5rem !important;
}

.bingo__win .btn {
  display: block;
  margin: 0.5rem auto;
  max-width: 280px;
}

.bingo__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.bingo__left {
  min-width: 0;
}

.bingo__right {
  position: sticky;
  top: 5rem;
}

.bingo__konter {
  min-height: 0;
}

.bingo__konter-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 2.5rem 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}

.bingo__konter-placeholder i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bingo__konter-placeholder p {
  margin: 0;
  font-size: 0.9rem;
}

.bingo__konter-item {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  animation: konterIn 250ms ease;
}

.bingo__konter-item h3 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.bingo__konter-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Mobile: Konter sticky unten */
@media (max-width: 900px) {
  .bingo__layout {
    grid-template-columns: 1fr;
  }

  .bingo__right {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 900;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(10,37,63,0.15);
    padding: 1rem;
    max-height: 35vh;
    overflow-y: auto;
  }

  .bingo__konter-placeholder {
    padding: 1rem;
    border: none;
  }

  .bingo__konter-placeholder i {
    display: none;
  }

  .bingo__actions {
    margin-bottom: 0;
  }
}

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

@media (max-width: 600px) {
  .bingo {
    gap: 4px;
  }
  .bingo__cell {
    font-size: 0.65rem;
    padding: 0.4rem 0.25rem;
  }
  .bingo__cell--free {
    font-size: 0.6rem;
  }
}

/* Rechner variants */
.rechner__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.rechner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rechner__highlight {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* Checkbox grid variant */
.checkbox-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Accent line utility */
.accent-line {
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.text-center .accent-line {
  margin-left: auto;
  margin-right: auto;
}

/* Card generic */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

/* Nav base (if not covered) */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Responsive additions */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .tool-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-form__row {
    grid-template-columns: 1fr;
  }

  .rechner__inputs,
  .rechner__grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .manifesto__statement {
    font-size: 1.3rem;
  }
}

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

  .checkbox-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto__statement {
    font-size: 1.15rem;
  }

  .hero__content h1 {
    font-size: 1.8rem;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(10, 37, 63, 0.1);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner__buttons .btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner__buttons .btn--secondary:hover {
  border-color: var(--text);
}

.cookie-banner__settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-banner__settings.is-visible {
  display: block;
}

.cookie-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.cookie-setting__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.cookie-setting__desc {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__track {
  display: block;
  width: 40px;
  height: 22px;
  background: var(--border);
  border-radius: 11px;
  position: relative;
  transition: background var(--transition);
}

.toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle__track {
  background: var(--accent-dark);
}

.toggle input:checked + .toggle__track::after {
  transform: translateX(18px);
}

.toggle input:disabled + .toggle__track {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-banner__buttons {
    flex-direction: column;
  }
  .cookie-banner__buttons .btn,
  .cookie-banner__buttons .btn--secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media print {
  .cookie-banner { display: none !important; }
}
