/* ==============================================
   assets/css/info.css  v2.0 — REDESIGN 2025
   Дополнительные стили для info.php
   Подключается в <head> main.php
   ============================================== */

/* -----------------------------------------------
   1. ОБЁРТКИ ПОЛЕЙ ФОРМЫ
----------------------------------------------- */
.tf-field-wrap {
    position: relative;
}

/* -----------------------------------------------
   2. ЗАГОЛОВКИ СЕКЦИЙ БЕЗ ОТСТУПОВ
----------------------------------------------- */
.tf-section-head--compact {
    padding: 0;
    margin-bottom: 14px;
}

/* -----------------------------------------------
   3. ССЫЛКИ-ТЕЛЕФОНЫ В FAQ
----------------------------------------------- */
.tf-faq-tel {
    color: var(--p);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed
        rgba(99,102,241,0.35);
    transition: all 0.16s ease;
}

.tf-faq-tel:hover {
    color: var(--p-dark);
    border-bottom-color: var(--p-dark);
    text-decoration: none;
}

/* -----------------------------------------------
   4. SCROLL-OBSERVER — класс .visible
   Добавляется через IntersectionObserver
   в main.php (секция JS)
----------------------------------------------- */
.tf-feat,
.tf-why-item,
.tf-faq-item,
.tf-directions-link {
    /* Базовое состояние для анимации
       задаётся в main.css секция 23.
       Здесь только override для случаев
       когда prefers-reduced-motion: reduce */
}

@media (prefers-reduced-motion: reduce) {

    .tf-feat,
    .tf-why-item,
    .tf-faq-item,
    .tf-directions-link {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}