:root {
    --primary: #fff;
    --primary-dark: #1E3A8A;
    --secondary: #007de9;
    --text: #ffffff;
    --text-light: #7d8faf;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}

/* Главный заголовок */
#banner h2 {
    color: var(--text) !important;
    font-size: 3.5rem !important;
}

#banner p {
    color: var(--text-light) !important;
}

/* Кнопки */
.button.primary {
    background-color: var(--primary) !important;
    color: var(--primary-dark) !important;
}

.button.primary:hover {
    background-color: var(--primary-dark) !important;
    color: white !important;
}

/* Иконки в фичах */
.icon.major {
    color: var(--primary) !important;
}

/* Заголовки секций */
.spotlight h2,
section h2,
section h3 {
    color: var(--text) !important;
}

/* Ссылки */
a {
    color: var(--primary) !important;
    border: 0;
}

a:hover {
    color: var(--secondary) !important;
}

/* Фон секций */
.spotlight {
    background-color: var(--bg-light) !important;
}

/* Границы карточек */
.features article {
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 30px !important;
}

header.major:after {
    background: var(--primary-dark) !important;
}

#logo {
    position: absolute;
    display: flex;
    align-items: center;
    height: inherit;
    left: 1.25em;
    line-height: inherit;
    margin: 0;
    top: 0;
}

#logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

#logo img {
    max-width: 50px;
    width: 50px;
}

#titleBar .title img {
    max-width: 30px;
    width: 30px;
}

#titleBar .title a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#titleBar .toggle:before {
    background: var(--primary-dark) !important;
}

#banner .content {
    text-align: center;
    padding-bottom: 0;
}

#banner .content .image {
    border-radius: 4px;
    display: block;
    width: 100%;
    margin: 0;
}

.image:before {
    content: none;
}

#banner a {
    position: relative;
    z-index: 1;
}

#banner .content .image img {
    border-radius: 0;
    display: block;
}

.num {
    counter-reset: number;
}

.number::before {
    counter-increment: number;
    content: counter(number);
}

.pvz-aud,
.pvz-aud * {
    box-sizing: border-box;
}

.pvz-aud input,
.pvz-aud textarea,
.pvz-aud select {
    font: inherit;
}

.pvz-aud {
    font-family: var(--t-text-font);
    padding: 80px 24px;
    color: #0F172A;
}

.pvz-aud__container {
    max-width: 1200px;
    margin: 0 auto;
}

.pvz-aud__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.pvz-aud__title {
    font-family: var(--t-headline-font);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin: 0 0 16px;
}

.pvz-aud__subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.55;
    margin: 0;
}

.pvz-aud__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pvz-aud__grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pvz-aud__card {
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #E2E8F0;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}

.pvz-aud__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    opacity: 0;
    transition: opacity .25s ease;
}

.pvz-aud__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.18);
    border-color: #CBD5E1;
}

.pvz-aud__card:hover::before {
    opacity: 1;
}

.pvz-aud__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.pvz-aud__icon-wrap--teal {
    background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
}

.pvz-aud__icon-wrap--indigo {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.pvz-aud__icon {
    width: 32px;
    height: 32px;
    display: block;
}

.pvz-aud__card-title {
    font-family: var(--t-headline-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #0F172A;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.pvz-aud__card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #738aaa;
    margin: 0 0 24px;
}

.pvz-aud__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px dashed #E2E8F0;
    margin-bottom: 20px;
}

.pvz-aud__price-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94A3B8;
}

.pvz-aud__price-value {
    font-family: var(--t-headline-font);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.pvz-aud__price-value span {
    font-size: 15px;
    font-weight: 500;
    color: #64748B;
}

.pvz-aud__tag {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: #6f86a5;
    align-self: flex-start;
}

.pvz-aud__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3B82F6;
    flex-shrink: 0;
}

.pvz-aud__tag strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
    .pvz-aud {
        padding: 64px 20px;
    }

    .pvz-aud__header {
        margin-bottom: 40px;
    }

    .pvz-aud__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #banner h2{
        font-size: 2em!important;
    }
}

@media (max-width: 480px) {
    .pvz-aud {
        padding: 48px 16px;
    }

    .pvz-aud__card {
        padding: 28px 24px;
    }

    .pvz-aud__icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .pvz-aud__icon {
        width: 28px;
        height: 28px;
    }

    .pvz-aud__card-title {
        font-size: 20px;
    }
}


.pvp-footer,
.pvp-footer * { box-sizing: border-box; }
.pvp-footer input,
.pvp-footer textarea,
.pvp-footer select { font: inherit; }

.pvp-footer {
  position: relative;
  width: 100%;
  padding: 80px 28px 40px;
  color: #f3f8f6;
  background: #272833;
  border-top: 1px solid rgba(204, 255, 232, 0.12);
  font-family: var(--t-text-font, Arial, sans-serif);
}

.pvp-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.pvp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.pvp-footer__title {
  margin: 0 0 20px;
  color: #91a49e;
  font-family: var(--t-headline-font, Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pvp-footer__brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #ffffff;
  font-family: var(--t-headline-font, Arial, sans-serif);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.pvp-footer__brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #56d79b;
  color: #081310;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.pvp-footer__description {
  margin: 16px 0 0;
  color: #becbc7;
  font-size: 14px;
  line-height: 1.5;
}

.pvp-footer__compatibility {
  margin: 12px 0 0;
  color: #8fa39d;
  font-size: 13px;
}

.pvp-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pvp-footer__link {
  color: #c5d1cd;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.pvp-footer__link:hover {
  color: #7de9b5;
}

.pvp-footer__details {
  display: grid;
  gap: 12px;
}

.pvp-footer__detail {
  display: grid;
  gap: 2px;
}

.pvp-footer__label {
  color: #748a83;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pvp-footer__value {
  color: #dce6e3;
  font-size: 13px;
}

.pvp-footer__contact-link {
  color: #7de9b5;
  text-decoration: none;
}

.pvp-footer__bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #5b6e68;
}

@media (max-width: 1024px) {
  .pvp-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pvp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pvp-footer__grid {
    grid-template-columns: 1fr;
  }
}