/* =============================================================================
   Industries Landing Pages - Light Theme
   Aligned with BiDev public design system (turquoise, deep-space, mint-cream)
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Backgrounds */
  --ind-bg: #ffffff;
  --ind-bg-alt: var(--bs-gray-100, #f7f9fc);
  --ind-card: #ffffff;

  /* Text */
  --ind-text-primary: var(--deep-space, #003249);
  --ind-text-secondary: #4B5563;
  --ind-text-muted: #6B7280;

  /* Accents */
  --ind-accent-blue: #3B82F6;
  --ind-accent-cyan: #06B6D4;
  --ind-accent-purple: #8B5CF6;
  --ind-accent-green: #10B981;
  --ind-accent-orange: #F59E0B;
  --ind-accent-red: #EF4444;
}

/* ===================== BASE ===================== */
.industry-page {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--ind-bg);
  color: var(--ind-text-primary);
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(135deg, var(--turquoise, #00b4d8), var(--turquoise-dark, #0096b7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== HERO ===================== */
.industry-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  background: var(--ind-bg-alt);
}

.hero-grid {
  display: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,50,73,0.4) 0%, rgba(0,50,73,0.6) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  animation: indFadeIn 0.8s ease;
}

.industry-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  animation: indSlideUp 0.8s ease 0.1s both;
}

.industry-hero h1 em {
  font-style: normal;
}

.industry-hero .hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: indSlideUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--turquoise, #00b4d8);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  animation: indSlideUp 0.8s ease 0.3s both;
  box-shadow: 0 5px 30px rgba(0,180,216,0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,216,0.45);
  color: white;
}

/* ===================== AD SECTIONS ===================== */
.bi-section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--ind-bg);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.bi-section.alt-bg {
  background: var(--ind-bg-alt);
}

.bi-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section header */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ind-text-primary);
}

.section-header h2 em {
  font-style: normal;
}

.section-header .lead {
  font-size: 1.15rem;
  color: var(--ind-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Target companies */
.target-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.target-chip {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,50,73,0.05);
  border: 1px solid rgba(0,50,73,0.1);
  color: var(--ind-text-secondary);
}

/* Pain / Solution grid */
.pain-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-col h3, .solution-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pain-col h3 { color: var(--ind-accent-orange); }
.solution-col h3 { color: var(--ind-accent-green); }
.solution-subtitle {
  font-size: 0.8rem;
  color: var(--ind-text-secondary);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.pain-item, .solution-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  transition: transform 0.2s;
}

.pain-item {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
}

.solution-item {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
}

.pain-item:hover, .solution-item:hover { transform: translateX(4px); }

.item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.pain-item .item-icon {
  background: rgba(245,158,11,0.12);
  color: var(--ind-accent-orange);
}

.solution-item .item-icon {
  background: rgba(16,185,129,0.12);
  color: var(--ind-accent-green);
}

.item-text h4 {
  font-size: 1rem !important;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ind-text-primary);
}

.item-text p {
  font-size: 0.95rem !important;
  color: var(--ind-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* KPIs */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.kpi-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.kpi-card:hover {
  border-color: var(--section-accent, rgba(0,180,216,0.3));
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.kpi-value {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 0.9rem;
  color: var(--ind-text-muted);
  font-weight: 500;
}

/* Certif badges */
.certif-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.certif-badge {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Module grid */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.mod-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  transition: all 0.3s;
  text-align: center;
}

.mod-card:hover {
  background: var(--ind-bg-alt);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.mod-icon { font-size: 1.5rem; }

.mod-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ind-text-secondary);
}

/* Section CTA */
.section-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(0,50,73,0.08);
}

.section-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ind-text-primary);
}

.section-cta p {
  color: var(--ind-text-secondary);
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  background: var(--turquoise, #00b4d8);
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--turquoise-dark, #0096b7);
  color: white;
}

/* ===================== VALUE PROPOSITION ===================== */
.value-section {
  padding: 5rem 1.5rem;
  background: var(--ind-bg);
  position: relative;
  overflow: hidden;
}

.value-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.value-headline {
  text-align: center;
  margin-bottom: 3rem;
}

.value-headline h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ind-text-primary);
}

.value-headline h2 em {
  font-style: normal;
  color: var(--turquoise, #00b4d8);
}

.value-headline p {
  font-size: 1.1rem;
  color: var(--ind-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--turquoise, #00b4d8));
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  border-color: rgba(0,180,216,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.value-card:hover::before { opacity: 1; }

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ind-text-primary);
}

.value-card p {
  font-size: 0.95rem !important;
  color: var(--ind-text-secondary);
  line-height: 1.7;
}

/* Before / After — Table */
.value-table-wrapper {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}

.value-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,50,73,0.08);
}

.value-comparison-table th {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  width: 50%;
  text-align: left;
}

.value-th-before {
  background: #fef2f2;
  color: #dc2626;
  border-bottom: 2px solid #fca5a5;
}

.value-th-after {
  background: #ecfdf5;
  color: #059669;
  border-bottom: 2px solid #6ee7b7;
  border-left: 1px solid rgba(0,0,0,0.06);
}

.value-comparison-table td {
  padding: 1rem 1.25rem 1rem 2.75rem;
  font-size: 0.95rem;
  color: #374151;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
  position: relative;
}

.value-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.value-td-before {
  background: #fff;
}

.value-td-after {
  background: #f9fefb;
  border-left: 1px solid rgba(0,0,0,0.06);
}

.value-td-before::before {
  content: '\2715';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-weight: 700;
  font-size: 0.8rem;
}

.value-td-after::before {
  content: '\2713';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
}

.value-comparison-table tbody tr {
  transition: background 0.2s ease;
}

.value-comparison-table tbody tr:hover .value-td-before {
  background: #fef2f2;
}

.value-comparison-table tbody tr:hover .value-td-after {
  background: #ecfdf5;
}

/* ===================== INTEGRATIONS BANNER ===================== */
.integrations-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(0,180,216,0.06);
  border: 1px solid rgba(0,180,216,0.15);
  margin-bottom: 2rem;
}

.integrations-banner .integ-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,180,216,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.integrations-banner .integ-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ind-text-primary);
  margin-bottom: 0.2rem;
}

.integrations-banner .integ-text span {
  font-size: 1rem;
  color: var(--ind-text-secondary);
  line-height: 1.6;
}

.integ-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.integ-chip {
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0,180,216,0.1);
  color: var(--turquoise, #00b4d8);
  border: 1px solid rgba(0,180,216,0.2);
  letter-spacing: 0.03em;
}

/* ===================== SHOWCASE FEATURES ===================== */
.industry-page .showcase-features {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.industry-page .showcase-feat {
  display: flex !important;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0,50,73,0.08);
  background: var(--ind-card);
  transition: all 0.3s;
}

.industry-page .showcase-feat:hover {
  background: var(--ind-bg-alt);
  border-color: rgba(0,180,216,0.2);
}

.industry-page .showcase-feat-icon {
  flex-shrink: 0;
  flex-grow: 0;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.industry-page .showcase-feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.industry-page .showcase-feat > div {
  flex: 1;
  min-width: 0;
}

.industry-page .showcase-feat strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ind-text-primary);
  margin-bottom: 0.25rem;
}

.industry-page .showcase-feat span {
  display: block;
  font-size: 0.95rem;
  color: var(--ind-text-muted);
  line-height: 1.5;
}

/* ===================== SHOWCASE SECTION ===================== */
.showcase-section {
  padding: 6rem 1.5rem;
  background: var(--ind-bg-alt);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,50,73,0.08);
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.showcase-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(0,180,216,0.1);
  color: var(--turquoise, #00b4d8);
  border: 1px solid rgba(0,180,216,0.2);
  margin-bottom: 1.5rem;
}

.showcase-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ind-text-primary);
}

.showcase-header h2 em {
  font-style: normal;
  color: var(--turquoise, #00b4d8);
}

.showcase-lead {
  font-size: 1rem;
  color: var(--ind-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.showcase-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  background: rgba(0,180,216,0.06);
  border: 1px solid rgba(0,180,216,0.15);
  margin-top: 2rem;
}

.showcase-cta p {
  color: var(--ind-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.showcase-cta strong {
  color: var(--turquoise, #00b4d8);
}

/* ===================== INDUSTRY FOOTER ===================== */
.industry-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0,50,73,0.08);
  color: var(--ind-text-muted);
  font-size: 0.85rem;
  background: var(--ind-bg);
}

.industry-footer a {
  color: var(--turquoise, #00b4d8);
  text-decoration: none;
  font-weight: 600;
}

/* ===================== SECTION LABEL / TITLE / SUBTITLE ===================== */
.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,180,216,0.1);
  color: var(--turquoise, #00b4d8);
  border: 1px solid rgba(0,180,216,0.2);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ind-text-primary);
}

.section-title em {
  font-style: normal;
  color: var(--turquoise, #00b4d8);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ind-text-secondary);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== EXPERTISE BLOCKS ===================== */
.expertise-section {
  padding: 5rem 1.5rem;
  background: var(--ind-bg);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.expertise-section.alt-bg {
  background: var(--ind-bg-alt);
}

.expertise-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.expertise-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.expertise-block.reverse {
  direction: rtl;
}

.expertise-block.reverse > * {
  direction: ltr;
}

.expertise-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.expertise-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--ind-text-primary);
}

.expertise-block h3 em {
  font-style: normal;
  color: var(--turquoise, #00b4d8);
}

.expertise-desc {
  font-size: 1rem;
  color: var(--ind-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ind-text-secondary);
  line-height: 1.6;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-list li strong {
  color: var(--ind-text-primary);
}

/* Expertise visual panels */
.visual-panel {
  background: var(--ind-bg-alt);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.visual-panel-dark {
  background: var(--deep-space, #003249);
  border-color: rgba(255,255,255,0.1);
  color: white;
}

/* Sprint timeline visual */
.sprint-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sprint-phase {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sprint-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--turquoise, #00b4d8);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sprint-phase h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ind-text-primary);
  margin-bottom: 0.2rem;
}

.sprint-phase p {
  font-size: 0.85rem;
  color: var(--ind-text-muted);
  line-height: 1.5;
  margin: 0;
}

.sprint-duration {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--turquoise, #00b4d8);
  background: rgba(0,180,216,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.3rem;
}

/* Integration flow visual */
.integration-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.flow-node {
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  background: rgba(0,50,73,0.04);
  border: 1px solid rgba(0,50,73,0.1);
}

.flow-node strong {
  display: block;
  font-size: 0.8rem;
  color: var(--ind-text-primary);
  margin-bottom: 0.15rem;
}

.flow-node small {
  font-size: 0.7rem;
  color: var(--ind-text-muted);
}

.flow-arrow {
  font-size: 0.85rem;
  color: var(--turquoise, #00b4d8);
  font-weight: 700;
  text-align: center;
  padding: 0.25rem 0;
}

.flow-hub {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  background: var(--deep-space, #003249);
  color: white;
}

.flow-hub strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.flow-hub small {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Regulatory timeline visual */
.reg-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reg-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.reg-badge {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  min-width: 52px;
  text-align: center;
}

.reg-info h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.1rem;
}

.reg-info p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.reg-auto {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* Risk grid visual */
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.risk-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 10px;
  background: var(--ind-bg-alt);
  border: 1px solid rgba(0,50,73,0.08);
}

.risk-metric {
  font-family: 'Space Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--turquoise, #00b4d8);
  margin-bottom: 0.25rem;
}

.risk-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ind-text-primary);
  margin-bottom: 0.15rem;
}

.risk-sub {
  font-size: 0.7rem;
  color: var(--ind-text-muted);
}

/* Pipeline visual (fraud detection etc.) */
.pipeline-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(0,50,73,0.03);
  border: 1px solid rgba(0,50,73,0.08);
}

.pipeline-step > div:not(.pipeline-num) {
  flex: 1;
  min-width: 0;
}

.pipeline-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--turquoise, #00b4d8);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline-step h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ind-text-primary);
  margin-bottom: 0.1rem;
}

.pipeline-step p {
  font-size: 0.75rem;
  color: var(--ind-text-muted);
  margin: 0;
}

.pipeline-flag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.flag-auto { color: #10b981; background: rgba(16,185,129,0.1); }
.flag-ml { color: #3b82f6; background: rgba(59,130,246,0.1); }
.flag-alert { color: #f59e0b; background: rgba(245,158,11,0.1); }

/* Pipeline inside dark panels */
.visual-panel-dark .pipeline-step {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.visual-panel-dark .pipeline-step h5 {
  color: #fff;
}
.visual-panel-dark .pipeline-step p {
  color: rgba(255,255,255,0.6);
}

/* Stat grid visual (compta etc.) */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: 10px;
  background: var(--ind-bg-alt);
  border: 1px solid rgba(0,50,73,0.08);
}

.stat-value {
  font-family: 'Space Mono', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--turquoise, #00b4d8);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ind-text-primary);
  margin-bottom: 0.1rem;
}

.stat-sub {
  font-size: 0.7rem;
  color: var(--ind-text-muted);
}

/* Process flow visual */
.process-flow {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0.5rem;
  row-gap: 0.5rem;
}

.process-step {
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(0,180,216,0.08);
  color: var(--turquoise, #00b4d8);
  border: 1px solid rgba(0,180,216,0.15);
  white-space: nowrap;
}

.process-step.final {
  background: var(--deep-space, #003249);
  color: white;
  border-color: var(--deep-space, #003249);
}

.process-arrow {
  font-size: 0.65rem;
  color: var(--ind-text-muted);
}

/* Before/After visual (data quality etc.) */
.before-after-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ba-label.before { color: var(--ind-accent-orange); }
.ba-label.after { color: var(--ind-accent-green); }

.ba-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.ba-item {
  text-align: center;
  padding: 0.6rem 0.4rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ba-item.bad {
  background: rgba(245,158,11,0.06);
  border: 1px dashed rgba(245,158,11,0.3);
  color: var(--ind-accent-orange);
}

.ba-item.bad small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--ind-text-muted);
  margin-top: 0.15rem;
}

.ba-arrow {
  text-align: center;
  font-size: 0.8rem;
  color: var(--turquoise, #00b4d8);
  font-weight: 700;
  padding: 0.25rem 0;
}

.ba-hub {
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--ind-accent-green);
  font-size: 0.8rem;
  font-weight: 600;
}

.ba-hub small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ind-text-muted);
  margin-top: 0.15rem;
}

/* ===================== KPI BANNER (full width dark) ===================== */
.kpi-banner {
  background: var(--deep-space, #003249);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.kpi-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.kpi-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.kpi-banner-item {
  text-align: center;
  position: relative;
}

.kpi-banner-item + .kpi-banner-item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.kpi-banner-value {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--turquoise, #00b4d8);
  margin-bottom: 0.4rem;
}

.kpi-banner-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ===================== ECOSYSTEM GRID ===================== */
.ecosystem-section {
  padding: 5rem 1.5rem;
  background: var(--ind-bg-alt);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.ecosystem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.eco-card {
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.eco-card:hover {
  border-color: rgba(0,180,216,0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.eco-icon {
  margin-bottom: 0.75rem;
  color: var(--ind-accent, #0ea5e9);
  line-height: 1;
}
.eco-icon svg {
  width: 32px;
  height: 32px;
}
.eco-icon img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.eco-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ind-text-primary);
  margin-bottom: 0.4rem;
}

.eco-card p {
  font-size: 0.8rem;
  color: var(--ind-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===================== SECTION COLORS ===================== */
.section-aero { --section-accent: var(--ind-accent-blue); }
.section-pharma { --section-accent: var(--ind-accent-purple); }
.section-production { --section-accent: var(--ind-accent-orange); }
.section-agro { --section-accent: var(--ind-accent-green); }
.section-emballage { --section-accent: var(--ind-accent-cyan); }
.section-securite { --section-accent: var(--ind-accent-red); }
.section-finance { --section-accent: #dc2626; }
.section-assurance { --section-accent: #0891b2; }

/* ===================== METHODOLOGY SECTION ===================== */
.methodology-section {
  padding: 5rem 1.5rem;
  background: var(--ind-bg-alt);
}

.methodology-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.methodology-header {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-header h2 {
  color: var(--ind-text-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-top: 1rem;
}

.methodology-header h2 em {
  color: var(--turquoise, #00b4d8);
  font-style: normal;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.methodology-step {
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.methodology-step:hover {
  border-color: rgba(0,180,216,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise, #00b4d8), var(--turquoise-dark, #0096b7));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.methodology-step h3 {
  color: var(--ind-text-primary);
  font-size: 1.05rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-duration {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  color: var(--turquoise, #00b4d8);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.methodology-step p {
  color: var(--ind-text-muted);
  font-size: 0.95rem !important;
  line-height: 1.7;
}

.methodology-stat {
  background: rgba(0,180,216,0.05);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.methodology-stat p {
  color: var(--ind-text-secondary);
  font-size: 0.95rem !important;
  line-height: 1.7;
  margin: 0;
}

.methodology-stat strong {
  color: var(--turquoise, #00b4d8);
}

.methodology-stat em {
  color: var(--ind-text-muted);
  font-size: 0.9rem;
}

/* ===================== FORGE BRANDING ===================== */
.forge-brand {
  font-weight: 800;
  color: var(--honey-bronze, #edae49);
  letter-spacing: 0.12em;
}

.forge-letter {
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--honey-bronze, #edae49) !important;
  color: #fff !important;
}

.step-deliverable {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--turquoise, #00b4d8);
  font-style: italic;
}

/* ===================== ROI & AUTHORITY SECTION ===================== */
.roi-section {
  padding: 4rem 1.5rem;
  background: var(--ind-bg-alt);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.roi-inner {
  max-width: 900px;
  margin: 0 auto;
}

.authority-stat {
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.authority-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.authority-stat p {
  color: var(--ind-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.authority-stat strong {
  color: var(--turquoise, #00b4d8);
}

.roi-table {
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.roi-table h3 {
  color: var(--ind-text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
}

.roi-header {
  background: rgba(0,180,216,0.08);
  color: var(--turquoise, #00b4d8);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,50,73,0.08);
}

.roi-cell {
  padding: 0.75rem 1rem;
  color: var(--ind-text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,50,73,0.06);
}

.roi-cell:nth-child(3n+1) {
  color: var(--ind-text-primary);
  font-weight: 600;
}

.roi-before {
  color: var(--ind-accent-red) !important;
  font-weight: 400 !important;
}

.roi-after {
  color: var(--ind-accent-green) !important;
  font-weight: 600 !important;
}

/* ===================== SIGNALS / CHECKLIST SECTION ===================== */
.signals-section {
  padding: 4rem 1.5rem;
  background: var(--ind-bg);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.signals-inner {
  max-width: 800px;
  margin: 0 auto;
}

.signals-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.signals-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ind-text-primary);
  margin-bottom: 0.5rem;
}

.signals-header p {
  color: var(--ind-text-secondary);
  font-size: 1.1rem;
}

.signals-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.signal-item:hover {
  background: var(--ind-bg-alt);
  border-color: rgba(0,180,216,0.2);
}

.signal-item input[type="checkbox"] {
  display: none;
}

.signal-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid rgba(0,50,73,0.15);
  background: rgba(0,50,73,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
}

.signal-check::after {
  content: '\2713';
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.signal-item input[type="checkbox"]:checked ~ .signal-check {
  background: var(--ind-accent-orange);
  border-color: var(--ind-accent-orange);
}

.signal-item input[type="checkbox"]:checked ~ .signal-check::after {
  opacity: 1;
  transform: scale(1);
}

.signal-item span:last-child {
  font-size: 1.05rem;
  color: var(--ind-text-secondary);
  line-height: 1.6;
}

.signal-item input[type="checkbox"]:checked ~ span:last-child {
  color: var(--ind-text-primary);
}

.signals-cta {
  text-align: center;
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 4rem 1.5rem;
  background: var(--ind-bg-alt);
  border-top: 1px solid rgba(0,50,73,0.08);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ind-text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--ind-card);
  border: 1px solid rgba(0,50,73,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.faq-item:hover {
  border-color: rgba(0,180,216,0.2);
}

.faq-item[open] {
  background: var(--ind-card);
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ind-text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ind-text-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--turquoise, #00b4d8);
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  color: var(--ind-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===================== TELECOM SECTION COLOR ===================== */
.section-telecom { --section-accent: var(--ind-accent-blue); }

/* ===================== FINAL CTA ===================== */
.industry-page > .bi-section:last-child {
  background: var(--ind-bg);
}

/* ===================== ANIMATIONS ===================== */
@keyframes indFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes indSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .industry-hero { min-height: 50vh; padding: 5rem 1.5rem 3rem; }
  .industry-hero .hero-lead { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
  .hero-cta { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
  .pain-solution-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-comparison-table th { font-size: 0.7rem; padding: 0.8rem 0.75rem; }
  .value-comparison-table td { font-size: 0.85rem; padding: 0.75rem 0.75rem 0.75rem 2rem; }
  .value-td-before::before,
  .value-td-after::before { left: 0.5rem; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-page .showcase-features { grid-template-columns: 1fr !important; }
  .integrations-banner { flex-direction: column; text-align: center; }
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-header { display: none; }
  .roi-cell { padding: 0.5rem 1rem; }
  .roi-cell:nth-child(3n+1) { background: rgba(0,50,73,0.03); margin-top: 0.5rem; padding-top: 0.75rem; }
  .roi-cell.roi-before::before { content: "Avant: "; color: var(--ind-text-muted); font-weight: 400; font-size: 0.8rem; }
  .roi-cell.roi-after::before { content: "Avec BiDev: "; color: var(--ind-text-muted); font-weight: 400; font-size: 0.8rem; }
  .authority-stat { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
  .signals-inner, .faq-inner { padding: 0 0.5rem; }
  .signal-item { padding: 0.85rem 1rem; }
  .section-cta { padding: 3rem 1rem; }
  .cta-btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  /* New sections responsive */
  .expertise-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .expertise-block.reverse { direction: ltr; }
  .kpi-banner-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .kpi-banner-item + .kpi-banner-item::before { display: none; }
  .kpi-banner-value { font-size: 1.8rem; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .ba-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .risk-grid { grid-template-columns: 1fr 1fr; }
  .process-flow { gap: 0.25rem; }
}

@media (max-width: 480px) {
  .industry-hero { padding: 5rem 1rem 2.5rem; min-height: auto; }
  .industry-hero h1 { font-size: 1.8rem; }
  .industry-hero .hero-lead { font-size: 0.9rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.35rem 0.8rem; letter-spacing: 0.04em; }
  .hero-cta { padding: 0.65rem 1.25rem; font-size: 0.9rem; gap: 0.5rem; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-grid { grid-template-columns: 1fr; }
  /* New sections responsive */
  .kpi-banner-inner { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .expertise-block h3 { font-size: 1.25rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .tech-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .dm-indicator-row { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================================
   Browser Mockup Frame
   ============================================================================= */
.browser-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,50,73,0.1);
    background: #fff;
}
.browser-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--ind-bg-alt, #f7f9fc);
    border-bottom: 1px solid rgba(0,50,73,0.08);
}
.browser-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-mockup-dot:nth-child(1) { background: #ef4444; }
.browser-mockup-dot:nth-child(2) { background: #f59e0b; }
.browser-mockup-dot:nth-child(3) { background: #10b981; }
.browser-mockup-url {
    flex: 1;
    margin-left: 8px;
    padding: 4px 12px;
    background: rgba(0,50,73,0.04);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--ind-text-muted);
    font-family: 'Space Mono', monospace;
}
.browser-mockup-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================================================
   Tech Logo Grid
   ============================================================================= */
.tech-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.tech-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    background: var(--ind-card);
    border: 1px solid rgba(0,50,73,0.08);
    transition: all 0.3s;
    text-align: center;
}
.tech-logo-card:hover {
    border-color: rgba(0,180,216,0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.tech-logo-card img {
    height: 36px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}
.tech-logo-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ind-text-secondary);
}

/* =============================================================================
   Dashboard Mockup (Ranking Table)
   ============================================================================= */
.dashboard-mockup {
    background: var(--ind-card);
    border-radius: 16px;
    border: 1px solid rgba(0,50,73,0.08);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}
.dashboard-mockup-header {
    background: var(--deep-space, #003249);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-mockup-header h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}
.dashboard-mockup-header .dm-badge {
    background: rgba(0,180,216,0.2);
    color: var(--turquoise, #00b4d8);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}
.dm-table {
    width: 100%;
    border-collapse: collapse;
}
.dm-table th {
    background: rgba(0,50,73,0.04);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ind-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,50,73,0.08);
}
.dm-table td {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--ind-text-secondary);
    border-bottom: 1px solid rgba(0,50,73,0.05);
}
.dm-table tr:hover td { background: rgba(0,180,216,0.03); }
.dm-rank { font-weight: 800; color: var(--turquoise, #00b4d8); font-family: 'Space Mono', monospace; }
.dm-fund-name { font-weight: 600; color: var(--ind-text-primary); }
.dm-positive { color: #10b981; font-weight: 600; }
.dm-negative { color: #ef4444; font-weight: 600; }
.dm-neutral { color: var(--ind-text-muted); font-weight: 600; }
.dm-highlight td { background: rgba(0,180,216,0.06) !important; border-left: 3px solid var(--turquoise, #00b4d8); }
.dm-indicator-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0,50,73,0.02);
}
.dm-indicator {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    background: white;
    border: 1px solid rgba(0,50,73,0.06);
}
.dm-indicator-value {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--turquoise, #00b4d8);
}
.dm-indicator-label {
    font-size: 0.72rem;
    color: var(--ind-text-muted);
    margin-top: 2px;
}

/* =============================================================================
   Solution → Reference Link
   ============================================================================= */
.solution-ref-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    background: rgba(0,180,216,0.04);
    border: 1px solid rgba(0,180,216,0.15);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 2rem;
}
.solution-ref-link:hover {
    background: rgba(0,180,216,0.08);
    border-color: rgba(0,180,216,0.3);
    transform: translateX(4px);
    text-decoration: none;
}
.solution-ref-link .srl-label {
    font-size: 0.8rem;
    color: var(--ind-text-muted);
    font-weight: 600;
}
.solution-ref-link .srl-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--turquoise, #00b4d8);
}
.solution-ref-link .srl-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--turquoise, #00b4d8);
}

/* Hero badge for product pages (dark translucent) */
.hero-badge-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Hero tag pills for product/reference pages */
.ref-hero-tag,
.hero-tag-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
