.tc-hero {
    background: var(--gradient-hero);
    color: #ffffff;
    padding: 80px 0 120px;
    text-align: center;
}

.tc-hero__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    max-width: 1300px;
    margin: 0 auto !important;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .tc-hero__title {
        font-size: 24px;
        line-height: 1.3;
    }
}

.tc-hero__title a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: opacity 0.2s ease;
}

.tc-hero__title a:hover,
.tc-hero__title a:focus {
    opacity: 0.85;
    color: #ffffff;
}

.tc-hero__report {
    margin: 56px auto 0;
    max-width: 720px;
    background: linear-gradient(180deg, #FAFAFC 0%, #E5E4EF 100%);
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(20, 15, 53, 0.5);
    padding: 24px;
    color: var(--text-primary);
    text-align: left;
}

.tc-report__header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 20px;
}

.tc-report__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tc-report__brand img {
    height: 28px;
    width: auto;
    display: block;
}

.tc-report__table-wrap {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.tc-report__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    color: var(--text-primary);
    table-layout: fixed;
    background: #ffffff;
}

.tc-report__table th,
.tc-report__table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--neutral-200);
    border-right: 1px solid var(--neutral-200);
    text-align: center;
    vertical-align: middle;
}

.tc-report__table th:first-child,
.tc-report__table td:first-child {
    text-align: left;
    color: var(--text-secondary);
    background: var(--neutral-100);
    font-weight: 500;
    width: 22%;
}

.tc-report__table tr:last-child th,
.tc-report__table tr:last-child td {
    border-bottom: none;
}

.tc-report__table th:last-child,
.tc-report__table td:last-child {
    border-right: none;
}

.tc-report__bureau {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 12px 10px !important;
}

.tc-report__bureau--tu { color: #009DDC; }
.tc-report__bureau--ex { color: #1A4189; }
.tc-report__bureau--eq { color: #C8102E; }

.tc-report__tag {
    display: inline-block;
    background: var(--neutral-100);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.tc-report__late {
    color: var(--error-500);
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .tc-hero {
        padding: 56px 0 80px;
    }
    .tc-hero__report {
        margin-top: 32px;
        padding: 16px;
    }
    .tc-report__header {
        padding: 4px 0 16px;
    }
    .tc-report__brand img {
        height: 22px;
    }
    .tc-report__table {
        font-size: 9px;
    }
    .tc-report__table th,
    .tc-report__table td {
        padding: 6px 4px;
    }
    .tc-report__bureau {
        font-size: 10px;
        padding: 8px 4px !important;
    }
}

@media (max-width: 480px) {
    .tc-hero__report {
        border-radius: 12px;
        padding: 12px;
    }
    .tc-report__table {
        font-size: 8px;
    }
    .tc-report__brand img {
        height: 20px;
    }
}
