:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --text: #232323;
  --muted: #555;
  --dark: #001d2c;
  --gold: #c5a66d;
  --gold-hover: #d3b171;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --max-width: 1180px;
}

.page-section,
.section-shell {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.page-section {
  padding: 5.5rem 0;
}

/* Hero */
.sub-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 7rem;
  background: var(--dark);
  color: var(--white);
}

.sub-hero-inner {
  width: min(820px, calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
}

.sub-hero p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

/* Allgemein */
.angebot h2,
.angebote-liste h2,
.herausforderungen h2,
.contact-cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.angebot h2,
.herausforderungen h2 {
  color: var(--gold);
  text-align: center;
}

.angebot .lead,
.section-intro,
.contact-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  line-height: 1.7;
}

.angebot .lead {
  color: var(--text);
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-intro {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 2.6rem;
}

/* Highlights */
.angebot {
  background: var(--bg);
}

.angebot-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  text-align: left;
}

.highlight i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.highlight h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 1.3rem;
}

.highlight p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

/* Angebote */
.angebote-liste {
  background: var(--dark);
  color: var(--white);
  padding: 7rem 0;
}

.angebote-liste h2 {
  color: var(--white);
  text-align: center;
}

.angebote-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.angebot-item {
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.angebot-item header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.angebot-item header h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.35rem;
}

.small-note {
  margin: 0 0 0.2rem;
  color: var(--muted);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.2rem;
  flex-grow: 1;
}

.features li {
  color: var(--text);
  margin: 0.65rem 0;
  line-height: 1.6;
}

.features i {
  color: var(--gold);
  margin-right: 0.45rem;
}

.actions {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--white);
  width: fit-content;
}

.btn-secondary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0;
  background: #9c9a93;
  color: #ffffff;
  cursor: default;
  border: none;
  box-shadow: none;
  transition: all 0.25s ease;
  position: relative;
}

.btn-disabled:hover {
  background: #7d7b75;
}

.btn-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -95%;
  left: 50%;
  transform: translateX(-50%);
  background: #d7d4cc;
  color: #232323;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.92rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.btn-disabled:hover::after {
  opacity: 1;
}

/* Beobachtungen */
.insights {
  background: var(--bg);
}

.insights h2,
.fit-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1.4rem;
  text-align: center;
}

.insights h2 {
  color: var(--gold);
}

.insights-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.insights-intro {
  margin: 0 0 1.8rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
}

.type-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.4rem;
  align-items: center;
}

.type-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

.type-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1.2;
}

.type-copy p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.insights-visual {
  display: flex;
  justify-content: center;
}

.insights-visual img {
  width: 100%;
  max-width: 390px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Passung / Nicht jeder ist hier richtig */
.fit-section {
  background: var(--dark);
  color: var(--white);
  padding: 7rem 0;
}

.fit-section h2 {
  color: var(--white);
}

.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fit-text p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.fit-subheadline {
  margin-top: 1.2rem;
  font-weight: 600;
}

.fit-list {
  margin: 0 0 1.2rem 1.2rem;
  padding: 0;
}

.fit-list li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.fit-visual {
  display: flex;
  justify-content: center;
}

.fit-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: var(--bg);
}

/* Responsive */
@media (max-width: 1000px) {
  .insights-layout,
  .fit-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insights,
  .fit-section {
    text-align: center;
  }

  .type-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .fit-list {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .type-icon img {
    width: 72px;
    height: 72px;
  }

  .type-copy h3 {
    font-size: 1.2rem;
  }

  .fit-section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}

/* CTA */
.contact-cta {
  background: var(--bg);
  color: var(--text);
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.contact-cta h2 {
  color: var(--gold);
  text-align: center;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.contact-cta p {
  max-width: 760px;
  margin: 0 auto 1.4rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
}

/* Aktiver Navbar-Link */
.nav-links a.active {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1000px) {
  .angebot-highlights,
  .angebote-grid {
    grid-template-columns: 1fr;
  }

  .herausforderungen-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .herausforderungen {
    text-align: center;
  }

  .plain-list {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .sub-hero {
    min-height: 48vh;
    padding: 4rem 0 5.5rem;
  }
}

@media (max-width: 600px) {
  .page-section {
    padding: 4rem 0;
  }

  .sub-hero {
    padding: 3.5rem 0 4.8rem;
  }

  .sub-hero h1 {
    font-size: 2.1rem;
  }

  .sub-hero p {
    font-size: 0.98rem;
  }

  .highlight,
  .angebot-item {
    padding: 1.5rem 1.2rem;
  }

  .btn-secondary,
  .btn-disabled {
    width: 100%;
    max-width: 280px;
  }

  .actions {
    justify-content: center;
  }
}