h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}
h1 .highlight { color: #f97316; }
.lead {
    font-size: 1.05rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.7;
}
h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 40px 0 14px;
}
h2 .highlight { color: #f97316; }
h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f97316;
    margin: 28px 0 10px;
}
p {
    color: #c0c0c0;
    margin-bottom: 14px;
    font-size: 0.98rem;
}
p strong { color: #ffffff; }

.table-wrap {
    overflow-x: auto;
    margin: 16px 0 20px;
}
.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: #c0c0c0;
}
.content-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #f97316;
    color: #ffffff;
    font-weight: 600;
    background: #151515;
}
.content-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: top;
}
.content-table .highlight-cell { color: #f97316; font-weight: 600; }

.result-block {
    background: #151515;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 16px 0;
    border-left: 4px solid #f97316;
}
.result-block p { margin: 0; font-size: 1rem; color: #e0e0e0; }
.result-block .highlight { color: #f97316; font-weight: 600; }
.result-block.green { border-left-color: #51cf66; }
.result-block.green .highlight { color: #51cf66; }
.result-block.green p { color: #51cf66; }

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 12px 0 16px;
}
.example-col {
    background: #151515;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #2a2a2a;
}
.example-col h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}
.example-col .price {
    color: #f97316;
    font-weight: 700;
    font-size: 1.1rem;
}
.example-col .desc {
    color: #b0b0b0;
    font-size: 0.85rem;
}
.example-col .badge {
    display: inline-block;
    background: #2a2a2a;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #888;
    margin-right: 4px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #151515;
    border-radius: 8px;
    margin-bottom: 6px;
}
.comparison-item .label {
    color: #c0c0c0;
    font-size: 0.9rem;
}
.comparison-item .value-bad {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}
.comparison-item .value-good {
    color: #51cf66;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-size: 0.9rem;
}
.nav-links a:hover {
    border-bottom-color: #f97316;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .container { padding: 30px 16px; }
    h1 { font-size: 1.8rem; }
    .example-grid { grid-template-columns: 1fr; }
}
