@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

p{
  font-size:18px;
}

.top-5 {
    top: 5px;
}

.image-box{
  height:350px;
}
@media (max-width:991px) {
  .image-box{
    height:250px;
  }
  p{
    font-size:16px;
  }
  h5{
  font-size:17px;
}
}

/* Визуально скрыто, но доступно для ассистивных технологий */
.visually-hidden-important {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Для заданного вами формата чекбокса */
.form-group.checkbox-group {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  }
.form-group.checkbox-group input[type="checkbox"] {
  margin-top: .3rem;
}

h1{
  font-size: 30px;
  color: #2b3a51;
}
h2{
  font-size: 25px;
  color: #2b3a51;
}
h3{
  font-size: 20px;
  color: #2b3a51;
}

/* ========== Hero Section ========== */
:root {
  /* Поменяй URL на свой фон */
  --hero-image: url("assets/images/img-hero.jpg");
  --hero-overlay: rgba(0, 0, 0, 0.55); /* степень затемнения */
}

/* Базовая обёртка */
.hero {
  min-height: 60vh;                /* близко к экрану */
  padding: 3rem 0;                 /* вертикальные отступы */
  background-color: #0b0f1a;       /* запасной цвет, если картинка не загрузится */
}

/* Слой с фоном */
.hero .hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.15)), /* лёгкая виньетка */
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.025);         /* лёгкий «кадр» */
  will-change: transform;
  z-index: 1;
}

/* Затемняющая вуаль поверх фона */
.hero .hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 2;
}

/* Контент над слоями */
.hero .container {
  z-index: 3;
}

/* Текст и отступы */
.hero h1,
.hero h2,
.hero p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero .display-5 {
  line-height: 1.15;
}

.hero .lead {
  line-height: 1.55;
}

/* Немного больший верхний/нижний паддинг на очень больших экранах */
@media (min-width: 1400px) {
  .hero {
    padding: 7rem 0;
  }
}

/* Более комфортное чтение на мобильных */
@media (max-width: 575.98px) {
  .hero {
    min-height: 70vh;
    padding: 4rem 0;
  }
  .hero .display-5 {
    font-size: 2rem; /* меньше H1 на узких экранах */
  }
  .hero .h4 {
    font-size: 1.125rem;
  }
}

/* Предпочтение сниженной анимации — отключаем возможные эффекты */
@media (prefers-reduced-motion: reduce) {
  .hero .hero__bg {
    transform: none;
  }
}

/* Доп. утилиты (не обязательны) */
.opacity-90 { opacity: 0.9; }

/* ======= Solutions Section ======= */
.solutions-section {
  background: #f8fafc; /* светлый нейтральный фон */
}

.solutions-section .lead {
  color: #4b5563; /* чуть мягче для подзаголовка */
}

.solutions-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 0.75rem;
}

.solutions-card:hover,
.solutions-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(2, 6, 23, 0.08);
  border-color: rgba(15, 23, 42, 0.12);
}

.solutions-card .card-body {
  padding: 1.5rem 1.25rem;
}

.solutions-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
  color: #0f172a; /* цвет обводки SVG */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.solutions-card h3 {
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .solutions-section .display-6 {
    letter-spacing: -0.02em;
  }
}

/* Доступность: фокус для интерактивных элементов (если добавятся ссылки/кнопки) */
.solutions-card a:focus-visible,
.solutions-card button:focus-visible {
  outline: 3px solid #94a3b8;
  outline-offset: 2px;
}

/* Небольшие правки для очень узких экранов */
@media (max-width: 575.98px) {
  .solutions-card .card-body {
    padding: 1.25rem 1rem;
  }
}

/* ======= Why Choose Section ======= */
.why-choose-section {
  background: #ffffff;
}

.why-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 0.75rem;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(2, 6, 23, 0.08);
  border-color: rgba(15, 23, 42, 0.12);
}

.why-card .card-body {
  padding: 1.5rem 1.25rem;
}

.why-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.why-card h3 {
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .why-choose-section .display-6 {
    letter-spacing: -0.02em;
  }
}

/* Узкие экраны */
@media (max-width: 575.98px) {
  .why-card .card-body {
    padding: 1.25rem 1rem;
  }
}

/* Доступность: фокус для интерактивных элементов, если добавите ссылки/кнопки */
.why-card a:focus-visible,
.why-card button:focus-visible {
  outline: 3px solid #94a3b8;
  outline-offset: 2px;
}

/* ======= Pricing Section ======= */
.pricing-section {
  background: #f8fafc;
}

.pricing-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0.9rem 2rem rgba(2, 6, 23, 0.08);
  border-color: rgba(15, 23, 42, 0.12);
}

.pricing-card .card-header h3 {
  letter-spacing: -0.01em;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #334155;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background: #0d6efd; /* Bootstrap primary */
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

/* Most Popular badge */
.popular {
  position: relative;
  border-width: 2px;
  border-color: rgba(13, 110, 253, 0.35);
}

.badge-wrapper {
  z-index: 2;
  margin-top: -0.75rem;
}

/* Fine-tuning spacing on small screens */
@media (max-width: 575.98px) {
  .pricing-card .card-body {
    padding: 1.25rem 1rem;
  }
  .pricing-features li {
    margin-bottom: 0.45rem;
  }
}

/* Accessibility focus for future interactive items inside cards */
.pricing-card a:focus-visible,
.pricing-card button:focus-visible {
  outline: 3px solid #94a3b8;
  outline-offset: 2px;
}

/* ======= FAQ Section ======= */
.faq-section {
  background: #ffffff;
}

/* Accordion item styling */
#faqAccordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 6px rgba(2, 6, 23, 0.02);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

#faqAccordion .accordion-item:has(.show) {
  box-shadow: 0 0.9rem 2rem rgba(2, 6, 23, 0.06);
  border-color: rgba(15, 23, 42, 0.14);
}

/* Accordion button */
#faqAccordion .accordion-button {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background: #eef2ff; /* light accent on open */
  color: #0f172a;
}

/* Custom chevron */
#faqAccordion .accordion-button::after {
  background-image: none;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

/* Body */
#faqAccordion .accordion-body {
  background: #ffffff;
  color: #334155;
  line-height: 1.6;
  padding: 1rem 1.25rem 1.25rem;
}

/* Focus states for accessibility */
#faqAccordion .accordion-button:focus-visible {
  outline: 3px solid #94a3b8;
  outline-offset: 2px;
}

/* Small screens fine-tuning */
@media (max-width: 575.98px) {
  #faqAccordion .accordion-button {
    padding: 1rem 1rem;
  }
  #faqAccordion .accordion-body {
    padding: 0.9rem 1rem 1.1rem;
  }
}

