/* =============================================================================
   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 ===================== */
.ad-section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--ind-bg);
  border-top: 1px solid rgba(0,50,73,0.08);
}

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

.ad-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); }

.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: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ind-text-primary);
}

.item-text p {
  font-size: 1rem;
  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.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  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.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ind-text-primary);
}

.value-card p {
  font-size: 1rem;
  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: 1.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 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); }

/* ===================== 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.1rem;
  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: 1rem;
  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: 1.05rem;
  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;
}

/* ===================== 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 > .ad-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; }
}

@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; }
}
