/* ============================================
   AI AGENT FIT SECTION
   ============================================ */
.ai-agent-fit-section {
  background-color: #ffffff;
}

.ai-agent-fit-header {
  text-align: center;
  /* max-width: 900px; */
  margin: 0 auto 2.5rem;
}

.ai-agent-fit-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f05a28;
  text-align: center;
  text-transform: uppercase;
}

.ai-agent-fit-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
}

.ai-agent-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 40px;
  max-width: 1224px;
  margin: 0 auto;
}

.ai-agent-fit-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  min-width: 0;
  min-height: 100%;
  height: 100%;
  padding: 0 0 30px;
  gap: 30px;
  border-radius: 16px;
  overflow: hidden;
}

.ai-agent-fit-card--good {
  background: #ebf6f0;
  border: 1px solid #2e9562;
}

.ai-agent-fit-card--not-ideal {
  background: #fef7f4;
  border: 1px solid #f05a28;
}

.ai-agent-fit-card-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  min-height: 60px;
  padding: 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  text-transform: uppercase;
  color: #ffffff;
}

.ai-agent-fit-card--good .ai-agent-fit-card-header {
  background-color: #2e9562;
}

.ai-agent-fit-card--not-ideal .ai-agent-fit-card-header {
  background-color: #f05a28;
}

.ai-agent-fit-list {
  list-style: none;
  margin: 0;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  gap: 20px;
}

.ai-agent-fit-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 16px;
}

.ai-agent-fit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.ai-agent-fit-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 991px) {
  .ai-agent-fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ai-agent-fit-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .ai-agent-fit-title {
    font-size: 1.625rem;
  }

  .ai-agent-fit-card-header {
    font-size: 18px;
    line-height: 24px;
    min-height: 52px;
    padding: 0 20px;
  }

  .ai-agent-fit-list {
    padding: 0 20px;
    gap: 16px;
  }
}
