

h1, h2, h3, h4{
    color: #344a3e;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3, h4 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Добавим небольшую задержку для красивого каскада */
h2 {
  font-size:25px;
  animation-delay: 0.2s;
}

h3 {
  font-size:22px;
  animation-delay: 0.4s;
}

h4 {
  animation-delay: 0.6s;
}

@media(max-width:680px){
  .h5{
    font-size:18px;
  }
  h2{
    font-size: 22px;
  }  
  .box-img{
    height:300px;
  }
  
}
  /* 1) Глобально отключаем горизонтальный скролл */
html { overflow-x: clip; }               /* современные браузеры */
body { overflow-x: hidden; width: 100%; } /* фолбэк */

/* Farb-Theme (passt zu Bootstrap 5 Variablen) */
:root {
  --alpenor-primary: #dd8700; /* blau */
  --alpenor-dark: #3a3e41;    /* dunkelgrau */
  --alpenor-white: #ffffff;   /* weiß */

  /* Optional: Bootstrap-Theme-Variablen überschreiben (falls Bootstrap 5.3+) */
  --bs-primary: var(--alpenor-primary);
  --bs-body-color: var(--alpenor-dark);
}

/* Abschnitt */
#faq {
  background-color: #f7f9fb; /* leichtes hellgrau-blau, harmoniert mit #007cc2 */
}

/* Titel */
#faq h2 {
  color: var(--alpenor-dark);
  font-weight: 700;
}

/* FAQ-Item Grundstil */
.faq-item {
  border: 1px solid rgba(58, 62, 65, 0.15);
  border-radius: 0.5rem;
  background: var(--alpenor-white);
  overflow: hidden;
}

/* Summary als Headline-Button */
.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem 1rem 3rem;
  position: relative;
  margin: 0;
  font-weight: 600;
  color: var(--alpenor-dark);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Icon vor Summary (+ / –) */
.faq-summary::before {
  content: "+";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  width: 1.25rem;
  text-align: center;
  color: var(--alpenor-primary);
}

/* Hover/Focus States */
.faq-summary:hover {
  background-color: rgba(0, 124, 194, 0.06);
}
.faq-summary:focus {
  outline: none;
}
.faq-summary:focus-visible {
  outline: 3px solid rgba(0, 124, 194, 0.35);
  outline-offset: 2px;
  border-radius: 0.5rem;
}

/* Geöffnetes Item */
.faq-item[open] .faq-summary {
  color: var(--alpenor-primary);
  border-bottom: 1px solid rgba(58, 62, 65, 0.12);
}
.faq-item[open] .faq-summary::before {
  content: "–";
}

/* Inhalt */
.faq-content {
  padding: 1rem 1.25rem 1.25rem 3rem;
  color: var(--alpenor-dark);
  line-height: 1.6;
}

/* Feinheiten für mobile Darstellung */
@media (max-width: 575.98px) {
  .faq-summary,
  .faq-content {
    padding-left: 2.5rem;
  }
}

/* Optional: kleine Schatten, um Kartenoptik zu betonen */
.faq-item {
  box-shadow: 0 2px 6px rgba(58, 62, 65, 0.04);
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(58, 62, 65, 0.08);
}

/* Spacing / layout helpers */
.about-hero .badge {
  letter-spacing: .02em;
}

.object-fit-cover {
  object-fit: cover;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: .4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bs-border-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}
.timeline-dot {
  position: absolute;
  left: -0.2rem;
  top: .25rem;
  width: .85rem;
  height: .85rem;
  border-radius: 50%;
  box-shadow: 0 0 0 .25rem var(--bs-body-bg);
}
.timeline-content {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: .75rem;
  padding: .9rem 1rem;
}

/* Team cards */
.team-card .card-img-top {
  height: 210px;
  object-fit: cover;
}
.team-card .card-body {
  padding: 1rem 1rem 1.1rem;
}

/* Stats */
.stat-tile {
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 .25rem 1rem rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08);
}

/* CTA */
.cta-box {
  border: 1px dashed var(--bs-border-color);
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .about-hero .display-5 { line-height: 1.1; }
}

/* Business Model section (Bootstrap theme variables respected) */
.business-model .icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: .75rem;
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.pillar .card-body { padding: 1.25rem; }

/* Package tiles */
.package { background: var(--bs-body-bg); transition: transform .2s ease, box-shadow .2s ease; }
.package:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
}

/* Steps (mini timeline) */
.bm-steps { position: relative; padding-left: 1.75rem; }
.bm-steps::before {
  content: "";
  position: absolute; inset: 0 auto 0 .6rem;
  width: 2px; background: var(--bs-border-color);
}
.bm-step { position: relative; margin-bottom: .9rem; }
.bm-dot {
  position: absolute; left: .25rem; top: .35rem;
  width: .75rem; height: .75rem; border-radius: 50%;
  box-shadow: 0 0 0 .25rem var(--bs-body-bg);
}
.bm-card {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: .75rem; padding: .75rem .9rem;
}

/* Minor tweaks */
.business-model .display-6 { line-height: 1.15; }

/* Pricing section (keine harten Farbwerte; nutzt Bootstrap-Variablen) */
.pricing-section .pricing-card {
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.25rem 2rem rgba(0,0,0,.08);
}

.pricing-section .popular {
  border-color: var(--bs-primary);
  box-shadow: 0 1.5rem 2.5rem rgba(0,0,0,.1);
}

.pricing-section .display-6 {
  line-height: 1.1;
}

/* List icon spacing */
.pricing-section .bi {
  flex: 0 0 auto;
  margin-top: .2rem;
}

/* Add-ons table-like rows */
.pricing-section .card .border-bottom:last-child {
  border-bottom: 0 !important;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .pricing-section .pricing-card.popular {
    transform: translateY(-6px);
  }
}
