.htcta-testimonial {
    padding: 48px 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.htcta-testimonial--dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.htcta-testimonial--light {
    background: #ffffff;
    border: 1px solid #e1e6ef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.htcta-testimonial--blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.htcta-testimonial__quote-mark {
    font-family: 'Sora', serif;
    font-size: 80px;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 40px;
}

.htcta-testimonial--dark .htcta-testimonial__quote-mark,
.htcta-testimonial--blue .htcta-testimonial__quote-mark {
    color: #ffffff;
}

.htcta-testimonial--light .htcta-testimonial__quote-mark {
    color: #2563eb;
}

.htcta-testimonial__quote {
    font-family: 'Sen', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.htcta-testimonial--dark .htcta-testimonial__quote,
.htcta-testimonial--blue .htcta-testimonial__quote {
    color: #ffffff;
}

.htcta-testimonial--light .htcta-testimonial__quote {
    color: #060b23;
}

.htcta-testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.htcta-testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.htcta-testimonial--dark .htcta-testimonial__avatar,
.htcta-testimonial--blue .htcta-testimonial__avatar {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.htcta-testimonial--light .htcta-testimonial__avatar {
    border: 3px solid #e1e6ef;
}

.htcta-testimonial__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.htcta-testimonial--dark .htcta-testimonial__avatar--placeholder,
.htcta-testimonial--blue .htcta-testimonial__avatar--placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.htcta-testimonial--light .htcta-testimonial__avatar--placeholder {
    background: #f3f4f5;
    color: #9da0ab;
}

.htcta-testimonial__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.htcta-testimonial__name {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.htcta-testimonial--dark .htcta-testimonial__name,
.htcta-testimonial--blue .htcta-testimonial__name {
    color: #ffffff;
}

.htcta-testimonial--light .htcta-testimonial__name {
    color: #060b23;
}

.htcta-testimonial__role {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
}

.htcta-testimonial--dark .htcta-testimonial__role,
.htcta-testimonial--blue .htcta-testimonial__role {
    color: rgba(255, 255, 255, 0.7);
}

.htcta-testimonial--light .htcta-testimonial__role {
    color: #9da0ab;
}

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

.htcta-testimonial__button:hover {
    background: #dc2626;
    color: #ffffff;
}

@media (max-width: 600px) {
    .htcta-testimonial {
        padding: 40px 24px;
    }

    .htcta-testimonial__quote-mark {
        font-size: 60px;
        top: 10px;
        left: 20px;
    }

    .htcta-testimonial__quote {
        font-size: 18px;
    }

    .htcta-testimonial__author {
        flex-direction: column;
        text-align: center;
    }

    .htcta-testimonial__info {
        align-items: center;
        text-align: center;
    }
}
