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

body.poster {
    background-attachment: fixed;
}

p{
  font-size:17px;
}

.top-5 {
    top: 5px;
}
.content {
  border: 3px solid #523857;
  border-radius: 500px;
  box-shadow: 0 6px 12px #523857;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content:hover {
  box-shadow: 0 8px 16px #523857;
  transform: translateY(-2px);
}

.content-box {
  border: 3px solid #523857;
  border-radius: 1500px;
  box-shadow: 0 6px 12px #523857 ;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.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;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)),
              url('assets/images/img-hero.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%;
}
h1{
  font-size: 30px;
  color:#837257;
}
h2{
  font-size: 25px;
  color:#837257;
}
h3{
  font-size: 20px;
  color:#837257;
}



/* ===== Hero section layout ===== */
.hero-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.hero-section .badge.bg-success {
  font-weight: 600;
  letter-spacing: .2px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::after {
  /* soft accent ring using primary */
  content: "";
  position: absolute;
  inset: -10px -14px -18px -14px;
  border-radius: 1.5rem;
  border: 2px solid color-mix(in srgb, var(--brand-primary) 30%, transparent);
  pointer-events: none;
}

.hero-divider {
  height: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Typography tweaks */
h1, .display-5 {
  line-height: 1.15;
}

.lead {
  color: color-mix(in srgb, var(--brand-dark) 70%, var(--brand-secondary));
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section { padding-top: 2.5rem; }
  .hero-image-wrapper::after { inset: -8px; }
}

/* Заголовок/бейдж */
.services-section .badge.bg-primary {
  font-weight: 600;
  letter-spacing: .2px;
}

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

/* Иконка услуги (кружок) */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px #aba48f;
}

/* Номер шага (кружок) */
.service-step {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid rgba(0,0,0,.06);
}

/* Типографика */
.services-section h2 {
  line-height: 1.15;
}
.services-section .card-body p {
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 991.98px) {
  .services-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* Опционально: усиление контраста текста в карточках при светлой теме */
.services-section .text-secondary {
  color: color-mix(in srgb, var(--bs-dark, #212529) 70%, var(--bs-secondary, #6c757d));
}

.features-section .badge {
  font-weight: 600;
  letter-spacing: .2px;
}

.features-section h2 {
  line-height: 1.15;
}

/* Плитки с пунктами */
.feature-item {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 1.25rem rgba(0,0,0,.08);
}

/* Кружок-иконка */
.feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--bs-primary, #0d6efd) 10%, transparent);
}

/* Текст пунктов */
.features-section .text-secondary {
  color: color-mix(in srgb, var(--bs-dark, #212529) 72%, var(--bs-secondary, #6c757d));
}

/* Адаптив */
@media (max-width: 575.98px) {
  .feature-icon { width: 40px; height: 40px; }
  .feature-item { padding: 1rem !important; }
}

/* ===== Pricing Section — custom styles (Bootstrap 5 compatible) ===== */

.pricing-section h2 { line-height: 1.15; }

.pricing-card {
  border-radius: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--bs-white);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .9rem 1.5rem rgba(0,0,0,.08);
}

/* Featured ribbon */
.pricing-card.featured { position: relative; }
.pricing-card .ribbon {
  position: absolute;
  top: 14px;
  right: -10px;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
}

/* Price typography */
.price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.price-currency {
  font-size: .9rem;
  color: var(--bs-secondary);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.price-value {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--bs-dark);
}
.price-note {
  margin-left: auto;
  font-size: .9rem;
}

/* Check badges in features */
.check {
  font-weight: 700;
}

/* Add-ons cards (simple bordered pills) */
#pricing .border {
  border-color: rgba(0,0,0,.08) !important;
  border-radius: .75rem;
}

/* Notes */
.pricing-notes small {
  color: color-mix(in srgb, var(--bs-dark, #212529) 68%, var(--bs-secondary, #6c757d));
}

/* Responsive spacing */
@media (max-width: 991.98px) {
  .pricing-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

.testimonial-img{
  height:120px;
  width:120px;
}
