
.service-content {
    font-size: 16.5px;
    line-height: 1.75;
    color: #334155;
    max-width: 68ch;
}

.service-content > * + * {
    margin-top: 1.35em;
}

.service-content h2 {
    font-size: clamp(23px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0F172A;
    margin-top: 2.2em;
}
.service-content > h2:first-child { margin-top: 0; }

.service-content h3 {
    font-size: clamp(18px, 1.6vw, 21px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: #0F172A;
    margin-top: 1.9em;
}

.service-content p {
    color: #475569;
    font-weight: 450;
}

.service-content strong {
    color: #0F172A;
    font-weight: 700;
}

.service-content a:not(.btn-primary):not(.btn-secondary) {
    color: #4F46E5;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(79,70,229,.35);
    transition: text-decoration-color .2s;
}
.service-content a:not(.btn-primary):not(.btn-secondary):hover {
    text-decoration-color: #4F46E5;
}

/* ── Списки: фирменный маркер вместо дефолтного bullet ── */
.service-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: .65em;
}
.service-content ul li {
    position: relative;
    padding-left: 1.75em;
    color: #334155;
}
.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5em;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
}

.service-content ol {
    padding-left: 0;
    counter-reset: svc-ol;
    display: flex;
    flex-direction: column;
    gap: .65em;
}
.service-content ol li {
    position: relative;
    padding-left: 2.1em;
    color: #334155;
    counter-increment: svc-ol;
}
.service-content ol li::before {
    content: counter(svc-ol);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    border-radius: .4em;
    background: rgba(79,70,229,.1);
    color: #4F46E5;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Цитата ── */
.service-content blockquote {
    margin: 0;
    padding: 1.1em 1.4em;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #4F46E5, #06B6D4) 1;
    background: #F8FAFC;
    border-radius: 0 .75rem .75rem 0;
    font-style: italic;
    color: #334155;
}
.service-content blockquote p { color: inherit; margin: 0; }

/* ── Изображения ── */
.service-content img,
.service-content figure {
    border-radius: 1.1rem;
    box-shadow: 0 26px 56px -28px rgba(15,23,42,.32);
    width: 100%;
    height: auto;
}
.service-content figcaption {
    font-size: 13px;
    color: #94A3B8;
    text-align: center;
    margin-top: .6em;
}

/* ── Разделитель ── */
.service-content hr {
    border: none;
    border-top: 1px solid #ECEFF4;
    margin: 2.4em 0;
}

/* ── Таблицы ── */
.service-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}
.service-content th,
.service-content td {
    padding: .75em 1em;
    border: 1px solid #ECEFF4;
    text-align: left;
}
.service-content th {
    background: #F8FAFC;
    color: #0F172A;
    font-weight: 700;
}

/* ── Инлайн-код ── */
.service-content code {
    background: #F1F3F8;
    border: 1px solid #E9EDF3;
    border-radius: .4em;
    padding: .15em .45em;
    font-size: .9em;
    color: #4F46E5;
}