/* CRO-оптимизация: дополнительные стили */

/* Заголовок */
.form__title {
    word-spacing: 0.1em;
}

/* Блок Solution (PAS) */
.form__solution {
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.form__solution span {
    font-size: 15px;
    font-weight: 500;
    color: #2e7d32;
}

/* Блок Agitation (PAS) */
.form__agitation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #e65100;
}

.form__agitation span {
    font-size: 14px;
    color: #e65100;
}

.form__agitation svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .form__solution {
        padding: 10px 12px;
    }
    
    .form__solution span {
        font-size: 14px;
    }
    
    .form__agitation {
        padding: 10px 12px;
    }
    
    .form__agitation span {
        font-size: 13px;
    }
}

/* Статистика */
.form__stats {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 20px;
    font-size: 13px;
    color: #666;
}

.form__stats-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.form__stats-item:first-child::after {
    content: '•';
    margin-left: 8px;
    color: #ccc;
}

.form__stats-num {
    font-weight: 600;
    color: #2e7d32;
}

/* Защита данных */
.form__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    padding-top: 12px;
}

.form__secure span {
    font-size: 12px;
    color: #666;
}

.form__secure svg {
    flex-shrink: 0;
}

.form__secure svg path {
    fill: #2e7d32;
}

/* Микрокопи под кнопкой */
.form__microcopy {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* Антиспам под кнопкой (join.php) */
.form__nospam {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 10px;
}

/* Блок доверия */
.form__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.form__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.form__trust-item svg {
    flex-shrink: 0;
}

.form__trust-item--warning {
    color: #e65100;
}

.form__trust-item--warning span {
    color: #e65100;
}

/* Блок найденных результатов (join.php) */
.form__results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #ffb300;
}

.form__results-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form__results-item img {
    flex-shrink: 0;
}

.form__results-name {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.form__results-count {
    font-size: 14px;
    font-weight: 600;
    color: #e65100;
}

@media (max-width: 480px) {
    .form__results {
        padding: 12px;
        gap: 10px;
    }
    
    .form__results-item img {
        width: 28px;
        height: 28px;
    }
    
    .form__results-name {
        font-size: 13px;
    }
    
    .form__results-count {
        font-size: 13px;
    }
}

/* Улучшенная кнопка */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 2s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Мобильная адаптация */
@media (max-width: 480px) {
    .form__stats {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .form__stats-item:first-child::after {
        display: none;
    }
    
    .form__base {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        margin: 10px 0;
    }
    
    .form__base-item {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .form__base-item img {
        width: 44px;
        height: 44px;
    }
    
    .form__base-item span {
        font-size: 11px;
        color: #666;
    }
    
    /* Показываем только аббревиатуры */
    .form__base-item:nth-child(1) span {
        font-size: 0;
    }
    .form__base-item:nth-child(1) span::after {
        content: 'ФССП';
        font-size: 11px;
    }
    .form__base-item:nth-child(2) span {
        font-size: 0;
    }
    .form__base-item:nth-child(2) span::after {
        content: 'ГИБДД';
        font-size: 11px;
    }
    .form__base-item:nth-child(3) span {
        font-size: 0;
    }
    .form__base-item:nth-child(3) span::after {
        content: 'ФНС';
        font-size: 11px;
    }
    
    .form__microcopy {
        font-size: 11px;
    }
}