/* Основные настройки темы */
:root {
    --brand-blue: #3b82f6;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
}

body {
    background-color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    color: #f1f5f9;
}

/* Анимация сканирования для процесса ИИ */
.ai-scanning {
    position: relative;
    overflow: hidden;
}

.ai-scanning::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-blue);
    box-shadow: 0 0 15px var(--brand-blue);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Стили для сравнения До/После (Image Compare) */
.compare-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.compare-card {
    background: var(--card-bg);
    border: 1px border-slate-700;
    border-radius: 12px;
    padding: 10px;
}

.compare-card img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Красивые градиенты для кнопок */
.btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
}

/* Стили для сметы (Estimation Table) */
.est-table {
    width: 100%;
    border-collapse: collapse;
}

.est-table th {
    text-align: left;
    color: #94a3b8;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 12px;
    border-bottom: 1px solid #334155;
}

.est-table td {
    padding: 12px;
    border-bottom: 1px solid #1e293b;
}