

h1, h2, h3, h4{
    color: #dd8700;
}

@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);
}

/* Базовые настройки секций */
.section { scroll-margin-top: 80px; }
.py-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; } /* helper */

.about-page .eyebrow {
  letter-spacing: .08em;
}

/* Hero */
.hero-visual {
  background-color: var(--bs-body-bg);
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
}

/* Иконки-кружки во 2 секции */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary-bg-subtle, rgba(0,0,0,.03));
  border: 1px solid var(--bs-border-color);
}

.icon-dot, .icon-grid, .icon-shield, .icon-check {
  display: inline-block;
  width: 22px; height: 22px;
  position: relative;
}

/* Простые геометрические «иконки» без внешних зависимостей */
.icon-dot::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--bs-primary);
  position: absolute; inset: 0; margin: auto;
}

.icon-grid::before, .icon-grid::after, .icon-grid span {
  content: "";
  position: absolute;
  background: var(--bs-primary);
}
.icon-grid::before { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }
.icon-grid::after { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }

.icon-shield::before, .icon-shield::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: transparent;
  border: 2px solid var(--bs-primary);
  border-bottom: none;
  width: 18px; height: 12px; top: 2px; border-radius: 6px 6px 0 0;
}
.icon-shield::after {
  top: 10px; height: 12px; border-top: none; border-bottom: 2px solid var(--bs-primary);
  border-radius: 0 0 10px 10px;
}

.icon-check::before, .icon-check::after {
  content: ""; position: absolute; background: var(--bs-primary);
  height: 3px; border-radius: 2px;
}
.icon-check::before { width: 10px; transform: rotate(45deg); left: 2px; top: 10px; }
.icon-check::after  { width: 16px; transform: rotate(-45deg); left: 8px; top: 6px; }

/* Стат-блоки */
.stat-tile {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  height: 100%;
}
.stat-value {
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw + .8rem, 2rem);
  line-height: 1;
}
.stat-label {
  color: var(--bs-secondary-color);
  font-size: .9rem;
}

/* Таймлайн */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--bs-border-color);
}
.timeline-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.timeline-dot {
  position: absolute;
  left: -1px; top: .2rem;
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--bs-primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--bs-primary) 15%, transparent);
}
.timeline-content {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: .75rem;
  padding: .9rem 1rem;
}

/* Адаптивность мелочей */
@media (min-width: 992px) {
  .py-lg-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

/* Общие отступы */
.py-lg-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }

/* KPI Tiles */
.kpi-tile {
  border: 1px solid var(--bs-border-color);
  background: var(--bs-body-bg);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  height: 100%;
}
.kpi-value {
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw + .8rem, 1.6rem);
  line-height: 1;
}
.kpi-label {
  color: var(--bs-secondary-color);
  font-size: .9rem;
}

/* Иконки без внешних библиотек */
.bm-icon {
  width: 48px; height: 48px; border-radius: 999px;
  display: inline-block; position: relative;
  background: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-border-color);
}
.bm-icon-target::before,
.bm-icon-target::after {
  content:""; position:absolute; border-radius:999px;
}
.bm-icon-target::before { inset: 10px; border: 2px solid var(--bs-primary); }
.bm-icon-target::after  { inset: 18px; background: var(--bs-primary); }

.bm-icon-coins::before,
.bm-icon-coins::after {
  content:""; position:absolute; border-radius:999px; border: 2px solid var(--bs-primary);
}
.bm-icon-coins::before { width: 26px; height: 26px; bottom: 8px; left: 8px; background: var(--bs-primary-bg-subtle); }
.bm-icon-coins::after  { width: 26px; height: 26px; top: 8px; right: 8px; background: var(--bs-primary-bg-subtle); }

.bm-icon-box::before,
.bm-icon-box::after {
  content:""; position:absolute; background: transparent; border: 2px solid var(--bs-primary);
}
.bm-icon-box::before { inset: 10px; border-radius: 8px; }
.bm-icon-box::after  { left: 12px; right: 12px; top: 18px; height: 0; border-top: 2px solid var(--bs-primary); }

.bm-icon-shield::before,
.bm-icon-shield::after {
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  border: 2px solid var(--bs-primary);
}
.bm-icon-shield::before { top: 10px; width: 24px; height: 14px; border-bottom:none; border-radius: 8px 8px 0 0; }
.bm-icon-shield::after  { top: 20px; width: 20px; height: 14px; border-top:none; border-radius: 0 0 10px 10px; }

/* Flow */
.flow {
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
}
.flow-step {
  border: 1px dashed var(--bs-border-color);
  border-radius: .75rem;
  padding: 1rem;
  background: var(--bs-body-bg);
  position: relative;
}
.step-badge {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--bs-primary) 20%, transparent);
  margin-bottom: .5rem;
}
.step-title { font-weight: 700; }
.step-text  { font-size: .95rem; }

/* Адаптив */
@media (max-width: 575.98px) {
  .flow-step { text-align: left; }
}

/* Отступы-хелперы */
.py-lg-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }

/* Карточки цен */
.pricing-card {
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.06);
}
.pricing-card.featured {
  outline: 2px solid color-mix(in oklab, var(--bs-primary) 25%, transparent);
}

/* Блок цены */
.price-wrap { }
.price {
  display: flex; align-items: baseline; gap: .4rem;
}
.price-currency {
  font-weight: 700; letter-spacing: .02em;
}
.price-value {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.4rem);
  line-height: 1; font-weight: 800;
}
.price-note { font-size: .95rem; }

/* Иконки-чеки без внешних зависимостей */
.pi-check, .pi-info {
  display: inline-block; position: relative;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-border-color);
  flex: 0 0 auto;
}
.pi-check::before, .pi-check::after {
  content: ""; position: absolute; height: 2px; background: var(--bs-primary);
  border-radius: 2px;
}
.pi-check::before { width: 6px; transform: rotate(45deg); left: 4px; top: 9px; }
.pi-check::after  { width: 10px; transform: rotate(-45deg); left: 7px; top: 6px; }

.pi-info::before, .pi-info::after {
  content: ""; position: absolute; background: var(--bs-primary);
  left: 50%; transform: translateX(-50%);
}
.pi-info::before { width: 2px; height: 8px; top: 5px; border-radius: 2px; }
.pi-info::after  { width: 2px; height: 2px; top: 2px; border-radius: 999px; }

/* Add-ons */
.addons { border-radius: 1rem; }
.addon-tile {
  border: 1px dashed var(--bs-border-color);
  background: var(--bs-body-bg);
  border-radius: .75rem;
  padding: .875rem 1rem;
}
.addon-title { font-weight: 600; }
.addon-price { }

/* Примечание */
.note-box { background: var(--bs-body-bg); }

/* Тонкая адаптивность */
@media (max-width: 575.98px) {
  .price-value { font-size: 1.9rem; }
}


