/* ── Products Hero ───────────────────────────────────────────── */
.products-hero {
  position: relative;
  background: var(--color-bg-dark);
  padding: 130px 0 70px;
  overflow: hidden;
}

.products-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(26,110,245,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,110,245,.08) 0%, transparent 60%);
}

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

.products-hero-content .eyebrow { color: rgba(100,160,255,.9); }
.products-hero-content h1 { color: var(--color-white); margin-bottom: 1rem; }
.products-hero-content p  { color: rgba(255,255,255,.65); font-size: 1.1rem; line-height: 1.7; }

/* ── Product Tab Nav ─────────────────────────────────────────── */
.product-tabs-nav {
  background: var(--color-bg-dark2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 68px;
  z-index: 90;
}

.product-tabs {
  display: flex;
  gap: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs::-webkit-scrollbar { display: none; }

.product-tab {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.product-tab svg { width: 16px; height: 16px; flex-shrink: 0; }

.product-tab:hover { color: rgba(255,255,255,.85); }
.product-tab.active {
  color: var(--color-white);
  border-bottom-color: var(--color-accent);
}

/* ── Product Section Layout ──────────────────────────────────── */
.product-section {
  padding: 5rem 0;
  scroll-margin-top: 124px; /* main nav 68px + product tab bar ~56px */
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

.product-text .eyebrow { margin-bottom: .5rem; }

.product-text h2 {
  margin-bottom: 1.1rem;
}

.section-dark .product-text h2 { color: var(--color-white); }
.section-dark .product-text .eyebrow { color: rgba(100,160,255,.9); }

.product-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.section-dark .product-intro { color: rgba(255,255,255,.6); }

/* Module list */
.product-modules h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}
.section-dark .product-modules h3 { color: rgba(255,255,255,.4); }

.module-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
}

.module-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}

.module-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.module-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(26,110,245,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-top: .1rem;
}
.module-icon svg { width: 18px; height: 18px; }

.section-dark .module-icon { background: rgba(26,110,245,.15); }

.module-list li strong {
  display: block;
  font-size: .93rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .25rem;
}
.section-dark .module-list li strong { color: var(--color-white); }

.module-list li p {
  font-size: .86rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}
.section-dark .module-list li p { color: rgba(255,255,255,.5); }

/* ── Product Sidebar ─────────────────────────────────────────── */
.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 130px;
}

.industries-card,
.benefits-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.industries-card.dark,
.benefits-card.dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}

.industries-card h3,
.benefits-card h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.industries-card.dark h3,
.benefits-card.dark h3 { color: rgba(255,255,255,.4); }

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
}
.industries-list li span {
  display: inline-block;
  background: rgba(26,110,245,.08);
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 600;
  padding: .28rem .75rem;
  border-radius: 20px;
  border: 1px solid rgba(26,110,245,.2);
}
.industries-card.dark .industries-list li span {
  background: rgba(26,110,245,.15);
  border-color: rgba(26,110,245,.3);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.benefits-list li {
  font-size: .86rem;
  color: var(--color-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
.benefits-card.dark .benefits-list li { color: rgba(255,255,255,.55); }

/* ── CTA Strip ───────────────────────────────────────────────── */
.cta-strip {
  background: var(--color-accent);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: .4rem;
}
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1rem; }

.cta-strip .btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  white-space: nowrap;
}
.cta-strip .btn-primary:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .industries-card, .benefits-card { flex: 1; min-width: 220px; }
}

@media (max-width: 640px) {
  .module-list.two-col { grid-template-columns: 1fr; }
  .product-tab { padding: .85rem 1rem; font-size: .82rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
