/*--------------------------------------------------
  1) IMPORTS & CONFIG
--------------------------------------------------*/
/* assets/css/lang-switcher.css */
/* ------------------------------------------------------------- */
/* 1. ГЛОБАЛЬНЫЙ ОВЕРЛЕЙ МОДАЛЬНОГО ОКНА */
/* ------------------------------------------------------------- */
#language-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;

    /* Фон: белый с размытием */
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Чистый Fade эффект */
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#language-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
#language-modal.hidden {
    display: none !important;
}
/* ------------------------------------------------------------- */
/* 2. КОНТЕНТНАЯ ОБЛАСТЬ (СТИЛЬ ПРЕМИУМ) */
/* ------------------------------------------------------------- */
.modal-content-area {
    position: relative;
    width: 100%;
    max-width: 28rem; /* max-w-md */
    background-color: var(--sitan-white);
    padding: 2.5rem; /* md:p-10 */
    border-radius: 1.5rem; /* rounded-3xl */
    border: 1px solid var(--sitan-gray-light);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);

    /* Анимация проявления */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-in-out;
    transform: translateY(15px);
    opacity: 0;
    will-change: transform, opacity;
}
#language-modal.is-active .modal-content-area {
    opacity: 1;
    transform: translateY(0);
}
.modal-title {
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    color: var(--sitan-gray-dark);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
/* ------------------------------------------------------------- */
/* 3. СЕТКА И КАРТОЧКИ (ИКОНКА СВЕРХУ - ТЕКСТ СНИЗУ) */
/* ------------------------------------------------------------- */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 3px solid transparent;
    background-color: rgba(249, 250, 251, 0.5); /* bg-gray-50/50 */
    text-decoration: none;
    transition: all 0.3s ease-out;
    will-change: transform, border-color, box-shadow;
}
.lang-card-flag-box {
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    border-radius: 9999px;
    background-color: var(--sitan-gray-light);
    border: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lang-flag-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.lang-card-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--sitan-gray-dark);
    transition: color 0.3s ease;
}
/* --- СОСТОЯНИЯ (HOVER & ACTIVE) --- */
@media (hover: hover) {
    .lang-card:hover {
        background-color: var(--sitan-white);
        border-color: var(--sitan-blue);
        box-shadow: 0 10px 25px rgba(0, 85, 164, 0.1);
        transform: translateY(-4px);
    }

    .lang-card:hover .lang-card-label {
        color: var(--sitan-blue);
    }

    .lang-card:hover .lang-card-flag-box {
        transform: scale(1.1);
    }
}
/* АКТИВНЫЙ ЯЗЫК (Красный SITAN) */
.lang-card.is-active,
.lang-card.active {
    background-color: var(--sitan-white) !important;
    border-color: var(--sitan-red) !important;
    box-shadow: 0 8px 20px rgba(224, 48, 46, 0.12) !important;
}
.lang-card.is-active .lang-card-label,
.lang-card.active .lang-card-label {
    color: var(--sitan-red) !important;
}
/* Touch (Haptic): Тактильный отклик */
.lang-card:active,
.lang-card.is-touched {
    transform: scale(0.95) !important;
    opacity: 0.8 !important;
    border-color: var(--sitan-blue) !important;
    transition-duration: 0.1s !important;
}
/* ------------------------------------------------------------- */
/* 4. КНОПКА ЗАКРЫТИЯ */
/* ------------------------------------------------------------- */
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--sitan-gray);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close-btn svg {
    width: 1.75rem;
    height: 1.75rem;
}
@media (hover: hover) {
    .modal-close-btn:hover {
        transform: rotate(90deg) scale(1.1);
        color: var(--sitan-red);
    }
}
.modal-close-btn:active {
    transform: scale(0.9);
}
/**
 * FILE: assets/css/swiper-custom.css
 * DESCRIPTION: Универсальные стили для каруселей (Advantages & Applications).
 * FIX: Добавлена поддержка #sitan-applications-carousel для работы на странице SITAN.
 */
/* --- ПАГИНАЦИЯ (Поднята оптимально) --- */
.swiper-pagination {
    position: absolute !important;
    left: 50%;
    display: flex;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    /* Дефолт для десктопа: ~120px от низа */
    bottom: 7.5rem !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}
@media (max-width: 768px) {
    .swiper-pagination {
        bottom: 6.5rem !important;
    }
}
.swiper-pagination-bullet {
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    opacity: 0.4;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    height: 4px !important;
    width: 32px !important;
    margin: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}
.swiper-pagination-bullet-active {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
    opacity: 1;
    width: 64px !important;
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.8));
}
/* --- Навигация (Стрелки) --- */
#sitan-advantage-carousel .swiper-button-prev,
#sitan-advantage-carousel .swiper-button-next,
#sitan-applications-carousel .swiper-button-prev,
#sitan-applications-carousel .swiper-button-next {
    top: 40% !important;
    display: flex;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center;
    border-style: none !important;
    background-color: transparent !important;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    pointer-events: auto !important;
    z-index: 110 !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
    color: rgb(255 255 255 / 0.5);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.8));
}
@media (hover: hover) {
    .swiper-button-prev:hover svg,
    .swiper-button-next:hover svg {
        --tw-scale-x: 1.1;
        --tw-scale-y: 1.1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    }
}
/* --- Логика Карусели (Наложение слайдов стеком) --- */
#sitan-advantage-carousel .swiper-wrapper,
#sitan-applications-carousel .swiper-wrapper {
    display: grid !important;
    grid-template-areas: "stack" !important;
    transform: none !important;
}
#sitan-advantage-carousel .swiper-slide,
#sitan-applications-carousel .swiper-slide {
    grid-area: stack !important;
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s !important;
    transform: none !important;
}
#sitan-advantage-carousel .swiper-slide-active,
#sitan-applications-carousel .swiper-slide-active {
    opacity: 1 !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}
/* --- Стили для карточек (Белые блоки) --- */
.sitan-advantage-block {
    background-color: #ffffff !important;
    border: 2px solid transparent !important;
    will-change: transform, opacity;
    position: relative;
    border-radius: 2rem;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.sitan-advantage-block h3 {
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    --tw-text-opacity: 1;
    color: rgb(224 48 46 / var(--tw-text-opacity, 1));
    opacity: 0.6;
    transition: all 0.4s ease;
}
.sitan-advantage-block p {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    line-height: 1.625;
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
@media (min-width: 640px) {
    .sitan-advantage-block p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.swiper-slide-active .sitan-advantage-block {
    --tw-shadow: 0 30px 70px rgba(0,0,0,0.35);
    --tw-shadow-colored: 0 30px 70px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* --- ВЗАИМОДЕЙСТВИЕ (Hover vs Touch) --- */
@media (hover: hover) {
    .group\/advantage:hover .advantage-main-title h2 span {
        --tw-bg-opacity: 1;
        background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
    }
    .group\/advantage:hover .sitan-advantage-block h3 {
        opacity: 1;
    }
    .group\/advantage:hover .sitan-advantage-block {
        transform: translateY(-15px) translateZ(0) !important;
        border-color: rgb(224 48 46 / 0.3) !important;
    }
}
/* Мобильные: Поддержка обоих классов тача */
.group\/advantage.is-touched .advantage-main-title span,
.group\/advantage.is-touch-active .advantage-main-title span {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1)) !important;
}
.group\/advantage.is-touched .sitan-advantage-block,
.group\/advantage.is-touch-active .sitan-advantage-block {
    border-color: rgb(224 48 46 / 0.3) !important;
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25) !important;
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
    transform: translateY(-10px) !important;
}
.group\/advantage.is-touched .sitan-advantage-block h3,
.group\/advantage.is-touch-active .sitan-advantage-block h3 {
    opacity: 1 !important;
}
/* --- Анимации появления --- */
.advantage-main-title {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.swiper-slide-active .advantage-main-title {
    opacity: 1;
}
.advantage-card-animation-group {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .advantage-card-animation-group {
    opacity: 1;
    transform: translateY(0);
}
/* Фон остается чистым для управления через вуаль */
#sitan-advantage-carousel .swiper-slide img,
#sitan-applications-carousel .swiper-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
/* Модульная система взаимодействий */
/**
 * INTERACTIONS BASE
 * Базовые классы для системы взаимодействий (hover/touch)
 * Универсальные правила, которые работают для всех групп
 */
/* ============================================================
   БАЗОВЫЕ КЛАССЫ ДЛЯ ФОНОВЫХ ЭФФЕКТОВ
   ============================================================ */
.touch-bg-zoom {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease-in-out;
    will-change: transform, opacity;
    transform: scale(1);
}
.touch-veil {
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}
/* ============================================================
   УНИВЕРСАЛЬНЫЕ СОСТОЯНИЯ АКТИВАЦИИ
   ============================================================ */
/* Desktop: Hover активация */
@media (hover: hover) {
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .touch-bg-zoom,
    [data-touch-group]:has(.is-active-zone:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .touch-bg-zoom,
    /* Обратная совместимость со старыми классами */
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .hero-bg-img,
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .app-zoom-img,
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .advantage-zoom-img,
    [data-touch-group]:has(.is-active-zone:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .hero-bg-img {
        transform: scale(1.1) !important;
    }

    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .touch-veil,
    [data-touch-group]:has(.is-active-zone:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .touch-veil,
    /* Обратная совместимость */
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .hero-dynamic-veil,
    [data-touch-group]:has(.is-active-zone:hover):not(:has(.btn-premium:hover)):not(:has(.epd-card:hover)) .hero-dynamic-veil {
        opacity: 0 !important;
    }
}
/* Mobile: Touch активация */
[data-touch-group].is-touch-active .touch-bg-zoom,
[data-touch-group].state-trigger-title .touch-bg-zoom,
/* Обратная совместимость */
[data-touch-group].is-touch-active .hero-bg-img,
[data-touch-group].is-touch-active .app-zoom-img,
[data-touch-group].is-touch-active .advantage-zoom-img,
[data-touch-group].state-trigger-title .hero-bg-img {
    transform: scale(1.1) !important;
}
[data-touch-group].is-touch-active .touch-veil,
[data-touch-group].state-trigger-title .touch-veil,
/* Обратная совместимость */
[data-touch-group].is-touch-active .hero-dynamic-veil,
[data-touch-group].state-trigger-title .hero-dynamic-veil {
    opacity: 0 !important;
}
/* ============================================================
   СПЕЦИАЛЬНЫЕ СЛУЧАИ (Tech, Ecology - меньший зум)
   ============================================================ */
[data-touch-group="tech"] .touch-bg-zoom,
[data-touch-group="ecology"] .touch-bg-zoom {
    --bg-scale: 1.08;
}
@media (hover: hover) {
    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .touch-bg-zoom,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .touch-bg-zoom {
        transform: scale(var(--bg-scale, 1.08)) !important;
        opacity: 0.9 !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .touch-veil,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .touch-veil {
        opacity: 0.25 !important;
    }
}
[data-touch-group="tech"].is-touch-active .touch-bg-zoom,
[data-touch-group="ecology"].is-touch-active .touch-bg-zoom {
    transform: scale(var(--bg-scale, 1.08)) !important;
    opacity: 0.9 !important;
}
[data-touch-group="tech"].is-touch-active .touch-veil,
[data-touch-group="ecology"].is-touch-active .touch-veil {
    opacity: 0.25 !important;
}
/**
 * INTERACTIONS GROUPS
 * Универсальные правила для заголовков и текста в группах
 */
/* ============================================================
   ПОДСВЕТКА ЗАГОЛОВКОВ (Универсальная логика)
   ============================================================ */
/* Desktop: Стандартный красный акцент */
@media (hover: hover) {
    [data-touch-group]:has([data-touch-trigger]:hover):not(:has(.sitan-accent-blue)) h1 span,
    [data-touch-group="apps"]:has(.group\/app-card:hover) .app-section-title-box h2 span,
    [data-touch-group="hero"]:has(.is-active-zone:hover):not(:has(.btn-premium:hover)):not(:has(.sitan-accent-blue)) h1 span,
    [data-touch-group="advantages"]:has(.sitan-advantage-block:hover) .advantage-main-title h2 span {
        background-color: var(--sitan-red) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
    }

    /* Специфика EPD (Синий акцент) */
    [data-touch-group="hero"]:has(.is-active-zone:hover) .sitan-accent-blue {
        background-color: var(--sitan-blue) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--sitan-blue), transparent 70%) !important;
    }

    /* Apps специфичный триггер */
    [data-touch-group="apps"]:has([data-touch-trigger="apps-title"]:hover) .app-section-title-box h2 span {
        background-color: var(--sitan-red) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
    }
}
/* Mobile: Touch активация заголовков */
[data-touch-group="hero"].state-trigger-title h1 span:not(.sitan-accent-blue),
[data-touch-group="advantages"].state-trigger-title .advantage-main-title h2 span,
[data-touch-group="advantages"].is-touch-active .advantage-main-title h2 span,
[data-touch-group="apps"].state-trigger-apps-title .app-section-title-box h2 span,
[data-touch-group="apps"].is-touch-active .app-section-title-box h2 span {
    background-color: var(--sitan-red) !important;
    color: var(--sitan-white) !important;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
}
/* Синий триггер для EPD (Mobile) */
[data-touch-group="hero"].state-trigger-title .sitan-accent-blue,
[data-touch-group="hero"].is-touch-active .sitan-accent-blue {
    background-color: var(--sitan-blue) !important;
    color: var(--sitan-white) !important;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-blue), transparent 70%) !important;
}
/* ============================================================
   ТЕХНИЧЕСКИЕ СЕКЦИИ (Tech, Ecology, Composition, Process)
   ============================================================ */
@media (hover: hover) {
    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-main-title,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-main-title,
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-main-title,
    [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-main-title {
        color: var(--sitan-blue) !important;
        transform: none !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box,
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-compliance-box,
    [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-compliance-box {
        opacity: 1 !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box p,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box p,
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-compliance-box p,
    [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }
}
[data-touch-group="tech"].is-touch-active .tech-main-title,
[data-touch-group="ecology"].is-touch-active .tech-main-title,
[data-touch-group="composition"].is-touch-active .tech-main-title,
[data-touch-group="process"].is-touch-active .tech-main-title {
    color: var(--sitan-blue) !important;
    transform: none !important;
}
[data-touch-group="tech"].is-touch-active .tech-compliance-box,
[data-touch-group="ecology"].is-touch-active .tech-compliance-box,
[data-touch-group="composition"].is-touch-active .tech-compliance-box,
[data-touch-group="process"].is-touch-active .tech-compliance-box {
    opacity: 1 !important;
}
[data-touch-group="tech"].is-touch-active .tech-compliance-box p,
[data-touch-group="ecology"].is-touch-active .tech-compliance-box p,
[data-touch-group="composition"].is-touch-active .tech-compliance-box p,
[data-touch-group="process"].is-touch-active .tech-compliance-box p {
    color: var(--sitan-black) !important;
}
/* Highlights специфика */
@media (hover: hover) {
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-main-title {
        --tw-text-opacity: 1 !important;
        color: rgb(33 150 243 / var(--tw-text-opacity, 1)) !important;
    }
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-secondary-text,
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-compliance-box {
        --tw-text-opacity: 1 !important;
        color: rgb(26 26 26 / var(--tw-text-opacity, 1)) !important;
        opacity: 1 !important;
    }
}
[data-touch-group="highlights"].is-touch-active .highlights-main-title {
    --tw-text-opacity: 1 !important;
    color: rgb(33 150 243 / var(--tw-text-opacity, 1)) !important;
}
[data-touch-group="highlights"].is-touch-active .highlights-secondary-text,
[data-touch-group="highlights"].is-touch-active .highlights-compliance-box {
    --tw-text-opacity: 1 !important;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1)) !important;
    opacity: 1 !important;
}
/**
 * INTERACTIONS CARDS
 * Универсальные правила для карточек (app-card, epd-card, advantage-card)
 */
/* ============================================================
   БАЗОВЫЕ СТИЛИ КАРТОЧЕК
   ============================================================ */
.group\/app-card,
.epd-card {
    border-width: 3px;
    border-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    will-change: transform, box-shadow, border-color;
}
.app-card-text-wrapper {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    justify-content: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.epd-card p,
.group\/app-card p {
    color: var(--sitan-gray-dark);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.epd-card .app-icon,
.group\/app-card .app-icon {
    color: var(--sitan-red);
    opacity: 0.4;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
/* Специфика EPD карточек */
.epd-card .app-icon { color: var(--sitan-blue); }
.epd-card .app-card-title { color: var(--sitan-gray-dark); opacity: 0.8; transition: all 0.4s ease; }
.epd-card p { color: var(--sitan-black); font-weight: 900; }
/* ============================================================
   DESKTOP: HOVER ЭФФЕКТЫ
   ============================================================ */
@media (hover: hover) {
    .group\/app-card:hover,
    .epd-card:hover {
        background-color: var(--sitan-white) !important;
        border-color: var(--sitan-blue) !important;
        box-shadow: 0 20px 40px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
        transform: translateY(-5px);
    }

    .group\/app-card:hover .app-icon,
    .epd-card:hover .app-icon {
        opacity: 1 !important;
        --tw-scale-x: 1.1 !important;
        --tw-scale-y: 1.1 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }

    .group\/app-card:hover .app-card-title,
    .epd-card:hover .app-card-title {
        color: var(--sitan-blue) !important;
        opacity: 1 !important;
    }

    .group\/app-card:hover p,
    .epd-card:hover p {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
}
/* ============================================================
   MOBILE: TOUCH ЭФФЕКТЫ
   ============================================================ */
.group\/app-card.is-touched,
.epd-card.is-touched {
    border-color: var(--sitan-blue) !important;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
    background-color: var(--sitan-white) !important;
}
.group\/app-card.is-touched .app-icon,
.epd-card.is-touched .app-icon {
    opacity: 1 !important;
    transform: scale(1.1) !important;
}
.group\/app-card.is-touched .app-card-title,
.epd-card.is-touched .app-card-title {
    color: var(--sitan-blue) !important;
    opacity: 1 !important;
}
.group\/app-card.is-touched p,
.epd-card.is-touched p,
.group\/app-card.is-touched .app-card-body,
.epd-card.is-touched .app-card-body {
    color: var(--sitan-black) !important;
    opacity: 1 !important;
}
/**
 * INTERACTIONS BUTTONS
 * Изоляция кнопок от фоновых эффектов
 */
/* ============================================================
   ИЗОЛЯЦИЯ: Кнопки не активируют фон
   ============================================================ */
/* Desktop: Блокировка активации фона при ховере на кнопку */
@media (hover: hover) {
    [data-touch-group]:has(.btn-premium:hover) .touch-bg-zoom,
    [data-touch-group]:has(.btn-premium:hover) .app-zoom-img {
        transform: scale(1) !important;
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
    }
}
/* Mobile: Блокировка активации фона при таче на кнопку */
[data-touch-group]:has(.btn-premium.is-touched) .touch-bg-zoom,
[data-touch-group]:has(.btn-premium.is-touched) .app-zoom-img {
    transform: scale(1) !important;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
/* assets/css/interactions/_tech.css */
/* ============================================================
   TECH SECTIONS: Общие стили для технических секций
   Используется в: properties, composition, process, ecology, certificates
   ============================================================ */
/* 1. БАЗОВАЯ ТИПОГРАФИКА ЗАГОЛОВКОВ */
.tech-main-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    color: var(--sitan-black);
    pointer-events: auto !important;
    will-change: color;
    transform: none !important;
    transition: color 0.3s ease;
}
/* Специфичные секции */
#section-sitan-properties .tech-main-title,
#section-sitan-eco .tech-main-title,
#section-sitan-composition .tech-main-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
}
#section-sitan-process .tech-main-title,
#section-sitan-eco .tech-main-title {
    font-weight: 900 !important;
    text-transform: uppercase;
    line-height: 1.25;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* 2. БАЗОВЫЕ СТИЛИ ДЛЯ ВТОРИЧНОГО ТЕКСТА */
.tech-compliance-box {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    opacity: 0.7 !important;
    pointer-events: auto !important;
}
.tech-compliance-box p {
    color: var(--sitan-gray-dark);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* Специфика для catalog-certificates: ситановский голубой по умолчанию */
#section-certificates .tech-compliance-box p {
    color: var(--sitan-blue) !important;
}
/* 3. ОБЩИЕ HOVER ЭФФЕКТЫ (Desktop) */
@media (hover: hover) {
    /* Tech & Ecology группы: фон и заголовки */
    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .hero-bg-img,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .hero-bg-img {
        transform: scale(1.08) !important;
        opacity: 0.9 !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .hero-dynamic-veil,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .hero-dynamic-veil {
        opacity: 0.25 !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-main-title,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-main-title {
        color: var(--sitan-blue) !important;
        transform: none !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box {
        opacity: 1 !important;
    }

    [data-touch-group="tech"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box p,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover, .tech-row:hover) .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Composition группа */
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .hero-dynamic-veil {
        opacity: 0.3 !important;
    }
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-main-title {
        color: var(--sitan-blue) !important;
    }
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-compliance-box {
        opacity: 1 !important;
    }
    [data-touch-group="composition"]:has([data-touch-trigger]:hover) .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Process & Ecology группы */
    [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-main-title,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .tech-main-title {
        color: var(--sitan-blue) !important;
    }
    [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-compliance-box p,
    [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Специфика для catalog-certificates: белый при hover */
    #section-certificates:has([data-touch-trigger]:hover) .tech-compliance-box,
    #section-certificates:has(.cert-card:hover) .tech-compliance-box {
        opacity: 1 !important;
    }
    #section-certificates:has([data-touch-trigger]:hover) .tech-compliance-box p,
    #section-certificates:has(.cert-card:hover) .tech-compliance-box p {
        color: var(--sitan-white) !important;
    }
}
/* 4. ОБЩИЕ TOUCH ЭФФЕКТЫ (Mobile) */
@media (max-width: 767px) {
    [data-touch-group].is-touch-active .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
        opacity: 0.9 !important;
    }
    [data-touch-group].is-touch-active .hero-dynamic-veil {
        opacity: 0.25 !important;
    }
    [data-touch-group].is-touch-active .tech-main-title {
        color: var(--sitan-blue) !important;
        transform: none !important;
    }
    [data-touch-group].is-touch-active .tech-compliance-box {
        opacity: 1 !important;
    }
    [data-touch-group].is-touch-active .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Composition touch */
    [data-touch-group="composition"].is-touch-active .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }
    [data-touch-group="composition"].is-touch-active .hero-dynamic-veil {
        opacity: 0.3 !important;
    }
    [data-touch-group="composition"].is-touch-active .tech-main-title {
        color: var(--sitan-blue) !important;
    }
    [data-touch-group="composition"].is-touch-active .tech-compliance-box {
        opacity: 1 !important;
    }
    [data-touch-group="composition"].is-touch-active .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Process & Ecology touch */
    [data-touch-group="process"].is-touch-active .tech-main-title,
    [data-touch-group="ecology"].is-touch-active .tech-main-title {
        color: var(--sitan-blue) !important;
    }
    [data-touch-group="process"].is-touch-active .tech-compliance-box p,
    [data-touch-group="ecology"].is-touch-active .tech-compliance-box p {
        color: var(--sitan-black) !important;
    }

    /* Специфика для catalog-certificates: белый при touch */
    #section-certificates.is-touch-active .tech-compliance-box,
    [data-touch-group="hero"].is-touch-active #section-certificates .tech-compliance-box {
        opacity: 1 !important;
    }
    #section-certificates.is-touch-active .tech-compliance-box p,
    [data-touch-group="hero"].is-touch-active #section-certificates .tech-compliance-box p {
        color: var(--sitan-white) !important;
    }
}
/* assets/css/interactions/_composition-cards.css */
/* ============================================================
   COMPOSITION CARDS: Карточки для секции Composition
   ============================================================ */
/* 1. БАЗОВАЯ СТАБИЛИЗАЦИЯ И УРАВНИВАНИЕ ВЫСОТЫ */
.grid-auto-rows-fr {
    grid-auto-rows: 1fr !important;
}
.comp-card-blue-logic,
.safety-card-green-logic {
    background-color: var(--sitan-white) !important;
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 500ms !important;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
    will-change: transform, background-color, border-color;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform: translate3d(0, 0, 0);
}
.comp-card-blue-logic {
    display: grid !important;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    justify-items: center;
    text-align: center;
    min-height: 150px;
    height: 100%;
}
.safety-card-green-logic {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    min-height: 100px;
    height: 100%;
}
.comp-card-blue-logic *,
.safety-card-green-logic * {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}
/* 2. ПОЗИЦИОНИРОВАНИЕ ТЕКСТА */
.comp-card-blue-logic .highlight-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 0.5rem 0.25rem 0.5rem;
    width: 100%;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) {
    .comp-card-blue-logic .highlight-label {
        font-size: 11px;
    }
}
.comp-card-blue-logic .highlight-value {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    padding: 0.25rem 0.5rem 1.25rem 0.5rem;
    font-size: clamp(1.25rem, 2.5vw, 2.2rem) !important;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}
/* 3. УПРАВЛЕНИЕ ТЕКСТОМ ПО УМОЛЧАНИЮ */
.comp-card-blue-logic * {
    color: var(--sitan-gray-dark) !important;
    opacity: 1 !important;
}
.safety-card-green-logic * {
    color: var(--sitan-gray-dark);
    opacity: 0.7;
}
/* 4. ЛОГИКА АКТИВАЦИИ: DESKTOP */
@media (hover: hover) {
    .comp-card-blue-logic:hover {
        background-color: var(--sitan-blue-dark) !important;
        border-color: var(--sitan-blue-dark) !important;
        transform: translate3d(0, -8px, 0) !important;
        box-shadow: 0 1px 6px color-mix(in srgb, var(--sitan-blue), transparent 80%) !important;
    }
    .safety-card-green-logic:hover {
        background-color: var(--sitan-green) !important;
        border-color: var(--sitan-green) !important;
        transform: translate3d(0, -8px, 0) !important;
        box-shadow: 0 1px 6px color-mix(in srgb, var(--sitan-green), transparent 80%) !important;
    }
    .comp-card-blue-logic:hover *,
    .safety-card-green-logic:hover * {
        color: var(--sitan-white) !important;
        opacity: 1 !important;
    }
}
/* 5. ЛОГИКА АКТИВАЦИИ: MOBILE */
.comp-card-blue-logic.is-touched {
    background-color: var(--sitan-blue-dark) !important;
    border-color: var(--sitan-blue-dark) !important;
    transform: translate3d(0, -4px, 0) !important;
}
.safety-card-green-logic.is-touched {
    background-color: var(--sitan-green) !important;
    border-color: var(--sitan-green) !important;
    transform: translate3d(0, -4px, 0) !important;
}
.comp-card-blue-logic.is-touched *,
.safety-card-green-logic.is-touched * {
    color: var(--sitan-white) !important;
    opacity: 1 !important;
}
/* assets/css/interactions/_highlights.css */
/* ============================================================
   HIGHLIGHTS SECTION: Секция с ключевыми показателями
   ============================================================ */
/* 1. БАЗОВАЯ СТРУКТУРА: Геометрия и Карточки */
.highlight-card-base {
    position: relative;
    display: flex;
    min-height: 140px;
    cursor: default;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border-width: 2px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1.5rem;
    text-align: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 768px) {
    .highlight-card-base {
        min-height: 180px;
        padding: 2rem;
    }
}
.highlight-card-base {
    box-shadow: 0 4px 15px color-mix(in srgb, var(--sitan-black), transparent 99%);
}
.highlight-label {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.2em;
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.highlight-value {
    font-size: clamp(1.875rem, 4vw, 3rem); font-variant-numeric: tabular-nums; display: block; font-weight: 900; --tw-numeric-spacing: tabular-nums; font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); letter-spacing: -0.05em; --tw-text-opacity: 1; color: rgb(26 26 26 / var(--tw-text-opacity, 1)); transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 500ms;
}
/* 2. ТИПОГРАФИКА ЗАГОЛОВКОВ */
.highlights-main-title {
    font-size: clamp(1.2rem, 3.5vw, 2.25rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    --tw-text-opacity: 1;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
.highlights-secondary-text {
    font-size: clamp(0.75rem, 1.2vw, 1.25rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
    opacity: 0.7;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}
/* 3. УНИФИЦИРОВАННАЯ СИНХРОНИЗАЦИЯ (Desktop & Mobile) */
/* Эффект: Красный акцент бейджа */
@media (hover: hover) {
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .sitan-accent-blue {
        border-color: rgb(224 48 46 / 0.4) !important;
        --tw-text-opacity: 1 !important;
        color: rgb(224 48 46 / var(--tw-text-opacity, 1)) !important;
    }
}
[data-touch-group="highlights"].is-touch-active .sitan-accent-blue {
    border-color: rgb(224 48 46 / 0.4) !important;
    --tw-text-opacity: 1 !important;
    color: rgb(224 48 46 / var(--tw-text-opacity, 1)) !important;
}
/* Эффект: Синий заголовок и проявление текста */
@media (hover: hover) {
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-main-title {
        --tw-text-opacity: 1 !important;
        color: rgb(33 150 243 / var(--tw-text-opacity, 1)) !important;
    }
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-secondary-text,
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .highlights-compliance-box {
        --tw-text-opacity: 1 !important;
        color: rgb(26 26 26 / var(--tw-text-opacity, 1)) !important;
        opacity: 1 !important;
    }
}
[data-touch-group="highlights"].is-touch-active .highlights-main-title {
    --tw-text-opacity: 1 !important;
    color: rgb(33 150 243 / var(--tw-text-opacity, 1)) !important;
}
[data-touch-group="highlights"].is-touch-active .highlights-secondary-text,
[data-touch-group="highlights"].is-touch-active .highlights-compliance-box {
    --tw-text-opacity: 1 !important;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1)) !important;
    opacity: 1 !important;
}
/* Эффект: Физика фона (Зум и Вуаль) */
@media (hover: hover) {
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
        opacity: 1 !important;
    }
    [data-touch-group="highlights"]:has([data-touch-trigger]:hover) .hero-dynamic-veil {
        opacity: 0.3 !important;
    }
}
[data-touch-group="highlights"].is-touch-active .hero-bg-img {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    opacity: 1 !important;
}
[data-touch-group="highlights"].is-touch-active .hero-dynamic-veil {
    opacity: 0.3 !important;
}
/* 4. ИНДИВИДУАЛЬНОЕ СОСТОЯНИЕ КАРТОЧЕК */
/* Desktop Hover */
@media (hover: hover) {
    .highlight-card-base:hover {
        --tw-translate-y: -0.5rem !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
        --tw-border-opacity: 1 !important;
        border-color: rgb(224 48 46 / var(--tw-border-opacity, 1)) !important;
        --tw-bg-opacity: 1 !important;
        background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1)) !important;
        box-shadow: 0 20px 40px color-mix(in srgb, var(--sitan-red), transparent 80%);
    }
    .highlight-card-base:hover .highlight-label {
        color: rgb(255 255 255 / 0.7) !important;
    }
    .highlight-card-base:hover .highlight-value {
        --tw-text-opacity: 1 !important;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
    }
}
/* Mobile Touch */
.highlight-card-base.is-touched {
    --tw-border-opacity: 1 !important;
    border-color: rgb(224 48 46 / var(--tw-border-opacity, 1)) !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%);
}
.highlight-card-base.is-touched .highlight-label {
    color: rgb(255 255 255 / 0.7) !important;
}
.highlight-card-base.is-touched .highlight-value {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
/* 5. ФИКС ТЕМНОГО ТЕКСТА (Для вторичных описаний при синхронизации) */
.is-touch-active .app-card-body,
.is-touch-active .highlights-secondary-text,
.is-touch-active .highlights-compliance-box p {
    color: var(--sitan-black) !important;
    opacity: 1 !important;
}
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
        /* Основные цвета бренда SITAN */
        --sitan-blue: #2196F3;
        --sitan-blue-dark: #1976D2;
        --sitan-blue-light: #D6EAF8;
        --sitan-red: #E0302E;
        --sitan-red-light: #FEEAEA;
        --sitan-green: #2E7D32;

        /* Нейтральные оттенки */
        --sitan-black: #1A1A1A;
        --sitan-white: #FFFFFF;
        --sitan-gray: #4A4A4A;
        --sitan-gray-dark: #333333;
        --sitan-gray-light: #F5F5F5;

        /* Вспомогательные акценты для таблиц и карточек */
        --sitan-orange: #FB8C00;
        --sitan-purple: #8E24AA;
    }
html {
        scrollbar-gutter: stable;
        scroll-behavior: auto !important;
        -webkit-text-size-adjust: 100%;
    }
body {
    min-height: 100vh;
    overflow-x: hidden;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    font-family: Inter, sans-serif;
    --tw-text-opacity: 1;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        line-height: 1.6;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
}
section[id^="section-"] {
        scroll-margin-top: 0;
        touch-action: manipulation;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
/* --- SYSTEM STYLES --- */
#nano-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background-color: var(--sitan-red);
        z-index: 10000;
        pointer-events: none;
        width: 0;
        opacity: 1;
        transition: width 0.4s ease-out, opacity 0.4s linear;
    }
.grecaptcha-badge {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
::-moz-selection {
        background-color: var(--sitan-red);
        color: var(--sitan-white);
    }
::selection {
        background-color: var(--sitan-red);
        color: var(--sitan-white);
    }
.section-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        padding: 10rem 0;
}
.section-404 p {
        color: var(--sitan-red);
        font-weight: 700;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: -0.05em;
    }
#section-footer {
        min-height: auto !important;
        scroll-margin-top: 0;
    }
body.overflow-hidden,
    body.modal-open {
        overflow: hidden !important;
    }
@keyframes pageFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
.page-loaded main {
        animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
body:not(.page-loaded) main {
        opacity: 0;
    }
* { -webkit-tap-highlight-color: transparent; }
.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
/* --- HEADER & NAVIGATION --- */
.fixed-header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 110;
    display: flex;
    width: 100%;
    align-items: center;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
        height: 5rem;
}
@media (max-width: 767px) { .fixed-header { height: 4rem; } }
#section-highlights .header-container {
    margin-top: 2rem !important;
}
@media (min-width: 768px) {
    #section-highlights .header-container {
        margin-top: 3rem !important;
    }
}
.header-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    height: 100%;
    width: 100%;
    max-width: 80rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .header-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (min-width: 768px) {
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media (min-width: 1024px) {
    .header-container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
.header-icon-btn {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        color: var(--sitan-black);
}
@media (hover: hover) { .header-icon-btn:hover { color: var(--sitan-red); } }
.logo-link {
    display: flex;
    height: 2rem;
    flex-shrink: 0;
    align-items: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 768px) {
    .logo-link {
        height: 2.75rem;
    }
}
.logo-link {
        will-change: transform;
    }
.logo-img {
    display: block;
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
        transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s ease;
        animation: logo-pulse-blue 4s infinite ease-in-out;
}
/* --- UNIVERSAL NAV LINK SYSTEM --- */
.nav-link-premium {
    position: relative;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        color: var(--sitan-gray-dark);
        will-change: color;
}
.nav-link-premium::after {
        content: '';
        pointer-events: none;
        position: absolute;
        bottom: -4px;
        left: 50%;
        height: 2px;
        width: 0px;
        transition-property: all;
        transition-duration: 300ms;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        background-color: var(--sitan-blue);
        transform: translateX(-50%);
        will-change: width;
    }
@media (hover: hover) {
        .nav-link-premium:not(.is-active):hover { color: var(--sitan-blue); }
        .nav-link-premium:not(.is-active):hover::after {
        width: 100%;
    }
    }
.nav-link-premium.is-active {
        color: var(--sitan-red) !important;
        font-weight: 700;
    }
.nav-link-premium.is-active::after { display: none !important; }
#section-sitan-eco .group\/eco .mobile-menu-link {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
#section-sitan-eco .group\/eco:hover .mobile-menu-link {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }
.process-step-card .mobile-menu-link {
        transform: none;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
.mobile-menu-link {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        color: var(--sitan-black);
}
.mobile-menu-link.is-active { color: var(--sitan-red) !important; }
/* --- HEADER LANGUAGE SWITCHER --- */
body.lang-flag-wrapper {
        overflow: hidden;
    }
.lang-flag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
        width: 1.75rem;
        height: 1.75rem;
        background-color: var(--sitan-gray-light);
        border: 2px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
        will-change: transform;
}
@media (max-width: 767px) {
        .lang-flag-wrapper {
            width: 1.5rem;
            height: 1.5rem;
        }
    }
.flag-img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (hover: hover) {
        .lang-switcher-btn:hover .lang-flag-wrapper {
            transform: scale(1.15);
            border-color: var(--sitan-blue);
        }
    }
.lang-switcher-btn.is-touched .lang-flag-wrapper {
        transform: scale(0.9) !important;
        opacity: 0.8;
        border-color: var(--sitan-blue);
    }
.lang-switcher-btn:focus-visible .lang-flag-wrapper {
        outline: 2px solid var(--sitan-blue);
        outline-offset: 2px;
    }
/* --- FOOTER SYSTEM --- */
.main-footer {
    margin-top: auto;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
        background-color: var(--sitan-white);
        border-top: 1px solid var(--sitan-gray-light);
}
.footer-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) {
    .footer-container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
.footer-content-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .footer-content-split {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .footer-content-split {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */
    }
    .footer-content-split {
        flex-direction: row;
        gap: 2rem;
    }
}
.footer-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 500;
}
@media (min-width: 768px) {
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .footer-nav {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .footer-nav {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */
    }
    .footer-nav {
        width: auto;
        flex-direction: row;
    }
}
.footer-link {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 768px) {
    .footer-link {
        width: auto;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.footer-link {
        color: var(--sitan-gray);
    }
@media (hover: hover) { .footer-link:hover { color: var(--sitan-red); } }
.footer-legal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
}
@media (min-width: 768px) {
    .footer-legal-info {
        align-items: flex-end;
    }
}
.footer-legal-info {
        color: var(--sitan-gray);
    }
.developer-name {
    margin-left: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
        color: var(--sitan-black);
}
/* --- MOBILE MENU & BURGER --- */
#mobile-menu {
        top: 5rem;
        height: calc(100vh - 5rem);
        will-change: transform;
    }
@media (max-width: 767px) { #mobile-menu { top: 4rem; height: calc(100vh - 4rem); } }
body.modal-open #mobile-menu-button {
        color: var(--sitan-blue-dark) !important;
    }
/* --- SCROLL PROGRESS --- */
.scroll-progress-line {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 120;
    height: 3px;
        background-color: var(--sitan-blue);
        box-shadow: 0 1px 6px color-mix(in srgb, var(--sitan-blue), transparent 80%);
        transition: all 0.3s ease-out;
}
/* --- ANIMATIONS --- */
@keyframes logo-pulse-blue {
        0%, 100% {
            transform: scale(1);
            filter: drop-shadow(0 0 0 color-mix(in srgb, var(--sitan-blue), transparent 100%));
        }
        50% {
            transform: scale(1.03);
            filter: drop-shadow(0 0 12px color-mix(in srgb, var(--sitan-blue), transparent 70%));
        }
    }
@media (hover: hover) {
        .logo-link:hover .logo-img {
            animation: none !important;
            filter: drop-shadow(0 4px 15px color-mix(in srgb, var(--sitan-blue), transparent 75%));
        }
        .logo-link:hover { transform: scale(1.1); }
    }
/* --- GLOBAL TOUCH ENGINE STATES --- */
.logo-link.is-touched {
        transform: scale(0.9) !important;
        opacity: 0.9 !important;
        filter: drop-shadow(0 0 15px color-mix(in srgb, var(--sitan-blue), transparent 50%)) !important;
        transition-duration: 150ms !important;
    }
.nav-link-premium.is-touched {
        transform: scale(0.95) !important;
        opacity: 0.8 !important;
        color: var(--sitan-blue) !important;
        transition-duration: 100ms !important;
    }
.mobile-menu-link.is-touched {
        transform: scale(0.95) !important;
        opacity: 0.7 !important;
        color: var(--sitan-red) !important;
        transition-duration: 100ms !important;
    }
.header-icon-btn:active,
    .footer-link:active {
        transform: scale(0.9) !important;
        opacity: 0.7 !important;
        transition-duration: 100ms !important;
    }
/* ============================================================
       GLOBAL STYLE ENGINE: SITAN (Hero, EPD, Apps, Advantages)
       ============================================================ */
/* 1. БАЗОВАЯ ФИЗИКА (GPU & Transitions) */
/* Старые классы теперь используют новую модульную систему через множественные классы */
.hero-bg-img,
    .app-zoom-img,
    .advantage-zoom-img {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
    transform: translateZ(0);
    perspective: 1000px;
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        will-change: transform;
        backface-visibility: hidden;
        transform: scale(1);
}
.hero-dynamic-veil {
    transition-property: opacity;
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity;
        opacity: 1;
}
/* Автоматическое применение новых классов к старым */
.hero-bg-img.touch-bg-zoom,
    .app-zoom-img.touch-bg-zoom,
    .advantage-zoom-img.touch-bg-zoom {
        /* Стили уже определены в _base.css */
    }
.hero-dynamic-veil.touch-veil {
        /* Стили уже определены в _base.css */
    }
/* 2. СТАБИЛИЗАЦИЯ ТЕКСТА */
[data-touch-group="hero"] p,
    .sitan-hero-subtitle {
    text-rendering: geometricPrecision;
    -moz-osx-font-smoothing: grayscale;
    font-variant-ligatures: none;
        text-rendering: optimizeLegibility;
        color: var(--sitan-white);
        opacity: 0.8;
        text-shadow: 0 1px 8px color-mix(in srgb, var(--sitan-black), transparent 60%);
        font-weight: 400 !important;
        transform: translateZ(0);
        -webkit-font-smoothing: antialiased;
        will-change: color, opacity, text-shadow;
        transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        text-shadow 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
/* 3. ОБЩАЯ ПЛАВНОСТЬ ПЛАШЕК */
[data-touch-group="hero"] h1 span,
    .app-section-title-box h2 span,
    .advantage-main-title h2 span {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        will-change: background-color, color, box-shadow;
        display: inline-block;
}
/* Цвет заголовков по умолчанию (белый для hero секций) */
[data-touch-group="hero"] h1 span {
        color: var(--sitan-white) !important;
    }
/* Для sitan-accent-blue тоже белый по умолчанию */
[data-touch-group="hero"] .sitan-accent-blue {
        color: var(--sitan-white) !important;
    }
/* ============================================================
       СИСТЕМА КАРТОЧЕК (EPD & Applications)
       ============================================================ */
.epd-card,
    .group\/app-card {
    border-width: 3px;
    border-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        will-change: transform, box-shadow, border-color;
}
.app-card-text-wrapper {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    justify-content: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.epd-card p,
    .group\/app-card p {
        color: var(--sitan-gray-dark);
        opacity: 0.7;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }
.epd-card .app-icon,
    .group\/app-card .app-icon {
        color: var(--sitan-red);
        opacity: 0.4;
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
    }
/* Специфика синих карточек (EPD) */
.epd-card .app-icon { color: var(--sitan-blue); }
.epd-card .app-card-title { color: var(--sitan-gray-dark); opacity: 0.8; transition: all 0.4s ease; }
.epd-card p { color: var(--sitan-black); font-weight: 900; }
/* ============================================================
       DESKTOP & MOBILE LOGIC (Hover/Touch Effects)
       ============================================================ */
/* 
     * ПРИМЕЧАНИЕ: Основная логика перенесена в модульную систему:
     * - assets/css/interactions/_base.css (фоновые эффекты)
     * - assets/css/interactions/_groups.css (заголовки и текст)
     * - assets/css/interactions/_cards.css (карточки)
     * - assets/css/interactions/_buttons.css (изоляция кнопок)
     * 
     * Оставлены только специфичные правила, которые не покрыты модулями
     */
@media (hover: none) {
        * { -webkit-tap-highlight-color: transparent; }
    }
/* ============================================================
       SITAN EPD FINAL OVERRIDES
       ============================================================ */
/* 1. ISO БЕЙДЖИ: Полная изоляция (Красный эффект) */
.iso-badge-sitan {
    cursor: default;
    border-radius: 0.75rem;
    border-width: 2px;
    border-color: rgb(255 255 255 / 0.2);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        will-change: transform, color, border-color, background-color;
}
@media (hover: hover) {
        .iso-badge-sitan:hover {
            color: var(--sitan-red) !important;
            border-color: var(--sitan-red) !important;
            background-color: color-mix(in srgb, var(--sitan-red), transparent 95%) !important;
            --tw-scale-x: 1.05 !important;
            --tw-scale-y: 1.05 !important;
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
            box-shadow: 0 0 20px color-mix(in srgb, var(--sitan-red), transparent 70%);
        }
    }
.iso-badge-sitan:active,
    .iso-badge-sitan.is-touched {
        color: var(--sitan-red) !important;
        border-color: var(--sitan-red) !important;
        background-color: color-mix(in srgb, var(--sitan-red), transparent 95%) !important;
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    }
/* 2. КАРТОЧКИ EPD: Центрирование и визуальные правки */
.epd-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.epd-card .app-card-text-wrapper {
    margin-right: 0px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
/* Делаем .Title карточки темнее по умолчанию именно для EPD */
.epd-card .app-card-title {
        color: var(--sitan-black) !important;
        opacity: 0.85 !important;
        font-weight: 700 !important;
    }
/* 3. СИНХРОНИЗАЦИЯ ГРУППЫ HERO (Desktop) */
@media (hover: hover) {
        [data-touch-group="hero"]:has([data-touch-trigger="title"]:hover, [data-touch-trigger="app-card"]:hover) .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
        opacity: 1 !important;
    }

        [data-touch-group="hero"]:has([data-touch-trigger="title"]:hover, [data-touch-trigger="app-card"]:hover) .hero-dynamic-veil {
            opacity: 0.1 !important;
        }

        [data-touch-group="hero"]:has([data-touch-trigger="title"]:hover, [data-touch-trigger="app-card"]:hover) .sitan-accent-blue {
            background-color: var(--sitan-blue) !important;
            color: var(--sitan-white) !important;
            box-shadow: 0 15px 40px color-mix(in srgb, var(--sitan-blue), transparent 70%) !important;
        }

        [data-touch-group="hero"]:has([data-touch-trigger="title"]:hover, [data-touch-trigger="app-card"]:hover) p {
            color: var(--sitan-black) !important;
            opacity: 1 !important;
            text-shadow: none !important;
        }
    }
/* 4. ТАЧ-СОСТОЯНИЯ ГРУППЫ HERO (Mobile) */
[data-touch-group="hero"].is-touch-active .hero-bg-img,
    [data-touch-group="hero"].state-trigger-title .hero-bg-img {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    opacity: 1 !important;
}
[data-touch-group="hero"].is-touch-active .hero-dynamic-veil,
    [data-touch-group="hero"].state-trigger-title .hero-dynamic-veil {
        opacity: 0.1 !important;
    }
[data-touch-group="hero"].is-touch-active .sitan-accent-blue,
    [data-touch-group="hero"].state-trigger-title .sitan-accent-blue {
        background-color: var(--sitan-blue) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--sitan-blue), transparent 70%) !important;
    }
[data-touch-group="hero"].is-touch-active p,
    [data-touch-group="hero"].state-trigger-title p {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
        text-shadow: none !important;
    }
/* 5. ФОН СЕКЦИИ И БАЗОВЫЕ ПАРАМЕТРЫ */
#section-hero {
        background-color: var(--sitan-gray-light) !important;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 1000ms;
    }
.hero-bg-img {
        transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1s ease-in-out !important;
    }
/* ============================================================
       ADVANTAGES CAROUSEL ENGINE
       ============================================================ */
/* 1. ПЛАВНОСТЬ ПОЯВЛЕНИЯ КАРТОЧЕК */
.swiper-slide .advantage-card-animation-group {
        opacity: 0;
        transform: translateY(20px);
        transition: transform 0.4s ease-in, opacity 0.4s ease-in;
        will-change: transform, opacity;
    }
.swiper-slide-active .advantage-card-animation-group {
        opacity: 1;
        transform: translateY(0);
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s,
        opacity 0.8s ease-out 0.3s;
    }
/* 2. БАЗОВОЕ СОСТОЯНИЕ ЭЛЕМЕНТОВ (Синхронизировано с Hero) */
.advantage-zoom-img {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 1000ms;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        will-change: transform;
        transform: scale(1);
}
.hero-dynamic-veil {
    transition-property: opacity;
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity;
}
.sitan-advantage-block {
    border-radius: 1rem;
    border-width: 3px;
    border-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
        background-color: var(--sitan-white);
        box-shadow: 0 15px 35px color-mix(in srgb, #000, transparent 92%);
        backface-visibility: hidden;
        transform: translateZ(0);
        pointer-events: auto;
}
/* СТАТИЧНЫЙ ЗАГОЛОВОК */
.advantage-main-title {
        position: absolute;
        top: 10%;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 100 !important;
        pointer-events: none;
        opacity: 1 !important;
        visibility: visible !important;
    }
/* Плашка заголовка: Синхронизация отступов и теней с Hero */
.advantage-main-title h2 span {
        color: var(--sitan-white) !important;
        background-color: transparent;
        text-shadow: 0 2px 10px color-mix(in srgb, #000, transparent 50%);
        pointer-events: auto;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms; /* Длительность как в Hero */
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        display: inline-block;
        will-change: background-color, color, box-shadow;
    }
.sitan-advantage-block h3 {
        color: color-mix(in srgb, var(--sitan-red), transparent 25%);
        transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }
.sitan-advantage-block p {
        color: var(--sitan-gray-dark);
        opacity: 0.7;
        font-weight: 700;
        transition: all 0.5s ease;
    }
/* 3. DESKTOP LOGIC (Hover) */
@media (hover: hover) {
        /* Эффект при ховере на САМ заголовок (как в Hero) */
        .advantage-main-title h2 span:hover {
            background-color: var(--sitan-red) !important;
            color: var(--sitan-white) !important;
            box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
            text-shadow: none;
        }

        /* Подсветка при ховере на КАРТОЧКУ */
        [data-touch-group="advantages"]:has(.sitan-advantage-block:hover) .advantage-main-title h2 span {
            background-color: var(--sitan-red) !important;
            color: var(--sitan-white) !important;
            box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
            text-shadow: none;
        }

        /* Фоновые эффекты при ховере на КАРТОЧКУ */
        .swiper-slide:has(.sitan-advantage-block:hover) .advantage-zoom-img {
            transform: scale(1.1) !important;
        }
        .swiper-slide:has(.sitan-advantage-block:hover) .hero-dynamic-veil {
            opacity: 0 !important;
        }

        /* Ховер самой карточки */
        .sitan-advantage-block:hover {
            background-color: color-mix(in srgb, var(--sitan-white), transparent 5%) !important;
            border-color: var(--sitan-blue) !important;
            box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
            transform: translateY(-5px);
        }
        .sitan-advantage-block:hover h3 { color: var(--sitan-red) !important; }
        .sitan-advantage-block:hover p { color: var(--sitan-black) !important; opacity: 1 !important; }
    }
/* ============================================================
       MOBILE LOGIC (Touch Sync: Hero, Apps, Advantages)
       ============================================================ */
/* 1. ГЛОБАЛЬНЫЙ ЗУМ ФОНА И ВУАЛЬ */
[data-touch-group].is-touch-active .hero-bg-img,
    [data-touch-group].is-touch-active .app-zoom-img,
    [data-touch-group].is-touch-active .advantage-zoom-img,
    [data-touch-group].state-trigger-title .hero-bg-img,
    [data-touch-group].state-trigger-apps-title .app-zoom-img,
    [data-touch-group].state-trigger-title .advantage-zoom-img {
        transform: scale(1.1) !important;
    }
[data-touch-group].is-touch-active .hero-dynamic-veil,
    [data-touch-group].state-trigger-title .hero-dynamic-veil,
    [data-touch-group].state-trigger-apps-title .hero-dynamic-veil {
        opacity: 0 !important;
    }
/* 2. АКТИВАЦИЯ ЗАГОЛОВКОВ (Red Highlight Logic) */
/* HERO & ADVANTAGES (Стандартный триггер title) */
[data-touch-group="hero"].state-trigger-title h1 span:not(.sitan-accent-blue),
    [data-touch-group="advantages"].state-trigger-title .advantage-main-title h2 span,
    [data-touch-group="advantages"].is-touch-active .advantage-main-title h2 span {
        background-color: var(--sitan-red) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
        text-shadow: none !important;
    }
/* APPLICATIONS (Специфичный триггер apps-title из HTML) */
[data-touch-group="apps"].state-trigger-apps-title .app-section-title-box h2 span,
    [data-touch-group="apps"].is-touch-active .app-section-title-box h2 span {
        background-color: var(--sitan-red) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
        text-shadow: none !important;
    }
/* 3. СПЕЦИФИКА EPD (Blue Highlight Logic) */
[data-touch-group="hero"].state-trigger-title .sitan-accent-blue,
    [data-touch-group="hero"].is-touch-active .sitan-accent-blue {
        background-color: var(--sitan-blue) !important;
        color: var(--sitan-white) !important;
        box-shadow: 0 15px 30px color-mix(in srgb, var(--sitan-blue), transparent 70%) !important;
    }
/* 4. ИНДИВИДУАЛЬНЫЙ ТАЧ КАРТОЧЕК (Apps & EPD) */
.group\/app-card.is-touched,
    .epd-card.is-touched {
        border-color: var(--sitan-blue) !important;
        box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
        background-color: var(--sitan-white) !important;
    }
.group\/app-card.is-touched .app-icon,
    .epd-card.is-touched .app-icon {
        opacity: 1 !important;
        transform: scale(1.1) !important;
    }
.group\/app-card.is-touched .app-card-title,
    .epd-card.is-touched .app-card-title {
        color: var(--sitan-blue) !important;
        opacity: 1 !important;
    }
.group\/app-card.is-touched p,
    .epd-card.is-touched p,
    .group\/app-card.is-touched .app-card-body,
    .epd-card.is-touched .app-card-body {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
/* 5. ИНДИВИДУАЛЬНЫЙ ТАЧ КАРТОЧЕК (Advantages) */
.group\/advantage.is-touched .sitan-advantage-block {
        border-color: var(--sitan-blue) !important;
        box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
    }
.group\/advantage.is-touched .sitan-advantage-block h3 {
        color: var(--sitan-red) !important;
    }
.group\/advantage.is-touched .sitan-advantage-block p {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
/* 6. УТИЛИТЫ */
@media (hover: none) {
        * { -webkit-tap-highlight-color: transparent; }
    }
/* --------------------------------------------------
       3) PREMIUM BUTTONS SYSTEM (SEMANTIC & ISOLATED)
       --------------------------------------------------*/
/* --- SYSTEM COMPONENTS --- */
.snap-section-content {
    width: 100%;
    --tw-translate-y: 1.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
        will-change: transform, opacity;
        transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.snap-section-content.is-visible {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
}
/* ============================================================
       SITAN HIGHLIGHTS (Global Sync & Precision Touch)
       ПРИМЕЧАНИЕ: Основная логика перенесена в assets/css/interactions/_highlights.css
       ============================================================ */
/* 6. КОРРЕКЦИЯ ОТСТУПОВ (Через ID для высокого приоритета) */
#section-highlights .\!container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#section-highlights .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* Убираем nth-child, так как в шаблоне добавили явные mt- классы, 
       но оставляем страховку для сетки карточек */
#section-highlights .grid {
    margin-top: 2rem !important;
}
@media (min-width: 768px) {
    #section-highlights .grid {
        margin-top: 3rem !important;
    }
}
/* ============================================================
       SITAN TECH & ECO SYNCHRONIZED STYLES
       ФИКС: Восстановление Hover/Touch эффектов + Увеличенные шрифты
       ============================================================ */
/* 1. БАЗОВЫЕ СОСТОЯНИЯ (АТМОСФЕРА ПОКОЯ) */
#section-sitan-properties .hero-bg-img,
    #section-sitan-eco .hero-bg-img {
        opacity: 0;
        transform: scale(1);
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    }
#section-sitan-properties .hero-dynamic-veil,
    #section-sitan-eco .hero-dynamic-veil {
        opacity: 1;
        background-color: var(--sitan-white);
        transition: opacity 0.7s ease;
    }
/* 2. ТИПОГРАФИКА */
/* Перенесено в assets/css/interactions/_tech.css */
/* 3. СПЕЦИФИЧЕСКИЕ ЭФФЕКТЫ ECO */
#section-sitan-eco .group\/eco .text-2xl,
    #section-sitan-eco .group\/eco .text-3xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
#section-sitan-eco .group\/eco:hover .text-2xl,
    #section-sitan-eco .group\/eco:hover .text-3xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }
/* ФИКС: Подложка непрозрачна (Properties + Eco) */
#section-sitan-properties .tech-table-viewport,
    #section-sitan-eco .tech-table-viewport {
        background-color: var(--sitan-white) !important;
        backdrop-filter: none !important;
        border: 1px solid color-mix(in srgb, var(--sitan-gray-light), transparent 80%) !important;
    }
/* 4. ГЛОБАЛЬНАЯ СИНХРОНИЗАЦИЯ (АТМОСФЕРА ПРИ ХОВЕРЕ) */
/* Перенесено в assets/css/interactions/_tech.css */
/* 5. ОБЩАЯ ЛОГИКА СТРОК (ДЕСКТОП ХОВЕР) */
@media (min-width: 768px) {
        .tech-row td:not(.sticky-col) { background-color: transparent !important; }

        .tech-row:nth-child(odd), .tech-row:nth-child(odd) .sticky-col { background-color: var(--sitan-white) !important; }
        .tech-row:nth-child(even), .tech-row:nth-child(even) .sticky-col { background-color: color-mix(in srgb, var(--sitan-black), transparent 99%) !important; }

        /* Восстановление эффекта наведения на строку */
        #section-sitan-properties .tech-row:hover,
        #section-sitan-properties .tech-row:hover .sticky-col,
        #section-sitan-eco .tech-row:hover,
        #section-sitan-eco .tech-row:hover .sticky-col {
            background-color: color-mix(in srgb, var(--sitan-blue), transparent 94%) !important;
            z-index: 20;
        }

        /* Восстановление красного акцента при ховере */
        .tech-row:hover .tech-val { color: var(--sitan-red) !important; }

        .tech-row:hover .app-card-body,
        .tech-row:hover .tech-unit,
        .tech-row:hover .tech-std {
            opacity: 1 !important;
            color: var(--sitan-black) !important;
        }

        .tech-header-row th:hover { color: var(--sitan-red) !important; }
    }
/* 6. ЛОКАЛЬНЫЕ ЭФФЕКТЫ (MOBILE ISOLATION & FIXES) */
@media (max-width: 767px) {
        #section-sitan-properties .tech-row td,
        #section-sitan-properties .tech-row div,
        #section-sitan-eco .tech-row td,
        #section-sitan-eco .tech-row div { background-color: transparent !important; }

        /* Состояние покоя на мобильном */
        .tech-row:not(.is-touched) .app-card-body,
        .tech-row:not(.is-touched) .tech-unit,
        .tech-row:not(.is-touched) .tech-std {
            opacity: 0.4 !important;
            color: var(--sitan-gray-dark) !important;
        }

        /* Восстановление Touch-эффекта */
        .tech-row.is-touched {
            background-color: color-mix(in srgb, var(--sitan-blue), transparent 95%) !important;
            border-color: color-mix(in srgb, var(--sitan-blue), transparent 80%) !important;
        }
        .tech-row.is-touched .tech-mobile-header { color: var(--sitan-blue) !important; }
        .tech-row.is-touched .tech-val { color: var(--sitan-red) !important; }
        .tech-row.is-touched .app-card-body,
        .tech-row.is-touched .tech-unit,
        .tech-row.is-touched .tech-std {
            opacity: 1 !important;
            color: var(--sitan-black) !important;
        }

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */
        .tech-row {
            border-bottom: 1px solid color-mix(in srgb, var(--sitan-black), transparent 97%);
            background-color: var(--sitan-white) !important;
            text-align: center !important;
            padding: 1.5rem 1rem !important; /* Увеличен отступ */
        }

        .tech-mobile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 700;
            color: var(--sitan-black);
            font-size: 1.15rem; /* Увеличенный шрифт названия */
            line-height: 1.2;
            gap: 4px;
            transition: color 0.3s ease;
    }

        /* Группировка значения и юнита */
        .tech-row td .flex-row {
        align-items: center !important;
        justify-content: center !important;
        -moz-column-gap: 0.375rem !important;
             column-gap: 0.375rem !important;
            display: flex !important;
    }

        .tech-std-mobile { font-weight: 600; font-size: 0.95rem; opacity: 0.5; }
        .tech-val { font-size: 1.5rem !important; line-height: 1.2; } /* Увеличенное значение */
        .tech-unit { font-size: 0.9rem !important; text-transform: none !important; margin-top: 0.15rem; font-weight: 700; }
    }
/* 7. ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ И ВЬЮПОРТ */
body.tech-table-viewport {
        overflow: hidden;
    }
.tech-table-viewport {
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
    overflow: hidden;
    border-radius: 1.5rem;
    border-width: 2px;
    border-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        background-color: var(--sitan-white);
        box-shadow: 0 20px 50px color-mix(in srgb, var(--sitan-black), transparent 96%);
}
.tech-val { font-variant-numeric: tabular-nums; --tw-numeric-spacing: tabular-nums; font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
        color: var(--sitan-black);
        font-weight: 800; /* Более жирный для читаемости */
        transition: color 0.3s ease; }
.tech-val.is-highlighted { color: var(--sitan-blue); }
.tech-unit { opacity: 0.6; color: var(--sitan-gray-dark); }
.tech-std { opacity: 0.5; color: var(--sitan-gray-dark); }
/* tech-compliance-box перенесено в assets/css/interactions/_tech.css */
.tabular-nums { font-variant-numeric: tabular-nums; }
/* ============================================================
       SECTION: SITAN COMPOSITION (Material & Ecology)
       ПРИМЕЧАНИЕ: Основная логика перенесена в модули:
       - assets/css/interactions/_tech.css (заголовки и compliance-box)
       - assets/css/interactions/_composition-cards.css (карточки)
       ============================================================ */
/* 0. ЛОКАЛЬНАЯ ТИПОГРАФИКА ЗАГОЛОВКА */
/* Перенесено в assets/css/interactions/_tech.css */
/* Глобальные переходы для окружения */
.hero-bg-img,
    .hero-dynamic-veil,
    .tech-main-title {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* ============================================================
       SHARED & SECTION-SPECIFIC: PROCESS & ECOLOGY
       Фикс: Активация индикаторов (цифр) и иконки ISO + Текста ISO
       ============================================================ */
/* 1. ОБЩАЯ ТИПОГРАФИКА ЗАГОЛОВКОВ (Process + Ecology) */
#section-sitan-process .tech-main-title,
    #section-sitan-eco .tech-main-title {
        font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        line-height: 1.25;
        text-align: center;
        color: var(--sitan-black);
        will-change: color;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
/* Подзаголовок Process (Начальное состояние) */
#section-sitan-process .process-tech-subtitle {
        font-size: clamp(0.75rem, 1.2vw, 1.25rem) !important;
        text-transform: uppercase;
        font-weight: 500;
        color: var(--sitan-gray-dark);
        opacity: 0.7;
        will-change: color, opacity;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
/* 2. ФИЗИКА ФОНА (Универсально) */
#section-sitan-process .hero-bg-img,
    #section-sitan-eco .hero-bg-img {
        will-change: transform, opacity;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 1000ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
#section-sitan-process .hero-dynamic-veil,
    #section-sitan-eco .hero-dynamic-veil {
        will-change: opacity;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
/* 3. КАРТОЧКИ (Базовое состояние для обоих блоков) */
.process-step-card {
    border-radius: 1.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        will-change: transform, box-shadow;
        backface-visibility: hidden;
        transform: translate3d(0, 0, 0);
        box-shadow: 0 4px 20px color-mix(in srgb, var(--sitan-black), transparent 97%);
}
/* Фиксация элементов внутри (иконки 2xl, 3xl, 4xl и кружки с цифрами) */
.process-step-card .text-2xl,
    .process-step-card .text-3xl,
    .process-step-card .text-4xl,
    .process-step-card .step-number-box {
        transform: none !important;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
.process-step-card h3,
    .tech-val {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
        will-change: color;
}
.process-step-desc {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        will-change: color, opacity;
}
/* 4. ФУТЕР (Compliance & ISO) */
.tech-compliance-box p,
    .iso-text {
        font-size: clamp(11px, 1.5vw, 13px) !important;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-weight: 700;
        color: var(--sitan-gray-dark);
        opacity: 0.7;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
/* Иконка ISO (Базовое состояние) */
.iso-box {
        color: var(--sitan-red) !important;
        border-color: color-mix(in srgb, var(--sitan-red), transparent 70%) !important;
        will-change: border-color, color, transform;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
/* 5. ЛОГИКА АКТИВАЦИИ: DESKTOP (Hover) */
@media (hover: hover) {
        .process-step-card:hover {
            transform: translate3d(0, -10px, 0) !important;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--sitan-blue), transparent 94%) !important;
            border-color: color-mix(in srgb, var(--sitan-blue), transparent 90%) !important;
        }

        .process-step-card:hover h3,
        .process-step-card:hover .tech-val,
        .process-step-card:hover .step-number-box {
            color: var(--sitan-blue) !important;
        }

        .process-step-card:hover .step-number-box {
            background-color: var(--sitan-blue) !important;
            border-color: var(--sitan-blue) !important;
            color: white !important;
            box-shadow: 0 10px 20px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
        }

        .process-step-card:hover .process-step-desc {
            color: var(--sitan-black) !important;
            opacity: 1 !important;
        }

        /* Групповая активация заголовков и фона */
        [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-main-title,
        [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .tech-main-title {
            color: var(--sitan-blue) !important;
        }

        [data-touch-group="process"]:has([data-touch-trigger]:hover) .process-tech-subtitle {
            color: var(--sitan-black) !important;
            opacity: 1 !important;
        }

        [data-touch-group="process"]:has([data-touch-trigger]:hover) .hero-bg-img,
        [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .hero-bg-img {
        --tw-scale-x: 1.05 !important;
        --tw-scale-y: 1.05 !important;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
        opacity: 1 !important;
    }

        [data-touch-group="process"]:has([data-touch-trigger]:hover) .hero-dynamic-veil,
        [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .hero-dynamic-veil {
        opacity: 0.3 !important;
    }

        /* Активация Футера (Текст + ISO Box + ISO Text) */
        [data-touch-group="process"]:has([data-touch-trigger]:hover) .tech-compliance-box p,
        [data-touch-group="process"]:has([data-touch-trigger]:hover) .iso-text,
        [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .tech-compliance-box p,
        [data-touch-group="ecology"]:has([data-touch-trigger]:hover) .iso-text {
            color: var(--sitan-black) !important;
            opacity: 1 !important;
        }

        [data-touch-group="process"]:has([data-touch-trigger]:hover) .iso-box {
            border-color: var(--sitan-blue) !important;
            color: var(--sitan-blue) !important;
        }
    }
/* 6. ЛОГИКА АКТИВАЦИИ: MOBILE (Touch) */
[data-touch-group="process"].is-touch-active .tech-main-title,
    [data-touch-group="ecology"].is-touch-active .tech-main-title {
        color: var(--sitan-blue) !important;
    }
[data-touch-group="process"].is-touch-active .process-tech-subtitle {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
[data-touch-group="process"].is-touch-active .hero-bg-img,
    [data-touch-group="ecology"].is-touch-active .hero-bg-img {
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
    opacity: 1 !important;
}
/* Активация ISO элементов на мобильном таче */
[data-touch-group="process"].is-touch-active .tech-compliance-box p,
    [data-touch-group="process"].is-touch-active .iso-text,
    [data-touch-group="ecology"].is-touch-active .tech-compliance-box p,
    [data-touch-group="ecology"].is-touch-active .iso-text {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
[data-touch-group="process"].is-touch-active .iso-box {
        border-color: var(--sitan-blue) !important;
        color: var(--sitan-blue) !important;
    }
/* Индивидуальный тач карточки */
.process-step-card.is-touched {
        transform: translate3d(0, -4px, 0) !important;
        box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-black), transparent 95%) !important;
    }
.process-step-card.is-touched .step-number-box {
        background-color: var(--sitan-blue) !important;
        border-color: var(--sitan-blue) !important;
        color: white !important;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
    }
.process-step-card.is-touched h3,
    .process-step-card.is-touched .tech-val {
        color: var(--sitan-blue) !important;
    }
.process-step-card.is-touched .process-step-desc {
        color: var(--sitan-black) !important;
        opacity: 1 !important;
    }
/* 7. ТАБЛИЦА */
#section-sitan-eco .tech-table-viewport {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
[data-touch-group="ecology"]:has([data-touch-trigger="table"]:hover) .tech-table-viewport {
        border-color: color-mix(in srgb, var(--sitan-blue), transparent 80%) !important;
        box-shadow: 0 10px 30px color-mix(in srgb, var(--sitan-black), transparent 96%) !important;
    }
/* --- SECTION: CERTIFICATES (MOBILE OPTIMIZED & BUGFIX FINAL) --- */
.cert-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 160px;
        align-items: center;
        justify-content: center;
        border-radius: 1.25rem;
        border-width: 2px;
        border-color: transparent;
        padding: 1.25rem;
        text-align: center;
    }
@media (min-width: 1024px) {
    .cert-card {
        padding: 1.5rem;
    }
}
.cert-card {

        /* Базовый фон - белый и непрозрачный */
        background-color: var(--sitan-white) !important;
        opacity: 1 !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, background-color;
    }
/* Принудительный сброс цвета текста для состояния "покоя" */
.cert-card:not(:hover):not(.is-touched) .cert-card-title {
        color: var(--sitan-blue) !important;
    }
.cert-card:not(:hover):not(.is-touched) .cert-card-body {
        color: var(--sitan-gray) !important;
    }
/* Заголовок: Увеличен порог для мобилок (1.15rem) */
.cert-card-title {
    margin-bottom: 0.25rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: -0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        font-size: clamp(1.15rem, 5vw, 1.5rem) !important;
        color: var(--sitan-blue) !important;
}
/* Описание: Увеличен порог для мобилок (0.95rem) */
.cert-card-body {
    font-weight: 700;
    line-height: 1.25;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
        color: var(--sitan-gray) !important;
}
/* СОСТОЯНИЯ: АКТИВАЦИЯ (HOVER & TOUCH) */
.cert-card:hover,
    .cert-card.is-touched {
        background-color: var(--sitan-blue) !important;
        box-shadow: 0 10px 25px color-mix(in srgb, var(--sitan-blue), transparent 85%) !important;
        transform: translateY(-3px) scale(1.01);
    }
/* ИНВЕРСИЯ: Белый текст при активе */
.cert-card:hover .cert-card-title,
    .cert-card.is-touched .cert-card-title,
    .cert-card:hover .cert-card-body,
    .cert-card.is-touched .cert-card-body {
        color: var(--sitan-white) !important;
        opacity: 1 !important;
    }
/* ДОПОЛНИТЕЛЬНЫЙ ФИКС ДЛЯ ПОДПИСИ (из шаблона тех. соответствия) */
/* tech-compliance-box перенесено в assets/css/interactions/_tech.css */
.tech-compliance-box.is-touched p {
        color: var(--sitan-blue) !important;
        opacity: 1 !important;
    }
/* СТРОГИЙ СБРОС ДЛЯ МОБИЛОК (Media Query) */
@media (hover: none) {
        /* Убираем эффект ховера, который имитирует смартфон */
        .cert-card:hover:not(.is-touched) {
            background-color: var(--sitan-white) !important;
            opacity: 1 !important;
            transform: none;
            box-shadow: none;
        }
        /* Возвращаем цвета текста, если нет класса .is-touched */
        .cert-card:hover:not(.is-touched) .cert-card-title {
            color: var(--sitan-blue) !important;
        }
        .cert-card:hover:not(.is-touched) .cert-card-body {
            color: var(--sitan-gray) !important;
        }
    }
/* --- SECTION: PRODUCT CATALOG (FINAL REFINED & TOUCH-FIXED) --- */
/* 1. Позиционирование: контент поднят выше */
#section-catalog-products {
    padding-top: 4rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    #section-catalog-products {
        padding-top: 5rem;
    }
}
/* 2. Заголовок секции: Исправлен синтаксис и залипание */
[data-touch-trigger="title"] span {
    display: inline-block;
    cursor: default;
    --tw-text-opacity: 1;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
        /* Используем переменную вместо отсутствующего TW-класса */
        background-color: var(--sitan-accent-blue);
}
/* Эффект наведения (только для устройств с мышью) */
@media (hover: hover) {
        [data-touch-trigger="title"]:hover span {
            background-color: var(--sitan-blue) !important;
            color: var(--sitan-white) !important;
            --tw-scale-x: 1.05;
            --tw-scale-y: 1.05;
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
            --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        }
    }
/* Эффект касания (управляется через JS класс .is-touched) */
[data-touch-trigger="title"].is-touched span {
        background-color: var(--sitan-blue) !important;
        color: var(--sitan-white) !important;
        --tw-scale-x: 1.05;
        --tw-scale-y: 1.05;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
/* Связь тех. подписи и заголовка (Hover-синхронизация) */
@media (hover: hover) {
        .snap-section-content:has(.tech-compliance-box:hover) [data-touch-trigger="title"] span {
            background-color: var(--sitan-blue) !important;
            color: var(--sitan-white) !important;
        }
    }
/* 3. Карточка товара */
.product-card {
        display: flex;
        flex-direction: column;
    }
body.product-card {
        overflow: hidden;
    }
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border-width: 2px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
        background-color: rgba(245, 245, 245, 0.3) !important;
}
@media (min-width: 768px) {
        .product-card {
            flex-direction: row;
            align-items: center;
            padding: 1rem;
        }
    }
/* Контейнер фото */
body.product-image-container {
        overflow: hidden;
    }
.product-image-container {
    height: 14rem;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
@media (min-width: 768px) {
    .product-image-container {
        height: 8rem;
        width: 12rem;
    }
}
@media (min-width: 1024px) {
    .product-image-container {
        height: 10rem;
        width: 14rem;
    }
}
.product-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}
/* Блок информации */
.product-info {
    flex-grow: 1;
    padding: 1.5rem;
    text-align: left;
}
@media (min-width: 768px) {
    .product-info {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.product-title {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: -0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
        font-size: clamp(1.2rem, 3vw, 1.75rem) !important;
        color: var(--sitan-blue) !important;
}
.product-description {
    margin-top: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(74 74 74 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 1024px) {
    .product-description {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
/* Мета-данные: Группировка Размер + Толщина */
.product-meta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
@media (min-width: 768px) {
    .product-meta {
        gap: 0.5rem;
    }
}
.meta-main-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
@media (min-width: 768px) {
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .meta-main-group {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .meta-main-group {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */
    }
    .meta-main-group {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}
.meta-divider {
    display: none;
    font-weight: 300;
    color: rgb(74 74 74 / 0.3);
}
#language-modal.meta-divider {
    display: none;
}
@media (min-width: 768px) {
    .meta-divider {
        display: inline;
    }
}
.meta-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 1024px) {
    .meta-row {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}
.meta-label {
    font-weight: 700;
    color: rgb(74 74 74 / 0.5);
}
.meta-value {
    font-weight: 900;
    --tw-text-opacity: 1;
    color: rgb(33 150 243 / var(--tw-text-opacity, 1));
}
/* 4. Кнопка заказа */
.product-action {
    flex-shrink: 0;
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .product-action {
        padding: 1rem;
    }
}
.btn-order {
    width: 100%;
    border-radius: 0.75rem;
    border-width: 2px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 768px) {
    .btn-order {
        width: auto;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}
.btn-order {
        border-color: var(--sitan-blue);
        color: var(--sitan-blue);
        background: transparent;
    }
/* --- СОСТОЯНИЯ: HOVER & TOUCH ДЛЯ КАРТОЧКИ --- */
@media (hover: hover) {
        .product-card:hover {
        border-color: rgb(33 150 243 / 0.1);
        --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
            background-color: var(--sitan-white) !important;
            transform: translateY(-4px);
    }
        .product-card:hover .product-image {
        --tw-scale-x: 1.05;
        --tw-scale-y: 1.05;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
        .product-card:hover .btn-order {
            background-color: var(--sitan-blue) !important;
            color: var(--sitan-white) !important;
            border-color: transparent;
            --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
            --tw-shadow-color: rgb(59 130 246 / 0.2);
            --tw-shadow: var(--tw-shadow-colored);
        }
        .product-card:hover .meta-label {
        color: rgb(74 74 74 / 0.7);
    }
    }
/* Состояние тача для карточки (активируется через JS) */
.product-card.is-touched {
    border-color: rgb(33 150 243 / 0.1);
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        background-color: var(--sitan-white) !important;
        transform: translateY(-4px);
}
.product-card.is-touched .product-image {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.product-card.is-touched .btn-order {
        background-color: var(--sitan-blue) !important;
        color: var(--sitan-white) !important;
        border-color: transparent;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        --tw-shadow-color: rgb(59 130 246 / 0.2);
        --tw-shadow: var(--tw-shadow-colored);
    }
.product-card.is-touched .meta-label {
    color: rgb(74 74 74 / 0.7);
}
/* Принудительный сброс нативных ховеров на мобилках */
@media (hover: none) {
        .product-card:hover:not(.is-touched) {
            background-color: rgba(245, 245, 245, 0.3) !important;
            transform: none;
            box-shadow: none;
            border-color: transparent;
        }
        .product-card:hover:not(.is-touched) .btn-order {
            background-color: transparent !important;
            color: var(--sitan-blue) !important;
            border-color: var(--sitan-blue) !important;
        }
    }
.btn-premium {
            /* 1. Базовая структура и типографика */
        }
body.btn-premium {
        overflow: hidden;
    }
.btn-premium {
    position: relative;
    display: inline-flex;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;

            /* 2. Унификация размера */

            width: 100%;

            max-width: 280px;
}
@media (min-width: 640px) {
    .btn-premium {
        width: auto;
    }
}
.btn-premium {

            /* 3. Локальные переменные управления */
            --btn-bg: var(--sitan-gray);
            --btn-text: var(--sitan-white);
            --btn-shadow-opacity: 0.3;
            --btn-shadow-color: color-mix(in srgb, var(--btn-bg), transparent calc(100% - (var(--btn-shadow-opacity) * 100%)));

            background-color: var(--btn-bg);
            color: var(--btn-text);
            box-shadow: 0 8px 25px var(--btn-shadow-color);
            will-change: transform, box-shadow, background-color;
        }
/* 4. Семантические модификаторы */
.btn-premium.btn-primary {
            --btn-bg: var(--sitan-red);
        }
.btn-premium.btn-secondary {
            --btn-bg: var(--sitan-blue);
        }
/* 5. Состояние Hover (Десктоп) */
@media (hover: hover) {
            .btn-premium:hover {
        --tw-translate-y: -0.25rem;
        --tw-scale-x: 1.05;
        --tw-scale-y: 1.05;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
                background-color: var(--sitan-white);
                color: var(--btn-bg);
                box-shadow: 0 15px 35px color-mix(in srgb, var(--btn-bg), transparent 60%);
                /* Мягкая граница в цвет кнопки при ховере */
                outline: 1px solid color-mix(in srgb, var(--btn-bg), transparent 90%);
    }

            /* Эффект блика */
            .btn-premium::after {
                content: '';
                pointer-events: none;
                position: absolute;
                inset: 0px;
                opacity: 0;
                transition-property: opacity;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 500ms;
                background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
            }
            .btn-premium:hover::after {
        opacity: 1;
    }
        }
/* 6. ИЗОЛЯЦИЯ: Блокировка активации фона при ховере/таче на кнопку */
/* Когда мышь на кнопке, заставляем фон сбросить зум, даже если мы внутри активной зоны */
[data-touch-group]:has(.btn-premium:hover) .hero-bg-img,
        [data-touch-group]:has(.btn-premium:hover) .app-zoom-img,
        [data-touch-group]:has(.btn-premium.is-touched) .hero-bg-img,
        [data-touch-group]:has(.btn-premium.is-touched) .app-zoom-img {
            transform: scale(1) !important;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
        }
/* 7. Состояние Active & Touch (Синхронизация с JS) */
.btn-premium:active,
        .btn-premium.is-touched {
            /* Убираем дублирование, оставляем чистый transform */
            transform: scale(0.95) translateZ(0) !important;
            opacity: 0.9 !important;
            transition-duration: 150ms !important;
            box-shadow: 0 4px 12px color-mix(in srgb, var(--btn-bg), transparent 50%) !important;
        }
/* 8. Контейнер кнопок */
.hero-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .hero-buttons-container {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .hero-buttons-container {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex;
        } /* Увеличенное значение */
    }
    .hero-buttons-container {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .hero-buttons-container {
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .hero-buttons-container {
        gap: 2.5rem;
    }
}
/* 9. Вариант Outline */
.btn-premium.btn-outline {
    border-width: 2px;
    background-color: transparent;
            border-color: var(--btn-bg);
            color: var(--btn-bg);
            box-shadow: none;
}
@media (hover: hover) {
            .btn-premium.btn-outline:hover {
                background-color: var(--btn-bg);
                color: var(--sitan-white);
            }
        }
.pointer-events-none {
    pointer-events: none;
}
.pointer-events-auto {
    pointer-events: auto;
}
.visible {
    visibility: visible;
}
.\!static {
    position: static !important;
}
.fixed {
    position: fixed;
}
.\!absolute {
    position: absolute !important;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.inset-0 {
    inset: 0px;
}
.inset-x-0 {
    left: 0px;
    right: 0px;
}
.-bottom-10 {
    bottom: -2.5rem;
}
.-right-10 {
    right: -2.5rem;
}
.bottom-0 {
    bottom: 0px;
}
.bottom-\[-4px\] {
    bottom: -4px;
}
.left-0 {
    left: 0px;
}
.left-1\/2 {
    left: 50%;
}
.right-0 {
    right: 0px;
}
.top-0 {
    top: 0px;
}
.top-16 {
    top: 4rem;
}
.top-\[40\%\] {
    top: 40%;
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-30 {
    z-index: 30;
}
.z-50 {
    z-index: 50;
}
.z-\[100\] {
    z-index: 100;
}
.z-\[110\] {
    z-index: 110;
}
.z-\[120\] {
    z-index: 120;
}
.z-\[140\] {
    z-index: 140;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.\!mr-0 {
    margin-right: 0px !important;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.ml-1 {
    margin-left: 0.25rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.ml-4 {
    margin-left: 1rem;
}
.mr-2 {
    margin-right: 0.5rem;
}
.mr-3 {
    margin-right: 0.75rem;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-16 {
    margin-top: 4rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-20 {
    margin-top: 5rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-\[-2\.5rem\] {
    margin-top: -2.5rem;
}
.mt-auto {
    margin-top: auto;
}
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.table {
    display: table;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.h-1 {
    height: 0.25rem;
}
.h-10 {
    height: 2.5rem;
}
.h-12 {
    height: 3rem;
}
.h-14 {
    height: 3.5rem;
}
.h-24 {
    height: 6rem;
}
.h-5 {
    height: 1.25rem;
}
.h-56 {
    height: 14rem;
}
.h-6 {
    height: 1.5rem;
}
.h-7 {
    height: 1.75rem;
}
.h-8 {
    height: 2rem;
}
.h-80 {
    height: 20rem;
}
.h-\[2px\] {
    height: 2px;
}
.h-\[3px\] {
    height: 3px;
}
.h-full {
    height: 100%;
}
.h-screen {
    height: 100vh;
}
.h-screen-full {
    height: 100dvh;
}
.min-h-\[120px\] {
    min-height: 120px;
}
.min-h-\[140px\] {
    min-height: 140px;
}
.min-h-\[60vh\] {
    min-height: 60vh;
}
.min-h-\[95px\] {
    min-height: 95px;
}
.min-h-screen {
    min-height: 100vh;
}
.w-0 {
    width: 0px;
}
.w-10 {
    width: 2.5rem;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.w-24 {
    width: 6rem;
}
.w-5 {
    width: 1.25rem;
}
.w-6 {
    width: 1.5rem;
}
.w-7 {
    width: 1.75rem;
}
.w-auto {
    width: auto;
}
.w-full {
    width: 100%;
}
.min-w-\[300px\] {
    min-width: 300px;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-5xl {
    max-width: 64rem;
}
.max-w-6xl {
    max-width: 72rem;
}
.max-w-7xl {
    max-width: 80rem;
}
.max-w-\[240px\] {
    max-width: 240px;
}
.max-w-\[280px\] {
    max-width: 280px;
}
.max-w-\[360px\] {
    max-width: 360px;
}
.max-w-full {
    max-width: 100%;
}
.max-w-md {
    max-width: 28rem;
}
.max-w-prose {
    max-width: 65ch;
}
.max-w-sm {
    max-width: 24rem;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.shrink-0 {
    flex-shrink: 0;
}
.flex-grow {
    flex-grow: 1;
}
.border-collapse {
    border-collapse: collapse;
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1 {
    --tw-translate-y: -0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-2 {
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-2 {
    --tw-translate-y: 0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-4 {
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-6 {
    --tw-translate-y: 1.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-8 {
    --tw-translate-y: 2rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform-gpu {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform-none {
    transform: none;
}
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes pulse {
    50% {
        opacity: .5;
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.animate-spin {
    animation: spin 1s linear infinite;
}
.cursor-default {
    cursor: default;
}
.cursor-pointer {
    cursor: pointer;
}
.select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.resize {
    resize: both;
}
.list-disc {
    list-style-type: disc;
}
.appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.items-center {
    align-items: center;
}
.items-baseline {
    align-items: baseline;
}
.items-stretch {
    align-items: stretch;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-items-center {
    justify-items: center;
}
.gap-0 {
    gap: 0px;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-1\.5 {
    gap: 0.375rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-x-1\.5 {
    -moz-column-gap: 0.375rem;
         column-gap: 0.375rem;
}
.gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
}
.space-x-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-14 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.self-stretch {
    align-self: stretch;
}
.overflow-hidden {
    overflow: hidden;
}
.break-all {
    word-break: break-all;
}
.rounded-2xl {
    border-radius: 1rem;
}
.rounded-3xl {
    border-radius: 1.5rem;
}
.rounded-\[1\.25rem\] {
    border-radius: 1.25rem;
}
.rounded-\[1\.5rem\] {
    border-radius: 1.5rem;
}
.rounded-\[1rem\] {
    border-radius: 1rem;
}
.rounded-\[2\.5rem\] {
    border-radius: 2.5rem;
}
.rounded-\[2rem\] {
    border-radius: 2rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.border {
    border-width: 1px;
}
.border-0 {
    border-width: 0px;
}
.border-2 {
    border-width: 2px;
}
.border-\[3px\] {
    border-width: 3px;
}
.border-b {
    border-bottom-width: 1px;
}
.border-t {
    border-top-width: 1px;
}
.\!border-none {
    border-style: none !important;
}
.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-50 {
    --tw-border-opacity: 1;
    border-color: rgb(249 250 251 / var(--tw-border-opacity, 1));
}
.border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-sitan-blue-dark {
    --tw-border-opacity: 1;
    border-color: rgb(25 118 210 / var(--tw-border-opacity, 1));
}
.border-sitan-blue-dark\/0 {
    border-color: rgb(25 118 210 / 0);
}
.border-sitan-blue-dark\/10 {
    border-color: rgb(25 118 210 / 0.1);
}
.border-sitan-blue-dark\/100 {
    border-color: rgb(25 118 210 / 1);
}
.border-sitan-blue-dark\/15 {
    border-color: rgb(25 118 210 / 0.15);
}
.border-sitan-blue-dark\/20 {
    border-color: rgb(25 118 210 / 0.2);
}
.border-sitan-blue-dark\/25 {
    border-color: rgb(25 118 210 / 0.25);
}
.border-sitan-blue-dark\/30 {
    border-color: rgb(25 118 210 / 0.3);
}
.border-sitan-blue-dark\/35 {
    border-color: rgb(25 118 210 / 0.35);
}
.border-sitan-blue-dark\/40 {
    border-color: rgb(25 118 210 / 0.4);
}
.border-sitan-blue-dark\/45 {
    border-color: rgb(25 118 210 / 0.45);
}
.border-sitan-blue-dark\/5 {
    border-color: rgb(25 118 210 / 0.05);
}
.border-sitan-blue-dark\/50 {
    border-color: rgb(25 118 210 / 0.5);
}
.border-sitan-blue-dark\/55 {
    border-color: rgb(25 118 210 / 0.55);
}
.border-sitan-blue-dark\/60 {
    border-color: rgb(25 118 210 / 0.6);
}
.border-sitan-blue-dark\/65 {
    border-color: rgb(25 118 210 / 0.65);
}
.border-sitan-blue-dark\/70 {
    border-color: rgb(25 118 210 / 0.7);
}
.border-sitan-blue-dark\/75 {
    border-color: rgb(25 118 210 / 0.75);
}
.border-sitan-blue-dark\/80 {
    border-color: rgb(25 118 210 / 0.8);
}
.border-sitan-blue-dark\/85 {
    border-color: rgb(25 118 210 / 0.85);
}
.border-sitan-blue-dark\/90 {
    border-color: rgb(25 118 210 / 0.9);
}
.border-sitan-blue-dark\/95 {
    border-color: rgb(25 118 210 / 0.95);
}
.border-sitan-blue-light {
    --tw-border-opacity: 1;
    border-color: rgb(214 234 248 / var(--tw-border-opacity, 1));
}
.border-sitan-blue-light\/0 {
    border-color: rgb(214 234 248 / 0);
}
.border-sitan-blue-light\/10 {
    border-color: rgb(214 234 248 / 0.1);
}
.border-sitan-blue-light\/100 {
    border-color: rgb(214 234 248 / 1);
}
.border-sitan-blue-light\/15 {
    border-color: rgb(214 234 248 / 0.15);
}
.border-sitan-blue-light\/20 {
    border-color: rgb(214 234 248 / 0.2);
}
.border-sitan-blue-light\/25 {
    border-color: rgb(214 234 248 / 0.25);
}
.border-sitan-blue-light\/30 {
    border-color: rgb(214 234 248 / 0.3);
}
.border-sitan-blue-light\/35 {
    border-color: rgb(214 234 248 / 0.35);
}
.border-sitan-blue-light\/40 {
    border-color: rgb(214 234 248 / 0.4);
}
.border-sitan-blue-light\/45 {
    border-color: rgb(214 234 248 / 0.45);
}
.border-sitan-blue-light\/5 {
    border-color: rgb(214 234 248 / 0.05);
}
.border-sitan-blue-light\/50 {
    border-color: rgb(214 234 248 / 0.5);
}
.border-sitan-blue-light\/55 {
    border-color: rgb(214 234 248 / 0.55);
}
.border-sitan-blue-light\/60 {
    border-color: rgb(214 234 248 / 0.6);
}
.border-sitan-blue-light\/65 {
    border-color: rgb(214 234 248 / 0.65);
}
.border-sitan-blue-light\/70 {
    border-color: rgb(214 234 248 / 0.7);
}
.border-sitan-blue-light\/75 {
    border-color: rgb(214 234 248 / 0.75);
}
.border-sitan-blue-light\/80 {
    border-color: rgb(214 234 248 / 0.8);
}
.border-sitan-blue-light\/85 {
    border-color: rgb(214 234 248 / 0.85);
}
.border-sitan-blue-light\/90 {
    border-color: rgb(214 234 248 / 0.9);
}
.border-sitan-blue-light\/95 {
    border-color: rgb(214 234 248 / 0.95);
}
.border-sitan-blue\/10 {
    border-color: rgb(33 150 243 / 0.1);
}
.border-sitan-blue\/20 {
    border-color: rgb(33 150 243 / 0.2);
}
.border-sitan-green-light {
    --tw-border-opacity: 1;
    border-color: rgb(232 245 233 / var(--tw-border-opacity, 1));
}
.border-sitan-green-light\/0 {
    border-color: rgb(232 245 233 / 0);
}
.border-sitan-green-light\/10 {
    border-color: rgb(232 245 233 / 0.1);
}
.border-sitan-green-light\/100 {
    border-color: rgb(232 245 233 / 1);
}
.border-sitan-green-light\/15 {
    border-color: rgb(232 245 233 / 0.15);
}
.border-sitan-green-light\/20 {
    border-color: rgb(232 245 233 / 0.2);
}
.border-sitan-green-light\/25 {
    border-color: rgb(232 245 233 / 0.25);
}
.border-sitan-green-light\/30 {
    border-color: rgb(232 245 233 / 0.3);
}
.border-sitan-green-light\/35 {
    border-color: rgb(232 245 233 / 0.35);
}
.border-sitan-green-light\/40 {
    border-color: rgb(232 245 233 / 0.4);
}
.border-sitan-green-light\/45 {
    border-color: rgb(232 245 233 / 0.45);
}
.border-sitan-green-light\/5 {
    border-color: rgb(232 245 233 / 0.05);
}
.border-sitan-green-light\/50 {
    border-color: rgb(232 245 233 / 0.5);
}
.border-sitan-green-light\/55 {
    border-color: rgb(232 245 233 / 0.55);
}
.border-sitan-green-light\/60 {
    border-color: rgb(232 245 233 / 0.6);
}
.border-sitan-green-light\/65 {
    border-color: rgb(232 245 233 / 0.65);
}
.border-sitan-green-light\/70 {
    border-color: rgb(232 245 233 / 0.7);
}
.border-sitan-green-light\/75 {
    border-color: rgb(232 245 233 / 0.75);
}
.border-sitan-green-light\/80 {
    border-color: rgb(232 245 233 / 0.8);
}
.border-sitan-green-light\/85 {
    border-color: rgb(232 245 233 / 0.85);
}
.border-sitan-green-light\/90 {
    border-color: rgb(232 245 233 / 0.9);
}
.border-sitan-green-light\/95 {
    border-color: rgb(232 245 233 / 0.95);
}
.border-sitan-orange-dark {
    --tw-border-opacity: 1;
    border-color: rgb(251 140 0 / var(--tw-border-opacity, 1));
}
.border-sitan-orange-dark\/0 {
    border-color: rgb(251 140 0 / 0);
}
.border-sitan-orange-dark\/10 {
    border-color: rgb(251 140 0 / 0.1);
}
.border-sitan-orange-dark\/100 {
    border-color: rgb(251 140 0 / 1);
}
.border-sitan-orange-dark\/15 {
    border-color: rgb(251 140 0 / 0.15);
}
.border-sitan-orange-dark\/20 {
    border-color: rgb(251 140 0 / 0.2);
}
.border-sitan-orange-dark\/25 {
    border-color: rgb(251 140 0 / 0.25);
}
.border-sitan-orange-dark\/30 {
    border-color: rgb(251 140 0 / 0.3);
}
.border-sitan-orange-dark\/35 {
    border-color: rgb(251 140 0 / 0.35);
}
.border-sitan-orange-dark\/40 {
    border-color: rgb(251 140 0 / 0.4);
}
.border-sitan-orange-dark\/45 {
    border-color: rgb(251 140 0 / 0.45);
}
.border-sitan-orange-dark\/5 {
    border-color: rgb(251 140 0 / 0.05);
}
.border-sitan-orange-dark\/50 {
    border-color: rgb(251 140 0 / 0.5);
}
.border-sitan-orange-dark\/55 {
    border-color: rgb(251 140 0 / 0.55);
}
.border-sitan-orange-dark\/60 {
    border-color: rgb(251 140 0 / 0.6);
}
.border-sitan-orange-dark\/65 {
    border-color: rgb(251 140 0 / 0.65);
}
.border-sitan-orange-dark\/70 {
    border-color: rgb(251 140 0 / 0.7);
}
.border-sitan-orange-dark\/75 {
    border-color: rgb(251 140 0 / 0.75);
}
.border-sitan-orange-dark\/80 {
    border-color: rgb(251 140 0 / 0.8);
}
.border-sitan-orange-dark\/85 {
    border-color: rgb(251 140 0 / 0.85);
}
.border-sitan-orange-dark\/90 {
    border-color: rgb(251 140 0 / 0.9);
}
.border-sitan-orange-dark\/95 {
    border-color: rgb(251 140 0 / 0.95);
}
.border-sitan-orange-light {
    --tw-border-opacity: 1;
    border-color: rgb(255 243 224 / var(--tw-border-opacity, 1));
}
.border-sitan-orange-light\/0 {
    border-color: rgb(255 243 224 / 0);
}
.border-sitan-orange-light\/10 {
    border-color: rgb(255 243 224 / 0.1);
}
.border-sitan-orange-light\/100 {
    border-color: rgb(255 243 224 / 1);
}
.border-sitan-orange-light\/15 {
    border-color: rgb(255 243 224 / 0.15);
}
.border-sitan-orange-light\/20 {
    border-color: rgb(255 243 224 / 0.2);
}
.border-sitan-orange-light\/25 {
    border-color: rgb(255 243 224 / 0.25);
}
.border-sitan-orange-light\/30 {
    border-color: rgb(255 243 224 / 0.3);
}
.border-sitan-orange-light\/35 {
    border-color: rgb(255 243 224 / 0.35);
}
.border-sitan-orange-light\/40 {
    border-color: rgb(255 243 224 / 0.4);
}
.border-sitan-orange-light\/45 {
    border-color: rgb(255 243 224 / 0.45);
}
.border-sitan-orange-light\/5 {
    border-color: rgb(255 243 224 / 0.05);
}
.border-sitan-orange-light\/50 {
    border-color: rgb(255 243 224 / 0.5);
}
.border-sitan-orange-light\/55 {
    border-color: rgb(255 243 224 / 0.55);
}
.border-sitan-orange-light\/60 {
    border-color: rgb(255 243 224 / 0.6);
}
.border-sitan-orange-light\/65 {
    border-color: rgb(255 243 224 / 0.65);
}
.border-sitan-orange-light\/70 {
    border-color: rgb(255 243 224 / 0.7);
}
.border-sitan-orange-light\/75 {
    border-color: rgb(255 243 224 / 0.75);
}
.border-sitan-orange-light\/80 {
    border-color: rgb(255 243 224 / 0.8);
}
.border-sitan-orange-light\/85 {
    border-color: rgb(255 243 224 / 0.85);
}
.border-sitan-orange-light\/90 {
    border-color: rgb(255 243 224 / 0.9);
}
.border-sitan-orange-light\/95 {
    border-color: rgb(255 243 224 / 0.95);
}
.border-sitan-purple-dark {
    --tw-border-opacity: 1;
    border-color: rgb(142 36 170 / var(--tw-border-opacity, 1));
}
.border-sitan-purple-dark\/0 {
    border-color: rgb(142 36 170 / 0);
}
.border-sitan-purple-dark\/10 {
    border-color: rgb(142 36 170 / 0.1);
}
.border-sitan-purple-dark\/100 {
    border-color: rgb(142 36 170 / 1);
}
.border-sitan-purple-dark\/15 {
    border-color: rgb(142 36 170 / 0.15);
}
.border-sitan-purple-dark\/20 {
    border-color: rgb(142 36 170 / 0.2);
}
.border-sitan-purple-dark\/25 {
    border-color: rgb(142 36 170 / 0.25);
}
.border-sitan-purple-dark\/30 {
    border-color: rgb(142 36 170 / 0.3);
}
.border-sitan-purple-dark\/35 {
    border-color: rgb(142 36 170 / 0.35);
}
.border-sitan-purple-dark\/40 {
    border-color: rgb(142 36 170 / 0.4);
}
.border-sitan-purple-dark\/45 {
    border-color: rgb(142 36 170 / 0.45);
}
.border-sitan-purple-dark\/5 {
    border-color: rgb(142 36 170 / 0.05);
}
.border-sitan-purple-dark\/50 {
    border-color: rgb(142 36 170 / 0.5);
}
.border-sitan-purple-dark\/55 {
    border-color: rgb(142 36 170 / 0.55);
}
.border-sitan-purple-dark\/60 {
    border-color: rgb(142 36 170 / 0.6);
}
.border-sitan-purple-dark\/65 {
    border-color: rgb(142 36 170 / 0.65);
}
.border-sitan-purple-dark\/70 {
    border-color: rgb(142 36 170 / 0.7);
}
.border-sitan-purple-dark\/75 {
    border-color: rgb(142 36 170 / 0.75);
}
.border-sitan-purple-dark\/80 {
    border-color: rgb(142 36 170 / 0.8);
}
.border-sitan-purple-dark\/85 {
    border-color: rgb(142 36 170 / 0.85);
}
.border-sitan-purple-dark\/90 {
    border-color: rgb(142 36 170 / 0.9);
}
.border-sitan-purple-dark\/95 {
    border-color: rgb(142 36 170 / 0.95);
}
.border-sitan-purple-light {
    --tw-border-opacity: 1;
    border-color: rgb(243 229 245 / var(--tw-border-opacity, 1));
}
.border-sitan-purple-light\/0 {
    border-color: rgb(243 229 245 / 0);
}
.border-sitan-purple-light\/10 {
    border-color: rgb(243 229 245 / 0.1);
}
.border-sitan-purple-light\/100 {
    border-color: rgb(243 229 245 / 1);
}
.border-sitan-purple-light\/15 {
    border-color: rgb(243 229 245 / 0.15);
}
.border-sitan-purple-light\/20 {
    border-color: rgb(243 229 245 / 0.2);
}
.border-sitan-purple-light\/25 {
    border-color: rgb(243 229 245 / 0.25);
}
.border-sitan-purple-light\/30 {
    border-color: rgb(243 229 245 / 0.3);
}
.border-sitan-purple-light\/35 {
    border-color: rgb(243 229 245 / 0.35);
}
.border-sitan-purple-light\/40 {
    border-color: rgb(243 229 245 / 0.4);
}
.border-sitan-purple-light\/45 {
    border-color: rgb(243 229 245 / 0.45);
}
.border-sitan-purple-light\/5 {
    border-color: rgb(243 229 245 / 0.05);
}
.border-sitan-purple-light\/50 {
    border-color: rgb(243 229 245 / 0.5);
}
.border-sitan-purple-light\/55 {
    border-color: rgb(243 229 245 / 0.55);
}
.border-sitan-purple-light\/60 {
    border-color: rgb(243 229 245 / 0.6);
}
.border-sitan-purple-light\/65 {
    border-color: rgb(243 229 245 / 0.65);
}
.border-sitan-purple-light\/70 {
    border-color: rgb(243 229 245 / 0.7);
}
.border-sitan-purple-light\/75 {
    border-color: rgb(243 229 245 / 0.75);
}
.border-sitan-purple-light\/80 {
    border-color: rgb(243 229 245 / 0.8);
}
.border-sitan-purple-light\/85 {
    border-color: rgb(243 229 245 / 0.85);
}
.border-sitan-purple-light\/90 {
    border-color: rgb(243 229 245 / 0.9);
}
.border-sitan-purple-light\/95 {
    border-color: rgb(243 229 245 / 0.95);
}
.border-sitan-red {
    --tw-border-opacity: 1;
    border-color: rgb(224 48 46 / var(--tw-border-opacity, 1));
}
.border-sitan-red-light {
    --tw-border-opacity: 1;
    border-color: rgb(254 234 234 / var(--tw-border-opacity, 1));
}
.border-sitan-red-light\/0 {
    border-color: rgb(254 234 234 / 0);
}
.border-sitan-red-light\/10 {
    border-color: rgb(254 234 234 / 0.1);
}
.border-sitan-red-light\/100 {
    border-color: rgb(254 234 234 / 1);
}
.border-sitan-red-light\/15 {
    border-color: rgb(254 234 234 / 0.15);
}
.border-sitan-red-light\/20 {
    border-color: rgb(254 234 234 / 0.2);
}
.border-sitan-red-light\/25 {
    border-color: rgb(254 234 234 / 0.25);
}
.border-sitan-red-light\/30 {
    border-color: rgb(254 234 234 / 0.3);
}
.border-sitan-red-light\/35 {
    border-color: rgb(254 234 234 / 0.35);
}
.border-sitan-red-light\/40 {
    border-color: rgb(254 234 234 / 0.4);
}
.border-sitan-red-light\/45 {
    border-color: rgb(254 234 234 / 0.45);
}
.border-sitan-red-light\/5 {
    border-color: rgb(254 234 234 / 0.05);
}
.border-sitan-red-light\/50 {
    border-color: rgb(254 234 234 / 0.5);
}
.border-sitan-red-light\/55 {
    border-color: rgb(254 234 234 / 0.55);
}
.border-sitan-red-light\/60 {
    border-color: rgb(254 234 234 / 0.6);
}
.border-sitan-red-light\/65 {
    border-color: rgb(254 234 234 / 0.65);
}
.border-sitan-red-light\/70 {
    border-color: rgb(254 234 234 / 0.7);
}
.border-sitan-red-light\/75 {
    border-color: rgb(254 234 234 / 0.75);
}
.border-sitan-red-light\/80 {
    border-color: rgb(254 234 234 / 0.8);
}
.border-sitan-red-light\/85 {
    border-color: rgb(254 234 234 / 0.85);
}
.border-sitan-red-light\/90 {
    border-color: rgb(254 234 234 / 0.9);
}
.border-sitan-red-light\/95 {
    border-color: rgb(254 234 234 / 0.95);
}
.border-sitan-red\/30 {
    border-color: rgb(224 48 46 / 0.3);
}
.border-sitan-red\/40 {
    border-color: rgb(224 48 46 / 0.4);
}
.border-transparent {
    border-color: transparent;
}
.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
}
.border-white\/5 {
    border-color: rgb(255 255 255 / 0.05);
}
.\!bg-transparent {
    background-color: transparent !important;
}
.\!bg-white\/5 {
    background-color: rgb(255 255 255 / 0.05) !important;
}
.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/40 {
    background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50 {
    background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/60 {
    background-color: rgb(0 0 0 / 0.6);
}
.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-50\/50 {
    background-color: rgb(249 250 251 / 0.5);
}
.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-sitan-black {
    --tw-bg-opacity: 1;
    background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}
.bg-sitan-blue {
    --tw-bg-opacity: 1;
    background-color: rgb(33 150 243 / var(--tw-bg-opacity, 1));
}
.bg-sitan-blue-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(25 118 210 / var(--tw-bg-opacity, 1));
}
.bg-sitan-blue-dark\/0 {
    background-color: rgb(25 118 210 / 0);
}
.bg-sitan-blue-dark\/10 {
    background-color: rgb(25 118 210 / 0.1);
}
.bg-sitan-blue-dark\/100 {
    background-color: rgb(25 118 210 / 1);
}
.bg-sitan-blue-dark\/15 {
    background-color: rgb(25 118 210 / 0.15);
}
.bg-sitan-blue-dark\/20 {
    background-color: rgb(25 118 210 / 0.2);
}
.bg-sitan-blue-dark\/25 {
    background-color: rgb(25 118 210 / 0.25);
}
.bg-sitan-blue-dark\/30 {
    background-color: rgb(25 118 210 / 0.3);
}
.bg-sitan-blue-dark\/35 {
    background-color: rgb(25 118 210 / 0.35);
}
.bg-sitan-blue-dark\/40 {
    background-color: rgb(25 118 210 / 0.4);
}
.bg-sitan-blue-dark\/45 {
    background-color: rgb(25 118 210 / 0.45);
}
.bg-sitan-blue-dark\/5 {
    background-color: rgb(25 118 210 / 0.05);
}
.bg-sitan-blue-dark\/50 {
    background-color: rgb(25 118 210 / 0.5);
}
.bg-sitan-blue-dark\/55 {
    background-color: rgb(25 118 210 / 0.55);
}
.bg-sitan-blue-dark\/60 {
    background-color: rgb(25 118 210 / 0.6);
}
.bg-sitan-blue-dark\/65 {
    background-color: rgb(25 118 210 / 0.65);
}
.bg-sitan-blue-dark\/70 {
    background-color: rgb(25 118 210 / 0.7);
}
.bg-sitan-blue-dark\/75 {
    background-color: rgb(25 118 210 / 0.75);
}
.bg-sitan-blue-dark\/80 {
    background-color: rgb(25 118 210 / 0.8);
}
.bg-sitan-blue-dark\/85 {
    background-color: rgb(25 118 210 / 0.85);
}
.bg-sitan-blue-dark\/90 {
    background-color: rgb(25 118 210 / 0.9);
}
.bg-sitan-blue-dark\/95 {
    background-color: rgb(25 118 210 / 0.95);
}
.bg-sitan-blue-light {
    --tw-bg-opacity: 1;
    background-color: rgb(214 234 248 / var(--tw-bg-opacity, 1));
}
.bg-sitan-blue-light\/0 {
    background-color: rgb(214 234 248 / 0);
}
.bg-sitan-blue-light\/10 {
    background-color: rgb(214 234 248 / 0.1);
}
.bg-sitan-blue-light\/100 {
    background-color: rgb(214 234 248 / 1);
}
.bg-sitan-blue-light\/15 {
    background-color: rgb(214 234 248 / 0.15);
}
.bg-sitan-blue-light\/20 {
    background-color: rgb(214 234 248 / 0.2);
}
.bg-sitan-blue-light\/25 {
    background-color: rgb(214 234 248 / 0.25);
}
.bg-sitan-blue-light\/30 {
    background-color: rgb(214 234 248 / 0.3);
}
.bg-sitan-blue-light\/35 {
    background-color: rgb(214 234 248 / 0.35);
}
.bg-sitan-blue-light\/40 {
    background-color: rgb(214 234 248 / 0.4);
}
.bg-sitan-blue-light\/45 {
    background-color: rgb(214 234 248 / 0.45);
}
.bg-sitan-blue-light\/5 {
    background-color: rgb(214 234 248 / 0.05);
}
.bg-sitan-blue-light\/50 {
    background-color: rgb(214 234 248 / 0.5);
}
.bg-sitan-blue-light\/55 {
    background-color: rgb(214 234 248 / 0.55);
}
.bg-sitan-blue-light\/60 {
    background-color: rgb(214 234 248 / 0.6);
}
.bg-sitan-blue-light\/65 {
    background-color: rgb(214 234 248 / 0.65);
}
.bg-sitan-blue-light\/70 {
    background-color: rgb(214 234 248 / 0.7);
}
.bg-sitan-blue-light\/75 {
    background-color: rgb(214 234 248 / 0.75);
}
.bg-sitan-blue-light\/80 {
    background-color: rgb(214 234 248 / 0.8);
}
.bg-sitan-blue-light\/85 {
    background-color: rgb(214 234 248 / 0.85);
}
.bg-sitan-blue-light\/90 {
    background-color: rgb(214 234 248 / 0.9);
}
.bg-sitan-blue-light\/95 {
    background-color: rgb(214 234 248 / 0.95);
}
.bg-sitan-gray-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(51 51 51 / var(--tw-bg-opacity, 1));
}
.bg-sitan-gray-dark\/0 {
    background-color: rgb(51 51 51 / 0);
}
.bg-sitan-gray-dark\/10 {
    background-color: rgb(51 51 51 / 0.1);
}
.bg-sitan-gray-dark\/100 {
    background-color: rgb(51 51 51 / 1);
}
.bg-sitan-gray-dark\/15 {
    background-color: rgb(51 51 51 / 0.15);
}
.bg-sitan-gray-dark\/20 {
    background-color: rgb(51 51 51 / 0.2);
}
.bg-sitan-gray-dark\/25 {
    background-color: rgb(51 51 51 / 0.25);
}
.bg-sitan-gray-dark\/30 {
    background-color: rgb(51 51 51 / 0.3);
}
.bg-sitan-gray-dark\/35 {
    background-color: rgb(51 51 51 / 0.35);
}
.bg-sitan-gray-dark\/40 {
    background-color: rgb(51 51 51 / 0.4);
}
.bg-sitan-gray-dark\/45 {
    background-color: rgb(51 51 51 / 0.45);
}
.bg-sitan-gray-dark\/5 {
    background-color: rgb(51 51 51 / 0.05);
}
.bg-sitan-gray-dark\/50 {
    background-color: rgb(51 51 51 / 0.5);
}
.bg-sitan-gray-dark\/55 {
    background-color: rgb(51 51 51 / 0.55);
}
.bg-sitan-gray-dark\/60 {
    background-color: rgb(51 51 51 / 0.6);
}
.bg-sitan-gray-dark\/65 {
    background-color: rgb(51 51 51 / 0.65);
}
.bg-sitan-gray-dark\/70 {
    background-color: rgb(51 51 51 / 0.7);
}
.bg-sitan-gray-dark\/75 {
    background-color: rgb(51 51 51 / 0.75);
}
.bg-sitan-gray-dark\/80 {
    background-color: rgb(51 51 51 / 0.8);
}
.bg-sitan-gray-dark\/85 {
    background-color: rgb(51 51 51 / 0.85);
}
.bg-sitan-gray-dark\/90 {
    background-color: rgb(51 51 51 / 0.9);
}
.bg-sitan-gray-dark\/95 {
    background-color: rgb(51 51 51 / 0.95);
}
.bg-sitan-gray-light {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-sitan-gray-light\/0 {
    background-color: rgb(245 245 245 / 0);
}
.bg-sitan-gray-light\/10 {
    background-color: rgb(245 245 245 / 0.1);
}
.bg-sitan-gray-light\/100 {
    background-color: rgb(245 245 245 / 1);
}
.bg-sitan-gray-light\/15 {
    background-color: rgb(245 245 245 / 0.15);
}
.bg-sitan-gray-light\/20 {
    background-color: rgb(245 245 245 / 0.2);
}
.bg-sitan-gray-light\/25 {
    background-color: rgb(245 245 245 / 0.25);
}
.bg-sitan-gray-light\/30 {
    background-color: rgb(245 245 245 / 0.3);
}
.bg-sitan-gray-light\/35 {
    background-color: rgb(245 245 245 / 0.35);
}
.bg-sitan-gray-light\/40 {
    background-color: rgb(245 245 245 / 0.4);
}
.bg-sitan-gray-light\/45 {
    background-color: rgb(245 245 245 / 0.45);
}
.bg-sitan-gray-light\/5 {
    background-color: rgb(245 245 245 / 0.05);
}
.bg-sitan-gray-light\/50 {
    background-color: rgb(245 245 245 / 0.5);
}
.bg-sitan-gray-light\/55 {
    background-color: rgb(245 245 245 / 0.55);
}
.bg-sitan-gray-light\/60 {
    background-color: rgb(245 245 245 / 0.6);
}
.bg-sitan-gray-light\/65 {
    background-color: rgb(245 245 245 / 0.65);
}
.bg-sitan-gray-light\/70 {
    background-color: rgb(245 245 245 / 0.7);
}
.bg-sitan-gray-light\/75 {
    background-color: rgb(245 245 245 / 0.75);
}
.bg-sitan-gray-light\/80 {
    background-color: rgb(245 245 245 / 0.8);
}
.bg-sitan-gray-light\/85 {
    background-color: rgb(245 245 245 / 0.85);
}
.bg-sitan-gray-light\/90 {
    background-color: rgb(245 245 245 / 0.9);
}
.bg-sitan-gray-light\/95 {
    background-color: rgb(245 245 245 / 0.95);
}
.bg-sitan-green-light {
    --tw-bg-opacity: 1;
    background-color: rgb(232 245 233 / var(--tw-bg-opacity, 1));
}
.bg-sitan-green-light\/0 {
    background-color: rgb(232 245 233 / 0);
}
.bg-sitan-green-light\/10 {
    background-color: rgb(232 245 233 / 0.1);
}
.bg-sitan-green-light\/100 {
    background-color: rgb(232 245 233 / 1);
}
.bg-sitan-green-light\/15 {
    background-color: rgb(232 245 233 / 0.15);
}
.bg-sitan-green-light\/20 {
    background-color: rgb(232 245 233 / 0.2);
}
.bg-sitan-green-light\/25 {
    background-color: rgb(232 245 233 / 0.25);
}
.bg-sitan-green-light\/30 {
    background-color: rgb(232 245 233 / 0.3);
}
.bg-sitan-green-light\/35 {
    background-color: rgb(232 245 233 / 0.35);
}
.bg-sitan-green-light\/40 {
    background-color: rgb(232 245 233 / 0.4);
}
.bg-sitan-green-light\/45 {
    background-color: rgb(232 245 233 / 0.45);
}
.bg-sitan-green-light\/5 {
    background-color: rgb(232 245 233 / 0.05);
}
.bg-sitan-green-light\/50 {
    background-color: rgb(232 245 233 / 0.5);
}
.bg-sitan-green-light\/55 {
    background-color: rgb(232 245 233 / 0.55);
}
.bg-sitan-green-light\/60 {
    background-color: rgb(232 245 233 / 0.6);
}
.bg-sitan-green-light\/65 {
    background-color: rgb(232 245 233 / 0.65);
}
.bg-sitan-green-light\/70 {
    background-color: rgb(232 245 233 / 0.7);
}
.bg-sitan-green-light\/75 {
    background-color: rgb(232 245 233 / 0.75);
}
.bg-sitan-green-light\/80 {
    background-color: rgb(232 245 233 / 0.8);
}
.bg-sitan-green-light\/85 {
    background-color: rgb(232 245 233 / 0.85);
}
.bg-sitan-green-light\/90 {
    background-color: rgb(232 245 233 / 0.9);
}
.bg-sitan-green-light\/95 {
    background-color: rgb(232 245 233 / 0.95);
}
.bg-sitan-orange-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(251 140 0 / var(--tw-bg-opacity, 1));
}
.bg-sitan-orange-dark\/0 {
    background-color: rgb(251 140 0 / 0);
}
.bg-sitan-orange-dark\/10 {
    background-color: rgb(251 140 0 / 0.1);
}
.bg-sitan-orange-dark\/100 {
    background-color: rgb(251 140 0 / 1);
}
.bg-sitan-orange-dark\/15 {
    background-color: rgb(251 140 0 / 0.15);
}
.bg-sitan-orange-dark\/20 {
    background-color: rgb(251 140 0 / 0.2);
}
.bg-sitan-orange-dark\/25 {
    background-color: rgb(251 140 0 / 0.25);
}
.bg-sitan-orange-dark\/30 {
    background-color: rgb(251 140 0 / 0.3);
}
.bg-sitan-orange-dark\/35 {
    background-color: rgb(251 140 0 / 0.35);
}
.bg-sitan-orange-dark\/40 {
    background-color: rgb(251 140 0 / 0.4);
}
.bg-sitan-orange-dark\/45 {
    background-color: rgb(251 140 0 / 0.45);
}
.bg-sitan-orange-dark\/5 {
    background-color: rgb(251 140 0 / 0.05);
}
.bg-sitan-orange-dark\/50 {
    background-color: rgb(251 140 0 / 0.5);
}
.bg-sitan-orange-dark\/55 {
    background-color: rgb(251 140 0 / 0.55);
}
.bg-sitan-orange-dark\/60 {
    background-color: rgb(251 140 0 / 0.6);
}
.bg-sitan-orange-dark\/65 {
    background-color: rgb(251 140 0 / 0.65);
}
.bg-sitan-orange-dark\/70 {
    background-color: rgb(251 140 0 / 0.7);
}
.bg-sitan-orange-dark\/75 {
    background-color: rgb(251 140 0 / 0.75);
}
.bg-sitan-orange-dark\/80 {
    background-color: rgb(251 140 0 / 0.8);
}
.bg-sitan-orange-dark\/85 {
    background-color: rgb(251 140 0 / 0.85);
}
.bg-sitan-orange-dark\/90 {
    background-color: rgb(251 140 0 / 0.9);
}
.bg-sitan-orange-dark\/95 {
    background-color: rgb(251 140 0 / 0.95);
}
.bg-sitan-orange-light {
    --tw-bg-opacity: 1;
    background-color: rgb(255 243 224 / var(--tw-bg-opacity, 1));
}
.bg-sitan-orange-light\/0 {
    background-color: rgb(255 243 224 / 0);
}
.bg-sitan-orange-light\/10 {
    background-color: rgb(255 243 224 / 0.1);
}
.bg-sitan-orange-light\/100 {
    background-color: rgb(255 243 224 / 1);
}
.bg-sitan-orange-light\/15 {
    background-color: rgb(255 243 224 / 0.15);
}
.bg-sitan-orange-light\/20 {
    background-color: rgb(255 243 224 / 0.2);
}
.bg-sitan-orange-light\/25 {
    background-color: rgb(255 243 224 / 0.25);
}
.bg-sitan-orange-light\/30 {
    background-color: rgb(255 243 224 / 0.3);
}
.bg-sitan-orange-light\/35 {
    background-color: rgb(255 243 224 / 0.35);
}
.bg-sitan-orange-light\/40 {
    background-color: rgb(255 243 224 / 0.4);
}
.bg-sitan-orange-light\/45 {
    background-color: rgb(255 243 224 / 0.45);
}
.bg-sitan-orange-light\/5 {
    background-color: rgb(255 243 224 / 0.05);
}
.bg-sitan-orange-light\/50 {
    background-color: rgb(255 243 224 / 0.5);
}
.bg-sitan-orange-light\/55 {
    background-color: rgb(255 243 224 / 0.55);
}
.bg-sitan-orange-light\/60 {
    background-color: rgb(255 243 224 / 0.6);
}
.bg-sitan-orange-light\/65 {
    background-color: rgb(255 243 224 / 0.65);
}
.bg-sitan-orange-light\/70 {
    background-color: rgb(255 243 224 / 0.7);
}
.bg-sitan-orange-light\/75 {
    background-color: rgb(255 243 224 / 0.75);
}
.bg-sitan-orange-light\/80 {
    background-color: rgb(255 243 224 / 0.8);
}
.bg-sitan-orange-light\/85 {
    background-color: rgb(255 243 224 / 0.85);
}
.bg-sitan-orange-light\/90 {
    background-color: rgb(255 243 224 / 0.9);
}
.bg-sitan-orange-light\/95 {
    background-color: rgb(255 243 224 / 0.95);
}
.bg-sitan-purple-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(142 36 170 / var(--tw-bg-opacity, 1));
}
.bg-sitan-purple-dark\/0 {
    background-color: rgb(142 36 170 / 0);
}
.bg-sitan-purple-dark\/10 {
    background-color: rgb(142 36 170 / 0.1);
}
.bg-sitan-purple-dark\/100 {
    background-color: rgb(142 36 170 / 1);
}
.bg-sitan-purple-dark\/15 {
    background-color: rgb(142 36 170 / 0.15);
}
.bg-sitan-purple-dark\/20 {
    background-color: rgb(142 36 170 / 0.2);
}
.bg-sitan-purple-dark\/25 {
    background-color: rgb(142 36 170 / 0.25);
}
.bg-sitan-purple-dark\/30 {
    background-color: rgb(142 36 170 / 0.3);
}
.bg-sitan-purple-dark\/35 {
    background-color: rgb(142 36 170 / 0.35);
}
.bg-sitan-purple-dark\/40 {
    background-color: rgb(142 36 170 / 0.4);
}
.bg-sitan-purple-dark\/45 {
    background-color: rgb(142 36 170 / 0.45);
}
.bg-sitan-purple-dark\/5 {
    background-color: rgb(142 36 170 / 0.05);
}
.bg-sitan-purple-dark\/50 {
    background-color: rgb(142 36 170 / 0.5);
}
.bg-sitan-purple-dark\/55 {
    background-color: rgb(142 36 170 / 0.55);
}
.bg-sitan-purple-dark\/60 {
    background-color: rgb(142 36 170 / 0.6);
}
.bg-sitan-purple-dark\/65 {
    background-color: rgb(142 36 170 / 0.65);
}
.bg-sitan-purple-dark\/70 {
    background-color: rgb(142 36 170 / 0.7);
}
.bg-sitan-purple-dark\/75 {
    background-color: rgb(142 36 170 / 0.75);
}
.bg-sitan-purple-dark\/80 {
    background-color: rgb(142 36 170 / 0.8);
}
.bg-sitan-purple-dark\/85 {
    background-color: rgb(142 36 170 / 0.85);
}
.bg-sitan-purple-dark\/90 {
    background-color: rgb(142 36 170 / 0.9);
}
.bg-sitan-purple-dark\/95 {
    background-color: rgb(142 36 170 / 0.95);
}
.bg-sitan-purple-light {
    --tw-bg-opacity: 1;
    background-color: rgb(243 229 245 / var(--tw-bg-opacity, 1));
}
.bg-sitan-purple-light\/0 {
    background-color: rgb(243 229 245 / 0);
}
.bg-sitan-purple-light\/10 {
    background-color: rgb(243 229 245 / 0.1);
}
.bg-sitan-purple-light\/100 {
    background-color: rgb(243 229 245 / 1);
}
.bg-sitan-purple-light\/15 {
    background-color: rgb(243 229 245 / 0.15);
}
.bg-sitan-purple-light\/20 {
    background-color: rgb(243 229 245 / 0.2);
}
.bg-sitan-purple-light\/25 {
    background-color: rgb(243 229 245 / 0.25);
}
.bg-sitan-purple-light\/30 {
    background-color: rgb(243 229 245 / 0.3);
}
.bg-sitan-purple-light\/35 {
    background-color: rgb(243 229 245 / 0.35);
}
.bg-sitan-purple-light\/40 {
    background-color: rgb(243 229 245 / 0.4);
}
.bg-sitan-purple-light\/45 {
    background-color: rgb(243 229 245 / 0.45);
}
.bg-sitan-purple-light\/5 {
    background-color: rgb(243 229 245 / 0.05);
}
.bg-sitan-purple-light\/50 {
    background-color: rgb(243 229 245 / 0.5);
}
.bg-sitan-purple-light\/55 {
    background-color: rgb(243 229 245 / 0.55);
}
.bg-sitan-purple-light\/60 {
    background-color: rgb(243 229 245 / 0.6);
}
.bg-sitan-purple-light\/65 {
    background-color: rgb(243 229 245 / 0.65);
}
.bg-sitan-purple-light\/70 {
    background-color: rgb(243 229 245 / 0.7);
}
.bg-sitan-purple-light\/75 {
    background-color: rgb(243 229 245 / 0.75);
}
.bg-sitan-purple-light\/80 {
    background-color: rgb(243 229 245 / 0.8);
}
.bg-sitan-purple-light\/85 {
    background-color: rgb(243 229 245 / 0.85);
}
.bg-sitan-purple-light\/90 {
    background-color: rgb(243 229 245 / 0.9);
}
.bg-sitan-purple-light\/95 {
    background-color: rgb(243 229 245 / 0.95);
}
.bg-sitan-red {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
}
.bg-sitan-red-light {
    --tw-bg-opacity: 1;
    background-color: rgb(254 234 234 / var(--tw-bg-opacity, 1));
}
.bg-sitan-red-light\/0 {
    background-color: rgb(254 234 234 / 0);
}
.bg-sitan-red-light\/10 {
    background-color: rgb(254 234 234 / 0.1);
}
.bg-sitan-red-light\/100 {
    background-color: rgb(254 234 234 / 1);
}
.bg-sitan-red-light\/15 {
    background-color: rgb(254 234 234 / 0.15);
}
.bg-sitan-red-light\/20 {
    background-color: rgb(254 234 234 / 0.2);
}
.bg-sitan-red-light\/25 {
    background-color: rgb(254 234 234 / 0.25);
}
.bg-sitan-red-light\/30 {
    background-color: rgb(254 234 234 / 0.3);
}
.bg-sitan-red-light\/35 {
    background-color: rgb(254 234 234 / 0.35);
}
.bg-sitan-red-light\/40 {
    background-color: rgb(254 234 234 / 0.4);
}
.bg-sitan-red-light\/45 {
    background-color: rgb(254 234 234 / 0.45);
}
.bg-sitan-red-light\/5 {
    background-color: rgb(254 234 234 / 0.05);
}
.bg-sitan-red-light\/50 {
    background-color: rgb(254 234 234 / 0.5);
}
.bg-sitan-red-light\/55 {
    background-color: rgb(254 234 234 / 0.55);
}
.bg-sitan-red-light\/60 {
    background-color: rgb(254 234 234 / 0.6);
}
.bg-sitan-red-light\/65 {
    background-color: rgb(254 234 234 / 0.65);
}
.bg-sitan-red-light\/70 {
    background-color: rgb(254 234 234 / 0.7);
}
.bg-sitan-red-light\/75 {
    background-color: rgb(254 234 234 / 0.75);
}
.bg-sitan-red-light\/80 {
    background-color: rgb(254 234 234 / 0.8);
}
.bg-sitan-red-light\/85 {
    background-color: rgb(254 234 234 / 0.85);
}
.bg-sitan-red-light\/90 {
    background-color: rgb(254 234 234 / 0.9);
}
.bg-sitan-red-light\/95 {
    background-color: rgb(254 234 234 / 0.95);
}
.bg-sitan-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-sitan-yellow-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(251 192 45 / var(--tw-bg-opacity, 1));
}
.bg-sitan-yellow-dark\/0 {
    background-color: rgb(251 192 45 / 0);
}
.bg-sitan-yellow-dark\/10 {
    background-color: rgb(251 192 45 / 0.1);
}
.bg-sitan-yellow-dark\/100 {
    background-color: rgb(251 192 45 / 1);
}
.bg-sitan-yellow-dark\/15 {
    background-color: rgb(251 192 45 / 0.15);
}
.bg-sitan-yellow-dark\/20 {
    background-color: rgb(251 192 45 / 0.2);
}
.bg-sitan-yellow-dark\/25 {
    background-color: rgb(251 192 45 / 0.25);
}
.bg-sitan-yellow-dark\/30 {
    background-color: rgb(251 192 45 / 0.3);
}
.bg-sitan-yellow-dark\/35 {
    background-color: rgb(251 192 45 / 0.35);
}
.bg-sitan-yellow-dark\/40 {
    background-color: rgb(251 192 45 / 0.4);
}
.bg-sitan-yellow-dark\/45 {
    background-color: rgb(251 192 45 / 0.45);
}
.bg-sitan-yellow-dark\/5 {
    background-color: rgb(251 192 45 / 0.05);
}
.bg-sitan-yellow-dark\/50 {
    background-color: rgb(251 192 45 / 0.5);
}
.bg-sitan-yellow-dark\/55 {
    background-color: rgb(251 192 45 / 0.55);
}
.bg-sitan-yellow-dark\/60 {
    background-color: rgb(251 192 45 / 0.6);
}
.bg-sitan-yellow-dark\/65 {
    background-color: rgb(251 192 45 / 0.65);
}
.bg-sitan-yellow-dark\/70 {
    background-color: rgb(251 192 45 / 0.7);
}
.bg-sitan-yellow-dark\/75 {
    background-color: rgb(251 192 45 / 0.75);
}
.bg-sitan-yellow-dark\/80 {
    background-color: rgb(251 192 45 / 0.8);
}
.bg-sitan-yellow-dark\/85 {
    background-color: rgb(251 192 45 / 0.85);
}
.bg-sitan-yellow-dark\/90 {
    background-color: rgb(251 192 45 / 0.9);
}
.bg-sitan-yellow-dark\/95 {
    background-color: rgb(251 192 45 / 0.95);
}
.bg-sitan-yellow-light {
    --tw-bg-opacity: 1;
    background-color: rgb(255 253 231 / var(--tw-bg-opacity, 1));
}
.bg-sitan-yellow-light\/0 {
    background-color: rgb(255 253 231 / 0);
}
.bg-sitan-yellow-light\/10 {
    background-color: rgb(255 253 231 / 0.1);
}
.bg-sitan-yellow-light\/100 {
    background-color: rgb(255 253 231 / 1);
}
.bg-sitan-yellow-light\/15 {
    background-color: rgb(255 253 231 / 0.15);
}
.bg-sitan-yellow-light\/20 {
    background-color: rgb(255 253 231 / 0.2);
}
.bg-sitan-yellow-light\/25 {
    background-color: rgb(255 253 231 / 0.25);
}
.bg-sitan-yellow-light\/30 {
    background-color: rgb(255 253 231 / 0.3);
}
.bg-sitan-yellow-light\/35 {
    background-color: rgb(255 253 231 / 0.35);
}
.bg-sitan-yellow-light\/40 {
    background-color: rgb(255 253 231 / 0.4);
}
.bg-sitan-yellow-light\/45 {
    background-color: rgb(255 253 231 / 0.45);
}
.bg-sitan-yellow-light\/5 {
    background-color: rgb(255 253 231 / 0.05);
}
.bg-sitan-yellow-light\/50 {
    background-color: rgb(255 253 231 / 0.5);
}
.bg-sitan-yellow-light\/55 {
    background-color: rgb(255 253 231 / 0.55);
}
.bg-sitan-yellow-light\/60 {
    background-color: rgb(255 253 231 / 0.6);
}
.bg-sitan-yellow-light\/65 {
    background-color: rgb(255 253 231 / 0.65);
}
.bg-sitan-yellow-light\/70 {
    background-color: rgb(255 253 231 / 0.7);
}
.bg-sitan-yellow-light\/75 {
    background-color: rgb(255 253 231 / 0.75);
}
.bg-sitan-yellow-light\/80 {
    background-color: rgb(255 253 231 / 0.8);
}
.bg-sitan-yellow-light\/85 {
    background-color: rgb(255 253 231 / 0.85);
}
.bg-sitan-yellow-light\/90 {
    background-color: rgb(255 253 231 / 0.9);
}
.bg-sitan-yellow-light\/95 {
    background-color: rgb(255 253 231 / 0.95);
}
.bg-transparent {
    background-color: transparent;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20 {
    background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/95 {
    background-color: rgb(255 255 255 / 0.95);
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-black {
    --tw-gradient-from: #000 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/80 {
    --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/90 {
    --tw-gradient-from: rgb(0 0 0 / 0.9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/40 {
    --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
    --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-black {
    --tw-gradient-to: #000 var(--tw-gradient-to-position);
}
.to-black\/80 {
    --tw-gradient-to: rgb(0 0 0 / 0.8) var(--tw-gradient-to-position);
}
.to-black\/90 {
    --tw-gradient-to: rgb(0 0 0 / 0.9) var(--tw-gradient-to-position);
}
.to-black\/95 {
    --tw-gradient-to: rgb(0 0 0 / 0.95) var(--tw-gradient-to-position);
}
.object-cover {
    -o-object-fit: cover;
       object-fit: cover;
}
.object-center {
    -o-object-position: center;
       object-position: center;
}
.p-2 {
    padding: 0.5rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pb-1 {
    padding-bottom: 0.25rem;
}
.pb-12 {
    padding-bottom: 3rem;
}
.pb-20 {
    padding-bottom: 5rem;
}
.pb-32 {
    padding-bottom: 8rem;
}
.pl-4 {
    padding-left: 1rem;
}
.pl-6 {
    padding-left: 1.5rem;
}
.pt-10 {
    padding-top: 2.5rem;
}
.pt-12 {
    padding-top: 3rem;
}
.pt-16 {
    padding-top: 4rem;
}
.pt-24 {
    padding-top: 6rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pt-8 {
    padding-top: 2rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
    font-family: Inter, sans-serif;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}
.text-9xl {
    font-size: 8rem;
    line-height: 1;
}
.text-\[10px\] {
    font-size: 10px;
}
.text-\[10rem\] {
    font-size: 10rem;
}
.text-\[11px\] {
    font-size: 11px;
}
.text-\[9px\] {
    font-size: 9px;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.font-black {
    font-weight: 900;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.font-light {
    font-weight: 300;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.uppercase {
    text-transform: uppercase;
}
.italic {
    font-style: italic;
}
.tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.\!leading-tight {
    line-height: 1.25 !important;
}
.leading-\[1\.2\] {
    line-height: 1.2;
}
.leading-none {
    line-height: 1;
}
.leading-relaxed {
    line-height: 1.625;
}
.leading-snug {
    line-height: 1.375;
}
.leading-tight {
    line-height: 1.25;
}
.tracking-\[0\.12em\] {
    letter-spacing: 0.12em;
}
.tracking-\[0\.15em\] {
    letter-spacing: 0.15em;
}
.tracking-\[0\.1em\] {
    letter-spacing: 0.1em;
}
.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}
.tracking-\[0\.3em\] {
    letter-spacing: 0.3em;
}
.tracking-tight {
    letter-spacing: -0.025em;
}
.tracking-tighter {
    letter-spacing: -0.05em;
}
.tracking-wide {
    letter-spacing: 0.025em;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-widest {
    letter-spacing: 0.1em;
}
.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-sitan-black {
    --tw-text-opacity: 1;
    color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}
.text-sitan-blue {
    --tw-text-opacity: 1;
    color: rgb(33 150 243 / var(--tw-text-opacity, 1));
}
.text-sitan-blue-dark {
    --tw-text-opacity: 1;
    color: rgb(25 118 210 / var(--tw-text-opacity, 1));
}
.text-sitan-blue-dark\/0 {
    color: rgb(25 118 210 / 0);
}
.text-sitan-blue-dark\/10 {
    color: rgb(25 118 210 / 0.1);
}
.text-sitan-blue-dark\/100 {
    color: rgb(25 118 210 / 1);
}
.text-sitan-blue-dark\/15 {
    color: rgb(25 118 210 / 0.15);
}
.text-sitan-blue-dark\/20 {
    color: rgb(25 118 210 / 0.2);
}
.text-sitan-blue-dark\/25 {
    color: rgb(25 118 210 / 0.25);
}
.text-sitan-blue-dark\/30 {
    color: rgb(25 118 210 / 0.3);
}
.text-sitan-blue-dark\/35 {
    color: rgb(25 118 210 / 0.35);
}
.text-sitan-blue-dark\/40 {
    color: rgb(25 118 210 / 0.4);
}
.text-sitan-blue-dark\/45 {
    color: rgb(25 118 210 / 0.45);
}
.text-sitan-blue-dark\/5 {
    color: rgb(25 118 210 / 0.05);
}
.text-sitan-blue-dark\/50 {
    color: rgb(25 118 210 / 0.5);
}
.text-sitan-blue-dark\/55 {
    color: rgb(25 118 210 / 0.55);
}
.text-sitan-blue-dark\/60 {
    color: rgb(25 118 210 / 0.6);
}
.text-sitan-blue-dark\/65 {
    color: rgb(25 118 210 / 0.65);
}
.text-sitan-blue-dark\/70 {
    color: rgb(25 118 210 / 0.7);
}
.text-sitan-blue-dark\/75 {
    color: rgb(25 118 210 / 0.75);
}
.text-sitan-blue-dark\/80 {
    color: rgb(25 118 210 / 0.8);
}
.text-sitan-blue-dark\/85 {
    color: rgb(25 118 210 / 0.85);
}
.text-sitan-blue-dark\/90 {
    color: rgb(25 118 210 / 0.9);
}
.text-sitan-blue-dark\/95 {
    color: rgb(25 118 210 / 0.95);
}
.text-sitan-blue-light {
    --tw-text-opacity: 1;
    color: rgb(214 234 248 / var(--tw-text-opacity, 1));
}
.text-sitan-blue-light\/0 {
    color: rgb(214 234 248 / 0);
}
.text-sitan-blue-light\/10 {
    color: rgb(214 234 248 / 0.1);
}
.text-sitan-blue-light\/100 {
    color: rgb(214 234 248 / 1);
}
.text-sitan-blue-light\/15 {
    color: rgb(214 234 248 / 0.15);
}
.text-sitan-blue-light\/20 {
    color: rgb(214 234 248 / 0.2);
}
.text-sitan-blue-light\/25 {
    color: rgb(214 234 248 / 0.25);
}
.text-sitan-blue-light\/30 {
    color: rgb(214 234 248 / 0.3);
}
.text-sitan-blue-light\/35 {
    color: rgb(214 234 248 / 0.35);
}
.text-sitan-blue-light\/40 {
    color: rgb(214 234 248 / 0.4);
}
.text-sitan-blue-light\/45 {
    color: rgb(214 234 248 / 0.45);
}
.text-sitan-blue-light\/5 {
    color: rgb(214 234 248 / 0.05);
}
.text-sitan-blue-light\/50 {
    color: rgb(214 234 248 / 0.5);
}
.text-sitan-blue-light\/55 {
    color: rgb(214 234 248 / 0.55);
}
.text-sitan-blue-light\/60 {
    color: rgb(214 234 248 / 0.6);
}
.text-sitan-blue-light\/65 {
    color: rgb(214 234 248 / 0.65);
}
.text-sitan-blue-light\/70 {
    color: rgb(214 234 248 / 0.7);
}
.text-sitan-blue-light\/75 {
    color: rgb(214 234 248 / 0.75);
}
.text-sitan-blue-light\/80 {
    color: rgb(214 234 248 / 0.8);
}
.text-sitan-blue-light\/85 {
    color: rgb(214 234 248 / 0.85);
}
.text-sitan-blue-light\/90 {
    color: rgb(214 234 248 / 0.9);
}
.text-sitan-blue-light\/95 {
    color: rgb(214 234 248 / 0.95);
}
.text-sitan-brown-dark {
    --tw-text-opacity: 1;
    color: rgb(78 52 46 / var(--tw-text-opacity, 1));
}
.text-sitan-brown-dark\/0 {
    color: rgb(78 52 46 / 0);
}
.text-sitan-brown-dark\/10 {
    color: rgb(78 52 46 / 0.1);
}
.text-sitan-brown-dark\/100 {
    color: rgb(78 52 46 / 1);
}
.text-sitan-brown-dark\/15 {
    color: rgb(78 52 46 / 0.15);
}
.text-sitan-brown-dark\/20 {
    color: rgb(78 52 46 / 0.2);
}
.text-sitan-brown-dark\/25 {
    color: rgb(78 52 46 / 0.25);
}
.text-sitan-brown-dark\/30 {
    color: rgb(78 52 46 / 0.3);
}
.text-sitan-brown-dark\/35 {
    color: rgb(78 52 46 / 0.35);
}
.text-sitan-brown-dark\/40 {
    color: rgb(78 52 46 / 0.4);
}
.text-sitan-brown-dark\/45 {
    color: rgb(78 52 46 / 0.45);
}
.text-sitan-brown-dark\/5 {
    color: rgb(78 52 46 / 0.05);
}
.text-sitan-brown-dark\/50 {
    color: rgb(78 52 46 / 0.5);
}
.text-sitan-brown-dark\/55 {
    color: rgb(78 52 46 / 0.55);
}
.text-sitan-brown-dark\/60 {
    color: rgb(78 52 46 / 0.6);
}
.text-sitan-brown-dark\/65 {
    color: rgb(78 52 46 / 0.65);
}
.text-sitan-brown-dark\/70 {
    color: rgb(78 52 46 / 0.7);
}
.text-sitan-brown-dark\/75 {
    color: rgb(78 52 46 / 0.75);
}
.text-sitan-brown-dark\/80 {
    color: rgb(78 52 46 / 0.8);
}
.text-sitan-brown-dark\/85 {
    color: rgb(78 52 46 / 0.85);
}
.text-sitan-brown-dark\/90 {
    color: rgb(78 52 46 / 0.9);
}
.text-sitan-brown-dark\/95 {
    color: rgb(78 52 46 / 0.95);
}
.text-sitan-gray {
    --tw-text-opacity: 1;
    color: rgb(74 74 74 / var(--tw-text-opacity, 1));
}
.text-sitan-gray-dark {
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-sitan-gray-dark\/0 {
    color: rgb(51 51 51 / 0);
}
.text-sitan-gray-dark\/10 {
    color: rgb(51 51 51 / 0.1);
}
.text-sitan-gray-dark\/100 {
    color: rgb(51 51 51 / 1);
}
.text-sitan-gray-dark\/15 {
    color: rgb(51 51 51 / 0.15);
}
.text-sitan-gray-dark\/20 {
    color: rgb(51 51 51 / 0.2);
}
.text-sitan-gray-dark\/25 {
    color: rgb(51 51 51 / 0.25);
}
.text-sitan-gray-dark\/30 {
    color: rgb(51 51 51 / 0.3);
}
.text-sitan-gray-dark\/35 {
    color: rgb(51 51 51 / 0.35);
}
.text-sitan-gray-dark\/40 {
    color: rgb(51 51 51 / 0.4);
}
.text-sitan-gray-dark\/45 {
    color: rgb(51 51 51 / 0.45);
}
.text-sitan-gray-dark\/5 {
    color: rgb(51 51 51 / 0.05);
}
.text-sitan-gray-dark\/50 {
    color: rgb(51 51 51 / 0.5);
}
.text-sitan-gray-dark\/55 {
    color: rgb(51 51 51 / 0.55);
}
.text-sitan-gray-dark\/60 {
    color: rgb(51 51 51 / 0.6);
}
.text-sitan-gray-dark\/65 {
    color: rgb(51 51 51 / 0.65);
}
.text-sitan-gray-dark\/70 {
    color: rgb(51 51 51 / 0.7);
}
.text-sitan-gray-dark\/75 {
    color: rgb(51 51 51 / 0.75);
}
.text-sitan-gray-dark\/80 {
    color: rgb(51 51 51 / 0.8);
}
.text-sitan-gray-dark\/85 {
    color: rgb(51 51 51 / 0.85);
}
.text-sitan-gray-dark\/90 {
    color: rgb(51 51 51 / 0.9);
}
.text-sitan-gray-dark\/95 {
    color: rgb(51 51 51 / 0.95);
}
.text-sitan-gray-light {
    --tw-text-opacity: 1;
    color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.text-sitan-gray-light\/0 {
    color: rgb(245 245 245 / 0);
}
.text-sitan-gray-light\/10 {
    color: rgb(245 245 245 / 0.1);
}
.text-sitan-gray-light\/100 {
    color: rgb(245 245 245 / 1);
}
.text-sitan-gray-light\/15 {
    color: rgb(245 245 245 / 0.15);
}
.text-sitan-gray-light\/20 {
    color: rgb(245 245 245 / 0.2);
}
.text-sitan-gray-light\/25 {
    color: rgb(245 245 245 / 0.25);
}
.text-sitan-gray-light\/30 {
    color: rgb(245 245 245 / 0.3);
}
.text-sitan-gray-light\/35 {
    color: rgb(245 245 245 / 0.35);
}
.text-sitan-gray-light\/40 {
    color: rgb(245 245 245 / 0.4);
}
.text-sitan-gray-light\/45 {
    color: rgb(245 245 245 / 0.45);
}
.text-sitan-gray-light\/5 {
    color: rgb(245 245 245 / 0.05);
}
.text-sitan-gray-light\/50 {
    color: rgb(245 245 245 / 0.5);
}
.text-sitan-gray-light\/55 {
    color: rgb(245 245 245 / 0.55);
}
.text-sitan-gray-light\/60 {
    color: rgb(245 245 245 / 0.6);
}
.text-sitan-gray-light\/65 {
    color: rgb(245 245 245 / 0.65);
}
.text-sitan-gray-light\/70 {
    color: rgb(245 245 245 / 0.7);
}
.text-sitan-gray-light\/75 {
    color: rgb(245 245 245 / 0.75);
}
.text-sitan-gray-light\/80 {
    color: rgb(245 245 245 / 0.8);
}
.text-sitan-gray-light\/85 {
    color: rgb(245 245 245 / 0.85);
}
.text-sitan-gray-light\/90 {
    color: rgb(245 245 245 / 0.9);
}
.text-sitan-gray-light\/95 {
    color: rgb(245 245 245 / 0.95);
}
.text-sitan-gray\/30 {
    color: rgb(74 74 74 / 0.3);
}
.text-sitan-gray\/60 {
    color: rgb(74 74 74 / 0.6);
}
.text-sitan-green-light {
    --tw-text-opacity: 1;
    color: rgb(232 245 233 / var(--tw-text-opacity, 1));
}
.text-sitan-green-light\/0 {
    color: rgb(232 245 233 / 0);
}
.text-sitan-green-light\/10 {
    color: rgb(232 245 233 / 0.1);
}
.text-sitan-green-light\/100 {
    color: rgb(232 245 233 / 1);
}
.text-sitan-green-light\/15 {
    color: rgb(232 245 233 / 0.15);
}
.text-sitan-green-light\/20 {
    color: rgb(232 245 233 / 0.2);
}
.text-sitan-green-light\/25 {
    color: rgb(232 245 233 / 0.25);
}
.text-sitan-green-light\/30 {
    color: rgb(232 245 233 / 0.3);
}
.text-sitan-green-light\/35 {
    color: rgb(232 245 233 / 0.35);
}
.text-sitan-green-light\/40 {
    color: rgb(232 245 233 / 0.4);
}
.text-sitan-green-light\/45 {
    color: rgb(232 245 233 / 0.45);
}
.text-sitan-green-light\/5 {
    color: rgb(232 245 233 / 0.05);
}
.text-sitan-green-light\/50 {
    color: rgb(232 245 233 / 0.5);
}
.text-sitan-green-light\/55 {
    color: rgb(232 245 233 / 0.55);
}
.text-sitan-green-light\/60 {
    color: rgb(232 245 233 / 0.6);
}
.text-sitan-green-light\/65 {
    color: rgb(232 245 233 / 0.65);
}
.text-sitan-green-light\/70 {
    color: rgb(232 245 233 / 0.7);
}
.text-sitan-green-light\/75 {
    color: rgb(232 245 233 / 0.75);
}
.text-sitan-green-light\/80 {
    color: rgb(232 245 233 / 0.8);
}
.text-sitan-green-light\/85 {
    color: rgb(232 245 233 / 0.85);
}
.text-sitan-green-light\/90 {
    color: rgb(232 245 233 / 0.9);
}
.text-sitan-green-light\/95 {
    color: rgb(232 245 233 / 0.95);
}
.text-sitan-orange-dark {
    --tw-text-opacity: 1;
    color: rgb(251 140 0 / var(--tw-text-opacity, 1));
}
.text-sitan-orange-dark\/0 {
    color: rgb(251 140 0 / 0);
}
.text-sitan-orange-dark\/10 {
    color: rgb(251 140 0 / 0.1);
}
.text-sitan-orange-dark\/100 {
    color: rgb(251 140 0 / 1);
}
.text-sitan-orange-dark\/15 {
    color: rgb(251 140 0 / 0.15);
}
.text-sitan-orange-dark\/20 {
    color: rgb(251 140 0 / 0.2);
}
.text-sitan-orange-dark\/25 {
    color: rgb(251 140 0 / 0.25);
}
.text-sitan-orange-dark\/30 {
    color: rgb(251 140 0 / 0.3);
}
.text-sitan-orange-dark\/35 {
    color: rgb(251 140 0 / 0.35);
}
.text-sitan-orange-dark\/40 {
    color: rgb(251 140 0 / 0.4);
}
.text-sitan-orange-dark\/45 {
    color: rgb(251 140 0 / 0.45);
}
.text-sitan-orange-dark\/5 {
    color: rgb(251 140 0 / 0.05);
}
.text-sitan-orange-dark\/50 {
    color: rgb(251 140 0 / 0.5);
}
.text-sitan-orange-dark\/55 {
    color: rgb(251 140 0 / 0.55);
}
.text-sitan-orange-dark\/60 {
    color: rgb(251 140 0 / 0.6);
}
.text-sitan-orange-dark\/65 {
    color: rgb(251 140 0 / 0.65);
}
.text-sitan-orange-dark\/70 {
    color: rgb(251 140 0 / 0.7);
}
.text-sitan-orange-dark\/75 {
    color: rgb(251 140 0 / 0.75);
}
.text-sitan-orange-dark\/80 {
    color: rgb(251 140 0 / 0.8);
}
.text-sitan-orange-dark\/85 {
    color: rgb(251 140 0 / 0.85);
}
.text-sitan-orange-dark\/90 {
    color: rgb(251 140 0 / 0.9);
}
.text-sitan-orange-dark\/95 {
    color: rgb(251 140 0 / 0.95);
}
.text-sitan-orange-light {
    --tw-text-opacity: 1;
    color: rgb(255 243 224 / var(--tw-text-opacity, 1));
}
.text-sitan-orange-light\/0 {
    color: rgb(255 243 224 / 0);
}
.text-sitan-orange-light\/10 {
    color: rgb(255 243 224 / 0.1);
}
.text-sitan-orange-light\/100 {
    color: rgb(255 243 224 / 1);
}
.text-sitan-orange-light\/15 {
    color: rgb(255 243 224 / 0.15);
}
.text-sitan-orange-light\/20 {
    color: rgb(255 243 224 / 0.2);
}
.text-sitan-orange-light\/25 {
    color: rgb(255 243 224 / 0.25);
}
.text-sitan-orange-light\/30 {
    color: rgb(255 243 224 / 0.3);
}
.text-sitan-orange-light\/35 {
    color: rgb(255 243 224 / 0.35);
}
.text-sitan-orange-light\/40 {
    color: rgb(255 243 224 / 0.4);
}
.text-sitan-orange-light\/45 {
    color: rgb(255 243 224 / 0.45);
}
.text-sitan-orange-light\/5 {
    color: rgb(255 243 224 / 0.05);
}
.text-sitan-orange-light\/50 {
    color: rgb(255 243 224 / 0.5);
}
.text-sitan-orange-light\/55 {
    color: rgb(255 243 224 / 0.55);
}
.text-sitan-orange-light\/60 {
    color: rgb(255 243 224 / 0.6);
}
.text-sitan-orange-light\/65 {
    color: rgb(255 243 224 / 0.65);
}
.text-sitan-orange-light\/70 {
    color: rgb(255 243 224 / 0.7);
}
.text-sitan-orange-light\/75 {
    color: rgb(255 243 224 / 0.75);
}
.text-sitan-orange-light\/80 {
    color: rgb(255 243 224 / 0.8);
}
.text-sitan-orange-light\/85 {
    color: rgb(255 243 224 / 0.85);
}
.text-sitan-orange-light\/90 {
    color: rgb(255 243 224 / 0.9);
}
.text-sitan-orange-light\/95 {
    color: rgb(255 243 224 / 0.95);
}
.text-sitan-purple-dark {
    --tw-text-opacity: 1;
    color: rgb(142 36 170 / var(--tw-text-opacity, 1));
}
.text-sitan-purple-dark\/0 {
    color: rgb(142 36 170 / 0);
}
.text-sitan-purple-dark\/10 {
    color: rgb(142 36 170 / 0.1);
}
.text-sitan-purple-dark\/100 {
    color: rgb(142 36 170 / 1);
}
.text-sitan-purple-dark\/15 {
    color: rgb(142 36 170 / 0.15);
}
.text-sitan-purple-dark\/20 {
    color: rgb(142 36 170 / 0.2);
}
.text-sitan-purple-dark\/25 {
    color: rgb(142 36 170 / 0.25);
}
.text-sitan-purple-dark\/30 {
    color: rgb(142 36 170 / 0.3);
}
.text-sitan-purple-dark\/35 {
    color: rgb(142 36 170 / 0.35);
}
.text-sitan-purple-dark\/40 {
    color: rgb(142 36 170 / 0.4);
}
.text-sitan-purple-dark\/45 {
    color: rgb(142 36 170 / 0.45);
}
.text-sitan-purple-dark\/5 {
    color: rgb(142 36 170 / 0.05);
}
.text-sitan-purple-dark\/50 {
    color: rgb(142 36 170 / 0.5);
}
.text-sitan-purple-dark\/55 {
    color: rgb(142 36 170 / 0.55);
}
.text-sitan-purple-dark\/60 {
    color: rgb(142 36 170 / 0.6);
}
.text-sitan-purple-dark\/65 {
    color: rgb(142 36 170 / 0.65);
}
.text-sitan-purple-dark\/70 {
    color: rgb(142 36 170 / 0.7);
}
.text-sitan-purple-dark\/75 {
    color: rgb(142 36 170 / 0.75);
}
.text-sitan-purple-dark\/80 {
    color: rgb(142 36 170 / 0.8);
}
.text-sitan-purple-dark\/85 {
    color: rgb(142 36 170 / 0.85);
}
.text-sitan-purple-dark\/90 {
    color: rgb(142 36 170 / 0.9);
}
.text-sitan-purple-dark\/95 {
    color: rgb(142 36 170 / 0.95);
}
.text-sitan-purple-light {
    --tw-text-opacity: 1;
    color: rgb(243 229 245 / var(--tw-text-opacity, 1));
}
.text-sitan-purple-light\/0 {
    color: rgb(243 229 245 / 0);
}
.text-sitan-purple-light\/10 {
    color: rgb(243 229 245 / 0.1);
}
.text-sitan-purple-light\/100 {
    color: rgb(243 229 245 / 1);
}
.text-sitan-purple-light\/15 {
    color: rgb(243 229 245 / 0.15);
}
.text-sitan-purple-light\/20 {
    color: rgb(243 229 245 / 0.2);
}
.text-sitan-purple-light\/25 {
    color: rgb(243 229 245 / 0.25);
}
.text-sitan-purple-light\/30 {
    color: rgb(243 229 245 / 0.3);
}
.text-sitan-purple-light\/35 {
    color: rgb(243 229 245 / 0.35);
}
.text-sitan-purple-light\/40 {
    color: rgb(243 229 245 / 0.4);
}
.text-sitan-purple-light\/45 {
    color: rgb(243 229 245 / 0.45);
}
.text-sitan-purple-light\/5 {
    color: rgb(243 229 245 / 0.05);
}
.text-sitan-purple-light\/50 {
    color: rgb(243 229 245 / 0.5);
}
.text-sitan-purple-light\/55 {
    color: rgb(243 229 245 / 0.55);
}
.text-sitan-purple-light\/60 {
    color: rgb(243 229 245 / 0.6);
}
.text-sitan-purple-light\/65 {
    color: rgb(243 229 245 / 0.65);
}
.text-sitan-purple-light\/70 {
    color: rgb(243 229 245 / 0.7);
}
.text-sitan-purple-light\/75 {
    color: rgb(243 229 245 / 0.75);
}
.text-sitan-purple-light\/80 {
    color: rgb(243 229 245 / 0.8);
}
.text-sitan-purple-light\/85 {
    color: rgb(243 229 245 / 0.85);
}
.text-sitan-purple-light\/90 {
    color: rgb(243 229 245 / 0.9);
}
.text-sitan-purple-light\/95 {
    color: rgb(243 229 245 / 0.95);
}
.text-sitan-red {
    --tw-text-opacity: 1;
    color: rgb(224 48 46 / var(--tw-text-opacity, 1));
}
.text-sitan-red-light {
    --tw-text-opacity: 1;
    color: rgb(254 234 234 / var(--tw-text-opacity, 1));
}
.text-sitan-red-light\/0 {
    color: rgb(254 234 234 / 0);
}
.text-sitan-red-light\/10 {
    color: rgb(254 234 234 / 0.1);
}
.text-sitan-red-light\/100 {
    color: rgb(254 234 234 / 1);
}
.text-sitan-red-light\/15 {
    color: rgb(254 234 234 / 0.15);
}
.text-sitan-red-light\/20 {
    color: rgb(254 234 234 / 0.2);
}
.text-sitan-red-light\/25 {
    color: rgb(254 234 234 / 0.25);
}
.text-sitan-red-light\/30 {
    color: rgb(254 234 234 / 0.3);
}
.text-sitan-red-light\/35 {
    color: rgb(254 234 234 / 0.35);
}
.text-sitan-red-light\/40 {
    color: rgb(254 234 234 / 0.4);
}
.text-sitan-red-light\/45 {
    color: rgb(254 234 234 / 0.45);
}
.text-sitan-red-light\/5 {
    color: rgb(254 234 234 / 0.05);
}
.text-sitan-red-light\/50 {
    color: rgb(254 234 234 / 0.5);
}
.text-sitan-red-light\/55 {
    color: rgb(254 234 234 / 0.55);
}
.text-sitan-red-light\/60 {
    color: rgb(254 234 234 / 0.6);
}
.text-sitan-red-light\/65 {
    color: rgb(254 234 234 / 0.65);
}
.text-sitan-red-light\/70 {
    color: rgb(254 234 234 / 0.7);
}
.text-sitan-red-light\/75 {
    color: rgb(254 234 234 / 0.75);
}
.text-sitan-red-light\/80 {
    color: rgb(254 234 234 / 0.8);
}
.text-sitan-red-light\/85 {
    color: rgb(254 234 234 / 0.85);
}
.text-sitan-red-light\/90 {
    color: rgb(254 234 234 / 0.9);
}
.text-sitan-red-light\/95 {
    color: rgb(254 234 234 / 0.95);
}
.text-sitan-red\/10 {
    color: rgb(224 48 46 / 0.1);
}
.text-sitan-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-sitan-yellow-dark {
    --tw-text-opacity: 1;
    color: rgb(251 192 45 / var(--tw-text-opacity, 1));
}
.text-sitan-yellow-dark\/0 {
    color: rgb(251 192 45 / 0);
}
.text-sitan-yellow-dark\/10 {
    color: rgb(251 192 45 / 0.1);
}
.text-sitan-yellow-dark\/100 {
    color: rgb(251 192 45 / 1);
}
.text-sitan-yellow-dark\/15 {
    color: rgb(251 192 45 / 0.15);
}
.text-sitan-yellow-dark\/20 {
    color: rgb(251 192 45 / 0.2);
}
.text-sitan-yellow-dark\/25 {
    color: rgb(251 192 45 / 0.25);
}
.text-sitan-yellow-dark\/30 {
    color: rgb(251 192 45 / 0.3);
}
.text-sitan-yellow-dark\/35 {
    color: rgb(251 192 45 / 0.35);
}
.text-sitan-yellow-dark\/40 {
    color: rgb(251 192 45 / 0.4);
}
.text-sitan-yellow-dark\/45 {
    color: rgb(251 192 45 / 0.45);
}
.text-sitan-yellow-dark\/5 {
    color: rgb(251 192 45 / 0.05);
}
.text-sitan-yellow-dark\/50 {
    color: rgb(251 192 45 / 0.5);
}
.text-sitan-yellow-dark\/55 {
    color: rgb(251 192 45 / 0.55);
}
.text-sitan-yellow-dark\/60 {
    color: rgb(251 192 45 / 0.6);
}
.text-sitan-yellow-dark\/65 {
    color: rgb(251 192 45 / 0.65);
}
.text-sitan-yellow-dark\/70 {
    color: rgb(251 192 45 / 0.7);
}
.text-sitan-yellow-dark\/75 {
    color: rgb(251 192 45 / 0.75);
}
.text-sitan-yellow-dark\/80 {
    color: rgb(251 192 45 / 0.8);
}
.text-sitan-yellow-dark\/85 {
    color: rgb(251 192 45 / 0.85);
}
.text-sitan-yellow-dark\/90 {
    color: rgb(251 192 45 / 0.9);
}
.text-sitan-yellow-dark\/95 {
    color: rgb(251 192 45 / 0.95);
}
.text-sitan-yellow-light {
    --tw-text-opacity: 1;
    color: rgb(255 253 231 / var(--tw-text-opacity, 1));
}
.text-sitan-yellow-light\/0 {
    color: rgb(255 253 231 / 0);
}
.text-sitan-yellow-light\/10 {
    color: rgb(255 253 231 / 0.1);
}
.text-sitan-yellow-light\/100 {
    color: rgb(255 253 231 / 1);
}
.text-sitan-yellow-light\/15 {
    color: rgb(255 253 231 / 0.15);
}
.text-sitan-yellow-light\/20 {
    color: rgb(255 253 231 / 0.2);
}
.text-sitan-yellow-light\/25 {
    color: rgb(255 253 231 / 0.25);
}
.text-sitan-yellow-light\/30 {
    color: rgb(255 253 231 / 0.3);
}
.text-sitan-yellow-light\/35 {
    color: rgb(255 253 231 / 0.35);
}
.text-sitan-yellow-light\/40 {
    color: rgb(255 253 231 / 0.4);
}
.text-sitan-yellow-light\/45 {
    color: rgb(255 253 231 / 0.45);
}
.text-sitan-yellow-light\/5 {
    color: rgb(255 253 231 / 0.05);
}
.text-sitan-yellow-light\/50 {
    color: rgb(255 253 231 / 0.5);
}
.text-sitan-yellow-light\/55 {
    color: rgb(255 253 231 / 0.55);
}
.text-sitan-yellow-light\/60 {
    color: rgb(255 253 231 / 0.6);
}
.text-sitan-yellow-light\/65 {
    color: rgb(255 253 231 / 0.65);
}
.text-sitan-yellow-light\/70 {
    color: rgb(255 253 231 / 0.7);
}
.text-sitan-yellow-light\/75 {
    color: rgb(255 253 231 / 0.75);
}
.text-sitan-yellow-light\/80 {
    color: rgb(255 253 231 / 0.8);
}
.text-sitan-yellow-light\/85 {
    color: rgb(255 253 231 / 0.85);
}
.text-sitan-yellow-light\/90 {
    color: rgb(255 253 231 / 0.9);
}
.text-sitan-yellow-light\/95 {
    color: rgb(255 253 231 / 0.95);
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/5 {
    color: rgb(255 255 255 / 0.05);
}
.text-white\/50 {
    color: rgb(255 255 255 / 0.5);
}
.text-white\/70 {
    color: rgb(255 255 255 / 0.7);
}
.underline {
    text-decoration-line: underline;
}
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.opacity-25 {
    opacity: 0.25;
}
.opacity-30 {
    opacity: 0.3;
}
.opacity-40 {
    opacity: 0.4;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-70 {
    opacity: 0.7;
}
.opacity-75 {
    opacity: 0.75;
}
.opacity-80 {
    opacity: 0.8;
}
.opacity-90 {
    opacity: 0.9;
}
.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_30px_70px_rgba\(0\2c 0\2c 0\2c 0\.35\)\] {
    --tw-shadow: 0 30px 70px rgba(0,0,0,0.35);
    --tw-shadow-colored: 0 30px 70px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
    --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-blue-500\/20 {
    --tw-shadow-color: rgb(59 130 246 / 0.2);
    --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.outline {
    outline-style: solid;
}
.ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-red-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-90 {
    --tw-brightness: brightness(.9);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
    --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0_4px_15px_rgba\(0\2c 0\2c 0\2c 0\.9\)\] {
    --tw-drop-shadow: drop-shadow(0 4px 15px rgba(0,0,0,0.9));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-2xl {
    --tw-backdrop-blur: blur(40px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-md {
    --tw-backdrop-blur: blur(12px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.delay-100 {
    transition-delay: 100ms;
}
.delay-1000 {
    transition-delay: 1000ms;
}
.delay-200 {
    transition-delay: 200ms;
}
.delay-300 {
    transition-delay: 300ms;
}
.delay-500 {
    transition-delay: 500ms;
}
.delay-700 {
    transition-delay: 700ms;
}
.duration-1000 {
    transition-duration: 1000ms;
}
.duration-200 {
    transition-duration: 200ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.duration-500 {
    transition-duration: 500ms;
}
.duration-700 {
    transition-duration: 700ms;
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.transform-gpu {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.text-rendering-smooth {
    text-rendering: geometricPrecision;
    -moz-osx-font-smoothing: grayscale;
    font-variant-ligatures: none;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
}
/*--------------------------------------------------
  2) PREMIUM COMPONENTS (UI ENGINE)
--------------------------------------------------*/
@media (min-width: 640px) {
    #section-sitan-eco .group\/eco .sm\:text-2xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    #section-sitan-eco .group\/eco .sm\:text-3xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #section-sitan-eco .group\/eco:hover .sm\:text-2xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }

    
    #section-sitan-eco .group\/eco:hover .sm\:text-3xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .sm\:flex-row {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex !important;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .sm\:flex-row {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex !important;
        } /* Увеличенное значение */
    }
    .process-step-card .sm\:text-2xl {
        transform: none !important;
    }
    
    .process-step-card .sm\:text-3xl {
        transform: none !important;
    }
    
    .process-step-card .sm\:text-4xl {
        transform: none !important;
    }
    .process-step-card .sm\:text-2xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    
    .process-step-card .sm\:text-3xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    
    .process-step-card .sm\:text-4xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
@media (min-width: 768px) {
    #section-sitan-eco .group\/eco .md\:text-2xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    #section-sitan-eco .group\/eco .md\:text-3xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #section-sitan-eco .group\/eco:hover .md\:text-2xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }

    
    #section-sitan-eco .group\/eco:hover .md\:text-3xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }
    @media (max-width: 767px) {

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .md\:flex-row {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex !important;
        } /* Увеличенное значение */

        /* Состояние покоя на мобильном */

        /* Восстановление Touch-эффекта */

        /* Тач-состояния всей группы */
        /* Перенесено в assets/css/interactions/_tech.css */

        /* Стилизация строки и центрирование */

        /* Группировка значения и юнита */
        .tech-row td .md\:flex-row {
            align-items: center !important;
            justify-content: center !important;
            -moz-column-gap: 0.375rem !important;
                 column-gap: 0.375rem !important;
            display: flex !important;
        } /* Увеличенное значение */
    }
    .process-step-card .md\:text-2xl {
        transform: none !important;
    }
    
    .process-step-card .md\:text-3xl {
        transform: none !important;
    }
    
    .process-step-card .md\:text-4xl {
        transform: none !important;
    }
    .process-step-card .md\:text-2xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    
    .process-step-card .md\:text-3xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    
    .process-step-card .md\:text-4xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
@media (min-width: 1024px) {
    #section-sitan-eco .group\/eco .lg\:text-2xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    #section-sitan-eco .group\/eco .lg\:text-3xl {
        filter: grayscale(1) opacity(0.4);
        will-change: transform, filter, opacity;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    #section-sitan-eco .group\/eco:hover .lg\:text-2xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }

    
    #section-sitan-eco .group\/eco:hover .lg\:text-3xl {
        filter: grayscale(0) opacity(1);
        transform: scale(1.25) rotate(5deg);
    }
    .process-step-card .lg\:text-2xl {
        transform: none !important;
    }
    
    .process-step-card .lg\:text-3xl {
        transform: none !important;
    }
    .process-step-card .lg\:text-2xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
    
    .process-step-card .lg\:text-3xl {
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
        transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.selection\:bg-sitan-red *::-moz-selection {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
}
.selection\:bg-sitan-red *::selection {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
}
.selection\:text-white *::-moz-selection {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white *::selection {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:bg-sitan-red::-moz-selection {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
}
.selection\:bg-sitan-red::selection {
    --tw-bg-opacity: 1;
    background-color: rgb(224 48 46 / var(--tw-bg-opacity, 1));
}
.selection\:text-white::-moz-selection {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white::selection {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.after\:\!hidden::after {
    content: var(--tw-content);
    display: none !important;
}
.last\:border-0:last-child {
    border-width: 0px;
}
@media (hover: hover) and (pointer: fine) {
    .hover\:scale-105:hover {
        --tw-scale-x: 1.05;
        --tw-scale-y: 1.05;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .hover\:bg-red-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
    }
    .hover\:bg-sitan-blue-dark:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(25 118 210 / var(--tw-bg-opacity, 1));
    }
    .hover\:bg-opacity-90:hover {
        --tw-bg-opacity: 0.9;
    }
    .hover\:text-gray-600:hover {
        --tw-text-opacity: 1;
        color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    }
    .hover\:text-sitan-blue-dark:hover {
        --tw-text-opacity: 1;
        color: rgb(25 118 210 / var(--tw-text-opacity, 1));
    }
    .hover\:text-sitan-red:hover {
        --tw-text-opacity: 1;
        color: rgb(224 48 46 / var(--tw-text-opacity, 1));
    }
    .hover\:underline:hover {
        text-decoration-line: underline;
    }
    .hover\:opacity-100:hover {
        opacity: 1;
    }
    .hover\:brightness-100:hover {
        --tw-brightness: brightness(1);
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }
}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus\:ring-0:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.active\:scale-95:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-\[0\.98\]:active {
    --tw-scale-x: 0.98;
    --tw-scale-y: 0.98;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}
.disabled\:bg-gray-400:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
@media (hover: hover) and (pointer: fine) {
    .group\/btn:hover .group-hover\/btn\:scale-110 {
        --tw-scale-x: 1.1;
        --tw-scale-y: 1.1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .group\/feat:hover .group-hover\/feat\:text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    }
    .group\/feat:hover .group-hover\/feat\:text-white\/70 {
        color: rgb(255 255 255 / 0.7);
    }
    .group\/eco:hover .group-hover\/eco\:grayscale-0 {
        --tw-grayscale: grayscale(0);
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
    }
}
@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }
    .sm\:w-auto {
        width: auto;
    }
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:flex-row {
        flex-direction: row;
    }
    .sm\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
@media (min-width: 768px) {
    .md\:top-24 {
        top: 6rem;
    }
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .md\:-mt-12 {
        margin-top: -3rem;
    }
    .md\:-mt-20 {
        margin-top: -5rem;
    }
    .md\:mb-0 {
        margin-bottom: 0px;
    }
    .md\:mb-10 {
        margin-bottom: 2.5rem;
    }
    .md\:mb-12 {
        margin-bottom: 3rem;
    }
    .md\:mb-14 {
        margin-bottom: 3.5rem;
    }
    .md\:mb-16 {
        margin-bottom: 4rem;
    }
    .md\:mb-2 {
        margin-bottom: 0.5rem;
    }
    .md\:mb-20 {
        margin-bottom: 5rem;
    }
    .md\:mb-24 {
        margin-bottom: 6rem;
    }
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }
    .md\:mb-8 {
        margin-bottom: 2rem;
    }
    .md\:mr-10 {
        margin-right: 2.5rem;
    }
    .md\:mt-0 {
        margin-top: 0px;
    }
    .md\:mt-12 {
        margin-top: 3rem;
    }
    .md\:mt-16 {
        margin-top: 4rem;
    }
    .md\:mt-20 {
        margin-top: 5rem;
    }
    .md\:mt-32 {
        margin-top: 8rem;
    }
    .md\:mt-8 {
        margin-top: 2rem;
    }
    .md\:block {
        display: block;
    }
    .md\:inline {
        display: inline;
    }
    .md\:flex {
        display: flex;
    }
    .md\:table {
        display: table;
    }
    .md\:table-cell {
        display: table-cell;
    }
    .md\:table-header-group {
        display: table-header-group;
    }
    .md\:table-row-group {
        display: table-row-group;
    }
    .md\:table-row {
        display: table-row;
    }
    .md\:hidden {
        display: none;
    }
    .md\:h-11 {
        height: 2.75rem;
    }
    .md\:h-16 {
        height: 4rem;
    }
    .md\:h-32 {
        height: 8rem;
    }
    .md\:min-h-\[110px\] {
        min-height: 110px;
    }
    .md\:min-h-\[140px\] {
        min-height: 140px;
    }
    .md\:min-h-\[180px\] {
        min-height: 180px;
    }
    .md\:w-14 {
        width: 3.5rem;
    }
    .md\:w-16 {
        width: 4rem;
    }
    .md\:w-48 {
        width: 12rem;
    }
    .md\:w-auto {
        width: auto;
    }
    .md\:min-w-\[240px\] {
        min-width: 240px;
    }
    .md\:max-w-lg {
        max-width: 32rem;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:items-start {
        align-items: flex-start;
    }
    .md\:items-end {
        align-items: flex-end;
    }
    .md\:items-center {
        align-items: center;
    }
    .md\:justify-start {
        justify-content: flex-start;
    }
    .md\:justify-between {
        justify-content: space-between;
    }
    .md\:gap-2 {
        gap: 0.5rem;
    }
    .md\:gap-24 {
        gap: 6rem;
    }
    .md\:gap-4 {
        gap: 1rem;
    }
    .md\:gap-5 {
        gap: 1.25rem;
    }
    .md\:gap-6 {
        gap: 1.5rem;
    }
    .md\:gap-8 {
        gap: 2rem;
    }
    .md\:rounded-2xl {
        border-radius: 1rem;
    }
    .md\:rounded-\[2rem\] {
        border-radius: 2rem;
    }
    .md\:border-b-0 {
        border-bottom-width: 0px;
    }
    .md\:border-r {
        border-right-width: 1px;
    }
    .md\:p-0 {
        padding: 0px;
    }
    .md\:p-10 {
        padding: 2.5rem;
    }
    .md\:p-12 {
        padding: 3rem;
    }
    .md\:p-4 {
        padding: 1rem;
    }
    .md\:p-6 {
        padding: 1.5rem;
    }
    .md\:p-8 {
        padding: 2rem;
    }
    .md\:px-0 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .md\:py-0 {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .md\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .md\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .md\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .md\:py-3\.5 {
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }
    .md\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .md\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .md\:pb-20 {
        padding-bottom: 5rem;
    }
    .md\:pb-40 {
        padding-bottom: 10rem;
    }
    .md\:pt-12 {
        padding-top: 3rem;
    }
    .md\:pt-16 {
        padding-top: 4rem;
    }
    .md\:pt-20 {
        padding-top: 5rem;
    }
    .md\:pt-32 {
        padding-top: 8rem;
    }
    .md\:text-left {
        text-align: left;
    }
    .md\:text-center {
        text-align: center;
    }
    .md\:text-right {
        text-align: right;
    }
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .md\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }
    .md\:text-\[10px\] {
        font-size: 10px;
    }
    .md\:text-\[11px\] {
        font-size: 11px;
    }
    .md\:text-\[12px\] {
        font-size: 12px;
    }
    .md\:text-\[13px\] {
        font-size: 13px;
    }
    .md\:text-\[15rem\] {
        font-size: 15rem;
    }
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .md\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .md\:tracking-\[0\.15em\] {
        letter-spacing: 0.15em;
    }
}
@media (min-width: 1024px) {
    .lg\:-mt-16 {
        margin-top: -4rem;
    }
    .lg\:mb-10 {
        margin-bottom: 2.5rem;
    }
    .lg\:mb-14 {
        margin-bottom: 3.5rem;
    }
    .lg\:mb-8 {
        margin-bottom: 2rem;
    }
    .lg\:h-40 {
        height: 10rem;
    }
    .lg\:w-56 {
        width: 14rem;
    }
    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:gap-20 {
        gap: 5rem;
    }
    .lg\:gap-6 {
        gap: 1.5rem;
    }
    .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(3.5rem * var(--tw-space-x-reverse));
        margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:p-6 {
        padding: 1.5rem;
    }
    .lg\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .lg\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .lg\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }
}
/*# sourceMappingURL=style.css.map */