:root {
  --iv-bg: #F8FAFC;
  --iv-surface: #FFFFFF;
  --iv-surface-alt: #F1F5F9;
  --iv-text: #111827;
  --iv-text-soft: #475569;
  --iv-heading: #0F172A;
  --iv-border: #E2E8F0;
  --iv-border-strong: #CBD5E1;
  --iv-primary: #0F172A;
  --iv-primary-2: #1E293B;
  --iv-accent: #2563EB;
  --iv-radius-sm: 8px;
  --iv-radius-md: 12px;
  --iv-radius-lg: 16px;
  --iv-shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --iv-shadow-md: 0 8px 24px rgba(15,23,42,0.06);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--iv-bg);
  color: var(--iv-text);
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.iv-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

main {
  display: block;
}

.iv-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.iv-section + .iv-section {
  border-top: 1px solid var(--iv-border);
}

h1, h2, h3 {
  margin: 0 0 14px 0;
  color: var(--iv-heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 34px;
  line-height: 1.18;
  max-width: 720px;
}

h2 {
  font-size: 24px;
  line-height: 1.25;
}

h3 {
  font-size: 18px;
  line-height: 1.35;
}

p {
  margin: 0 0 14px 0;
  max-width: 680px;
  color: var(--iv-text-soft);
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: var(--iv-heading);
  text-decoration: none;
}

a:hover {
  color: var(--iv-primary-2);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--iv-border);
}

header .iv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

header nav a {
  color: var(--iv-text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.15s ease, color 0.15s ease;
}

header nav a:hover {
  opacity: 0.75;
  color: var(--iv-heading);
}

.iv-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--iv-heading);
}

.iv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--iv-primary);
  color: #fff;
  border-radius: var(--iv-radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--iv-shadow-sm);
}

.iv-btn:hover {
  background: var(--iv-primary-2);
  color: #fff;
}

.iv-card {
  background: var(--iv-surface);
  border: 1px solid var(--iv-border);
  border-radius: var(--iv-radius-lg);
  box-shadow: var(--iv-shadow-sm);
  padding: 28px;
}

main ul,
main ol {
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
}

main li {
  margin: 0 0 10px 0;
  padding: 0;
  color: var(--iv-text);
  font-size: 16px;
  line-height: 1.65;
}

.iv-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.iv-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--iv-border);
  border-radius: 999px;
  background: #fff;
  color: var(--iv-heading);
  font-size: 14px;
  font-weight: 500;
}

.iv-cluster-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.iv-cluster-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--iv-border);
  border-radius: 999px;
  background: #fff;
  color: var(--iv-text-soft);
  font-size: 14px;
  font-weight: 500;
}

.iv-cluster-nav a:hover {
  color: var(--iv-heading);
  border-color: var(--iv-border-strong);
  background: var(--iv-surface-alt);
}

footer {
  margin-top: 56px;
  padding: 32px 0 40px 0;
  border-top: 1px solid var(--iv-border);
  background: #fff;
  color: var(--iv-text-soft);
  font-size: 14px;
}

footer .iv-container {
  text-align: center;
}

footer a {
  color: var(--iv-text-soft);
}

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

footer nav,
footer div {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .iv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .iv-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  header .iv-container {
    min-height: 60px;
  }

  header nav {
    gap: 14px;
  }

  .iv-logo {
    font-size: 22px;
  }

  .iv-card {
    padding: 22px;
  }
}

/* FORCE LOGO VISIBILITY */
.iv-logo {
  color: #0F172A !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  display: inline-block;
}

header .iv-logo {
  font-size: 28px !important;
}


.iv-note {
  font-size: 13px;
  line-height: 1.5;
  color: #64748B;
  margin-top: 20px;
}


.iv-note p {
  font-size: 12.5px;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}


/* ===== PREMIUM SECTION RHYTHM ===== */

.iv-section:nth-child(even) {
  background: #F8FAFC;
}

.iv-section:nth-child(odd) {
  background: #FFFFFF;
}

/* ===== STRONG TYPOGRAPHY ===== */

h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 26px;
  font-weight: 600;
}

p {
  font-size: 17px;
  color: #475569;
}

/* ===== VISUAL BREATHING ===== */

.iv-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ===== PREMIUM CONTENT WIDTH ===== */

.iv-container {
  max-width: 820px;
}

/* ===== FLOW ELEMENT (ARROWS CLEAN) ===== */

.iv-flow span {
  font-size: 14px;
  color: #64748B;
}

/* ===== BUTTON REDUCTION (NO SALES LOOK) ===== */

.iv-btn {
  background: #0F172A;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 10px;
  padding: 10px 18px;
}

/* ===== HEADER FINETUNE ===== */

header {
  height: 72px;
}

header nav a {
  font-size: 14px;
  color: #64748B;
}

header nav a:hover {
  color: #0F172A;
}


/* ===== FINAL LOGO FIX ===== */

.iv-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.iv-logo img {
  height: 36px !important;
  width: auto !important;
  display: block !important;
}

.iv-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -0.02em;
}


/* ===== PREMIUM FLOW FIX ===== */

.iv-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.iv-flow .iv-step {
  padding: 6px 12px;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  font-size: 14px;
  background: #fff;
  color: #0F172A;
}

.iv-flow .iv-arrow {
  font-size: 16px;
  color: #94A3B8;
  display: flex;
  align-items: center;
}


/* ===== PREMIUM HEADER FINAL ===== */

header {
  height: 84px !important;
  border-bottom: 1px solid #E2E8F0;
  background: #FFFFFF;
}

header .iv-container {
  height: 84px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO BLOCK */
.iv-logo {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.iv-logo img {
  height: 42px !important;
  width: auto !important;
}

.iv-logo-text {
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: #0F172A;
}

/* NAVIGATION */
header nav {
  display: flex;
  gap: 28px;
}

header nav a {
  font-size: 15px;
  color: #64748B;
  font-weight: 500;
}

header nav a:hover {
  color: #0F172A;
}


/* ===== HEADER DOMINANCE FIX ===== */

.iv-logo-link {
  text-decoration: none;
}

/* HEADER größer & stärker */
header {
  height: 96px !important;
}

header .iv-container {
  height: 96px !important;
}

/* LOGO deutlich größer */
.iv-logo img {
  height: 52px !important;
}

/* TEXT deutlich sichtbarer */
.iv-logo-text {
  font-size: 26px !important;
  font-weight: 600 !important;
}

/* NAV leicht größer */
header nav a {
  font-size: 16px;
}

/* H1 minimal runter, damit Header dominiert */
h1 {
  font-size: 34px !important;
}


/* ===== HEADER NAV DOMINANCE ===== */

header nav a {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  letter-spacing: -0.01em;
}

/* Hover subtil aber klar */
header nav a:hover {
  color: #020617 !important;
  opacity: 0.85;
}

/* Mehr Abstand = mehr Ruhe */
header nav {
  gap: 34px !important;
}


/* ===== FOOTER CENTER FIX ===== */

footer .iv-container {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px;
}

/* sorgt dafür dass alle texte wirklich mittig sind */
footer * {
  text-align: center !important;
}


/* ===== CLEAN LIST STYLE (PREMIUM) ===== */

.iv-list-clean {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 18px;
}

.iv-list-clean li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: #334155;
  font-size: 16px;
}

.iv-list-clean li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #94A3B8;
}

.iv-text-muted {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

