.hero-meta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.docs-page .hero .hero-contract-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.docs-page .hero .hero-contract-card h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
}

.docs-page .hero .hero-contract-card p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.docs-page .hero .hero-contract-card ul {
    margin: 0 0 0 18px;
    padding: 0;
    color: rgba(255, 255, 255, 0.95);
}

.docs-page .hero .hero-contract-card ul li {
    margin-bottom: 8px;
}

.docs-page .hero .hero-contract-card .contact-chip {
    background: #fff;
    color: #042659;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.docs-page .hero .hero-contract-card .contact-chip:hover,
.docs-page .hero .hero-contract-card .contact-chip:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    color: #042659;
    border-color: #fff;
}

.docs-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.docs-header h2 {
    margin: 0;
}

.docs-header p {
    margin: 0;
    color: rgba(4, 38, 89, 0.75);
}

.docs-table th[data-label="Документ"] {
    flex-direction: column;
    align-items: flex-start;
}

.doc-name {
    display: block;
    font-weight: 600;
    color: #042659;
    margin-bottom: 4px;
}

.doc-subtitle {
    display: block;
    color: rgba(4, 38, 89, 0.75);
    margin-bottom: 6px;
}

.doc-topic {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(4, 38, 89, 0.7);
    background: rgba(4, 38, 89, 0.08);
    border-radius: 999px;
    padding: 4px 10px;
}

.doc-language {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(4, 38, 89, 0.08);
    color: #042659;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

.doc-edition {
    font-weight: 500;
    color: rgba(4, 38, 89, 0.75);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(13, 103, 177, 0.2);
    background: rgba(13, 103, 177, 0.08);
    color: rgba(4, 38, 89, 0.92);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
    background: rgba(13, 103, 177, 0.16);
    color: rgba(4, 38, 89, 0.95);
    border-color: rgba(13, 103, 177, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

@media (min-width: 768px) {
    .docs-section {
        padding-top: 48px;
    }

    .docs-page .hero .hero-contract-card {
        padding: 28px;
    }
}

@media (min-width: 960px) {
}

