:root {
    --red: #CC1F1F;
    --red-light: rgba(204, 31, 31, 0.07);
    --red-border: rgba(204, 31, 31, 0.18);
    --text: #222222;
    --text-mid: #555555;
    --text-light: #888888;
    --bg: #ffffff;
    --bg-gray: #f7f7f7;
    --border: #e0e0e0;
    --green: #2a8a5e;
    --green-light: rgba(42, 138, 94, 0.09);
    --blue-light: #f0f6ff;
    --blue-border: rgba(0, 80, 180, 0.14);
    --blue-accent: #0055B3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.b-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 77px;
    height: 402px;
    border-radius: 8px;
    background: #f1f1f4 no-repeat center/cover url(/images/domain-identification/hero.jpg);
}
.b-hero__title {
    margin-bottom: 20px;
    max-width: 500px;
    text-wrap: balance;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #000;
}
.b-hero__text {
    max-width: 490px;
    font-size: 17px;
}
@media (width <= 767.98px) {
    .b-hero {
        height: auto;
        padding: 40px 20px;
        background-position-x: 0;
    }
    .b-hero__title {
        font-size: 28px;
        max-width: calc(100% - 140px);
    }
}

/* ── BADGE ── */
.law-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red-light);
    border: 1px solid var(--red-border);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.law-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
}

/* ── H1 ── */
h1 {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

h1 em {
    font-style: normal;
    color: var(--red);
}

.subtitle {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 28px;
    max-width: 620px;
}

/* ── ANCHORS / TOC ── */
.toc {
    margin-bottom: 40px;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
}

.toc-list a {
    display: inline-block;
    padding: 6px 13px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--bg-gray);
    font-size: 13px;
    color: var(--text-mid);
    text-decoration: none;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
}

.toc-list a:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

/* ── DEADLINE BANNER ── */
.deadline {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--red-light);
    border: 1px solid var(--red-border);
    border-left: 4px solid var(--red);
    border-radius: 4px;
    padding: 20px 24px;
    margin-bottom: 44px;
}

.deadline-date {
    flex-shrink: 0;
    text-align: center;
}

.deadline-date .day {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--red);
}

.deadline-date .month {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.deadline-divider {
    width: 1px;
    height: 48px;
    background: var(--red-border);
    flex-shrink: 0;
}

.deadline-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.deadline-text p {
    font-size: 14px;
    color: var(--text-mid);
}

/* ── SECTION ── */
.section {
    margin-bottom: 44px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.section-num {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .04em;
}

h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.3;
}

/* ── CARD ── */
.card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.card p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.card p:last-child {
    margin-bottom: 0;
}

.card strong {
    color: var(--text);
}

/* ── TEZISY GRID ── */
.tezisy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 580px) {
    .tezisy-grid {
        grid-template-columns: 1fr;
    }
}

.tezis-item {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    padding: 14px 16px;
}

.tezis-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 5px;
}

.tezis-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
}

/* ── WHO LIST ── */
.who-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 18px;
}

.who-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.who-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.who-note {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ── CONSEQUENCES ── */
.consequence-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.consequence-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--red-light);
    border: 1px solid var(--red-border);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    padding: 14px 18px;
}

.c-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.c-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.c-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ── STEPS ── */
.steps-list {
    display: flex;
    flex-direction: column;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: var(--border);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    padding-top: 6px;
}

.step-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
}

.step-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 3px;
    margin-top: 6px;
    letter-spacing: .03em;
}

/* ── REGISTRAR LOGOS ── */
.registrar-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.reg-logo {
    max-width: 150px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px 12px 5px 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.reg-logo svg {
    display: block;
}

/* ── ANIMATIONS ── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}