h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}
h1 .highlight {
    color: #f97316;
}

.subhead {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.7;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f97316;
    margin: 40px 0 12px;
    line-height: 1.3;
}
h2 .highlight {
    color: #ffffff;
}

p {
    color: #c0c0c0;
    margin-bottom: 16px;
    font-size: 1rem;
}
p strong {
    color: #ffffff;
}

.s_ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}
.s_ul li {
    padding: 6px 0 6px 28px;
    color: #c0c0c0;
    font-size: 0.95rem;
    position: relative;
    line-height: 1.5;
}
.s_ul li::before {
    content: "›";
    position: absolute;
    left: 6px;
    color: #f97316;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Таблицы */
table.calc-table,
table.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    background: #121212;
    border-radius: 12px;
    overflow: hidden;
}
table.calc-table th,
table.calc-table td,
table.compare-table th,
table.compare-table td {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid #2a2a2a;
    color: #c0c0c0;
    font-size: 0.95rem;
}
table.calc-table th,
table.compare-table th {
    background: #1a1a1a;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}
table.calc-table tr:last-child td,
table.compare-table tr:last-child td {
    border-bottom: none;
}
table.compare-table td:first-child {
    font-weight: 500;
    color: #e0e0e0;
}

.highlight-block {
    background: #151515;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0 30px;
    border-left: 4px solid #f97316;
}
.highlight-block p {
    margin-bottom: 6px;
    color: #e0e0e0;
    font-size: 1.05rem;
}
.highlight-block ul {
    margin: 8px 0 0;
}
.highlight-block ul li {
    color: #c0c0c0;
}
.highlight-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 6px;
}

/* Итоговый блок (выделенный) */
.final-block {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0 28px;
    border: 1px solid #f97316;
    text-align: center;
}
.final-block p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 6px;
}
.final-block .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f97316;
    font-weight: 600;
}

/* CTA-блок */
.cta-block {
    background: linear-gradient(135deg, #1a1a2e, #2a1f0f);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 36px 0 24px;
    border: 1px solid #f97316;
    text-align: center;
}
.cta-block h2 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.4rem;
}
.cta-block p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 16px;
    font-size: 0.95rem;
}
.btn {
    display: inline-block;
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 14px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn:hover {
    background: #e85d0e;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .cta-block {
        padding: 24px 20px;
    }
    .final-block {
        padding: 20px 18px;
    }
    table.calc-table th,
    table.calc-table td,
    table.compare-table th,
    table.compare-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    .highlight-block {
        padding: 18px 16px;
    }
}