/*
 * differentiator.css
 * Flat, no-JS-dependency styling for the "Differentiator" component
 * (them-vs-us comparison rows + diff-point list) used on index.html.
 *
 * Adapted from css/landing-extras.css (built for index2.html): removes the
 * radial-gradient glow background so every fill here is a flat solid color
 * (no gradients, per site rule), and drops the GSAP/ScrollTrigger
 * scroll-reveal classes (.io-fade/.io-slide-up/.io-stagger) since index.html
 * does not load GSAP or landing-extras.js. Content renders at full opacity
 * with no JS dependency.
 *
 * Color tokens are the same custom properties defined in css/main-LTR.css
 * :root. No new brand palette introduced. Linked after css/main-LTR.css.
 */

.them-vs-us-section {
  background: var(--clr-dark-blue);
  position: relative;
}

.tvu-heading .pre-title {
  color: var(--clr-main);
}

.tvu-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.tvu-cell {
  padding: 1.5rem 1.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tvu-them {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(var(--clr-white-rgb), 0.65);
}

.tvu-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: transparent;
  font-size: 1.1rem;
  color: var(--clr-main);
  font-weight: 700;
}

.tvu-us {
  background: rgba(var(--clr-main-rgb), 0.09);
  border: 1px solid rgba(var(--clr-main-rgb), 0.28);
  color: var(--clr-white);
}

.tvu-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tvu-them .tvu-label {
  color: rgba(var(--clr-white-rgb), 0.38);
}

.tvu-us .tvu-label {
  color: var(--clr-main);
}

.tvu-cell strong {
  color: var(--clr-white);
  font-weight: 700;
}

@media (max-width: 640px) {
  .tvu-row {
    grid-template-columns: 1fr;
  }
  .tvu-divider {
    padding: 0.5rem 1rem;
  }
}

/* Differentiator numbered points */
.diff-points {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.diff-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}

.diff-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-main);
  color: var(--clr-white);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.diff-num i {
  font-size: 1rem;
  color: var(--clr-white);
}

.diff-point .dp-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0 0 0.35rem;
}

.diff-point .dp-content p {
  font-size: 0.9rem;
  color: rgba(var(--clr-white-rgb), 0.7);
  margin: 0;
  line-height: 1.6;
}
