/* ===================================================
   TRULENS — Industry Pages Stylesheet
   Matching SurePass industry page structure
=================================================== */

/* ---- Industry Hero ---- */
.ind-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a2a4a 60%, #252f64 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ind-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(62,87,218,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .ind-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Badge */
.ind-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(62,87,218,0.2);
  border: 1px solid rgba(62,87,218,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Hero Heading */
.ind-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.ind-h1-accent {
  background: linear-gradient(90deg, #6b87f5 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.ind-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Right Visual */
.ind-hero-right { display: flex; align-items: center; justify-content: center; }
.ind-hero-visual { width: 100%; }
.ind-hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.ind-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.ind-stat-card.accent {
  background: rgba(62,87,218,0.3);
  border-color: rgba(62,87,218,0.5);
}
.ind-stat-v {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.ind-stat-l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ind-hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.ind-trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

/* ---- Feature Cards Section ---- */
.ind-features {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ind-sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.ind-sec-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.ind-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .ind-feat-grid { grid-template-columns: 1fr; } }
.ind-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ind-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(62,87,218,0.12);
}
.ind-feat-icon { margin-bottom: 16px; }
.ind-feat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.ind-feat-desc { font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

/* ---- Solution Tabs Section (dark) ---- */
.ind-tabs-section {
  background: linear-gradient(56deg, #0d0f2a 0%, #0d0f2c 54%, #252f64 100%);
  padding: 80px 0;
}
.ind-tabs-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.ind-tabs-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.ind-tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.ind-tab-btn {
  background: rgba(51,59,82,0.45);
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  color: #959AAD;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.ind-tab-btn:hover { color: var(--white); background: rgba(62,87,218,0.3); }
.ind-tab-btn.active { background: var(--white); color: #0D0F2B; }
.ind-tabs-hr {
  border: none;
  border-top: 1px solid rgba(149,154,173,0.3);
  margin: 24px 0 36px;
}
.ind-tab-content { display: none; }
.ind-tab-content.active { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
@media (max-width: 900px) { .ind-tab-content.active { grid-template-columns: 1fr; } }

.ind-tab-left { display: flex; flex-direction: column; }
.ind-tab-cat-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ind-tab-cat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.ind-tab-left .btn-cobalt { margin-bottom: 12px; width: 100%; justify-content: center; }
.ind-tab-left .btn-outline-white { width: 100%; justify-content: center; }

.ind-tab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .ind-tab-cards { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1100px) { .ind-tab-cards { grid-template-columns: 1fr 1fr; } }

.ind-api-card {
  background: rgba(51,59,82,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(10px);
}
.ind-api-card:hover {
  border-color: rgba(62,87,218,0.5);
  background: rgba(62,87,218,0.15);
}
.ind-api-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ind-api-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.ind-api-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ---- Why Trulens Section ---- */
.ind-why {
  padding: 80px 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--border);
}
.ind-why-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .ind-why-inner { grid-template-columns: 1fr; gap: 40px; } }
.ind-why-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 16px 0 20px;
}
.ind-why-desc { font-size: 0.9rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 32px; }
.ind-why-points { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.ind-why-pt { display: flex; gap: 16px; align-items: flex-start; }
.ind-why-pt-icon {
  width: 44px; height: 44px;
  background: var(--cobalt-xlight);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ind-why-pt-title { font-weight: 600; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.ind-why-pt-desc { font-size: 0.85rem; color: var(--slate-500); line-height: 1.6; }

/* ---- Industry-specific hero tints ---- */
.ind-hero--staffing { background: linear-gradient(135deg, #0a1628 0%, #122040 60%, #1e3060 100%); }
.ind-hero--trading  { background: linear-gradient(135deg, #0d1b2a 0%, #1a2d20 60%, #1e4030 100%); }
.ind-hero--banks    { background: linear-gradient(135deg, #0a1020 0%, #0d1b2a 60%, #1a2550 100%); }
.ind-hero--telecom  { background: linear-gradient(135deg, #100820 0%, #1a1035 60%, #2a1855 100%); }
.ind-hero--nbfc     { background: linear-gradient(135deg, #0d1b2a 0%, #1c2540 60%, #283560 100%); }
.ind-hero--ecommerce{ background: linear-gradient(135deg, #0a1520 0%, #101e30 60%, #1a2d45 100%); }
.ind-hero--insurance{ background: linear-gradient(135deg, #0d1020 0%, #141830 60%, #202850 100%); }

/* ---- Solution-specific hero tints ---- */
.ind-hero--business  { background: linear-gradient(135deg, #0a1420 0%, #0f2238 60%, #183e60 100%); }
.ind-hero--identity  { background: linear-gradient(135deg, #081024 0%, #101c3d 60%, #1c326b 100%); }
.ind-hero--income    { background: linear-gradient(135deg, #05141e 0%, #0a2536 60%, #12405c 100%); }
.ind-hero--vkyc      { background: linear-gradient(135deg, #120820 0%, #1c1032 60%, #321c5b 100%); }
.ind-hero--superflow { background: linear-gradient(135deg, #1e0a24 0%, #2e1038 60%, #521c6b 100%); }
.ind-hero--superfin  { background: linear-gradient(135deg, #051b18 0%, #0a2e28 60%, #125247 100%); }
.ind-hero--deepid    { background: linear-gradient(135deg, #200810 0%, #32101b 60%, #5b1c32 100%); }
.ind-hero--suresign  { background: linear-gradient(135deg, #081b20 0%, #102e38 60%, #1c5263 100%); }
.ind-hero--ckyc      { background: linear-gradient(135deg, #0a1020 0%, #0f1c32 60%, #1a2f5b 100%); }
.ind-hero--sureparser { background: linear-gradient(135deg, #08121a 0%, #102030 60%, #1c3854 100%); }
.ind-hero--playground { background: linear-gradient(135deg, #100820 0%, #1c1032 60%, #3e185c 100%); }

/* ---- Active links in mega menu ---- */
.mega-icon-link.active-industry .mii-name { color: var(--cobalt); }
.mega-icon-link.active-solution .mii-name { color: var(--cobalt); }
.mega-icon-link.active-resource .mii-name { color: var(--cobalt); }
.mega-icon-link.active-company .mii-name { color: var(--cobalt); }

/* ---- Breadcrumb ---- */
.ind-breadcrumb {
  padding: 12px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.ind-breadcrumb a { color: rgba(255,255,255,0.5); }
.ind-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.ind-breadcrumb span { margin: 0 6px; }
