*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --red: #D1353B;
  --red-light: #FDECEA;
  --red-dark: #B3282F;
  --charcoal: #1A1A2E;
  --slate: #16213E;
  --gray-700: #666677;
  --gray-500: #9999AA;
  --gray-300: #D7D9E2;
  --gray-100: #E8E8EE;
  --cream: #F8F8FA;
  --white: #FFFFFF;
  --green: #2ECC71;
  --green-light: #E8F5E9;
  --blue: #3498DB;
  --blue-light: #E3F2FD;
  --orange: #E67E22;
  --orange-light: #FFF3E0;
  --purple: #8E44AD;
  --purple-light: #F3E8FA;
  --teal: #42A5F5;
  --teal-light: #E8F3FD;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ───── UTILITY ───── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(209,53,59,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209,53,59,0.4), transparent);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-text .label { margin-bottom: 1.5rem; display: block; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.hero-stat {
  border-left: 2px solid var(--red);
  padding-left: 1rem;
}
.hero-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-dark:hover { background: var(--slate); border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

/* Hero right – KPI cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.hero-card:hover {
  transform: translateX(4px);
  border-color: rgba(209,53,59,0.3);
}
.hero-card .hc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.hero-card .hc-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-card .hc-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  color: var(--red);
  font-weight: 500;
}
.hero-card .hc-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ───── PROBLEM SECTION ───── */
.problem {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-text .label { display: block; margin-bottom: 1rem; }
.problem-text h2 { margin-bottom: 1.5rem; }
.problem-text h2 em { font-style: italic; color: var(--red); }
.problem-text p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.problem-text blockquote {
  border-left: 3px solid var(--red);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.5;
}

/* Paradox visual */
.paradox-visual {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}
.paradox-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pbar-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.pbar-label {
  width: 110px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
}
.pbar-track {
  flex: 1;
  height: 32px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}
.pbar-fill {
  height: 100%;
  border-radius: 4px;
  opacity: 0.85;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pbar-text {
  position: absolute;
  left: 0.8rem;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.pbar-fill.blue { background: var(--blue); }
.pbar-fill.red { background: var(--red); }
.pbar-fill.green { background: var(--green); }
.pbar-fill.orange { background: var(--orange); }
.pbar-fill.purple { background: var(--purple); }
.pbar-fill.teal { background: var(--teal); }

.paradox-callout {
  margin-top: 2rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ───── GANTT / LIFECYCLE ───── */
.lifecycle {
  background: var(--cream);
}
.lifecycle .container > .label { display: block; margin-bottom: 1rem; }
.lifecycle .container > h2 { margin-bottom: 0.8rem; }
.lifecycle .container > h2 em { font-style: italic; color: var(--red); }
.lifecycle .intro-text {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.gantt-wrapper {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  padding: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.gantt-mobile-hint {
  display: none;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: -1rem 0 1rem;
}
.gantt-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gantt-title h3 { font-size: 1.3rem; }
.gantt-meta {
  display: flex;
  gap: 1.5rem;
}
.gantt-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray-100);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}
.gantt-meta-item .gm-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.gantt-meta-item .gm-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.gantt-chart {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  min-width: 900px;
}

/* Gantt header */
.gantt-header-left {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-100);
}
.gantt-header-right {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  border-bottom: 2px solid var(--gray-100);
}
.gantt-month {
  padding: 0.6rem 0.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  text-align: center;
  color: var(--gray-300);
  border-left: 1px solid var(--gray-100);
}
.gantt-month:nth-child(3n+1) {
  color: var(--gray-500);
  font-weight: 500;
}

/* Gantt rows */
.gantt-row-label {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
}
.gantt-row-bars {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.gantt-cell {
  border-left: 1px solid var(--gray-100);
  min-height: 36px;
}

/* Gantt bar overlay */
.gantt-bar-container {
  position: relative;
  height: 36px;
  grid-column: 1 / -1;
}
.gantt-bar {
  position: absolute;
  top: 6px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: visible;
  transition: opacity 0.3s ease;
}
.gantt-bar:hover { opacity: 0.85; }

/* Bar colors */
.bar-konstruktion { background: var(--blue); }
.bar-beschaffung { background: var(--orange); }
.bar-eplanung { background: var(--purple); }
.bar-fertigung { background: var(--teal); }
.bar-montage { background: var(--red); }
.bar-sps { background: #27AE60; }
.bar-abnahme { background: var(--gray-500); }

/* Bürgschaft bars */
.buergschaft-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-width: 900px;
  background: var(--purple-light);
  border-bottom: 1px solid rgba(142,68,173,0.15);
}
.buergschaft-row .br-label {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
}
.buergschaft-row .br-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  height: 34px;
}
.buergschaft-bar {
  position: absolute;
  top: 7px;
  height: 20px;
  border-radius: 3px;
  border: 2px dashed var(--purple);
  background: rgba(142,68,173,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.buergschaft-bar.erfuellung {
  border-color: var(--blue);
  background: rgba(52,152,219,0.1);
  color: var(--blue);
}

/* Gantt grid lines behind bars */
.gantt-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.gantt-grid div {
  border-left: 1px solid var(--gray-100);
}

/* Payment markers */
.payment-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px 1fr;
  background: var(--red-light);
  border-bottom: 1px solid var(--gray-100);
}
.payment-row .gantt-row-label {
  color: var(--red);
  font-weight: 600;
  font-size: 0.82rem;
  border-bottom: none;
}
.payment-markers {
  position: relative;
  height: 40px;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
}
.payment-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.payment-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-label {
  font-size: 0.6rem;
  color: var(--red-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* Cost distribution below Gantt */
.cost-dist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cost-card {
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid;
}
.cost-card.material { background: var(--orange-light); border-color: rgba(230,135,62,0.2); }
.cost-card.personal { background: var(--blue-light); border-color: rgba(59,125,216,0.2); }
.cost-card.overhead { background: var(--purple-light); border-color: rgba(142,68,173,0.2); }
.cost-card .cc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cost-card.material .cc-label { color: var(--orange); }
.cost-card.personal .cc-label { color: var(--blue); }
.cost-card.overhead .cc-label { color: var(--purple); }
.cost-card .cc-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.cost-card .cc-detail {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Skill distribution mini bars */
.skill-dist {
  margin-top: 2.5rem;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 2rem;
}
.skill-dist h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.skill-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2.5rem;
}
.skill-bar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sb-name {
  width: 120px;
  font-size: 0.82rem;
  font-weight: 500;
  flex-shrink: 0;
}
.sb-track {
  flex: 1;
  height: 20px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: visible;
  position: relative;
}
.sb-fill {
  height: 100%;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: visible;
}
.sb-hours {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gray-500);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

/* ───── WEBINAR SECTION ───── */
.webinar {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.webinar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.webinar .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.webinar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(209,53,59,0.15);
  border: 1px solid rgba(209,53,59,0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.webinar h2 { margin-bottom: 1.5rem; }
.webinar h2 em { font-style: italic; color: var(--red); }
.webinar p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.webinar-topics {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.webinar-topics li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.webinar-topics li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* Webinar card */
.webinar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.webinar-card::before {
  content: 'LINKEDIN LIVE';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--red);
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  padding: 0 1rem;
}
.webinar-price {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}
.webinar-price sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.webinar-price-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.webinar-includes {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
}
.webinar-includes li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.webinar-includes li .check {
  color: var(--green);
  font-weight: 700;
}
.webinar-card .btn { width: 100%; justify-content: center; }

/* ───── FEATURES SECTION ───── */
.features { background: var(--white); border-top: 1px solid var(--gray-100); }
.features .container > .label { display: block; margin-bottom: 1rem; }
.features .container > h2 { margin-bottom: 3rem; }
.features .container > h2 em { font-style: italic; color: var(--red); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.fi-red { background: var(--red-light); color: var(--red); }
.fi-blue { background: var(--blue-light); color: var(--blue); }
.fi-green { background: var(--green-light); color: var(--green); }
.fi-orange { background: var(--orange-light); color: var(--orange); }
.fi-purple { background: var(--purple-light); color: var(--purple); }
.fi-teal { background: var(--teal-light); color: var(--teal); }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ───── PRICING / TOOL CTA ───── */
.pricing { background: var(--cream); }
.pricing .container > .label { display: block; margin-bottom: 1rem; text-align: center; }
.pricing .container > h2 { text-align: center; margin-bottom: 0.8rem; }
.pricing .container > h2 em { font-style: italic; color: var(--red); }
.pricing .container > .pricing-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.price-card.featured {
  border-color: var(--red);
  border-width: 2px;
}
.price-card.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.8rem;
  border-radius: 10px;
}
.price-card .pc-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
}
.price-card .pc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}
.price-card .pc-period {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}
.price-card .pc-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.price-card .pc-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.price-card .pc-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ───── TESTIMONIAL / QUOTE ───── */
.quote-section {
  background: var(--gray-100);
  padding: 5rem 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.quote-section .quote-attr {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* ───── CTA FINAL ───── */
.cta-final {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209,53,59,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 { margin-bottom: 1rem; position: relative; }
.cta-final h2 em { font-style: italic; color: var(--red); }
.cta-final p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-final .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ───── ANIMATIONS ───── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .hero .container,
  .problem .container,
  .webinar .container,
  .webinar-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-grid,
  .cost-dist {
    grid-template-columns: 1fr;
  }
  .pricing-cards { grid-template-columns: 1fr 1fr !important; }
  .skill-bars { grid-template-columns: 1fr; }
  .gantt-wrapper { padding: 1.5rem; }
  .webinar-teaser-thumb { max-height: 320px; overflow: hidden; }
  .webinar-teaser-thumb img { width: 100%; height: 100%; object-fit: cover; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  /* iOS: Inputs mit font-size < 16px lösen Auto-Zoom aus */
  .modal-field input,
  .modal-field textarea,
  input, textarea, select { font-size: 1rem; }
  .hero .container { padding-top: 5.25rem; padding-bottom: 1rem; gap: 2rem; }
  .hero-text p,
  .cta-final p { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat { padding-left: 0.8rem; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn,
  .cta-final .btn-group .btn,
  .webinar-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .pricing-cards { grid-template-columns: 1fr !important; }
  .gantt-meta { flex-wrap: wrap; gap: 0.8rem; }
  .gantt-meta-item { flex: 1 1 calc(50% - 0.4rem); }
  .gantt-title { gap: 0.75rem; }
  .gantt-title h3 { font-size: 1.15rem; }
  .gantt-wrapper { padding: 1rem; }
  .gantt-mobile-hint { display: block; }
  .webinar-ctas { width: 100%; flex-direction: column; }
  .section { padding: 4rem 0; }
  .li-serie-grid { grid-template-columns: 1fr; }
  /* Modal */
  .modal { padding: 1.5rem; margin: 0.75rem; }
  .modal-close { width: 44px; height: 44px; top: 0.5rem; right: 0.5rem; }
  .modal-row { grid-template-columns: 1fr; }
  /* Footer */
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: .75rem;
    padding: 0 1rem;
  }
  .footer-links { justify-content: center; }
}
/* ───── MODAL ───── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  margin: 1rem;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-300); color: var(--charcoal); }
.modal h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.modal .modal-sub {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.modal .package-badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.modal-field {
  margin-bottom: 1.2rem;
}
.modal-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.modal-field label .req { color: var(--red); }
.modal-field input,
.modal-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.modal-field input:focus,
.modal-field textarea:focus {
  border-color: var(--red);
}
.modal-field textarea { resize: vertical; min-height: 70px; }
.modal-field input.error { border-color: var(--red); background: var(--red-light); }
.modal-error {
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 0.3rem;
  display: none;
}
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal .btn { margin-top: 0.5rem; width: 100%; justify-content: center; }
.modal-hint {
  font-size: 0.75rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 1rem;
}
