/* Rolucheck — naturnahe, freundliche Grün-Palette */

:root {
  /* Heading-Font — hier umschalten, wenn ein anderer Stil gewuenscht:
     "Manrope", "Inter", sans-serif     - modern, geometrisch (Default)
     "Inter", system-ui, sans-serif     - identisch mit Body, sehr clean
     "Plus Jakarta Sans", sans-serif    - warmer, freundlich-business
     "Space Grotesk", sans-serif        - technisch, leicht mechanisch
     "DM Sans", sans-serif              - klassisch, sehr legibel        */
  --font-heading: "Manrope", "Inter", sans-serif;

  --navy: #11231C;
  --navy-2: #1B3327;
  --green: #2DA86C;
  --green-deep: #1F8A5B;
  --green-bright: #3FC57E;
  --green-soft: #E6F3EC;
  --yellow: #F2C94C;
  --bg-soft: #F4F1EA;
  --bg-soft-2: #FAF8F2;
  --line: #E6E3DB;
  --muted: #5C6A63;
  --white: #FFFFFF;
  --warning: #C77A0F;
  --blue: var(--green-deep);
  --blue-bright: var(--green-bright);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

.h-display { font-family:"Unbounded",sans-serif; font-weight:500; font-size:clamp(40px,5.2vw,64px); line-height:1.08; color:var(--navy); }
.h-section { font-family:"Unbounded",sans-serif; font-weight:500; font-size:clamp(32px,3.6vw,48px); line-height:1.18; }
.h-card { font-family:"Unbounded",sans-serif; font-weight:500; font-size:22px; line-height:1.3; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.04em;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(45,168,108,0.18);
}
.eyebrow.on-dark .dot { background: var(--green-bright); box-shadow: 0 0 0 4px rgba(63,197,126,0.18); }
.eyebrow.on-dark { color: rgba(255,255,255,0.85); }
.eyebrow.on-light { color: var(--navy); }

p { margin: 0; line-height: 1.6; }
.body-l { font-size: 18px; line-height: 1.65; }
.body { font-size: 16px; line-height: 1.65; }
.body-s { font-size: 14px; line-height: 1.6; }
.muted { color: var(--muted); }

.wrap { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 72px 0; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-blue { background: var(--green-deep); color: var(--white); }
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: var(--white); }
.bg-soft { background: var(--bg-soft); }
.bg-white { background: var(--white); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: "Inter", sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.02em;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-yellow {
  background: var(--green); color: var(--white);
  box-shadow: 0 6px 18px -6px rgba(45,168,108,0.45);
}
.btn-yellow:hover { background: var(--green-deep); box-shadow: 0 12px 28px -8px rgba(31,138,91,0.55); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--green); }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

.card { background: var(--white); border-radius: 20px; padding: 32px; border: 1px solid var(--line); }
.card-soft { background: var(--green-soft); border-radius: 20px; padding: 32px; }
.card-navy { background: var(--navy); color: var(--white); border-radius: 20px; padding: 32px; }

.notice-bar {
  background: var(--navy); color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 10px 0; text-align: center; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notice-bar strong { color: var(--green-bright); font-weight: 500; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,35,28,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 40px; width: auto; }
.brand-sub {
  font-family: var(--font-heading); font-weight: 500; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-bright);
  padding-left: 14px; border-left: 1px solid rgba(63,197,126,0.45);
}
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { color: rgba(255,255,255,0.85); transition: color 0.25s; }
.nav-links a:hover { color: var(--green-bright); }
.nav-cta-group { display: flex; align-items: center; gap: 18px; }
.phone { font-family: var(--font-heading); font-weight: 500; font-size: 14px; color: var(--green-bright); }

/* Hero */
.hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; padding: 56px 0 100px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(63,197,126,0.16), transparent 55%),
    radial-gradient(circle at 5% 95%, rgba(31,138,91,0.20), transparent 55%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(34px,4.4vw,56px); line-height: 1.08; letter-spacing: -0.01em; }
.hero h1 .accent { color: var(--green-bright); }
.hero-lead { margin-top: 28px; font-size: 18px; line-height: 1.6; max-width: 540px; color: rgba(255,255,255,0.82); }
.hero-cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 22px; padding: 28px;
}
.hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.hero-card h3 { color: var(--white); font-size: 19px; line-height: 1.35; letter-spacing: -0.005em; }
.hero-card ul { list-style: none; padding: 0; margin: 4px 0 22px; }
.hero-card li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.hero-card li + li { border-top: 1px solid rgba(255,255,255,0.07); }
.hero-card li::before {
  content: "";
  position: absolute; left: 0; top: 19px;
  width: 12px; height: 7px;
  border-bottom: 2px solid var(--green-bright);
  border-left: 2px solid var(--green-bright);
  transform: rotate(-45deg);
}
.hero-card li strong {
  color: var(--white); font-weight: 600;
  background: rgba(63,197,126,0.18);
  padding: 1px 7px; border-radius: 5px;
  /* Wenn das Highlight ueber zwei Zeilen umbricht, bekommt jede
     Zeile ihre eigene Pille mit korrekten Rundungen — kein
     "Blocksatz"-Effekt mit riesigen Wort-Luecken mehr. */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.trust-row { margin-top: 48px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.trust-item { display: flex; flex-direction: column; gap: 6px; }
.trust-item .num { font-family: var(--font-heading); font-weight: 500; font-size: 40px; line-height: 1; color: var(--green-bright); }
.trust-item .label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.section-head--single { grid-template-columns: 1fr; margin-bottom: 56px; max-width: 760px; }
.section-head .lead { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 540px; }
.section-head h2 { margin-top: 16px; }
.bg-navy .section-head .lead, .bg-blue .section-head .lead { color: rgba(255,255,255,0.78); }

.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.why-card {
  background: var(--navy); color: var(--white); border-radius: 22px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden;
}
.why-card.danger { background: linear-gradient(135deg, #1F2E1A 0%, var(--navy) 60%); }
.why-card .num {
  position: absolute; right: 32px; top: 28px;
  font-family: var(--font-heading); font-weight: 500; font-size: 56px;
  color: rgba(255,255,255,0.06); line-height: 1;
}
.why-card h3 { color: var(--white); font-size: 26px; line-height: 1.2; max-width: 90%; }
.why-card p { color: rgba(255,255,255,0.78); font-size: 15px; }
.why-card .tag {
  display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  font-size: 17px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--green-bright); background: rgba(63,197,126,0.12);
  padding: 8px 22px 8px 8px; border-radius: 999px;
  border: 1px solid rgba(63,197,126,0.2);
}
.why-card .tag-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; box-shadow: 0 6px 16px -6px rgba(45,168,108,0.55);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.why-card .tag-icon svg { width: 22px; height: 22px; transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.why-card .tag-text { line-height: 1.2; }

/* Hover: kurze, lebendige Mikro-Animation (Lottie-Look) */
.why-card:hover .tag-icon { background: var(--green-bright); transform: scale(1.08); }
.why-card:hover .tag-icon[data-icon="liability"] svg { animation: iconWiggle 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }
.why-card:hover .tag-icon[data-icon="shield"]    svg { animation: iconPop    0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.why-card:hover .tag-icon[data-icon="hardhat"]   svg { animation: iconNod    0.7s cubic-bezier(0.42, 0, 0.58, 1); }
.why-card:hover .tag-icon[data-icon="clipboard"] svg { animation: iconCheck  0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes iconWiggle {
  0%   { transform: rotate(0)    scale(1); }
  25%  { transform: rotate(-12deg) scale(1.08); }
  60%  { transform: rotate(10deg)  scale(1.08); }
  100% { transform: rotate(0)    scale(1); }
}
@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@keyframes iconNod {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes iconCheck {
  0%   { transform: scale(1)    rotate(0); }
  40%  { transform: scale(1.15) rotate(-6deg); }
  70%  { transform: scale(1.05) rotate(3deg); }
  100% { transform: scale(1)    rotate(0); }
}
.why-card .stat {
  margin-top: auto; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: baseline; gap: 14px;
}
.why-card .stat-num { font-family: var(--font-heading); font-weight: 500; font-size: 32px; color: var(--green-bright); line-height: 1; }
.why-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); max-width: 240px; line-height: 1.4; }

.scenarios { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.scenario { background: var(--white); border-radius: 18px; padding: 28px; border: 1px solid var(--line); }
.scenario .when {
  display: flex; align-items: center; gap: 8px; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: #B7331F; margin-bottom: 18px;
}
.scenario .when::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #B7331F; }
.scenario h4 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.scenario p { font-size: 14px; color: var(--muted); }
.scenario .outcome { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 13px; }
.scenario .outcome strong { color: var(--navy); }

.test-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.test-card {
  background: var(--white); border-radius: 22px; border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
}
/* Kompakter Card-Header: Icon-Kreis + Kategorie-Badge. Statt vorher 180 px hohem
   Streifenmuster-Block mit Emoji (rendert auf jedem Endgerät anders) jetzt
   uebergreifend konsistent via Inline-SVG. */
.test-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px 0;
}
.test-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px -6px rgba(45,168,108,0.5);
}
.test-card-icon svg { width: 24px; height: 24px; }
.test-card-cat {
  font-family: "JetBrains Mono", "Menlo", monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(45,168,108,0.18);
}
.test-card-body { padding: 22px 32px 32px; display: flex; flex-direction: column; flex: 1; gap: 16px; }
.test-card-body h3 { font-size: 24px; line-height: 1.25; }
.test-card-body .body { color: var(--muted); }
.test-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.norm-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-soft); color: var(--green-deep);
  padding: 7px 12px; border-radius: 999px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 500;
}
.norm-chip.dark { background: var(--navy); color: var(--green-bright); }
.norm-chip.yellow { background: var(--green); color: var(--white); }
.test-list { list-style: none; padding: 0; margin: 8px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 16px; }
.test-list li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.test-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 10px; background: var(--green); border-radius: 2px; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-step { position: relative; padding: 32px 24px 28px; background: var(--white); border-radius: 20px; border: 1px solid var(--line); }
.process-step .step-num { font-family: var(--font-heading); font-weight: 500; font-size: 56px; color: var(--green); line-height: 1; margin-bottom: 18px; display: block; }
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--muted); }

.legal-section { background: var(--bg-soft); }
.legal-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 100px; background: var(--white); border-radius: 20px; padding: 28px; border: 1px solid var(--line); }
.legal-toc h4 { font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.legal-toc ol { list-style: none; counter-reset: legal; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-toc li { counter-increment: legal; font-size: 13px; display: flex; gap: 10px; align-items: baseline; color: var(--navy); cursor: pointer; transition: color 0.2s; }
.legal-toc li:hover { color: var(--green-deep); }
.legal-toc li::before { content: "§ " counter(legal, decimal-leading-zero); font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); flex: 0 0 auto; }

.legal-block { background: var(--white); border-radius: 20px; border: 1px solid var(--line); padding: 36px 40px; margin-bottom: 20px; scroll-margin-top: 100px; }
.legal-block-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; }
.legal-marker { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.08em; color: var(--green-deep); background: rgba(31,138,91,0.1); padding: 6px 10px; border-radius: 6px; flex: 0 0 auto; margin-top: 4px; }
.legal-block h3 { font-size: 24px; line-height: 1.25; font-family: var(--font-heading); font-weight: 500; flex: 1; }
.legal-block .legal-source { font-size: 13px; color: var(--muted); font-family: "JetBrains Mono", monospace; margin-top: 4px; }
.legal-block p { font-size: 15px; color: #2C3E33; line-height: 1.65; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-quote { background: var(--green-soft); border-left: 3px solid var(--green); padding: 18px 20px; border-radius: 0 10px 10px 0; font-size: 14px; line-height: 1.6; color: var(--navy); margin: 16px 0; }
.legal-quote .src { display: block; font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--muted); margin-top: 8px; }
.legal-key { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 18px; }
.legal-key-item { background: var(--bg-soft); border-radius: 10px; padding: 14px 16px; font-size: 13px; line-height: 1.5; }
.legal-key-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 14px; }

.intervals { background: var(--white); border-radius: 20px; border: 1px solid var(--line); overflow: hidden; }
.intervals table { width: 100%; border-collapse: collapse; }
.intervals th, .intervals td { padding: 18px 24px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.intervals th { background: var(--navy); color: var(--white); font-family: var(--font-heading); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.intervals tr:last-child td { border-bottom: none; }
.intervals tr:nth-child(even) td { background: var(--bg-soft-2); }
.intervals .col-key { font-weight: 600; color: var(--navy); font-size: 15px; }
.intervals .col-norm { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--green-deep); }

.consequences { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.consequence { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; }
.consequence .amt { font-family: var(--font-heading); font-weight: 500; font-size: 32px; color: var(--green-bright); line-height: 1; margin-bottom: 10px; }
.consequence .who { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.consequence p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; }

.cta-strip {
  background: var(--navy); color: var(--white); border-radius: 28px; padding: 56px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(63,197,126,0.20), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { font-size: clamp(28px,3vw,40px); line-height: 1.15; color: var(--white); }
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 16px; margin-top: 14px; max-width: 480px; }
.cta-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1;
}
.cta-form label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: -6px; }
.cta-form input, .cta-form select {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: inherit; font-size: 14px;
  padding: 14px 16px; border-radius: 10px; outline: none; transition: border-color 0.2s;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: var(--green-bright); }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }

/* Zweispaltige Form-Reihen (Vorname+Nachname, Mail+Tel, Mitarbeiter+Geraete) */
.cta-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cta-form .form-row-2 > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cta-form .form-row-2 label { margin-bottom: 0; }

/* Textarea */
.cta-form textarea {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: inherit; font-size: 16px;
  padding: 12px 14px; border-radius: 10px; outline: none;
  min-height: 80px; resize: vertical; line-height: 1.5;
  transition: border-color 0.2s;
}

/* Datenschutz-Checkbox */
.cta-form .form-privacy {
  font-size: 12px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  display: flex; gap: 10px; align-items: flex-start;
  text-transform: none; letter-spacing: 0;
  margin: 4px 0 0; cursor: pointer;
}
.cta-form .form-privacy input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--green-bright);
  width: 16px; height: 16px; flex: 0 0 16px;
  cursor: pointer;
}
.cta-form .form-privacy a {
  color: var(--green-bright); text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-form .form-privacy a:hover { color: var(--green); }

/* Status-Meldung (Erfolg / Fehler) */
.cta-status {
  font-size: 13px; line-height: 1.55; min-height: 1px;
  margin: 2px 0 0; color: rgba(255,255,255,0.7);
}
.cta-status.success {
  color: var(--green-bright);
  background: rgba(63,197,126,0.12);
  border: 1px solid rgba(63,197,126,0.3);
  padding: 10px 14px; border-radius: 10px;
}
.cta-status.error {
  color: #FFB4B4;
  background: rgba(255,180,180,0.08);
  border: 1px solid rgba(255,180,180,0.25);
  padding: 10px 14px; border-radius: 10px;
}

/* Mobile: 2-Spalten-Reihen brechen auf 1 Spalte um, sobald CTA-Strip 1-spaltig wird */
@media (max-width: 600px) {
  .cta-form .form-row-2 { grid-template-columns: 1fr; }
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: 16px; border: 1px solid var(--line); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-heading); font-weight: 500; font-size: 17px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-soft); display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; color: var(--navy); flex: 0 0 auto;
  transition: background 0.25s, color 0.25s;
}
.faq-item[open] summary::after { content: "−"; background: var(--green); color: var(--white); }
.faq-item .faq-body { padding: 0 28px 24px; font-size: 15px; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--line); padding-top: 20px; }

.footer { background: var(--bg-soft); padding: 80px 0 28px; }
.footer-card { background: var(--white); border-radius: 22px; padding: 56px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand h3 { font-family: "Inter", sans-serif; font-weight: 500; font-size: 14px; margin-top: 14px; line-height: 1.55; max-width: 360px; color: var(--muted); }
.footer-col h5 { font-family: "Inter", sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.04em; color: var(--green-deep); margin-bottom: 22px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 15px; color: var(--navy); transition: color 0.2s; }
.footer-col a:hover { color: var(--green-deep); }
.footer-col p { font-size: 15px; color: var(--navy); }
.footer-disclaimer {
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.footer-disclaimer p { font-size: 12px; line-height: 1.6; color: var(--muted); }
.footer-disclaimer p + p { margin-top: 10px; }

.footer-bottom { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(17,35,28,0.08); display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }

.proof-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.proof {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; color: rgba(255,255,255,0.9);
}
.proof .checkmark {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-bright); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}

.disclaimer {
  background: rgba(199,122,15,0.06); border: 1px solid rgba(199,122,15,0.22);
  border-radius: 14px; padding: 18px 22px; font-size: 13px; color: var(--navy);
  line-height: 1.55; margin-top: 32px;
}
.disclaimer strong { color: var(--warning); }

.hl { background: linear-gradient(180deg, transparent 62%, rgba(63,197,126,0.40) 62%); padding: 0 4px; }

/* Section-CTA — zentrierter Button am Ende einzelner Sektionen */
.section-cta {
  display: flex; justify-content: center;
  margin-top: 56px;
}
.section-cta .btn { padding: 18px 36px; font-size: 15px; }

/* Dauer-Glow + Shine-Sweep auf den "Risiko jetzt absichern"-Buttons.
   Mit !important, da das globale prefers-reduced-motion-Override (animations.css)
   sonst die Glow-Animation der gezielt aufmerksamkeitsstarken Conversion-CTAs unterdrueckt. */
.section-cta .btn-yellow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: ctaGlowPulse 2.6s ease-in-out infinite !important;
}
.section-cta .btn-yellow > * { position: relative; z-index: 2; }
.section-cta .btn-yellow::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.75) 50%, transparent 75%);
  transform: translateX(-110%);
  animation: ctaShineSweep 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  pointer-events: none;
  z-index: 1;
}
.section-cta .btn-yellow:hover {
  animation-play-state: paused !important;
  transform: translateY(-2px) scale(1.02);
}
.section-cta .btn-yellow:hover::before { animation-play-state: paused !important; }

@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow:
      0 8px 22px -4px rgba(45,168,108,0.55),
      0 0 22px 4px rgba(63,197,126,0.35);
  }
  50% {
    box-shadow:
      0 10px 32px -4px rgba(45,168,108,0.75),
      0 0 38px 10px rgba(63,197,126,0.6);
  }
}
@keyframes ctaShineSweep {
  0%   { transform: translateX(-110%); }
  45%  { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

/* Auf Konsequenzen (bg-navy) etwas hellere Glow-Farbe */
.bg-navy .section-cta .btn-yellow {
  animation: ctaGlowPulseBright 2.6s ease-in-out infinite !important;
}
@keyframes ctaGlowPulseBright {
  0%, 100% {
    box-shadow:
      0 8px 22px -4px rgba(63,197,126,0.6),
      0 0 28px 6px rgba(63,197,126,0.5);
  }
  50% {
    box-shadow:
      0 12px 34px -4px rgba(63,197,126,0.85),
      0 0 44px 14px rgba(63,197,126,0.75);
  }
}

/* Hinweis: Diese Buttons sind bewusst von der globalen prefers-reduced-motion-Regel
   ausgenommen, da der Glow als zentrales Conversion-Element gewollt ist. */

/* Team-Sektion */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(45,168,108,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px; letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.team-role {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-deep); font-weight: 500;
}
.team-card h3 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 22px; line-height: 1.2;
}
.team-card > p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.team-cert {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.team-cert li {
  font-size: 13px; padding-left: 22px; position: relative;
  color: var(--navy);
}
.team-cert li::before {
  content: ""; position: absolute; left: 1px; top: 4px;
  width: 12px; height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* Legal-Prose — Reading-Layout fuer Impressum / Datenschutz */
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
}
.legal-prose > *:first-child { margin-top: 0; }
.legal-prose h2 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 24px; line-height: 1.25;
  margin: 48px 0 16px; color: var(--navy);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.legal-prose h3 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 18px; line-height: 1.3;
  margin: 28px 0 10px; color: var(--navy);
}
.legal-prose h4 {
  font-family: "Inter", sans-serif; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  margin: 22px 0 8px; color: var(--green-deep);
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul, .legal-prose ol { margin: 12px 0 16px; padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--green-deep); text-decoration: underline;
  text-underline-offset: 2px; word-break: break-word;
}
.legal-prose a:hover { color: var(--green); }
.legal-prose strong { color: var(--navy); }

/* Einklappbare Rechts-Sektion am Seitenende */
.legal-stack { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
.legal-collapsible {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.legal-collapsible:hover { border-color: rgba(45,168,108,0.28); }
.legal-collapsible[open] { border-color: rgba(45,168,108,0.45); box-shadow: 0 6px 18px -10px rgba(17,35,28,0.10); }
.legal-collapsible summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  display: flex; gap: 18px; align-items: flex-start;
}
.legal-collapsible summary::-webkit-details-marker { display: none; }
.legal-collapsible summary::after {
  content: "+"; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-soft); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; flex: 0 0 auto;
  margin-left: auto; transition: background 0.25s, color 0.25s;
}
.legal-collapsible[open] summary::after { content: "−"; background: var(--green); color: var(--white); }
.legal-collapsible .legal-summary-text { flex: 1; min-width: 0; }
.legal-collapsible .legal-summary-text h3 {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 18px; line-height: 1.3; color: var(--navy);
}
.legal-collapsible .legal-summary-text .legal-source {
  font-size: 13px; color: var(--muted);
  font-family: "JetBrains Mono", monospace; margin-top: 6px;
}
.legal-collapsible .legal-content {
  padding: 4px 28px 28px 70px;
  font-size: 15px; line-height: 1.65; color: #2C3E33;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.legal-collapsible .legal-content > p { margin-bottom: 12px; }
.legal-collapsible .legal-content > p:last-child { margin-bottom: 0; }
.legal-collapsible .legal-content .legal-quote { margin: 14px 0; }
.legal-collapsible .legal-content .legal-key { margin-top: 16px; }

@media (max-width: 600px) {
  .legal-collapsible summary { padding: 18px 20px; gap: 12px; }
  .legal-collapsible .legal-content { padding: 18px 20px 22px; }
  .legal-collapsible .legal-summary-text h3 { font-size: 16px; }
  .legal-collapsible summary::after { width: 28px; height: 28px; font-size: 18px; }
}

@media (max-width: 1080px) {
  .hero-grid, .why-grid, .test-grid, .legal-grid, .consequences { grid-template-columns: 1fr; }
  .scenarios { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .legal-toc { position: static; }
  .footer-card { grid-template-columns: 1fr 1fr; }
  .cta-strip { grid-template-columns: 1fr; padding: 40px; }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .hero { padding: 44px 0 80px; }
}
@media (max-width: 720px) {
  .nav .phone { display: none; }
  .nav-inner { gap: 12px; padding: 12px 24px; }
  .nav-cta-group { gap: 10px; }
  .brand-logo { height: 44px !important; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .legal-block { padding: 26px 22px; }
  .footer-card { grid-template-columns: 1fr; padding: 32px; }
  .test-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .hero { padding: 32px 0 60px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-card { padding: 22px; }
  .why-card, .scenario, .process-step { padding: 28px 22px; }
  .test-card-body { padding: 24px; }
  .legal-key { grid-template-columns: 1fr; }
  .intervals th, .intervals td { padding: 12px 14px; font-size: 13px; }
  .cta-strip { padding: 28px 22px; border-radius: 20px; }
  .notice-bar { font-size: 12px; padding: 8px 14px; line-height: 1.4; }
}
@media (max-width: 460px) {
  .nav-cta-group .btn { padding: 12px 16px; font-size: 13px; }
  .brand-logo { height: 36px !important; }
  h1 { font-size: 36px !important; line-height: 1.1 !important; }
}

/* ============================================================
   MOBILE-OPTIMIERUNG — Touch, iOS-Zoom-Fix, kleine Viewports
   Wirkt sich NICHT auf das Desktop-Design aus (alle Regeln
   sind in Media-Queries oder Touch-spezifischen Selektoren).
   ============================================================ */

/* Horizontalen Scroll der gesamten Seite verhindern */
html, body { overflow-x: hidden; }

/* Sauberer Tap-Highlight im Brand-Gruen */
* { -webkit-tap-highlight-color: rgba(45,168,108,0.18); }

/* Verhindert Double-Tap-Zoom auf Buttons & Akkordeons */
.btn,
.faq-item summary,
.legal-collapsible summary,
.legal-toc li,
.nav a,
.footer a {
  touch-action: manipulation;
}

/* Tastatur-/Screenreader-Focus: deutlich sichtbar */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
details:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Touch-Active-States (kein Hover auf Touch) */
.btn:active { transform: translateY(1px) scale(0.99); }
.faq-item summary:active,
.legal-collapsible summary:active { background: rgba(45,168,108,0.05); }
.test-card:active,
.why-card:active,
.team-card:active,
.scenario:active,
.process-step:active { transform: translateY(-1px); }

/* iOS Safari: Auto-Zoom beim Form-Fokus nur ab Schrift <16px.
   Form-Inputs deshalb auf 16px hochziehen. */
.cta-form input,
.cta-form select,
.cta-form textarea {
  font-size: 16px;
}

/* Pruefintervalle-Tabelle: auf schmalen Bildschirmen horizontal scrollbar */
.intervals { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.intervals table { min-width: 640px; }

/* === Tablet / kleines Tablet (<=900px) === */
@media (max-width: 900px) {
  /* Section-Heads auf Mobile/Tablet immer 1-spaltig (Headline ueber Text) */
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .section-head .lead { max-width: 100%; }

  .hero h1 { font-size: clamp(30px, 5vw, 42px); }
  .hero-lead { font-size: 16px; }
  .cta-strip { padding: 32px; }
  .cta-strip h2 { font-size: clamp(24px, 4vw, 32px); }
}

/* === Mobile (<=600px) — flaechige Optimierung === */
@media (max-width: 600px) {
  /* Notice-Bar kompakter */
  .notice-bar { font-size: 11px; padding: 8px 16px; line-height: 1.45; }

  /* Sticky-Nav etwas flacher */
  .nav-inner { padding: 10px 18px; gap: 10px; }
  .brand-logo { height: 40px !important; }
  .nav-cta-group .btn { padding: 11px 16px; font-size: 13px; }

  /* Hero kompakter, dichtere Saetze */
  .hero h1 { font-size: clamp(28px, 7vw, 38px); line-height: 1.12; }
  .hero-lead { margin-top: 22px; font-size: 15px; }
  .hero-cta-row { margin-top: 28px; gap: 10px; }
  .hero-cta-row .btn { padding: 14px 22px; width: 100%; }
  .hero-card { padding: 22px 20px; border-radius: 18px; }
  .hero-card h3 { font-size: 17px; }
  .hero-card li { font-size: 13.5px; padding: 10px 0 10px 24px; }
  .hero-card li::before { top: 17px; }
  .hero-proofs .proof { font-size: 12px; padding: 8px 14px; }

  /* Section-Heads enger */
  .section-head { gap: 24px; margin-bottom: 36px; }
  .section-head h2,
  .h-section { font-size: clamp(26px, 6vw, 34px); line-height: 1.18; }
  .section-head .lead { font-size: 15px; }

  /* Why-Cards */
  .why-card { padding: 28px 22px; gap: 14px; border-radius: 18px; }
  .why-card h3 { font-size: 21px; max-width: 100%; }
  .why-card p { font-size: 14px; }
  .why-card .num { font-size: 48px; right: 22px; top: 18px; }
  .why-card .tag { font-size: 15px; gap: 10px; padding: 5px 18px 5px 5px; }
  .why-card .tag-icon { width: 38px; height: 38px; }
  .why-card .tag-icon svg { width: 18px; height: 18px; }
  .why-card .stat-num { font-size: 24px; }
  .why-card .stat-label { font-size: 12px; }
  .why-grid { gap: 16px; }

  /* Scenarios */
  .scenario { padding: 22px 20px; border-radius: 16px; }
  .scenario h4 { font-size: 17px; }
  .scenarios { gap: 14px; margin-top: 32px; }

  /* Test-Cards */
  .test-card-header { padding: 22px 22px 0; gap: 12px; }
  .test-card-icon { width: 42px; height: 42px; border-radius: 12px; }
  .test-card-icon svg { width: 21px; height: 21px; }
  .test-card-cat { font-size: 10px; padding: 6px 12px; letter-spacing: 0.1em; }
  .test-card-body { padding: 18px 22px 24px; gap: 14px; }
  .test-card-body h3 { font-size: 20px; }
  .test-grid { gap: 16px; }

  /* Process Steps */
  .process-step { padding: 24px 20px; border-radius: 16px; }
  .process-step .step-num { font-size: 44px; margin-bottom: 14px; }
  .process-step h4 { font-size: 17px; }
  .process-grid { gap: 14px; }

  /* Team-Cards */
  .team-card { padding: 26px 22px; gap: 10px; border-radius: 18px; }
  .team-avatar { width: 76px; height: 76px; font-size: 24px; margin-bottom: 4px; }
  .team-card h3 { font-size: 20px; }
  .team-cert li { font-size: 12px; padding-left: 20px; }

  /* Intervalle-Tabelle: kleinere Schrift */
  .intervals th, .intervals td { padding: 12px 14px; font-size: 12px; }

  /* Consequences (bg-navy) */
  .consequence { padding: 20px 18px; border-radius: 14px; }
  .consequence .amt { font-size: 28px; }
  .consequences { gap: 12px; margin-top: 28px; }

  /* CTA-Form */
  .cta-strip { padding: 28px 22px; border-radius: 20px; }
  .cta-strip h2 { font-size: 24px; }
  .cta-form { padding: 20px; gap: 10px; border-radius: 14px; }
  .cta-form input, .cta-form select { padding: 12px 14px; }

  /* FAQ */
  .faq-item summary { padding: 18px 22px; font-size: 15px; }
  .faq-item summary::after { width: 28px; height: 28px; font-size: 18px; }
  .faq-item .faq-body { padding: 16px 22px 20px; font-size: 14px; }

  /* Section-CTA */
  .section-cta { margin-top: 40px; }
  .section-cta .btn { padding: 16px 28px; font-size: 14px; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-card { padding: 28px 22px; gap: 32px; }
  .footer-brand h3 { font-size: 13px; }
  .footer-col h5 { font-size: 12px; margin-bottom: 14px; }
  .footer-col a, .footer-col li { font-size: 14px; }
  .footer-disclaimer { padding: 16px 18px; }
  .footer-disclaimer p { font-size: 11px; line-height: 1.55; }
  .footer-bottom { font-size: 12px; flex-direction: column; align-items: flex-start; }

  /* Disclaimer-Box */
  .disclaimer { padding: 14px 18px; font-size: 12px; }
}

/* === Sehr schmale Phones (<=420px) === */
@media (max-width: 420px) {
  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }

  /* Hero noch kompakter */
  .hero { padding: 24px 0 56px; }
  .hero h1 { font-size: clamp(26px, 7vw, 32px); }
  .hero-lead { font-size: 14px; }

  /* Notice-Bar so kurz wie moeglich */
  .notice-bar { font-size: 10.5px; padding: 6px 14px; }

  /* Nav extrem flach */
  .nav-inner { padding: 8px 18px; }
  .brand-logo { height: 34px !important; }
  .nav-cta-group .btn { padding: 9px 14px; font-size: 12px; }

  /* Cards padding minimieren */
  .why-card,
  .scenario,
  .process-step,
  .team-card,
  .consequence,
  .legal-collapsible summary { padding-left: 18px; padding-right: 18px; }
  .test-card-body { padding: 18px; }

  /* Section-CTA */
  .section-cta .btn { padding: 14px 24px; font-size: 13px; }

  /* Proof-Row im Hero */
  .hero-proofs { gap: 8px; }
  .hero-proofs .proof { font-size: 11.5px; padding: 7px 12px; }
}

/* === Reduktion der Glow-Animation auf Mobile (Akku schonen) === */
@media (max-width: 600px) {
  .section-cta .btn-yellow {
    animation-duration: 3.4s !important;
  }
  .section-cta .btn-yellow::before {
    animation-duration: 5s !important;
  }
}

