.lm-b2b-solutions {
  background: #f6f1ec;
  padding: 28px 0 32px;
  width: 100%;
}

.lm-b2b-solutions.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.lm-b2b-solutions__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lm-b2b-solutions__header {
  text-align: center;
  margin-bottom: 18px;
}

.lm-b2b-solutions__eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 10px;
}

.lm-b2b-solutions__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  color: #2b2622;
}

.lm-b2b-solutions__subtitle {
  margin: 0;
  font-size: 18px;
  color: #6c6761;
  line-height: 1.7;
}

.lm-b2b-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 18px;
}

.lm-b2b-solutions__dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.lm-b2b-solutions__dot {
  all: unset !important;
  box-sizing: border-box !important;
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  max-width: 10px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: rgba(184, 149, 106, 0.3) !important;
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  display: inline-block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  line-height: 1 !important;
  font-size: 0 !important;
  transform: none !important;
  transition: width 200ms ease, background-color 200ms ease;
}

.lm-b2b-solutions__dot.is-active {
  width: 46px !important;
  height: 10px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  border-radius: 999px !important;
  background: #b8956a !important;
}

.lm-b2b-card {
  border-radius: 18px;
  overflow: hidden;
  background: #1f1b17;
  box-shadow: 0 16px 30px rgba(19, 17, 15, 0.2);
}

.lm-b2b-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lm-b2b-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.1) 10%, rgba(12, 9, 8, 0.7) 60%, rgba(12, 9, 8, 0.9) 100%);
  z-index: 1;
}

.lm-b2b-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.lm-b2b-card:hover .lm-b2b-card__media img {
  transform: scale(1.06);
}

.lm-b2b-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #2c1810 0%, #5b3a28 50%, #b8956a 100%);
}

.lm-b2b-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 20px;
  color: #ffffff;
  z-index: 2;
}

.lm-b2b-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  color: #ffffff;
}

.lm-b2b-card__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.lm-b2b-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.lm-b2b-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lm-b2b-card__list li::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 6px;
  flex: 0 0 auto;
}

.lm-b2b-cta {
  border-radius: 22px;
  padding: 36px 40px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(120deg, #2c1810 0%, #b8956a 100%);
  box-shadow: 0 16px 30px rgba(28, 18, 13, 0.25);
}

.lm-b2b-cta__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  color: #ffffff;
}

.lm-b2b-cta__text {
  margin: 0 0 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.lm-b2b-cta__buttons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lm-b2b-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lm-b2b-cta__arrow {
  font-size: 18px;
  line-height: 1;
}

.lm-b2b-cta__button--primary {
  background: #ffffff;
  color: #2b2622;
  box-shadow: 0 10px 20px rgba(28, 18, 13, 0.25);
}

.lm-b2b-cta__button--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.lm-b2b-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(28, 18, 13, 0.25);
}

@media (max-width: 1024px) {
  .lm-b2b-solutions__grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    margin-bottom: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lm-b2b-solutions__grid::-webkit-scrollbar {
    display: none;
  }

  .lm-b2b-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: 320px;
    scroll-snap-align: start;
  }

  .lm-b2b-solutions__dots {
    display: flex;
  }
}

@media (max-width: 720px) {
  .lm-b2b-solutions {
    padding: 12px 0 18px;
  }

  .lm-b2b-solutions__grid {
    margin-bottom: 16px;
  }

  .lm-b2b-cta {
    padding: 28px 22px;
  }

  .lm-b2b-cta__buttons {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
  }

  .lm-b2b-cta__button {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .lm-b2b-card {
    flex-basis: 100%;
    min-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lm-b2b-card__media img,
  .lm-b2b-cta__button {
    transition: none;
  }

  .lm-b2b-card:hover .lm-b2b-card__media img,
  .lm-b2b-cta__button:hover {
    transform: none;
  }
}
