/* ==========================================================================
   Förderung Landing Page Styles
   ========================================================================== */

/* ---------- Hero ---------- */
#foerder-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
}

.foerder-hero-content {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.foerder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8ab61d, #3a8a6e);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

#foerder-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.foerder-hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.foerder-hero-sub strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* ---------- Risk-free staircase ---------- */
.foerder-risk-free {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.risk-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}

.risk-step strong {
  color: var(--text-primary);
}

.risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #8ab61d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.foerder-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Funding Tiers ---------- */
.foerder-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.foerder-tier {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.foerder-tier:hover {
  border-color: rgba(255, 114, 0, 0.3);
  transform: translateY(-2px);
}

.foerder-tier-highlight {
  border-color: var(--color-accent);
  position: relative;
}

.tier-header {
  margin-bottom: 1.5rem;
}

.tier-step {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tier-header h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.tier-amount {
  margin-bottom: 0.5rem;
}

.tier-percent {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.tier-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.tier-max {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.foerder-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.step-cost {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8ab61d;
  background: rgba(138, 182, 29, 0.1);
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.step-card .step-highlight {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 0.6rem;
}

/* ---------- What we implement ---------- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.leistung-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.leistung-card:hover {
  border-color: rgba(255, 114, 0, 0.3);
  transform: translateY(-2px);
}

.leistung-icon {
  color: var(--color-accent);
  margin-bottom: 1rem;
  width: 32px;
  height: 32px;
}

.leistung-card h3 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leistung-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- Calculation ---------- */
.calc-card {
  max-width: 600px;
  margin-inline: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 2rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.calc-row-green .calc-value {
  color: #8ab61d;
  font-weight: 600;
}

.calc-divider {
  border-top: 1px solid var(--border-default);
  margin: 0.75rem 0;
}

.calc-row-total {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.calc-row-highlight .calc-value {
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ---------- References ---------- */
.references-grid {
  grid-template-columns: repeat(4, 1fr);
}

.foerder-references-link {
  text-align: center;
  margin-top: 2rem;
}

.foerder-references-link a {
  color: var(--color-accent);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.foerder-references-link a:hover {
  text-decoration: underline;
}

/* ---------- Official KMU.DIGITAL Info ---------- */
.foerder-info-content {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.foerder-info-text {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ---------- CTA / Contact ---------- */
.foerder-cta-content {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.foerder-cta-content .section-title {
  color: #304c59;
}

.foerder-cta-text {
  color: #304c59;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.foerder-contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.foerder-contact-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.foerder-contact-card h3 {
  color: #304c59;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.foerder-contact-card p {
  color: #4a6572;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.foerder-contact-card .btn-kmu {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.foerder-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.foerder-cdc-badge {
  width: 60px;
  border-radius: 6px;
}

.foerder-trust-line p {
  color: #4a6572;
  font-size: 0.8rem;
  text-align: left;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  #foerder-hero h1 {
    font-size: 2rem;
  }

  .foerder-tiers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .foerder-contact-options {
    grid-template-columns: 1fr;
  }

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

  .foerder-trust-line {
    flex-direction: column;
    text-align: center;
  }

  .foerder-trust-line p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #foerder-hero h1 {
    font-size: 1.6rem;
  }

  .foerder-hero-sub {
    font-size: 1rem;
  }

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

  .foerder-hero-cta {
    flex-direction: column;
    gap: 0;
  }
}
