/* ============================================================
   App Built For — 3-card grid section
   ============================================================ */

.bs-built-for {
  background-color: #ffffff;
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: clamp(24px, 6vw, 96px);
}

.bs-built-for__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Heading block ── */
.bs-built-for__heading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.bs-built-for__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.3;
  color: #21254a;
  margin: 0;
  width: 100%;
  text-transform: uppercase;
}

.bs-built-for__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  color: #21254a;
  max-width: 720px;
  text-align: center;
}

.bs-built-for__subtitle p {
  margin: 0;
}

/* ── Cards grid ── */
.bs-built-for__cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.bs-built-for__card {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

/* ── Card icon ── */
.bs-built-for__card-icon-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bs-built-for__card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Card title ── */
.bs-built-for__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bs-built-for__cards {
    flex-wrap: wrap;
  }

  .bs-built-for__card {
    flex: 1 1 calc(50% - 12px);
    min-width: 220px;
  }
}

@media (max-width: 599px) {
  .bs-built-for__card {
    flex: 1 1 100%;
    min-width: 0;
  }
}
