﻿.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-card {
  min-height: 68px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #ebe9f2;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: #1b1642;
  font-size: 17px;
  font-weight: 500;

  transition: transform .2s ease, box-shadow .2s ease,
              border-color .2s ease;
}

.platform-card img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 80, 246, .25);
  box-shadow: 0 8px 20px rgba(27, 22, 66, .06);
}

.platforms-more {
  color: #5b50f6;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .platform-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .platform-card {
    min-height: 62px;
    padding: 10px 12px;
  }
}

@media (max-width: 420px) {
  .platform-card {
    font-size: 14px;
  }
}


.audifab-cta {
  background: #f5f4fb;
}

.audifab-cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 30px;
  background: #fff;
  border: 1px solid #ebe9f2;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(27, 22, 66, .05);
}

.audifab-cta-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #5b50f6;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
}

.audifab-cta h2 {
  color: #1b1642;
}

.audifab-cta-text {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #6f6c80;
  font-size: 17px;
  line-height: 1.7;
}

.audifab-cta-buttons .btn {
  min-width: 135px;
  padding: 10px 20px;
  border-radius: 7px;
}

.audifab-cta-buttons .btn-primary {
  background: #5b50f6;
  border-color: #5b50f6;
}

.audifab-cta-buttons .btn-primary:hover {
  background: #4d43df;
  border-color: #4d43df;
}

.audifab-cta-buttons .btn-outline-primary {
  color: #5b50f6;
  border-color: #5b50f6;
}

.audifab-cta-buttons .btn-outline-primary:hover {
  color: #fff;
  background: #5b50f6;
  border-color: #5b50f6;
}

@media (max-width: 767px) {
  .audifab-cta-box {
    padding: 50px 20px;
    border-radius: 14px;
  }

  .audifab-cta-text {
    font-size: 17px;
  }

  .audifab-cta-buttons .btn {
    width: 100%;
    margin: 0 0 10px !important;
  }
}
