/* =========================================
   INTEGRATIONS PAGE — Leadsmith
   Compatibility-matrix grid + status badges
   Reuses vs.css hero/cta classes.
   ========================================= */

/* ── Grid wrapper ───────────────────────── */
.int-section {
  padding: 60px 40px 80px;
  background: var(--bg-deep);
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card ─────────────────────────────────── */
.int-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.int-card:hover {
  border-color: rgba(200,245,38,0.35);
  transform: translateY(-1px);
}

/* ── Logo glyph (initials in a circle) ───── */
.int-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,245,38,0.08);
  border: 1px solid rgba(200,245,38,0.2);
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.int-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin: 14px 0 6px;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.int-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ── Status badges ───────────────────────── */
.int-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.int-badge-supported {
  background: rgba(200,245,38,0.12);
  color: var(--lime);
}
.int-badge-coming {
  background: rgba(96,165,250,0.10);
  color: #60a5fa;
}
.int-badge-zapier {
  background: rgba(251,146,60,0.10);
  color: #fb923c;
}

/* ── Out-link ────────────────────────────── */
.int-link {
  display: inline-block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-top: 14px;
  transition: color 0.15s;
}
.int-link:hover { color: var(--lime); text-decoration: none; }

/* ── Category heading ────────────────────── */
.int-category {
  max-width: 1100px;
  margin: 0 auto 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.int-category:not(:first-child) { margin-top: 56px; }

/* ── Second CTA card (don't see your CRM) ── */
.int-cta-secondary {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.int-cta-secondary h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.int-cta-secondary p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
#int-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(200,245,38,0.4);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
#int-contact-btn:hover {
  background: rgba(200,245,38,0.08);
  border-color: var(--lime);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .int-section { padding: 40px 24px 60px; }
  .int-grid { grid-template-columns: 1fr; gap: 16px; }
  .int-cta-secondary { padding: 24px; flex-direction: column; align-items: flex-start; }
  .int-category:not(:first-child) { margin-top: 40px; }
}
