.vsep-faq {
    --vsep-blue: #0e0e48;
    --vsep-blue-light: #28334a;
    --vsep-red: #df0a00;
    --vsep-red-dark: #c50900;
    --vsep-text: #28334a;
    --vsep-gray: #6b7280;
    --vsep-border: #e0e4ea;
    --vsep-light: #f5f7fa;
    --vsep-white: #ffffff;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    color: var(--vsep-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    box-sizing: border-box;
  }

  .vsep-faq *,
  .vsep-faq *::before,
  .vsep-faq *::after {
    box-sizing: border-box;
  }

  .vsep-faq h1,
  .vsep-faq h2,
  .vsep-faq h3,
  .vsep-faq p,
  .vsep-faq ul {
    margin-top: 0;
  }

  .vsep-faq h1,
  .vsep-faq h2,
  .vsep-faq h3 {
    color: var(--vsep-blue);
    font-weight: 800;
  }

  .vsep-faq h1 {
    max-width: 830px;
    margin-bottom: 17px;
    font-size: 40px;
    line-height: 1.1;
  }

  .vsep-faq h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.18;
  }

  .vsep-faq h3 {
    margin-bottom: 9px;
    font-size: 19px;
    line-height: 1.3;
  }

  .vsep-faq p {
    margin-bottom: 14px;
  }

  .vsep-faq p:last-child {
    margin-bottom: 0;
  }

  .vsep-faq-section {
    margin-bottom: 68px;
  }

  .vsep-faq-section:last-child {
    margin-bottom: 0;
  }

  /* Первый экран */

  .vsep-faq-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 52px 38px;
    color: #ffffff;
    background:
      radial-gradient(
        circle at 94% 94%,
        rgba(223, 10, 0, 0.2) 0,
        rgba(223, 10, 0, 0.2) 96px,
        transparent 97px
      ),
      linear-gradient(
        118deg,
        #151554 0%,
        #252a4f 62%,
        #583043 100%
      );
    border-radius: 19px;
  }

  .vsep-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 5px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .vsep-faq-eyebrow::before {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--vsep-red);
    border-radius: 50%;
    content: "";
  }

  .vsep-faq-hero h1 {
    position: relative;
    z-index: 1;
    color: #ffffff;
  }

  .vsep-faq-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.68;
  }

  .vsep-faq-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
  }

  .vsep-faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .vsep-faq-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
  }

  .vsep-faq-btn--red {
    color: #ffffff;
    background: var(--vsep-red);
    border-color: var(--vsep-red);
  }

  .vsep-faq-btn--red:hover {
    color: #ffffff;
    background: var(--vsep-red-dark);
    border-color: var(--vsep-red-dark);
  }

  .vsep-faq-btn--light {
    color: var(--vsep-blue);
    background: #ffffff;
    border-color: #ffffff;
  }

  .vsep-faq-btn--light:hover {
    color: var(--vsep-blue);
    background: #f2f3f6;
    border-color: #f2f3f6;
  }

  /* Быстрые категории */

  .vsep-faq-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 15px;
  }

  .vsep-faq-category {
    display: block;
    min-height: 121px;
    padding: 20px 18px;
    color: var(--vsep-text);
    background: #ffffff;
    border: 1px solid var(--vsep-border);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(14, 14, 72, 0.05);
    text-decoration: none;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vsep-faq-category:hover {
    color: var(--vsep-text);
    border-color: rgba(14, 14, 72, 0.24);
    box-shadow: 0 13px 30px rgba(14, 14, 72, 0.08);
    text-decoration: none;
    transform: translateY(-2px);
  }

  .vsep-faq-category strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vsep-blue);
    font-size: 18px;
    line-height: 1.2;
  }

  .vsep-faq-category span {
    display: block;
    color: var(--vsep-gray);
    font-size: 13px;
    line-height: 1.48;
  }

  /* Заголовки секций */

  .vsep-faq-heading {
    display: grid;
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
    align-items: end;
    gap: 55px;
    margin-bottom: 24px;
  }

  .vsep-faq-heading h2 {
    margin-bottom: 0;
  }

  .vsep-faq-heading p {
    margin-bottom: 0;
    color: var(--vsep-gray);
    font-size: 15px;
  }

  /* Аккордеон */

  .vsep-faq-list {
    display: grid;
    gap: 11px;
  }

  .vsep-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--vsep-border);
    border-radius: 11px;
    box-shadow: 0 6px 20px rgba(14, 14, 72, 0.035);
  }

  .vsep-faq-item[open] {
    border-color: rgba(14, 14, 72, 0.24);
    box-shadow: 0 8px 24px rgba(14, 14, 72, 0.06);
  }

  .vsep-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 20px 60px 20px 22px;
    color: var(--vsep-blue);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
  }

  .vsep-faq-question::-webkit-details-marker {
    display: none;
  }

  .vsep-faq-question::before,
  .vsep-faq-question::after {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 2px;
    background: var(--vsep-red);
    border-radius: 2px;
    content: "";
    transform: translateY(-50%);
    transition: transform 0.2s ease;
  }

  .vsep-faq-question::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .vsep-faq-item[open] .vsep-faq-question::after {
    transform: translateY(-50%) rotate(0deg);
  }

  .vsep-faq-answer {
    padding: 0 22px 22px;
    color: var(--vsep-text);
    font-size: 15px;
    line-height: 1.68;
  }

  .vsep-faq-answer p {
    color: var(--vsep-text);
  }

  .vsep-faq-answer a {
    color: var(--vsep-blue);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(14, 14, 72, 0.3);
    text-underline-offset: 3px;
  }

  .vsep-faq-answer a:hover {
    color: var(--vsep-red);
    text-decoration-color: var(--vsep-red);
  }

  .vsep-faq-answer ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
  }

  .vsep-faq-answer li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 22px;
    color: var(--vsep-text);
  }

  .vsep-faq-answer li:last-child {
    margin-bottom: 0;
  }

  .vsep-faq-answer li::before {
    position: absolute;
    top: 9px;
    left: 2px;
    width: 7px;
    height: 7px;
    background: var(--vsep-red);
    border-radius: 50%;
    content: "";
  }

  /* Блок подбора */

  .vsep-faq-selection {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 18px;
  }

  .vsep-faq-selection-main,
  .vsep-faq-selection-side {
    padding: 32px 30px;
    border-radius: 14px;
  }

  .vsep-faq-selection-main {
    background: var(--vsep-light);
    border: 1px solid var(--vsep-border);
  }

  .vsep-faq-selection-main p {
    color: var(--vsep-text);
  }

  .vsep-faq-selection-side {
    color: #ffffff;
    background: var(--vsep-blue);
    border: 1px solid var(--vsep-blue);
  }

  .vsep-faq-selection-side h2,
  .vsep-faq-selection-side h3 {
    color: #ffffff;
  }

  .vsep-faq-selection-side p,
  .vsep-faq-selection-side li {
    color: rgba(255, 255, 255, 0.9);
  }

  .vsep-faq-checklist {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }

  .vsep-faq-checklist li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: var(--vsep-text);
    font-size: 15px;
  }

  .vsep-faq-checklist li:last-child {
    margin-bottom: 0;
  }

  .vsep-faq-checklist li::before {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--vsep-red);
    border-radius: 50%;
    content: "";
  }

  .vsep-faq-selection-side .vsep-faq-checklist li {
    color: rgba(255, 255, 255, 0.9);
  }

  /* Сервисные ссылки */

  .vsep-faq-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
  }

  .vsep-faq-link-card {
    position: relative;
    display: block;
    min-height: 145px;
    padding: 29px 20px 21px;
    color: var(--vsep-text);
    background: #ffffff;
    border: 1px solid var(--vsep-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 14, 72, 0.04);
    text-decoration: none;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vsep-faq-link-card::before {
    position: absolute;
    top: 16px;
    left: 20px;
    width: 27px;
    height: 3px;
    background: var(--vsep-red);
    border-radius: 3px;
    content: "";
  }

  .vsep-faq-link-card:hover {
    color: var(--vsep-text);
    border-color: rgba(14, 14, 72, 0.24);
    box-shadow: 0 12px 28px rgba(14, 14, 72, 0.08);
    text-decoration: none;
    transform: translateY(-2px);
  }

  .vsep-faq-link-card strong {
    display: block;
    margin: 8px 0 8px;
    color: var(--vsep-blue);
    font-size: 18px;
    line-height: 1.25;
  }

  .vsep-faq-link-card span {
    display: block;
    color: var(--vsep-gray);
    font-size: 14px;
    line-height: 1.55;
  }

  /* Нижний CTA */

  .vsep-faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    color: #ffffff;
    background: var(--vsep-blue);
    border-radius: 16px;
  }

  .vsep-faq-cta h2 {
    margin-bottom: 9px;
    color: #ffffff;
  }

  .vsep-faq-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
  }

  .vsep-faq-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Адаптив */

  @media (max-width: 1000px) {
    .vsep-faq-categories {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsep-faq-links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsep-faq-heading {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .vsep-faq-selection {
      grid-template-columns: 1fr;
    }

    .vsep-faq-cta {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 760px) {
    .vsep-faq {
      padding: 16px 14px 45px;
    }

    .vsep-faq-section {
      margin-bottom: 49px;
    }

    .vsep-faq h1 {
      font-size: 32px;
    }

    .vsep-faq h2 {
      font-size: 25px;
    }

    .vsep-faq-hero {
      padding: 38px 27px 31px;
    }

    .vsep-faq-links {
      grid-template-columns: 1fr;
    }

    .vsep-faq-cta {
      padding: 30px 26px;
    }
  }

  @media (max-width: 520px) {
    .vsep-faq-categories {
      grid-template-columns: 1fr;
    }

    .vsep-faq-actions,
    .vsep-faq-cta-actions {
      width: 100%;
      flex-direction: column;
    }

    .vsep-faq-btn {
      width: 100%;
    }

    .vsep-faq-hero {
      padding: 32px 21px 27px;
      border-radius: 14px;
    }

    .vsep-faq-question {
      min-height: 62px;
      padding: 18px 53px 18px 18px;
      font-size: 16px;
    }

    .vsep-faq-question::before,
    .vsep-faq-question::after {
      right: 19px;
    }

    .vsep-faq-answer {
      padding: 0 18px 20px;
    }

    .vsep-faq-selection-main,
    .vsep-faq-selection-side {
      padding: 27px 22px;
    }

    .vsep-faq-cta {
      padding: 28px 22px;
    }
  }
