/* Основной контейнер */
  .npkzna-about-wrapper {
    --zn-blue: var(--ast-global-color-1, #43519f);
    --zn-orange: var(--ast-global-color-0, #e8402b);
    max-width: 100%;
    margin: 20px 0 40px 0;
    font-family: inherit;
    color: #334155;
  }

  /* Герой-блок */
  .npkzna-about-hero {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  }
  .npkzna-about-hero h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--zn-blue);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .npkzna-about-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Блок ключевых цифр */
  .npkzna-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .npkzna-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--zn-orange);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .npkzna-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(67, 81, 159, 0.1);
  }
  .npkzna-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--zn-blue);
    margin-bottom: 8px;
    line-height: 1;
  }
  .npkzna-stat-label {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
  }

  /* Общие заголовки секций */
  .npkzna-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--zn-blue);
    margin-bottom: 24px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--zn-orange);
    display: inline-block;
    width: 100%;
  }

  /* Направления деятельности */
  .npkzna-directions-section { margin-bottom: 48px; }
  .npkzna-directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .npkzna-direction-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 28px;
    transition: all 0.3s ease;
  }
  .npkzna-direction-card:hover {
    border-color: var(--zn-blue);
    box-shadow: 0 8px 20px rgba(67, 81, 159, 0.08);
  }
  .npkzna-direction-icon {
    width: 56px;
    height: 56px;
    background: rgba(67, 81, 159, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--zn-blue);
  }
  .npkzna-direction-icon svg { width: 28px; height: 28px; }
  .npkzna-direction-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
  }
  .npkzna-direction-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
  }

  /* Преимущества */
  .npkzna-advantages-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 48px;
  }
  .npkzna-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .npkzna-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .npkzna-advantage-icon {
    width: 40px;
    height: 40px;
    background: var(--zn-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
  }
  .npkzna-advantage-icon svg { width: 20px; height: 20px; }
  .npkzna-advantage-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
  }
  .npkzna-advantage-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }

  /* ==========================================
     НОВЫЙ БЛОК: НАША КОМАНДА
     ========================================== */
  .npkzna-team-section {
    margin-bottom: 48px;
    text-align: center;
  }
  .npkzna-team-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #334155;
    max-width: 850px;
    margin: 0 auto 32px auto;
    padding: 24px;
    background: #ffffff;
    border-left: 4px solid var(--zn-orange);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: left;
  }
  .npkzna-team-intro strong {
    color: var(--zn-blue);
  }
  .npkzna-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  .npkzna-team-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .npkzna-team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 81, 159, 0.08);
    background: #ffffff;
  }
  .npkzna-team-icon {
    width: 48px;
    height: 48px;
    background: rgba(67, 81, 159, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: var(--zn-blue);
  }
  .npkzna-team-icon svg { width: 24px; height: 24px; }
  .npkzna-team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
  }
  .npkzna-team-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }

  /* Миссия компании */
  .npkzna-mission-section {
    background: linear-gradient(135deg, var(--zn-blue) 0%, #2d3a7a 100%);
    border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 48px;
    text-align: center;
    color: #ffffff;
  }
  .npkzna-mission-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color:var(--ast-global-color-4);
  }
  .npkzna-mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
  }

  /* Юридическая информация */
  .npkzna-legal-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
  }
  .npkzna-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .npkzna-legal-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zn-blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .npkzna-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .npkzna-legal-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
  }
  .npkzna-legal-list li:last-child { border-bottom: none; }
  .npkzna-legal-label {
    color: #64748b;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 16px;
  }
  .npkzna-legal-value {
    color: #1e293b;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
  }

  /* Стать партнером */
  .npkzna-partner-section {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border: 2px solid var(--zn-orange);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 48px;
  }
  .npkzna-partner-section h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--zn-orange);
    margin-bottom: 16px;
  }
  .npkzna-partner-section > p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
  }
  .npkzna-partner-contacts {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .npkzna-partner-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
  }
  .npkzna-partner-contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--zn-orange);
  }
  .npkzna-partner-contact-item a {
    color: var(--zn-blue);
    text-decoration: none;
    transition: color 0.2s;
  }
  .npkzna-partner-contact-item a:hover { color: var(--zn-orange); }

  /* Кнопки CTA */
  .npkzna-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .npkzna-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
  }
  .npkzna-btn-primary {
    background: var(--zn-orange);
    color: #ffffff !important;
  }
  .npkzna-btn-primary:hover {
    background: #d13624;
    transform: translateY(-2px);
  }
  .npkzna-btn-secondary {
    background: var(--zn-blue);
    color: #ffffff !important;
  }
  .npkzna-btn-secondary:hover {
    background: #2d3a7a;
    transform: translateY(-2px);
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .npkzna-about-hero h2 { font-size: 1.6rem; }
    .npkzna-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .npkzna-stat-number { font-size: 2rem; }
    .npkzna-directions-grid { grid-template-columns: 1fr; }
    .npkzna-advantages-grid { grid-template-columns: 1fr; }
    .npkzna-team-grid { grid-template-columns: 1fr; }
    .npkzna-legal-grid { grid-template-columns: 1fr; gap: 24px; }
    .npkzna-partner-contacts { flex-direction: column; gap: 16px; align-items: center; }
    .npkzna-cta-buttons { flex-direction: column; }
    .npkzna-btn { justify-content: center; }
  }