/* ========================================
   INTEGRATIONS HERO
   ======================================== */

.integrations-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.integrations-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.integrations-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.integrations-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(7, 12, 24, 0.5) 0%,
    rgba(7, 12, 24, 0.95) 70%
  );
}

.integrations-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.integrations-hero-inner h1 {
  margin-bottom: 20px;
}

.integrations-hero-inner p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   INTEGRATION CATEGORY SECTION
   ======================================== */

.integration-category {
  padding: 80px 0;
  border-bottom: 1px solid var(--bg-border);
}

.integration-category:nth-child(even) {
  background-color: var(--bg-card);
}

.category-header {
  margin-bottom: 40px;
}

.category-header h2 {
  margin-bottom: 8px;
}

.category-header p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   PROVIDER TABLE
   ======================================== */

.provider-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.provider-table th {
  padding: 14px 20px;
  text-align: left;
  background-color: rgba(37, 99, 235, 0.06);
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--bg-border);
}

.provider-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-1);
  border-bottom: 1px solid var(--bg-border);
  background-color: var(--bg-card);
}

.provider-table tr:last-child td {
  border-bottom: none;
}

.provider-table tr:hover td {
  background-color: rgba(37, 99, 235, 0.03);
}

.provider-table td:first-child {
  font-weight: 600;
}

/* Status badges */

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--success);
}

.status-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
}

.status-beta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.status-beta::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.status-progress {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
}

.status-progress::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-2);
  opacity: 0.7;
}

/* ========================================
   REGION COLUMN (for regional providers)
   ======================================== */

.provider-table .col-region {
  font-weight: 400;
  color: var(--text-2);
}

/* ========================================
   CTA BLOCK (bottom)
   ======================================== */

.integrations-cta {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-card);
  border-top: 1px solid var(--bg-border);
}

.integrations-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.integrations-cta-inner h2 {
  margin-bottom: 16px;
}

.integrations-cta-inner p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 960px) {
  .integration-category {
    padding: 60px 0;
  }

  .provider-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 600px) {
  .integrations-hero {
    padding: 120px 0 60px;
  }

  .integrations-hero-inner p {
    font-size: 1rem;
  }

  .integration-category {
    padding: 48px 0;
  }

  .category-header {
    margin-bottom: 28px;
  }

  .provider-table th,
  .provider-table td {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .integrations-cta {
    padding: 60px 0;
  }
}