/* ====== Farb- und Basisvariablen ====== */
:root{
  --tw-primary:#fe624e;   /* Logo‑Orange */
  --tw-secondary:#43a047; /* Grün */
  --tw-font:#170806;      /* Grundschrift */
  --tw-bg:#f5f5f5;        /* Hellgrau */
  --radius:18px;
}
html{scroll-behavior:smooth;font-size: 16px;}  /* Basis 1rem = 16px */

body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;color:var(--tw-font);background:var(--tw-bg);line-height:1.55}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem); /* ca. 36–56px */
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); /* ca. 28–40px */
  font-weight: 700;
}

h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
   line-height: normal;	
}

h4 {
  font-size: 1.1rem; /* 20px */
  font-weight: 700;
  line-height: normal;	
}

p, li {
  font-size: 1rem; /* 16px */
  line-height: norm;
}

header{
	position:sticky;
	top:0;
	/*background:rgba(255,255,255,.9);*/
	backdrop-filter:saturate(140%) blur(6px);
	border-bottom:1px solid #eee;
	z-index:50;
}


.nav a {
  font-size: 1rem;
  font-weight: 500;
}
.btn {
  font-size: 1rem;
  font-weight: 600;
}

/* ====== Layout Helpers ====== */
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.center{text-align:center}

/* ====== Buttons ====== */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:var(--radius);font-weight:700;text-decoration:none}
.btn-primary{background:var(--tw-primary);color:#fff}
.btn-primary:hover{filter:brightness(0.95)}
.btn-outline{border:1px solid #dadada;color:var(--tw-font);background:#fff}
.btn-outline:hover{border-color:#c9c9c9}

/* ====== Header & Navigation ====== */
header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:saturate(140%) blur(6px);border-bottom:1px solid #eee;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.nav{display:flex;gap:22px;align-items:center}
.nav a{text-decoration:none;color:var(--tw-font);font-size:14px}
.nav a:hover{color:var(--tw-secondary)}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:32px;display:block}
/* Sektion nach dem Ansatz wieder weiß */
.impact { background: #fff; }

/* === Header Optimierung === */
.logo img {
  height: 64px;                /* Logo größer */
}

header strong {
  font-size: 1.35rem;          /* TalentWizard größer */
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Hamburger Symbol */
.nav-toggle-label {
  display: none;
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  color: var(--tw-primary);
  cursor: pointer;
  user-select: none;
}

/* Standardzustand Desktop */
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
/* ====== Hero ====== */
/* === Hero-Hintergrundbild & Verlauf === 
.hero {
  position: relative;
  padding: 160px 0;
  color: var(--tw-bg);
  background: linear-gradient(to right, rgba(67,160,71,1) 0%, rgba(67,160,71,0.1) 100%),
              url('Titel.png') center/cover no-repeat;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  width: 8em;
   margin: 0;
}
.hero p {
  font-size: 20px;
  max-width: 700px;
  margin-top: 16px;
  }

.hero {
  position: relative;
  padding: 180px 0 120px; /* mehr Platz oben und unten 
  color: var(--tw-bg);
  background: linear-gradient(to right, rgba(67,160,71,1) 0%, rgba(67,160,71,0.1) 100%),
              url('Titel.png') center/cover no-repeat;
}
*/
/* === Hero – robust für 1920x1080 und kleiner === */
.hero {
  position: relative;
  min-height: 68vh;
  padding: 220px 0 120px;
  color: #fff;
  background:
    linear-gradient(
      to right,
      rgba(67,160,71, 1.0) 0%,     /* links: 100 % Grün */
      rgba(67,160,71, 0.95) 25%,   /* kräftig bis ca. 1/3 */
      rgba(67,160,71, 0.6) 60%,    /* mittlerer Bereich */
      rgba(67,160,71, 0.35) 80%,   /* weicher Auslauf */
      rgba(67,160,71, 0.25) 100%   /* rechts noch grünlich */
    ),
    url('./images/Titel.png') center/cover no-repeat;
}

/* statt margin-left nutzen wir dynamischen Innenabstand */
.hero .container{
  max-width: 1100px;
  padding-left: clamp(24px, 8vw, 180px); /* skaliert mit Viewportbreite */
  padding-right: clamp(16px, 4vw, 80px);
  margin: 0; /* keine zusätzliche Verschiebung mehr */
}

.hero h1{
  font-size: clamp(34px, 4.2vw, 64px);  /* skaliert sauber mit */
  font-weight: 800;
	width: 8em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero p{
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 56ch;
  line-height: 1.45;
}
/* === Props (Recruiting-Vorteile) === */
.props {
  background: #fff;
  padding: 50px 0 20px;
  }

.props-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.prop {
  background: var(--tw-bg);
  border-radius: 18px;
  padding: 22px 20px 20px;
  min-height: 160px;
}

.prop h4 {
  min-height: 2.5em;         /* gleicht unterschiedlich lange Überschriften aus */
  
 }

.prop p {
  margin: 0;
  
}
/* === Unsere Leistungen === */
.services {
  padding: 60px 0 40px;
  background: var(--tw-bg);
}

.services .sub {
  max-width: 720px;
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.service {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}

.service h4 {
  margin: 0;
 F min-height: 2.5em;            /* gleiche Startlinie */
}

.service p {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.service ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service li {
  font-size: 0.9rem;
  color: #444;
}

.service-optional {
  border: 1px dashed rgba(254,98,78,0.6);
}

.badge-optional {
  margin-top: auto;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
}

.services-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}


.eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--tw-bg)}
h1{font-size:40px;line-height:1.12;margin:10px 0 0}
.highlight{color:var(--tw-secondary)}
.lead{margin-top:14px;color:var(--tw-bg);font-size:18px;max-width:760px}
.hero-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:26px}
.kpi{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:18px}
.kpi .k{font-size:28px;font-weight:800}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.badge{font-size:12px;border:1px solid #e7e7e7;border-radius:999px;padding:8px 12px;background:#fff}
.hero-cta-row{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap}

/* ====== Sections / Cards / Lists ====== */
section{padding:70px 0}
.section-muted{background:var(--tw-bg)}
h2{font-size:30px;margin:0 0 12px}
.sub{color:#616161}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:22px}
.list{margin:14px 0 0;padding:0;list-style:none}
.list li{margin:10px 0;padding-left:26px;position:relative}
.list li:before{content:"";position:absolute;left:0;top:8px;width:10px;height:10px;border-radius:50%;background:var(--tw-secondary)}

/* ====== Steps ====== */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:20px}
.step{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:18px}
.step .num{width:28px;height:28px;border-radius:50%;background:var(--tw-secondary);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:14px;font-weight:800}

/* ====== CTA Band ====== */
.cta{background:linear-gradient(135deg,var(--tw-secondary),var(--tw-primary));color:#fff;border-radius:var(--radius);padding:28px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px}
.cta p{margin:0}

/* ====== FAQ ====== */
details{border:1px solid #eee;border-radius:14px;padding:14px 16px;background:#fff}
details+details{margin-top:10px}
summary{cursor:pointer;font-weight:700}
/* === Wirkung / Ergebnisse === */
.impact {
  background: var(--tw-bg);
  padding: 60px 0 50px;
}

.impact .sub {
  max-width: 720px;
  margin-bottom: 26px;
}

.impact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
/* === Case-Section (Vertrauen / Beweise) === */
.cases {
  background: #fff;       /* bewusst weiß, damit es sich abhebt */
  padding: 60px 0 50px;
}

.text-right{
	padding-left: 60px;
}

.cases .sub {
  max-width: 640px;
  margin-bottom: 28px;
}

.case-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 20px 20px;
  margin-bottom: 20px;
}

.case-text h3 {
  margin: 0 0 6px;
  font-weight: 700;
}

.case-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.case-text p {
  margin-bottom: 10px;
  color: #555;
}

.case-text ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-placeholder {
  width: 100%;
  min-height: 160px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(254,98,78,0.12) 0,
    rgba(254,98,78,0.12) 10px,
    rgba(67,160,71,0.12) 10px,
    rgba(67,160,71,0.12) 20px
  );
  border: 1px dashed rgba(0,0,0,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
}

/* jedes zweite umdrehen */
.case-row.case-alt {
  grid-template-columns: 0.8fr 1.2fr;
}

/* === Preisübersicht === */
.pricing {
  background: var(--tw-bg);
  padding: 70px 0 60px;
}

.pricing .sub {
  max-width: 720px;
  margin-bottom: 34px;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 330px;
}

.price-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-card .price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tw-secondary);
  margin: 0;
}

.price-card .desc {
  font-size: 0.92rem;
  color: #555;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Budget-Erklärung */
.budget-note {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 24px 20px;
  margin-top: 36px;
}

.budget-note h4 {
  margin-top: 0;
  color: var(--tw-primary);
  font-weight: 700;
}

.budget-note p {
  margin: 8px 0;
  color: #444;
  line-height: 1.55;
}

/* CTA */
.pricing-cta {
  margin-top: 50px;
  background: linear-gradient(120deg, var(--tw-secondary), var(--tw-primary));
  padding: 36px 26px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.pricing-cta .btn {
  background: #fff;
  color: var(--tw-primary);
  font-weight: 700;
}

/* TalentWizard FAQ Styles – pure CSS, no JS */

.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  font-size: 1.8em;
  color: #170806;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  padding: 14px 18px;
  background: #fff7f2;
  color: #170806;
  position: relative;
  transition: background 0.2s ease;
}

.faq-item label:hover {
  background: #ffefdf;
}

/* Orange indicator */
.faq-item label::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.3em;
  color: #ff6a00;
  transition: transform 0.3s ease;
}

.faq-item input:checked + label::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 18px;
}

.faq-item input:checked ~ .faq-content {
  max-height: 500px;
  padding: 14px 18px 18px;
}

.faq-content p,
.faq-content ul {
  margin: 0 0 10px 0;
}

.faq-content ul {
  padding-left: 20px;
}

.faq-content strong {
  color: #43a047;
}

/* Button in Karten nach unten drücken */
.price-card { display:flex; flex-direction:column; }
.price-card .card-cta { margin-top:auto; padding-top:8px; }

/* Modal <dialog> */
#offerModal {
  border: none;
  border-radius: var(--radius);
  padding: 18px;
  max-width: 520px;
  width: calc(100% - 32px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
#offerModal::backdrop { background: rgba(0,0,0,.35); }

#offerModal h3 { margin: 0 0 6px; font-weight: 800; }
#offerPkgHint { margin: 0 0 12px; }

#offerModal .field { display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
#offerModal input, #offerModal textarea {
  border:1px solid #ddd; border-radius:12px; padding:10px 12px; font: inherit;
}
#offerModal .actions { display:flex; justify-content:flex-end; gap:10px; margin-top:8px; }

.offer-btn {
  background: rgba(67,160,71,0.15); /* blasser grüner Ton */
  color: var(--tw-secondary);
  border: 1px solid var(--tw-secondary);
  font-weight: 600;
}
.offer-btn:hover {
  background: var(--tw-secondary);
  color: #fff;
}

/* Responsiv */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 900px) {
  .case-row,
  .case-row.case-alt {
    grid-template-columns: 1fr;
  }
  .case-media {
    order: 2;
  }
}


.impact-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
}

.impact-card h4 {
  margin: 0;
  min-height: 2.4em; /* gleiche Startlinie trotz Zeilenumbruch */
}

.impact-card p {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.impact-card .kpi {
  margin-top: auto;
  font-weight: 600;
  color: var(--tw-font);
}

.impact-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #888;
}

/* ====== Kontakt ====== */
.contact-actions{margin-top:14px}
.contact-mail{margin-top:10px;font-size:14px}

/* ====== Footer ====== */
footer{border-top:1px solid #eee;padding:26px 0;font-size:14px;color:#666}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-links{display:flex;gap:16px}

/* ====== Responsive ====== */
/* Responsive */
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width:960px){
  .hero-cards{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  h1{font-size:34px}
}
@media (max-width:560px){
  .steps{grid-template-columns:1fr}
}
/* === Mobile-Optimierung (bis 768px) === */
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(
        to bottom,
        rgba(67,160,71,0.9) 0%,      /* oben kräftiger Schleier */
        rgba(67,160,71,0.65) 50%,    /* mittlerer Übergang */
        rgba(67,160,71,0.4) 100%     /* unten sanft */
      ),
      url('Titel.png') center/cover no-repeat;
    text-align: center;
    padding: 140px 20px 100px;
  }

  /* Text mittig setzen */
  .hero .container {
    padding: 0 24px;
    margin: 0 auto;
  }

  /* Dunklere Schrift für bessere Lesbarkeit */
  .hero h1, .hero p {
    color: var(--tw-font);  /* dein dunkles #170806 */
  }
}

/* === Mobile Navigation pure CSS === */
.nav-toggle {
  display: none; /* Checkbox ausblenden */
}
/* =====================================
   TALENTWIZARD – Impressum & Datenschutz
   ===================================== */

/* Layoutbereich mit Einrückung */
.legal {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 60px;       /* gleichmäßige Einrückung links/rechts */
  box-sizing: border-box;
}

/* Hauptüberschrift */
.legal h1 {
  text-align: center;
  font-size: 2.2em;
  color: #ff6a00;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Abschnittsüberschriften */
.legal h2 {
  font-size: 1.3em;
  color: #43a047;
  margin-top: 35px;
  margin-bottom: 10px;
}

/* Standardtext */
.legal p {
  margin-bottom: 15px;
}

/* Links */
.legal a {
  color: #ff6a00;
  text-decoration: none;
  transition: color 0.3s;
}

.legal a:hover {
  color: #43a047;
  text-decoration: underline;
}

/* Zurück-Button */
.back-btn {
  display: inline-block;
  margin-top: 40px;
  background: #ff6a00;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
}

.back-btn:hover {
  background: #43a047;
  transform: translateY(-2px);
}
/* === TalentWizard Booking Page === */

.booking-hero {
  background: linear-gradient(0deg, #fff7f2 0%, #ffffff 100%);
  border-bottom: 1px solid #eee;
  padding: 48px 0 32px;
}
.booking-hero h1 {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  color: #ff6a00;
  letter-spacing: .2px;
}
.booking-hero .lead {
  margin: 0 0 16px 0;
  color: #170806;
  max-width: 860px;
}

.booking-section { padding: 32px 0 56px; }

/* zentrierter Seiten-Container (falls noch nicht vorhanden) */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* CTA-Button konsistent */
.cta-book {
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: .2px;
  transition: background .2s, transform .2s;
}
.cta-book:hover { background: #43a047; transform: translateY(-2px); color: #fff; }

/* iFrame-Wrapper – responsiv, ohne Scrollleisten */
.booking-wrap {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: #fff;
}
/* feste Höhe für Kalender, mobil größer */
.booking-wrap iframe {
  width: 100%;
  height: 900px;      /* Desktop */
  border: 0;
  display: block;
}
@media (max-width: 1024px) { .booking-wrap iframe { height: 1000px; } }
@media (max-width: 768px)  { .booking-wrap iframe { height: 1100px; } }
@media (max-width: 480px)  { .booking-wrap iframe { height: 1250px; } }

/* Footer-Hinweise */
.booking-notes {
  max-width: 900px;
  margin: 20px auto 0;
  color: #170806;
  line-height: 1.6;
}
.booking-notes .legal-links a {
  color: #ff6a00;
  text-decoration: none;
}
.booking-notes .legal-links a:hover {
  color: #43a047;
  text-decoration: underline;
}

/* optional: sanftes Scrollen bei internen Ankern */
html { scroll-behavior: smooth; }


/* Responsives Verhalten */
@media (max-width: 768px) {
  .legal {
    padding: 0 25px;
    margin: 60px auto;
  }

  .legal h1 {
    font-size: 1.8em;
  }
}


/* Mobile Darstellung */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav a {
    display: block;
    padding: 12px 0;
    text-align: center;
  }

  .nav-toggle-label {
    display: block; /* Hamburger zeigen */
  }

  /* Menü sichtbar, wenn Checkbox aktiv */
  .nav-toggle:checked + .nav-toggle-label + .nav {
    display: flex;
  }
}
/* Tablet: 2x2 */
@media (max-width: 1024px) {
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: untereinander */
@media (max-width: 640px) {
  .props-grid {
    grid-template-columns: 1fr;
  }
  .prop {
    text-align: left;
  }
}
/* Responsive: 2 Spalten, dann 1 Spalte */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* optional: auf sehr großen Screens den Text leicht weiter reinziehen */
@media (min-width: 1600px){
  .hero .container{
    padding-left: clamp(40px, 9vw, 220px);
  }
}
@media (min-width: 992px) {
  .impact-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr; /* statt 4 gleiche */
  }
  .impact-card { min-height: auto; }
  .impact-card:nth-child(n+3) { display:none; } /* nur 2 Karten auf Desktop */
}


