/* Usage Recommendations Block Styles */

.usage-recommendations-block {
  width: 100%;
  padding-bottom: 75px;
  background: white;
}

.usage-recommendations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.usage-recommendations-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.usage-recommendations-title {
  font-size: 29px;
  line-height: 38px;
  color: #0c1f2b;
  font-weight: bold;
  margin: 0;
}

.usage-recommendations-subtitle {
  font-size: 17px;
  line-height: 26px;
  color: #7b878f;
  margin: 0;
  max-width: 510px;
}

/* Features Banner */
.usage-recommendations-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  border-radius: 5px;
  background: linear-gradient(90deg, #002f1d 0%, #017859 100%);
  margin-bottom: 50px;
}

.usage-recommendations-feature {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.usage-recommendations-feature p {
  font-size: 15px;
  line-height: 18px;
  color: white;
  margin: 0;
  text-align: center;
}

.usage-recommendations-feature-divider {
  width: 1px;
  height: 20px;
  background: white;
  opacity: 0.2;
}

/* Steps Section */
.usage-recommendations-steps {
  display: flex;
  gap: 60px;
}

.usage-recommendations-step {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.usage-recommendations-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usage-recommendations-step-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.usage-recommendations-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #cfffeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-recommendations-step-number span {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #017859;
}

.usage-recommendations-step-title {
  font-size: 19px;
  line-height: 25px;
  color: #0c1f2b;
  font-weight: bold;
  margin: 0;
}

.usage-recommendations-step-divider {
  width: 100%;
  height: 1px;
  background: #e1e6ea;
}

.usage-recommendations-step-description {
  font-size: 15px;
  line-height: 23px;
  color: #0c1f2b;
  margin: 0;
}

.usage-recommendations-step-image {
  position: relative;
  width: 140px;
  height: 180px;
  overflow: hidden;
}

.usage-recommendations-step-image img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.usage-recommendations-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f8fa 0%, #e1e6ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.usage-recommendations-image-placeholder span {
  color: #9aa7ae;
  font-size: 14px;
  font-weight: 500;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .usage-recommendations-steps {
    flex-direction: column;
    gap: 40px;
  }

  .usage-recommendations-step {
    flex-direction: row;
  }

  .usage-recommendations-features {
    flex-wrap: wrap;
  }

  .usage-recommendations-feature {
    flex: 0 0 calc(50% - 15px);
  }

  .usage-recommendations-feature-divider:nth-child(2n) {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .usage-recommendations-block {
    padding: 48px 0;
  }

  .usage-recommendations-container {
    padding: 0 16px;
  }

  .usage-recommendations-header {
    gap: 12px;
    margin-bottom: 32px;
  }

  .usage-recommendations-title {
    font-size: 25px;
    line-height: 32px;
  }

  .usage-recommendations-subtitle {
    font-size: 15px;
    line-height: 23px;
  }

  /* Mobile Features Banner - Vertical */
  .usage-recommendations-features {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    height: 205px;
  }

  .usage-recommendations-feature {
    width: 100%;
  }

  .usage-recommendations-feature-divider {
    width: 100%;
    height: 1px;
  }

  /* Mobile Steps */
  .usage-recommendations-steps {
    flex-direction: column;
    gap: 24px;
  }

  .usage-recommendations-step {
    gap: 20px;
  }

  .usage-recommendations-step-title {
    font-size: 17px;
    line-height: 22px;
  }

  .usage-recommendations-step-image {
    width: 120px;
    height: 160px;
  }

  .usage-recommendations-step-image img {
    width: 120px;
    height: 160px;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
  .usage-recommendations-title {
    font-size: 22px;
    line-height: 28px;
  }

  .usage-recommendations-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .usage-recommendations-step-description {
    font-size: 14px;
    line-height: 21px;
  }

  .usage-recommendations-feature p {
    font-size: 14px;
  }
}
