.blut-section-overview {
  padding: 80px 20px;
  background: #f8f9fa;
  font-family: 'Roboto', sans-serif;
}

.blut-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-flex-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.blut-content-side {
  flex: 1 1 450px;
}

.blut-image-side {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
}

.blut-product-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blut-product-img:hover {
  transform: translateY(-5px);
}

.blut-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blut-description {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.blut-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.blut-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2c5282;
  font-weight: 500;
}

.blut-icon {
  font-size: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .blut-title {
    font-size: 28px;
  }
  .blut-description {
    font-size: 16px;
  }
  .blut-features {
    grid-template-columns: 1fr;
  }
  .blut-flex-wrapper {
    text-align: center;
    gap: 40px;
  }
}








.blut-mechanism-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.blut-mech-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-mech-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blut-mech-subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.blut-mech-flex {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.blut-mech-how {
  flex: 1 1 400px;
}

.blut-mech-step {
  margin-bottom: 32px;
  position: relative;
  padding-left: 70px;
}

.blut-mech-step:last-child {
  margin-bottom: 0;
}

.blut-mech-step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: #1a3a5f;
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 58, 95, 0.2);
}

.blut-mech-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a3a5f;
  margin: 0 0 8px;
}

.blut-mech-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.blut-mech-benefits {
  flex: 1 1 400px;
  display: grid;
  gap: 20px;
}

.blut-benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}

.blut-benefit-item > div {
  flex: 1;
}

.blut-benefit-item strong {
  display: block;
  color: #1a3a5f;
  font-size: 17px;
  margin-bottom: 4px;
}

.blut-benefit-item p {
  margin: 0;
  color: #555;
}

.blut-benefit-icon {
  font-size: 24px;
  min-width: 32px;
}

/* Адаптивность */
@media (max-width: 900px) {
  .blut-mech-title {
    font-size: 32px;
  }
  .blut-mech-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .blut-mech-title {
    font-size: 28px;
  }
  .blut-mech-flex {
    flex-direction: column;
    gap: 40px;
  }
  .blut-mech-step {
    padding-left: 60px;
  }
  .blut-mech-step-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .blut-benefit-item {
    font-size: 15px;
  }
  .blut-benefit-icon {
    font-size: 20px;
  }
}





.blut-actives-section {
  padding: 100px 20px;
  background: #f8f9fa;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.blut-actives-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-actives-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.blut-actives-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.blut-actives-item-reversed {
  flex-direction: row-reverse;
}

.blut-actives-img-wrapper {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.blut-actives-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blut-actives-img:hover {
  transform: scale(1.02);
}

.blut-actives-content {
  flex: 1 1 500px;
}

.blut-actives-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a3a5f;
  margin-bottom: 16px;
}

.blut-actives-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* Адаптивность */
@media (max-width: 900px) {
  .blut-actives-title {
    font-size: 32px;
  }
  .blut-actives-content h3 {
    font-size: 22px;
  }
  .blut-actives-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .blut-actives-title {
    font-size: 28px;
  }
  .blut-actives-item {
    gap: 30px;
  }
  .blut-actives-item-reversed {
    flex-direction: column;
  }
  .blut-actives-img-wrapper,
  .blut-actives-content {
    flex: 1 1 100%;
  }
  .blut-actives-item:nth-child(odd):not(.blut-actives-item-reversed) .blut-actives-item-reversed {
    flex-direction: column;
  }
  .blut-actives-item {
    text-align: center;
  }
  .blut-actives-content h3 {
    text-align: left;
  }
}






.blut-leaflet-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #333;
  border-top: 1px solid #e0e0e0;
}

.blut-leaflet-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-leaflet-header {
  text-align: center;
  margin-bottom: 60px;
}

.blut-leaflet-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  line-height: 1.4;
}

.blut-leaflet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.blut-leaflet-item {
  background: #f9fafa;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
}

.blut-leaflet-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.blut-leaflet-item h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a3a5f;
  margin: 0 0 12px;
}

.blut-leaflet-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.blut-leaflet-item p strong {
  color: #1a3a5f;
}

/* Адаптивность */
@media (max-width: 768px) {
  .blut-leaflet-header h2 {
    font-size: 30px;
  }
  .blut-leaflet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blut-leaflet-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blut-leaflet-item {
    padding: 18px;
  }
  .blut-leaflet-item h3 {
    font-size: 18px;
  }
  .blut-leaflet-item p {
    font-size: 15px;
  }
}





.blut-pharma-section {
  padding: 90px 20px;
  background: #f8f9fa;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.blut-pharma-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-pharma-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.blut-pharma-img-wrapper {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.blut-pharma-img {
  width: 100%;
  max-width: 516px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.blut-pharma-img:hover {
  transform: translateY(-5px);
}

.blut-pharma-content {
  flex: 1 1 550px;
}

.blut-pharma-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a3a5f;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blut-pharma-doctor {
  font-size: 18px;
  color: #1a3a5f;
  margin-bottom: 24px;
  font-weight: 500;
}

.blut-pharma-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* Адаптивность */
@media (max-width: 900px) {
  .blut-pharma-title {
    font-size: 30px;
  }
  .blut-pharma-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .blut-pharma-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .blut-pharma-doctor {
    text-align: left;
  }
  .blut-pharma-img-wrapper {
    order: -1;
  }
}






.blut-forum-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.blut-forum-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blut-forum-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.blut-forum-summary {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  text-align: center;
}

.blut-forum-summary p {
  margin-bottom: 16px;
}

.blut-forum-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
}

.blut-forum-item {
  background: #f9fafa;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blut-forum-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blut-forum-rating {
  font-size: 20px;
  color: #e6a200;
  margin-bottom: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}

.blut-forum-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  font-style: normal;
}

.blut-forum-item p strong {
  color: #1a3a5f;
}

/* Адаптивность */
@media (max-width: 768px) {
  .blut-forum-title {
    font-size: 28px;
  }
  .blut-forum-summary {
    font-size: 16px;
    line-height: 1.7;
  }
  .blut-forum-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blut-forum-item {
    padding: 20px;
  }
  .blut-forum-rating {
    font-size: 18px;
  }
  .blut-forum-item p {
    font-size: 15px;
  }
}





.blut-faq-section {
  padding: 90px 20px;
  background: #f8f9fa;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.blut-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blut-faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

.blut-faq-list {
  display: grid;
  gap: 20px;
}

.blut-faq-item {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blut-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.blut-faq-question {
  font-size: 19px;
  font-weight: 600;
  color: #1a3a5f;
  margin: 0 0 12px;
  line-height: 1.4;
}

.blut-faq-answer {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .blut-faq-title {
    font-size: 30px;
  }
  .blut-faq-question {
    font-size: 18px;
  }
  .blut-faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .blut-faq-item {
    padding: 18px;
  }
}






/* === ФИКС ПЕРЕКРЫТИЯ ФОРМЫ === */
.hero-description::after {
  z-index: 1 !important;
  pointer-events: none !important;
}

.blut-custom-form-wrap {
  position: relative !important;
  z-index: 10 !important;
}

.blut-form-fields,
.blut-form input,
.blut-form select,
.blut-submit-btn {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

/* === СТИЛИ ФОРМЫ === */
.blut-custom-form-wrap {
  position: relative;
  flex: 1 1 440px;
  max-width: 440px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.blut-custom-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6a97cd url('../images/bg-hero-form.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(106, 151, 205, 0.2);
}

.blut-form {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: white;
  font-family: 'Roboto', sans-serif;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}

.blut-form h3 {
  color: #fff;
  font: 700 32px/1.1 'BebasNeue', sans-serif;
  margin: 0 0 14px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.blut-form h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ce4c42;
  z-index: -1;
  border-radius: 12px;
  box-sizing: border-box;
}

.blut-counter {
  display: flex;
  justify-content: center;
  gap: 8px;
  font: 700 18px Roboto, sans-serif;
  color: #000;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin: 0 auto 22px;
  width: 100%;
  max-width: 220px;
  box-sizing: border-box;
}

.blut-counter div {
  min-width: 40px;
  text-align: center;
  background: #f0f0f0;
  padding: 4px 0;
  border-radius: 6px;
}

.blut-counter span {
  display: block;
  font-size: 9px;
  color: #666;
  line-height: 1;
}

.blut-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

.blut-country,
.blut-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 32px;
  color: #fff;
  font: 15px Roboto, sans-serif;
  height: 42px;
  padding: 0 18px;
  width: 100% !important;
  box-sizing: border-box;
}

.blut-country:focus,
.blut-input:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.blut-country {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23fff' d='M0 0h12l-6 7-6-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.blut-form-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 14px auto 18px;
  width: 100%;
  max-width: 200px;
  padding: 0 0 16px;
  text-align: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
}

.blut-new-price {
  font: bold 30px BebasNeue, Arial, sans-serif;
  color: #fff;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blut-old-price {
  font: 400 15px Roboto, sans-serif;
  color: #fff;
  margin: 0;
}

.blut-old-price span {
  text-decoration: line-through;
  color: #ff9999;
  margin-left: 4px;
}

.blut-submit-btn {
  animation: pulse 1.5s infinite;
  background: #ce4c42;
  border: none;
  border-radius: 40px;
  box-shadow: 0 6px 25px rgba(85, 18, 13, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 17px Roboto, sans-serif;
  height: 48px;
  margin: 16px auto 0;
  padding: 0 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.blut-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(85, 18, 13, 0.35);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(206, 76, 66, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(206, 76, 66, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(206, 76, 66, 0);
  }
}

/* === АДАПТИВ: Мобильные устройства === */
@media (max-width: 768px) {
  .blut-custom-form-wrap {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 20px 15px 0 !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .blut-form {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .blut-custom-form-wrap::before {
    left: 15px;
    right: 15px;
    width: auto;
    height: calc(100% - 10px);
    top: 5px;
    border-radius: 12px;
  }
}