  /* Основной контейнер */
  .npkzna-warranty-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-warranty-hero {
    text-align: center;
    margin-bottom: 40px;
  }
  .npkzna-warranty-hero h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--zn-blue);
    margin-bottom: 12px;
  }
  .npkzna-warranty-hero p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Сетка основных условий */
  .npkzna-warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }

  .npkzna-warranty-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--zn-blue);
    border-radius: 10px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .npkzna-warranty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(67, 81, 159, 0.1);
  }

  .npkzna-warranty-icon {
    width: 48px;
    height: 48px;
    background: rgba(67, 81, 159, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--zn-blue);
  }
  .npkzna-warranty-icon svg { width: 26px; height: 26px; }

  .npkzna-warranty-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
  }
  .npkzna-warranty-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }
  .npkzna-warranty-card strong { color: var(--zn-blue); }

  /* Блок исключений (Важно!) */
  .npkzna-exclude-section {
    background: #fff7ed; /* Очень светлый оранжевый */
    border: 1px solid #ffedd5;
    border-left: 5px solid var(--zn-orange);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 48px;
  }
  .npkzna-exclude-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9a3412;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .npkzna-exclude-subtitle {
    font-size: 0.95rem;
    color: #7c2d12;
    margin-bottom: 20px;
  }
  .npkzna-exclude-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .npkzna-exclude-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #431407;
    line-height: 1.5;
  }
  .npkzna-exclude-list li svg {
    width: 18px;
    height: 18px;
    color: var(--zn-orange);
    flex-shrink: 0;
    margin-top: 3px;
  }

  /* Алгоритм действий */
  .npkzna-steps-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
  }
  .npkzna-steps-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zn-blue);
    margin-bottom: 32px;
  }
  .npkzna-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
  }
  .npkzna-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
  }
  .npkzna-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--zn-blue);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin: 0 auto 16px auto;
  }
  .npkzna-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
  }
  .npkzna-step p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
  }

  /* CTA Блок */
  .npkzna-warranty-cta {
    background: linear-gradient(135deg, var(--zn-blue) 0%, #2d3a7a 100%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: #ffffff;
  }
  .npkzna-warranty-cta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color:var(--ast-global-color-4);
  }
  .npkzna-warranty-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .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: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .npkzna-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .npkzna-warranty-hero h2 { font-size: 1.6rem; }
    .npkzna-warranty-grid { grid-template-columns: 1fr; }
    .npkzna-steps-grid { grid-template-columns: 1fr; gap: 32px; }
    .npkzna-exclude-list { grid-template-columns: 1fr; }
    .npkzna-cta-buttons { flex-direction: column; }
    .npkzna-btn { justify-content: center; }
  }