@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

@media (max-width:460px) {
    .hero-title {
        font-size: 25px!important;
        margin-top:30px;
    }
    p{
        font-size: 15px!important;
    }
}

body.poster {
    background-attachment: fixed;
}

p{
  font-size:20px;
}

.top-5 {
    top: 5px;
}

.about-image {
        max-width: 200px;
        margin-bottom: 10px;
        border-radius:150px;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('assets/images/22883.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-img {
  max-width: 85%;
}

/* Секция */
.why-bhp {
  --why-accent: #0d6efd; /* используем основной цвет Bootstrap */
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(13,110,253,0.06), transparent 60%),
    #f8f9fa;
}

/* Карточка — лёгкий hover и контур */
.feature-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-color: rgba(0,0,0,.06);
}
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,.08);
  border-color: rgba(13, 110, 253, .25);
}

/* Иконка — круглый бейдж */
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,.1);
  color: var(--why-accent);
  font-size: 1.35rem;
}

/* Тёмная тема (если сайт её поддерживает) */
@media (prefers-color-scheme: dark) {
  .why-bhp {
    background:
      radial-gradient(1200px 400px at 50% -10%, rgba(13,110,253,0.15), transparent 60%),
      #0b0f14;
  }
  .feature-card {
    background: #0f141a;
    border-color: rgba(255,255,255,.06);
  }
  .feature-card:hover,
  .feature-card:focus-within {
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,.35);
    border-color: rgba(13,110,253,.45);
  }
  .text-secondary {
    color: rgba(255,255,255,.7) !important;
  }
}

/* Небольшие правки типографики */
#why-bhp-title {
  letter-spacing: .2px;
}


/* ===== Feature section styles (Bootstrap 5 friendly) ===== */
#target-groups { background-color: #fff; }

/* Подчёркивание под заголовком, как в скрине */
.heading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: .4rem;
}
.heading-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 120px;
  height: 3px;
  background: #e9ecef; /* тонкая светлая линия */
}

/* Карточки */
.feature-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  background-color: #fff;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.08);
}

/* Кружок под иконку */
.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  color: #212529;
  box-shadow: inset 0 0 0 1px #e9ecef;
}
.icon-badge svg { display: block; }

/* Отступы секции */
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 1200px) {
  .py-xl-8 { padding-top: 5rem; padding-bottom: 5rem; }
}



.testimonials {
  background: #f8f9fa;
}

.testimonials h2 {
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* ===== Services section styles ===== */
#services { background-color: #fff; }

/* Заголовки с тонким подчёркиванием */
.heading-underline,
.subheading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: .4rem;
}
.heading-underline::after,
.subheading-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 140px;
  height: 3px;
  background: #e9ecef;
}
.subheading-underline::after { width: 100px; }

/* Карточки услуг */
.service-card {
  background-color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 .75rem 1.25rem rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.08);
}

/* Бейдж под иконку */
.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  color: #212529;
  box-shadow: inset 0 0 0 1px #e9ecef;
}


.img-box{
  height:250px;
}

/* Базовые переменные для настройки темы секции */
:root{
  --spm-radius: 1.25rem;
  --spm-card-shadow: 0 10px 30px rgba(16,24,40,.06);
}

/* Секция */
.spm-pricing-section{
  background:
    radial-gradient(1200px 400px at 50% -20%, rgba(13,110,253,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
}

/* Карточки */
.spm-card{
  border: 1px solid rgba(16,24,40,.08);
  border-radius: var(--spm-radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.spm-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--spm-card-shadow);
  border-color: rgba(13,110,253,.25);
}

/* Выделенная карточка */
.spm-card-featured{
  border: 1px solid rgba(13,110,253,.35);
  background: linear-gradient(180deg, rgba(13,110,253,.04) 0%, rgba(13,110,253,.02) 100%);
}

/* Таблица цен */
.spm-table td, .spm-table th{
  padding: 1rem 1rem;
}
.spm-table tbody tr:not(:last-child) td{
  border-bottom: 1px solid rgba(16,24,40,.06);
}

/* Бейдж над рекомендованным планом */
.spm-card-featured .badge{
  letter-spacing: .2px;
  box-shadow: 0 6px 18px rgba(13,110,253,.25);
}

/* Мелкие улучшения типографики */
#preise .badge{
  border: 1px solid rgba(16,24,40,.12);
}
#preise .display-6{
  letter-spacing: -.02em;
}

/* Адаптивные правки */
@media (max-width: 575.98px){
  .spm-table td, .spm-table th{ padding: .75rem .75rem; }
}


h1{
  font-size: 30px;
  font-weight: 600;
}
h2{
  font-size: 25px;
}
h3{
  font-size: 22px;
}

/* ===== Vorteile-Sektion (FakturaFrei) ===== */
#vorteile .feature-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.75rem; /* чуть более мягкие углы */
}

#vorteile .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

#vorteile .feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f3ff 0%, #f5faff 100%);
  border: 1px solid rgba(0, 95, 204, 0.15); /* акцент под брендовый синий */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0d6efd; /* Bootstrap primary */
}

#vorteile h2 {
  letter-spacing: -0.01em;
}

#vorteile h3 {
  margin-top: 0.1rem;
  color: #0b2239; /* глубокий темный для заголовков */
}

#about p {
  color: #4b5563; /* нейтральный серый для текста */
}

/* Сетка: карточки на больших экранах выглядят ровно */
@media (min-width: 992px) {
  #about .feature-card .card-body {
    padding: 1.25rem 1.25rem;
  }
}

/* Небольшие улучшения фокуса для доступности */
#about .feature-card:focus-within {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

