:root {
    --brand-red: #E30613; /* Более агрессивный красный, как на референсе */
    --brand-dark: #222222;
    --brand-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Жирные заголовки */
h1, h2, h3, h4, h5 {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

/* === HERO SECTION === */
.hero-section {
    background-color: #fff;
    /* Убираем синеву, делаем чисто белым или легкий паттерн */
}

.hero-feature-item {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-feature-icon {
    min-width: 24px;
    height: 24px;
    background: var(--brand-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Форма-захват */
.lead-form {
    border: 3px solid var(--brand-red);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: white;
    position: relative;
    overflow: hidden;
}

.lead-form-header {
    background: var(--brand-red);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

/* Кнопка */
.btn-main {
    background: var(--brand-red);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    transition: transform 0.2s;
}

.btn-main:hover {
    background: #c2000b;
    transform: scale(1.02);
    color: white;
}

/* === ЦЕНЫ === */
.price-table-row {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}
.price-table-row:hover {
    background: #fff5f5;
}
.price-val {
    font-weight: 800;
    color: var(--brand-red);
    font-size: 1.2rem;
}

/* === МАСТЕРА === */
.master-card-solid {
    border: 2px solid #eee;
    background: white;
    transition: all 0.3s;
}
.master-card-solid:hover {
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}