/* ==============================================
   INDUSTRIES PAGE STYLES (ind- prefix)
   Does NOT affect any other page.
   Brand: #6470DC purple, #4ad39c green, #09101f dark
   ============================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* ── Global Overrides (style.css uses !important on a,p,*) ── */
.ind-hero,
.ind-hero *,
.ind-section,
.ind-section *,
.ind-how,
.ind-how *,
.ind-cta,
.ind-cta * {
  font-family: "DM Sans", sans-serif !important;
}
.ind-hero a,
.ind-cta a {
  color: inherit;
}
.ind-btn-green,
.ind-btn-green:hover,
.ind-btn-green:focus {
  color: #ffffff !important;
}
.ind-btn-ghost,
.ind-btn-ghost:hover,
.ind-btn-ghost:focus {
  color: rgba(255,255,255,0.75) !important;
}
.ind-btn-ghost:hover {
  color: #ffffff !important;
}
.ind-card-btn,
.ind-card-btn:hover {
  color: #6470DC !important;
}
.ind-card-btn:hover {
  color: #ffffff !important;
}
.ind-hero-sub {
  color: rgba(255,255,255,0.55) !important;
}
.ind-cta .ind-subtitle {
  color: rgba(255,255,255,0.5) !important;
}

/* ── Hero Banner ──────────────────────────────── */
.ind-hero {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  text-align: center;
}
.ind-hero::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,112,220,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.ind-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,211,156,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.ind-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,112,220,0.15);
  border: 1px solid rgba(100,112,220,0.3);
  color: rgba(255,255,255,0.7);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.ind-hero-badge i {
  color: #4ad39c;
  font-size: 16px;
}
.ind-hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.ind-hero h1 .ind-gradient-text {
  background: linear-gradient(135deg, #6470DC, #4ad39c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ind-hero-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.ind-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ind-hero-stat {
  text-align: center;
}
.ind-hero-stat-num {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.ind-hero-stat-num span {
  color: #4ad39c;
}
.ind-hero-stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 4px;
}

/* ── Section Common ───────────────────────────── */
.ind-section {
  padding: 80px 0;
}
.ind-section-light {
  background: #f8f9ff;
}
.ind-tag {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6470DC;
  margin-bottom: 14px;
}
.ind-title {
  font-family: "DM Sans", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #09101f;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ind-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: #6e727f;
  line-height: 1.7;
  max-width: 650px;
  font-weight: 400;
}

/* ── Industry Cards Grid ──────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.ind-card {
  background: #ffffff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 36px 30px 32px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ind-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6470DC, #4ad39c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(100,112,220,0.14);
  border-color: transparent;
}
.ind-card:hover::before {
  transform: scaleX(1);
}
.ind-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(100,112,220,0.1), rgba(74,211,156,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ind-card:hover .ind-card-icon {
  background: linear-gradient(135deg, rgba(100,112,220,0.18), rgba(74,211,156,0.12));
  transform: scale(1.05);
}
.ind-card-icon svg {
  width: 34px;
  height: 34px;
}
.ind-card-icon i {
  font-size: 28px;
  color: #6470DC;
}
.ind-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ind-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}
.ind-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6e727f;
  line-height: 1.5;
}
.ind-card-features li i {
  color: #4ad39c;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ind-card-summary {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6e727f;
  line-height: 1.6;
  margin-bottom: 22px;
  padding-top: 16px;
  border-top: 1px solid #eef0f6;
}
.ind-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #6470DC;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(100,112,220,0.25);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-top: auto;
  align-self: flex-start;
}
.ind-card-btn:hover {
  background: #6470DC;
  color: #ffffff;
  border-color: #6470DC;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(100,112,220,0.25);
}
.ind-card-btn i {
  font-size: 16px;
  transition: transform 0.2s ease;
}
.ind-card-btn:hover i {
  transform: translateX(3px);
}

/* ── How It Works Strip ───────────────────────── */
.ind-how {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid #eef0f6;
  border-bottom: 1px solid #eef0f6;
}
.ind-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.ind-how-step {
  text-align: center;
  position: relative;
}
.ind-how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100,112,220,0.1), rgba(74,211,156,0.08));
  color: #6470DC;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.ind-how-step h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #09101f;
  margin-bottom: 8px;
}
.ind-how-step p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6e727f;
  line-height: 1.6;
  margin: 0;
}

/* ── Final CTA ────────────────────────────────── */
.ind-cta {
  background: linear-gradient(165deg, #09101f 0%, #0d1529 50%, #09101f 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ind-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,112,220,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.ind-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74,211,156,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.ind-cta .ind-title {
  color: #ffffff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ind-cta .ind-subtitle {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}
.ind-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ind-btn-green {
  display: inline-block;
  padding: 16px 40px;
  background: #4ad39c;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.ind-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,211,156,0.35);
  color: #ffffff;
  text-decoration: none;
}
.ind-btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.ind-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  text-decoration: none;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
  .ind-hero {
    padding: 100px 0 60px;
  }
  .ind-hero h1 {
    font-size: 36px;
  }
  .ind-hero-stats {
    gap: 30px;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ind-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .ind-hero h1 {
    font-size: 28px;
  }
  .ind-hero-sub {
    font-size: 16px;
  }
  .ind-hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .ind-how-grid {
    grid-template-columns: 1fr;
  }
  .ind-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ind-cta-btns a {
    text-align: center;
  }
  .ind-cta .ind-title {
    font-size: 26px;
  }
}
