.vina-sh-cta {
    --vina-sh-cta-ease: cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    text-align: center;
}

.vina-sh-cta__inner {
    max-width: 896px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 24px);
}

.vina-sh-cta__card {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    background: #213555;
    box-shadow: 0 32px 64px rgba(33, 53, 85, 0.25);
}

.vina-sh-cta__sparkles {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #fff 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.vina-sh-cta__content {
    position: relative;
    z-index: 1;
}

.vina-sh-cta__title {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #fff;
}

.vina-sh-cta__desc {
    margin: 0 0 40px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 239, 231, 0.8);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.vina-sh-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 999px;
    background: #a78295;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(167, 130, 149, 0.4);
    transition: transform 0.35s var(--vina-sh-cta-ease), background 0.35s, color 0.35s, box-shadow 0.35s;
}

.vina-sh-cta__btn:hover {
    transform: translateY(-4px);
    background: #fff;
    color: #213555;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vina-sh-cta--animate .vina-sh-cta__reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    transition: opacity 0.85s var(--vina-sh-cta-ease), transform 0.85s var(--vina-sh-cta-ease);
}

.vina-sh-cta--animate.is-visible .vina-sh-cta__reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 575px) {
    .vina-sh-cta__card { border-radius: 2rem; }
    .vina-sh-cta__btn { width: 100%; justify-content: center; }
}
