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;
}

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

.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 .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;
}
.cta-block .steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 20px;
}
.cta-block .steps li {
    font-size: 0.9rem;
    padding: 4px 0 4px 28px;
}
.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;
}

.nav-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    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;
    }
    .cta-block {
        padding: 24px 20px;
    }
    .final-block {
        padding: 20px 18px;
    }
}