/* Component: Credentials Section */
.credentials-section {
    background: var(--red-bg);
    padding: 64px 0 80px;
}

.credentials-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.cred-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cred-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0,0,0,0.12);
}

.cred-card__check {
    width: 48px;
    height: 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6141b9, #ab5ade);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cred-card__check svg {
    width: 20px;
    height: 20px;
}

.cred-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15.2px;
    color: var(--purple-text);
    margin-bottom: 8px;
}

.cred-card__desc {
    font-size: 12.5px;
    line-height: 1.625;
    color: #5b5c6e;
}

.credentials-section__vat {
    font-size: 12.5px;
    color: #67677a;
    opacity: 0.84;
}

@media (max-width: 860px) {
    .credentials-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
    .credentials-section__grid { grid-template-columns: 1fr; }
}
