/* Защита от горизонтального скролла */
  html, body { overflow-x: hidden; max-width: 100vw; }

  .bg-light {
    background-color: #1a1a2e !important;
    color: var(--text-primary) !important;
  }

  .about-hero {
    background: var(--gradient-hero, var(--gradient-1));
    border-radius: var(--radius-2);
    padding: var(--space-6) var(--space-4);
    margin-bottom: var(--space-5);
  }

  .highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
  }

  .value-card {
    border-left: 4px solid var(--color-accent);
    padding-left: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .section-divider {
    border: none;
    height: 2px;
    background: var(--gradient-1);
    margin: var(--space-5) 0;
    border-radius: var(--radius-1);
  }

  .table {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.1);
  }

  .table thead {
    background: var(--gradient-1);
    border-bottom: 2px solid rgba(255,255,255,0.15);
  }

  .table thead th {
    color: #fff;
    font-weight: 700;
    border-color: rgba(255,255,255,0.15);
  }

  .table tbody tr {
    border-color: rgba(255,255,255,0.08);
  }

  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255,255,255,0.04);
    color: var(--text-primary);
  }

  .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    flex-shrink: 0;
  }

  .team-card .card-body {
    padding: var(--space-4);
  }

  .badge-accent {
    background: var(--gradient-1);
    color: #fff;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-1);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-2);
  }

  .timeline-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: var(--space-4);
  }

  .timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-step h4 {
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: var(--color-accent);
  }

  @media (max-width: 768px) {
    .about-hero { padding: var(--space-4) var(--space-3); }
    .highlight-number { font-size: 1.9rem; }
  }