Загрузка данных


<style>
.nb-services-catalog,
.nb-services-catalog * {
    box-sizing: border-box;
}

.nb-services-catalog {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --dark: #111827;
    --text: #5f6b7a;
    --border: #c8daf5;
    --light-blue: #eef5ff;
    --white: #ffffff;

    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    padding: 46px 24px 54px;
    overflow: hidden;
    font-family: inherit;
    background:
        radial-gradient(circle at 50% 0%, rgba(219,234,254,.45), transparent 42%),
        #fff;
}

.nb-services-catalog__inner {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.nb-services-catalog__header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.nb-services-catalog__label {
    margin: 0 0 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nb-services-catalog__title {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}

.nb-services-catalog__description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

/* Группы */
.nb-service-group {
    margin: 0 0 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--border);
    box-shadow: 5px 5px 0 rgba(37,99,235,.08);
}

.nb-service-group__summary {
    position: relative;
    min-height: 72px;
    padding: 15px 58px 15px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.nb-service-group__summary::-webkit-details-marker {
    display: none;
}

.nb-service-group__index {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 3px 3px 0 #bfd3f4;
}

.nb-service-group__heading {
    min-width: 0;
}

.nb-service-group__title {
    display: block;
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.nb-service-group__caption {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
}

.nb-service-group__count {
    margin-left: auto;
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.nb-service-group__summary::after {
    content: "−";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border: 2px solid var(--blue);
    transform: translateY(-50%);
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}

.nb-service-group:not([open]) .nb-service-group__summary::after {
    content: "+";
}

.nb-service-group__content {
    padding: 0 14px 14px;
}

.nb-service-group__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
}

/* Компактная карточка */
.nb-service-card {
    position: relative;
    min-width: 0;
    min-height: 116px;
    padding: 14px 42px 14px 70px;
    display: block;
    color: inherit !important;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid #d7e3f4;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nb-service-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 9px;
    height: 9px;
    background: var(--blue);
}

.nb-service-card__icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: var(--light-blue);
    border: 1px solid var(--blue);
}

.nb-service-card__icon svg {
    display: block;
    width: 23px;
    height: 23px;
    stroke: currentColor;
}

.nb-service-card__number {
    position: absolute;
    top: 14px;
    right: 13px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.nb-service-card__title {
    width: 100%;
    margin: 1px 0 6px;
    padding: 0 20px 0 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
}

.nb-service-card__text {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--text);
    border: 0;
    font-size: 12.5px;
    line-height: 1.4;
    text-align: left;
}

.nb-service-card__arrow {
    position: absolute;
    right: 14px;
    bottom: 11px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: var(--blue);
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}

.nb-service-card:hover {
    color: inherit !important;
    border-color: var(--blue);
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 rgba(37,99,235,.13);
}

.nb-service-card:focus-visible,
.nb-service-group__summary:focus-visible {
    outline: 3px solid rgba(37,99,235,.25);
    outline-offset: 3px;
}

/* Нижняя плашка */
.nb-services-catalog__footer {
    margin-top: 22px;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--light-blue);
    border: 1px solid var(--border);
}

.nb-services-catalog__footer-text {
    margin: 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.nb-services-catalog__footer-button {
    min-width: 205px;
    min-height: 44px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    color: #fff !important;
    background: var(--blue);
    border: 2px solid var(--blue);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 4px 4px 0 #bfd3f4;
}

.nb-services-catalog__footer-button::after {
    content: "→";
    font-size: 18px;
}

.nb-services-catalog__footer-button:hover {
    color: #fff !important;
    background: var(--blue-dark);
}

@media (max-width: 1100px) {
    .nb-service-group__grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 767px) {
    .nb-services-catalog {
        padding: 34px 12px 42px;
    }

    .nb-services-catalog__header {
        margin-bottom: 20px;
    }

    .nb-services-catalog__title {
        font-size: clamp(32px, 10vw, 42px);
    }

    .nb-services-catalog__description {
        font-size: 14px;
        line-height: 1.45;
    }

    .nb-service-group {
        margin-bottom: 10px;
        box-shadow: 3px 3px 0 rgba(37,99,235,.08);
    }

    .nb-service-group__summary {
        min-height: 64px;
        padding: 11px 48px 11px 11px;
        gap: 11px;
    }

    .nb-service-group__index {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .nb-service-group__title {
        font-size: 15px;
    }

    .nb-service-group__caption {
        display: none;
    }

    .nb-service-group__count {
        display: none;
    }

    .nb-service-group__summary::after {
        right: 12px;
        width: 26px;
        height: 26px;
    }

    .nb-service-group__content {
        padding: 0 9px 9px;
    }

    .nb-service-group__grid {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .nb-service-card {
        min-height: 74px;
        padding: 11px 36px 11px 56px;
    }

    .nb-service-card__icon {
        top: 11px;
        left: 10px;
        width: 35px;
        height: 35px;
    }

    .nb-service-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .nb-service-card__number {
        top: 10px;
        right: 10px;
        font-size: 9px;
    }

    .nb-service-card__title {
        margin: 0 0 3px;
        font-size: 14px;
    }

    .nb-service-card__text {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .nb-service-card__arrow {
        right: 11px;
        bottom: 8px;
        font-size: 17px;
    }

    .nb-services-catalog__footer {
        margin-top: 18px;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }

    .nb-services-catalog__footer-text {
        font-size: 14px;
    }

    .nb-services-catalog__footer-button {
        width: 100%;
        min-width: 0;
    }
}
</style>

<section class="nb-services-catalog">
  <div class="nb-services-catalog__inner">
    <header class="nb-services-catalog__header">
      <p class="nb-services-catalog__label">Notebook1.by</p>
      <h2 class="nb-services-catalog__title">Услуги</h2>
      <p class="nb-services-catalog__description">
        Выберите категорию неисправности, а затем нужную услугу.
        На телефоне разделы раскрываются по нажатию.
      </p>
    </header>
    <div class="nb-services-catalog__groups">


      <details class="nb-service-group" open>
        <summary class="nb-service-group__summary">
          <span class="nb-service-group__index">01</span>
          <span class="nb-service-group__heading">
            <span class="nb-service-group__title">Диагностика и сложный ремонт</span>
            <span class="nb-service-group__caption">Не включается, залитие, BIOS, видеосистема и ремонт платы</span>
          </span>
          <span class="nb-service-group__count">6 услуг</span>
        </summary>
        <div class="nb-service-group__content">
          <div class="nb-service-group__grid">

<a class="nb-service-card" href="/diagnostika-noutbukov/">

                <span class="nb-service-card__number">01</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="11" cy="11" r="6"></circle>
                        <path d="M16 16L21 21"></path>
                        <path d="M8 11H14"></path>
                        <path d="M11 8V14"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Диагностика ноутбука
                </h3>

                <p class="nb-service-card__text">
                    Определим причину неисправности и предложим
                    оптимальный вариант ремонта.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-materinskoj-platy/">

                <span class="nb-service-card__number">02</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M9 9H15V15H9Z"></path>
                        <path d="M2 9H5M2 15H5M19 9H22M19 15H22"></path>
                        <path d="M9 2V5M15 2V5M9 19V22M15 19V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт материнской платы
                </h3>

                <p class="nb-service-card__text">
                    Восстановление цепей питания, контроллеров,
                    дорожек и других компонентов платы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-posle-zalitiya/">

                <span class="nb-service-card__number">10</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 2C12 2 6 9 6 14C6 17.3 8.7 20 12 20C15.3 20 18 17.3 18 14C18 9 12 2 12 2Z"></path>
                        <path d="M9 15C9.5 16.5 10.5 17 12 17"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт после залития
                </h3>

                <p class="nb-service-card__text">
                    Очистка платы, устранение окислов
                    и восстановление повреждённых цепей.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/proshivka-bios/">

                <span class="nb-service-card__number">14</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M9 9H15V15H9Z"></path>
                        <path d="M2 9H5M2 15H5M19 9H22M19 15H22"></path>
                        <path d="M9 2V5M15 2V5M9 19V22M15 19V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Прошивка BIOS
                </h3>

                <p class="nb-service-card__text">
                    Восстановим BIOS после сбоя, неудачного обновления
                    или отсутствия запуска.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-videochipa/">

                <span class="nb-service-card__number">15</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M8 15L11 12L13 14L16 10"></path>
                        <circle cx="15.5" cy="8.5" r="1"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт видеосистемы
                </h3>

                <p class="nb-service-card__text">
                    Диагностика видеочипа, памяти,
                    питания и системы вывода изображения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-igrovyh-noutbukov/">

                <span class="nb-service-card__number">19</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M7 8H17C20 8 22 11 21 15L20 18C19.5 20 17 20.5 16 18L14.5 16H9.5L8 18C7 20.5 4.5 20 4 18L3 15C2 11 4 8 7 8Z"></path>
                        <path d="M7 11V15"></path>
                        <path d="M5 13H9"></path>
                        <circle cx="16" cy="12" r="1"></circle>
                        <circle cx="18" cy="14" r="1"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Игровые ноутбуки
                </h3>

                <p class="nb-service-card__text">
                    Ремонт и обслуживание игровых моделей
                    с мощными системами охлаждения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

          </div>
        </div>
      </details>


      <details class="nb-service-group" open>
        <summary class="nb-service-group__summary">
          <span class="nb-service-group__index">02</span>
          <span class="nb-service-group__heading">
            <span class="nb-service-group__title">Экран, корпус и клавиатура</span>
            <span class="nb-service-group__caption">Повреждения дисплея, петель, крышки и элементов ввода</span>
          </span>
          <span class="nb-service-group__count">3 услуг</span>
        </summary>
        <div class="nb-service-group__content">
          <div class="nb-service-group__grid">

<a class="nb-service-card" href="/zamena-matricy-noutbuka/">

                <span class="nb-service-card__number">03</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="4" width="18" height="13"></rect>
                        <path d="M8 21H16"></path>
                        <path d="M12 17V21"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена матрицы
                </h3>

                <p class="nb-service-card__text">
                    Подберём совместимый дисплей, проверим шлейф
                    и качество изображения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-kryshki-i-petel/">

                <span class="nb-service-card__number">04</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="4" y="4" width="16" height="11"></rect>
                        <path d="M2 19H22"></path>
                        <path d="M8 15V19M16 15V19"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт корпуса и петель
                </h3>

                <p class="nb-service-card__text">
                    Восстановим крепления, крышку, петли
                    и повреждённые элементы корпуса.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/zamena-klaviatury-noutbuka/">

                <span class="nb-service-card__number">05</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="6" width="18" height="12"></rect>
                        <path d="M6 9H8M10 9H12M14 9H16M18 9H19"></path>
                        <path d="M6 12H8M10 12H12M14 12H16M18 12H19"></path>
                        <path d="M7 15H17"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена клавиатуры
                </h3>

                <p class="nb-service-card__text">
                    Замена неработающих клавиатур, отдельных клавиш
                    и клавиатурных модулей.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

          </div>
        </div>
      </details>


      <details class="nb-service-group" open>
        <summary class="nb-service-group__summary">
          <span class="nb-service-group__index">03</span>
          <span class="nb-service-group__heading">
            <span class="nb-service-group__title">Питание, разъёмы и охлаждение</span>
            <span class="nb-service-group__caption">Перегрев, зарядка, аккумулятор, вентиляторы и порты</span>
          </span>
          <span class="nb-service-group__count">5 услуг</span>
        </summary>
        <div class="nb-service-group__content">
          <div class="nb-service-group__grid">

<a class="nb-service-card" href="/chistka-noutbuka/">

                <span class="nb-service-card__number">06</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 3V7"></path>
                        <path d="M12 17V21"></path>
                        <path d="M3 12H7"></path>
                        <path d="M17 12H21"></path>
                        <path d="M5.6 5.6L8.4 8.4"></path>
                        <path d="M15.6 15.6L18.4 18.4"></path>
                        <circle cx="12" cy="12" r="4"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Чистка и профилактика
                </h3>

                <p class="nb-service-card__text">
                    Удалим пыль, заменим термоинтерфейсы
                    и проверим систему охлаждения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-sistemy-ohlazhdeniya/">

                <span class="nb-service-card__number">07</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="12" cy="12" r="3"></circle>
                        <path d="M12 3C15 3 17 5 17 8C17 10 15 11 12 12"></path>
                        <path d="M21 12C21 15 19 17 16 17C14 17 13 15 12 12"></path>
                        <path d="M12 21C9 21 7 19 7 16C7 14 9 13 12 12"></path>
                        <path d="M3 12C3 9 5 7 8 7C10 7 11 9 12 12"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт охлаждения
                </h3>

                <p class="nb-service-card__text">
                    Замена вентиляторов, ремонт тепловых трубок
                    и устранение перегрева.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-razema-pitaniya/">

                <span class="nb-service-card__number">08</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M9 3V10"></path>
                        <path d="M15 3V10"></path>
                        <path d="M7 10H17V13C17 16 15 18 12 18C9 18 7 16 7 13V10Z"></path>
                        <path d="M12 18V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт разъёма питания
                </h3>

                <p class="nb-service-card__text">
                    Восстановим питание, заменим разъём
                    и проверим зарядное устройство.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/remont-razemov-noutbuka/">

                <span class="nb-service-card__number">09</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="18" height="10"></rect>
                        <path d="M7 10H10V14H7Z"></path>
                        <path d="M14 10H18"></path>
                        <path d="M14 14H18"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт разъёмов
                </h3>

                <p class="nb-service-card__text">
                    Замена USB, HDMI, аудиоразъёмов,
                    Type-C и других портов ноутбука.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/zamena-akkumulyatora/">

                <span class="nb-service-card__number">13</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="17" height="10"></rect>
                        <path d="M20 10H22V14H20"></path>
                        <path d="M7 12H11"></path>
                        <path d="M9 10V14"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена аккумулятора
                </h3>

                <p class="nb-service-card__text">
                    Проверим состояние батареи и установим
                    совместимый аккумулятор.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

          </div>
        </div>
      </details>


      <details class="nb-service-group" open>
        <summary class="nb-service-group__summary">
          <span class="nb-service-group__index">04</span>
          <span class="nb-service-group__heading">
            <span class="nb-service-group__title">Модернизация ноутбука</span>
            <span class="nb-service-group__caption">Ускорение работы и обновление комплектующих</span>
          </span>
          <span class="nb-service-group__count">2 услуг</span>
        </summary>
        <div class="nb-service-group__content">
          <div class="nb-service-group__grid">

<a class="nb-service-card" href="/zamena-ssd-hdd/">

                <span class="nb-service-card__number">11</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="4" y="3" width="16" height="18"></rect>
                        <circle cx="12" cy="11" r="4"></circle>
                        <circle cx="12" cy="11" r="1"></circle>
                        <path d="M16 17H18"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена SSD и HDD
                </h3>

                <p class="nb-service-card__text">
                    Подберём накопитель, перенесём систему
                    и увеличим скорость работы ноутбука.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/uvelichenie-operativnoj-pamyati/">

                <span class="nb-service-card__number">12</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="18" height="10"></rect>
                        <path d="M7 10H9V14H7Z"></path>
                        <path d="M11 10H13V14H11Z"></path>
                        <path d="M15 10H17V14H15Z"></path>
                        <path d="M6 17V20M10 17V20M14 17V20M18 17V20"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Увеличение оперативной памяти
                </h3>

                <p class="nb-service-card__text">
                    Проверим совместимость и установим
                    дополнительную оперативную память.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

          </div>
        </div>
      </details>


      <details class="nb-service-group" open>
        <summary class="nb-service-group__summary">
          <span class="nb-service-group__index">05</span>
          <span class="nb-service-group__heading">
            <span class="nb-service-group__title">Система, программы и данные</span>
            <span class="nb-service-group__caption">Windows, настройка, вирусы и восстановление файлов</span>
          </span>
          <span class="nb-service-group__count">4 услуг</span>
        </summary>
        <div class="nb-service-group__content">
          <div class="nb-service-group__grid">

<a class="nb-service-card" href="/ustanovka-windows/">

                <span class="nb-service-card__number">16</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M3 5L11 4V11H3V5Z"></path>
                        <path d="M13 3.7L21 3V11H13V3.7Z"></path>
                        <path d="M3 13H11V20L3 19V13Z"></path>
                        <path d="M13 13H21V21L13 20.3V13Z"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Установка Windows
                </h3>

                <p class="nb-service-card__text">
                    Установка системы, драйверов,
                    обновлений и необходимых программ.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/udalenie-virusov/">

                <span class="nb-service-card__number">17</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 4C16 4 19 7 19 11V14C19 18 16 20 12 20C8 20 5 18 5 14V11C5 7 8 4 12 4Z"></path>
                        <path d="M8 2L9 5"></path>
                        <path d="M16 2L15 5"></path>
                        <path d="M2 10L5 11"></path>
                        <path d="M22 10L19 11"></path>
                        <path d="M2 17L6 16"></path>
                        <path d="M22 17L18 16"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Удаление вирусов
                </h3>

                <p class="nb-service-card__text">
                    Очистим систему от вредоносных программ,
                    рекламы и нежелательных расширений.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/vosstanovlenie-dannyh/">

                <span class="nb-service-card__number">18</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M4 7H10L12 9H20V19H4V7Z"></path>
                        <path d="M12 12V17"></path>
                        <path d="M9.5 14.5L12 12L14.5 14.5"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Восстановление данных
                </h3>

                <p class="nb-service-card__text">
                    Поможем восстановить документы, фотографии
                    и другие важные файлы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>
<a class="nb-service-card" href="/nastroyka-noutbuka/">

                <span class="nb-service-card__number">20</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="12" cy="12" r="3"></circle>
                        <path d="M12 2V5"></path>
                        <path d="M12 19V22"></path>
                        <path d="M2 12H5"></path>
                        <path d="M19 12H22"></path>
                        <path d="M4.9 4.9L7 7"></path>
                        <path d="M17 17L19.1 19.1"></path>
                        <path d="M19.1 4.9L17 7"></path>
                        <path d="M7 17L4.9 19.1"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Настройка ноутбука
                </h3>

                <p class="nb-service-card__text">
                    Настроим программы, интернет, учётные записи
                    и основные параметры системы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

          </div>
        </div>
      </details>


    </div>

    <div class="nb-services-catalog__footer">
      <p class="nb-services-catalog__footer-text">
        Не нашли нужную услугу? Опишите неисправность — мы подскажем,
        можно ли восстановить ноутбук.
      </p>
      <a class="nb-services-catalog__footer-button" href="#contacts">
        Связаться с мастерской
      </a>
    </div>
  </div>
</section>

<script>
(function () {
    const mobileQuery = window.matchMedia('(max-width: 767px)');
    const groups = document.querySelectorAll('.nb-service-group');
    let lastMobileState = null;

    function updateGroups() {
        const isMobile = mobileQuery.matches;
        if (isMobile === lastMobileState) return;

        groups.forEach(function (group, index) {
            group.open = isMobile ? index === 0 : true;
        });

        lastMobileState = isMobile;
    }

    updateGroups();

    if (mobileQuery.addEventListener) {
        mobileQuery.addEventListener('change', updateGroups);
    } else {
        mobileQuery.addListener(updateGroups);
    }
})();
</script>