/* =========================================================
   industries.css — shared styles for all industry pages
   Load order: tailwind.min.css → design-tokens-landing.css → landing.css → industries.css
   ========================================================= */

/* ----- Pain pills (hero eyebrow badges) ----- */
.industry-pain-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #c8d3f0;
  white-space: nowrap;
}
.industry-pain-pill::before {
  content: '●';
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ----- ROI stat cards ----- */
.industry-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.industry-stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(51,148,255,0.30);
}
.industry-stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #3394ff 0%, #cc44ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-stat-card .stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #c8d3f0;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.industry-stat-card .stat-source {
  font-size: 0.75rem;
  color: #8a94be;
  margin-top: 0.625rem;
  font-style: italic;
}

/* ----- Platform integration cards ----- */
.integration-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.integration-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(51,148,255,0.25);
  transform: translateY(-2px);
}
.integration-card .intg-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(51,148,255,0.12);
  border: 1px solid rgba(51,148,255,0.20);
  color: #3394ff;
}
.integration-card .intg-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8ff;
  line-height: 1.2;
}
.integration-card .intg-category {
  font-size: 0.6875rem;
  color: #8a94be;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ----- FAQ accordion ----- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #c8d3f0;
  transition: color 0.15s ease;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }
.faq-summary:hover { color: #ffffff; }
.faq-summary .faq-chevron {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: #8a94be;
  transition: transform 0.25s ease, color 0.15s ease;
}
details[open] .faq-summary .faq-chevron {
  transform: rotate(180deg);
  color: #3394ff;
}
details[open] .faq-summary { color: #ffffff; }
.faq-body {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #8a9bc4;
}

/* ----- Mega menu panel ----- */
.mega-menu-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}
#nav-industries:hover .mega-menu-panel,
#nav-industries:focus-within .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.625rem;
  transition: background 0.12s ease;
  text-decoration: none;
}
.mega-menu-entry:hover {
  background: rgba(255,255,255,0.05);
}
.mega-menu-entry .mm-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.mega-menu-entry .mm-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8ff;
  line-height: 1.3;
}
.mega-menu-entry .mm-tagline {
  font-size: 0.75rem;
  color: #8a94be;
  line-height: 1.3;
  margin-top: 0.125rem;
}

/* ----- Industry page hero orbs (same pattern as index.html) ----- */
.ind-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

/* ----- SWAIG action rows on industry pages ----- */
.ind-swaig-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  color: #c8d3f0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ind-swaig-row:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(51,148,255,0.20);
}
.ind-swaig-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

/* ----- Inbound channel cards (left column of workflow hub) ----- */
.ind-channel-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.ind-channel-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ----- Aliases for alternate class names used by some pages ----- */
.ind-stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 1rem; padding: 1.75rem 1.5rem; text-align: center; transition: border-color 0.2s ease, background 0.2s ease; }
.ind-stat-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(51,148,255,0.30); }
.ind-stat-card .stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #3394ff 0%, #cc44ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ind-stat-card .stat-label { font-size: 0.9375rem; font-weight: 500; color: #c8d3f0; margin-top: 0.5rem; line-height: 1.4; }
.ind-stat-card .stat-source { font-size: 0.75rem; color: #8a94be; margin-top: 0.625rem; font-style: italic; }

.ind-integration-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 0.875rem; padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.ind-integration-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(51,148,255,0.25); transform: translateY(-2px); }
.ind-integration-card .intg-logo { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em; background: rgba(51,148,255,0.12); border: 1px solid rgba(51,148,255,0.20); color: #3394ff; }
.ind-integration-card .intg-name { font-size: 0.875rem; font-weight: 600; color: #e2e8ff; line-height: 1.2; }
.ind-integration-card .intg-category { font-size: 0.6875rem; color: #4a5580; text-transform: uppercase; letter-spacing: 0.06em; }

.ind-faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.ind-faq-item:last-child { border-bottom: none; }
