.carousel__swiper:not(:first-child) {
  margin-bottom: 2rem;
}
.header-ten__email {
    display: block;
    text-decoration: none;
    color: hsl(var(--bh),var(--bs),var(--bl));
    font-size: .95em;
    white-space: nowrap;
}
.cta__email {
    display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th),var(--ts),var(--tl));
}
.cta__email > svg {
  display: block;
  margin-right: 1rem;
  fill: hsl(var(--sh),var(--ss),var(--sl));
}
/* Карточка-контейнер */
        .requisites-card {
            max-width: 1100px;
            width: 100%;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.2s ease;
            margin: 0 auto;
        }

        /* Заголовок — используем основной цвет */
        .card-header {
            background: hsl(142, 78%, 31%);
            padding: 24px 32px;
            border-bottom: 4px solid rgba(255, 255, 255, 0.25);
        }

        .card-header h1 {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin: 0;
        }

        .card-header p {
            color: rgba(255, 255, 255, 0.85);
            margin-top: 8px;
            font-size: 0.9rem;
        }

        /* Таблица */
        .requisites-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        .requisites-table tr {
            border-bottom: 1px solid #e9edf2;
        }

        .requisites-table td {
            padding: 16px 24px;
            vertical-align: top;
            line-height: 1.45;
        }

        /* Левый столбец (название поля) */
        .requisites-table td:first-child {
            background-color: #fafbfc;
            font-weight: 600;
            width: 240px;
            color: #1e2a3a;
            border-right: 1px solid #e9edf2;
        }

        /* Правый столбец (значение) */
        .requisites-table td:last-child {
            background-color: #ffffff;
            color: #1f2d3d;
            word-break: break-word;
        }

        /* Блок для длинных строк (ОКВЭД) */
        .okved-list {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #2c3e4e;
        }

        /* Контактные данные — акцент */
        .contact-highlight {
            background: #f0fdf4;
        }

        .contact-highlight a {
            color: hsl(142, 78%, 31%);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-highlight a:hover {
            text-decoration: underline;
            color: hsl(142, 78%, 25%);
        }

        /* Адаптив для мобильных */
        @media (max-width: 700px) {
            .requisites-table,
            .requisites-table tbody,
            .requisites-table tr,
            .requisites-table td {
                display: block;
                width: 100%;
            }

            .requisites-table tr {
                border-bottom: 1px solid #e2e8f0;
                margin-bottom: 0;
            }

            .requisites-table td:first-child {
                border-right: none;
                border-bottom: 1px dashed #e2e8f0;
                padding: 12px 20px 6px 20px;
                background: #f8fafc;
            }

            .requisites-table td:last-child {
                padding: 6px 20px 16px 20px;
            }

            .card-header h1 {
                font-size: 1.5rem;
            }
        }

        .subnote {
            font-size: 0.8rem;
            color: #5c6f87;
            margin-top: 20px;
            text-align: center;
            padding: 16px 24px 20px;
            border-top: 1px solid #eef2f6;
            background: #ffffff;
        }

        /* Акцентные элементы */
        .accent-text {
            color: hsl(142, 78%, 31%);
            font-weight: 500;
        }