.htcta-stats {
    padding: 48px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.htcta-stats__heading {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 36px 0;
    line-height: 1.3;
}

.htcta-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.htcta-stats__item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.htcta-stats__number {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.htcta-stats__label {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.htcta-stats__button {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.htcta-stats__button:hover {
    background: #f8fafc;
    color: #2563eb;
}

@media (max-width: 768px) {
    .htcta-stats {
        padding: 36px 24px;
    }

    .htcta-stats__heading {
        font-size: 24px;
    }

    .htcta-stats__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .htcta-stats__item {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .htcta-stats__number {
        font-size: 28px;
    }

    .htcta-stats__label {
        text-align: left;
    }
}
