/* ==========================================================================
   INDUSTRIES PAGE STYLESHEET
   Official Corporate Brand Color System:
   Primary:
     --xsol-deep-blue:      #005B8F
     --xsol-water-blue:     #007FBA
     --xsol-sky-blue:       #00AEEF
     --xsol-light-sky-blue: #66CCF2
     --xsol-airy-blue:      #B3E6FA
   Neutral:
     --xsol-navy:           #00233D
     --xsol-dark-gray:      #333F48
     --xsol-medium-gray:    #7A868F
     --xsol-light-gray:     #E6EBEF
     --xsol-white:          #FFFFFF
   Supporting:
     --xsol-ivory:          #F7F3E8
     --xsol-pastel-bg:      #DCE8EF
   ========================================================================== */

:root {
  --xsol-deep-blue: #005B8F;
  --xsol-water-blue: #007FBA;
  --xsol-sky-blue: #00AEEF;
  --xsol-light-sky-blue: #66CCF2;
  --xsol-airy-blue: #B3E6FA;

  --xsol-navy: #00233D;
  --xsol-dark-gray: #333F48;
  --xsol-medium-gray: #7A868F;
  --xsol-light-gray: #E6EBEF;
  --xsol-white: #FFFFFF;

  --xsol-ivory: #F7F3E8;
  --xsol-pastel-bg: #DCE8EF;
}

.industries-page {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--xsol-dark-gray);
  overflow-x: hidden;
  background-color: var(--xsol-white);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ind-hero-section {
  position: relative;
  width: 100%;
  min-height: 590px;
  background-color: var(--xsol-navy);
  background-image: url('/static/img/industries/industries_hero_bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 95px 0 80px 0;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .ind-hero-section {
    min-height: 620px;
    padding: 105px 0 90px 0;
  }
}

/* Dark Left-side overlay ensuring clear contrast for text */
.ind-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 35, 61, 0.97) 0%,
    rgba(0, 35, 61, 0.90) 45%,
    rgba(0, 35, 61, 0.45) 72%,
    rgba(0, 35, 61, 0.12) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .ind-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 35, 61, 0.97) 0%,
      rgba(0, 35, 61, 0.92) 100%
    );
  }
  .ind-hero-section {
    padding: 65px 0 50px 0;
    min-height: auto;
  }
}

.ind-hero-container {
  position: relative;
  z-index: 2;
}

.ind-hero-content {
  max-width: 680px;
}

/* Eyebrow tag */
.ind-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--xsol-sky-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(0, 174, 239, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
}

.ind-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--xsol-sky-blue);
  box-shadow: 0 0 10px var(--xsol-sky-blue);
}

/* Main Headline */
.ind-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--xsol-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .ind-hero-title {
    font-size: 2.15rem;
  }
}

.ind-title-accent {
  color: var(--xsol-sky-blue);
  display: inline;
}

/* Subtitle */
.ind-hero-subtitle {
  font-size: 1.05rem;
  color: var(--xsol-pastel-bg);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

/* CTA Row */
.ind-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.ind-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--xsol-water-blue) 0%, var(--xsol-sky-blue) 100%);
  color: var(--xsol-white) !important;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-btn-primary:hover {
  background: linear-gradient(135deg, var(--xsol-deep-blue) 0%, var(--xsol-water-blue) 100%);
  color: var(--xsol-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 127, 186, 0.45);
}

.ind-btn-primary i {
  font-size: 0.88rem;
  transition: transform 0.25s ease;
}

.ind-btn-primary:hover i {
  transform: translateX(4px);
}

.ind-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--xsol-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.ind-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--xsol-sky-blue);
  color: var(--xsol-white) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   2. TRUST & IMPACT STRIP (Beneath Hero)
   ========================================================================== */
.ind-trust-strip {
  background-color: var(--xsol-white);
  border-bottom: 1px solid var(--xsol-light-gray);
  padding: 24px 0;
  box-shadow: 0 4px 16px rgba(0, 35, 61, 0.04);
}

.ind-trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ind-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ind-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--xsol-pastel-bg);
  color: var(--xsol-deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ind-trust-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--xsol-navy);
  line-height: 1.35;
}

.ind-trust-label small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--xsol-medium-gray);
}

.ind-trust-divider {
  width: 1px;
  height: 38px;
  background: var(--xsol-light-gray);
}

@media (max-width: 991px) {
  .ind-trust-divider {
    display: none;
  }
  .ind-trust-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 575px) {
  .ind-trust-flex {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   3. INDUSTRY SEGMENTS SECTION STYLES
   ========================================================================== */
.ind-section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--xsol-deep-blue);
  background: var(--xsol-pastel-bg);
  border: 1px solid rgba(0, 91, 143, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.ind-section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--xsol-navy);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.ind-section-subtitle {
  font-size: 1.05rem;
  color: var(--xsol-dark-gray);
  max-width: 720px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.ind-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 40px auto;
}

.ind-underline .b {
  width: 48px;
  height: 3px;
  background: var(--xsol-deep-blue);
  border-radius: 2px;
}

.ind-underline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--xsol-sky-blue);
}

.ind-underline .g {
  width: 24px;
  height: 3px;
  background: var(--xsol-water-blue);
  border-radius: 2px;
}

/* ==========================================================================
   4. STRATEGIC VALUE PILLARS
   ========================================================================== */
.ind-value-section {
  padding: 85px 0;
  background-color: #fafbfc;
  border-top: 1px solid var(--xsol-light-gray);
  border-bottom: 1px solid var(--xsol-light-gray);
}

.ind-value-card {
  background: var(--xsol-white);
  border: 1px solid var(--xsol-light-gray);
  border-radius: 14px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

.ind-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.ind-value-card:hover {
  transform: translateY(-6px);
  border-color: var(--xsol-water-blue);
  box-shadow: 0 16px 36px rgba(0, 35, 61, 0.08);
}

.ind-value-card:hover::before {
  background: linear-gradient(90deg, var(--xsol-deep-blue), var(--xsol-sky-blue));
}

.ind-value-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--xsol-pastel-bg);
  color: var(--xsol-deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ind-value-card:hover .ind-value-icon-box {
  background: linear-gradient(135deg, var(--xsol-deep-blue), var(--xsol-water-blue));
  color: var(--xsol-white);
  transform: scale(1.05);
}

.ind-value-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--xsol-navy);
  margin-bottom: 10px;
}

.ind-value-desc {
  font-size: 0.92rem;
  color: var(--xsol-dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   5. UNIQUE VISUAL SECTION: INTERACTIVE SECTOR SHOWCASE WITH IMAGERY
   ========================================================================== */
.ind-interactive-section {
  padding: 95px 0 90px 0;
  background: var(--xsol-white);
}

/* Sector Tabs Navigation */
.ind-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.ind-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--xsol-white);
  color: var(--xsol-navy);
  border: 1px solid var(--xsol-light-gray);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 35, 61, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-tab-btn i {
  color: var(--xsol-water-blue);
  font-size: 0.98rem;
  transition: color 0.25s ease;
}

.ind-tab-btn:hover {
  border-color: var(--xsol-water-blue);
  color: var(--xsol-deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 35, 61, 0.08);
}

.ind-tab-btn.active {
  background: linear-gradient(135deg, var(--xsol-deep-blue) 0%, var(--xsol-water-blue) 100%);
  color: var(--xsol-white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 91, 143, 0.32);
}

.ind-tab-btn.active i {
  color: var(--xsol-white);
}

/* Sector Showcase Box */
.ind-showcase-panel {
  background: #fdfefe;
  border: 1px solid var(--xsol-light-gray);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(0, 35, 61, 0.06);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ind-showcase-panel {
    padding: 24px;
  }
}

.ind-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.ind-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--xsol-pastel-bg);
  color: var(--xsol-deep-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.ind-showcase-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--xsol-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .ind-showcase-title {
    font-size: 1.6rem;
  }
}

.ind-showcase-desc {
  font-size: 1rem;
  color: var(--xsol-dark-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Capabilities list */
.ind-showcase-caps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.ind-showcase-caps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--xsol-navy);
  margin-bottom: 12px;
  line-height: 1.45;
}

.ind-showcase-caps li i {
  color: var(--xsol-sky-blue);
  background: rgba(0, 174, 239, 0.12);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Compliance chips */
.ind-showcase-compliance {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ind-compliance-chip {
  font-size: 0.76rem;
  font-weight: 700;
  background: var(--xsol-white);
  border: 1px solid var(--xsol-light-gray);
  color: var(--xsol-deep-blue);
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ind-compliance-chip i {
  color: var(--xsol-water-blue);
  font-size: 0.72rem;
}

/* Right Column: Visual Frame with Glass Badges */
.ind-showcase-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 35, 61, 0.14);
}

.ind-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ind-showcase-panel:hover .ind-showcase-img {
  transform: scale(1.04);
}

/* Image overlay */
.ind-showcase-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 35, 61, 0.2) 0%,
    rgba(0, 35, 61, 0.65) 100%
  );
  pointer-events: none;
}

/* Floating Glassmorphism Badges */
.ind-glass-badge {
  position: absolute;
  background: rgba(0, 35, 61, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  color: var(--xsol-white);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 35, 61, 0.35);
  z-index: 2;
}

.ind-glass-badge-top {
  top: 20px;
  left: 20px;
}

.ind-glass-badge-bottom {
  bottom: 20px;
  right: 20px;
}

.ind-glass-badge i {
  font-size: 1.25rem;
  color: var(--xsol-sky-blue);
}

.ind-glass-badge strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--xsol-white);
  line-height: 1.2;
}

.ind-glass-badge small {
  font-size: 0.74rem;
  color: var(--xsol-pastel-bg);
}

/* ==========================================================================
   6. UNIQUE VISUAL SECTION: INTEGRATED ARCHITECTURE & ECOSYSTEM ARTWORK
   ========================================================================== */
.ind-architecture-section {
  padding: 95px 0;
  background: #f8fafc;
  border-top: 1px solid var(--xsol-light-gray);
  border-bottom: 1px solid var(--xsol-light-gray);
}

.ind-arch-visual-box {
  background: var(--xsol-navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 35, 61, 0.16);
  border: 1px solid rgba(0, 174, 239, 0.25);
  margin-bottom: 45px;
  position: relative;
}

.ind-arch-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ind-arch-visual-box:hover .ind-arch-img {
  transform: scale(1.02);
}

.ind-arch-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 35, 61, 0.95) 85%);
  padding: 30px 30px 20px 30px;
  color: var(--xsol-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ind-arch-caption-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--xsol-white);
  margin-bottom: 4px;
}

.ind-arch-caption-sub {
  font-size: 0.86rem;
  color: var(--xsol-pastel-bg);
  margin: 0;
}

.ind-arch-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 239, 0.2);
  border: 1px solid var(--xsol-sky-blue);
  color: var(--xsol-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.ind-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

/* 4 Architecture Highlight Cards */
.ind-arch-card {
  background: var(--xsol-white);
  border: 1px solid var(--xsol-light-gray);
  border-radius: 14px;
  padding: 26px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.ind-arch-card:hover {
  transform: translateY(-5px);
  border-color: var(--xsol-water-blue);
  box-shadow: 0 14px 30px rgba(0, 35, 61, 0.08);
}

.ind-arch-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--xsol-pastel-bg);
  color: var(--xsol-deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ind-arch-card:hover .ind-arch-card-icon {
  background: linear-gradient(135deg, var(--xsol-deep-blue), var(--xsol-water-blue));
  color: var(--xsol-white);
}

.ind-arch-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--xsol-navy);
  margin-bottom: 8px;
}

.ind-arch-card-desc {
  font-size: 0.88rem;
  color: var(--xsol-dark-gray);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   7. UNIQUE VISUAL SECTION: QUANTIFIABLE IMPACT & PERFORMANCE BENCHMARKS
   ========================================================================== */
.ind-impact-section {
  padding: 95px 0;
  background: var(--xsol-white);
}

.ind-benchmark-card {
  background: #fdfefe;
  border: 1px solid var(--xsol-light-gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ind-benchmark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--xsol-deep-blue), var(--xsol-sky-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ind-benchmark-card:hover {
  transform: translateY(-6px);
  border-color: var(--xsol-water-blue);
  box-shadow: 0 16px 36px rgba(0, 35, 61, 0.08);
}

.ind-benchmark-card:hover::before {
  opacity: 1;
}

.ind-benchmark-num {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--xsol-deep-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.ind-benchmark-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--xsol-navy);
  margin-bottom: 6px;
}

.ind-benchmark-sub {
  font-size: 0.86rem;
  color: var(--xsol-medium-gray);
  line-height: 1.5;
  margin: 0;
}

/* 4-Step Visual Roadmap Strip */
.ind-timeline-wrapper {
  margin-top: 60px;
  background: #f8fafc;
  border: 1px solid var(--xsol-light-gray);
  border-radius: 16px;
  padding: 36px 30px;
}

.ind-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 991px) {
  .ind-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ind-timeline-grid {
    grid-template-columns: 1fr;
  }
}

.ind-timeline-item {
  position: relative;
}

.ind-timeline-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--xsol-sky-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.ind-timeline-step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--xsol-deep-blue);
  background: var(--xsol-pastel-bg);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.ind-timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--xsol-navy);
  margin-bottom: 6px;
}

.ind-timeline-desc {
  font-size: 0.86rem;
  color: var(--xsol-dark-gray);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   8. FAQS SECTION
   ========================================================================== */
.ind-faq-section {
  padding: 90px 0;
  background: #fafbfc;
  border-top: 1px solid var(--xsol-light-gray);
}

.ind-faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.ind-faq-item {
  border: 1px solid var(--xsol-light-gray);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: var(--xsol-white);
}

.ind-faq-item.open {
  border-color: var(--xsol-water-blue);
  box-shadow: 0 6px 20px rgba(0, 35, 61, 0.06);
}

.ind-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--xsol-navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

.ind-faq-question:hover {
  color: var(--xsol-deep-blue);
}

.ind-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--xsol-pastel-bg);
  color: var(--xsol-deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ind-faq-item.open .ind-faq-icon {
  transform: rotate(180deg);
  background: var(--xsol-deep-blue);
  color: var(--xsol-white);
}

.ind-faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.94rem;
  color: var(--xsol-dark-gray);
  line-height: 1.65;
  border-top: 1px solid var(--xsol-light-gray);
  margin-top: -4px;
  padding-top: 16px;
}
