/* ============================================
   GUARANTEE SECTION — Trust Signal
   ============================================ */

.guarantee-section {
    position: relative;
    padding: var(--space-20) 0;
    /* More vertical breathing room */
    overflow: hidden;
}

/* Background Glow */
.guarantee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* Wider glow */
    height: 80%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
    /* Pure Primary Glow */
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.guarantee-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Significantly wider */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.guarantee-card {
    background: linear-gradient(180deg, rgba(20, 10, 30, 0.6) 0%, rgba(130, 36, 227, 0.05) 100%);
    border: 1px solid rgba(130, 36, 227, 0.4);
    backdrop-filter: var(--blur-lg);
    border-radius: var(--radius-3xl);
    padding: var(--space-16) var(--space-12);
    /* Large spacious padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    transition: var(--transition-normal);
    width: 100%;
}

.guarantee-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 100px rgba(130, 36, 227, 0.3);
    transform: translateY(-5px);
}

/* Badge Icon */
.guarantee-badge {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--space-10);
    /* Strict Purple Gradient */
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
    position: relative;
}

.guarantee-badge svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Ripples for animation */
.guarantee-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.5);
    opacity: 0;
    animation: ripple 3s infinite;
}

.guarantee-ripple:nth-child(2) {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
        border-width: 2px;
    }

    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
        border-width: 0px;
    }
}

/* Typography */
.guarantee-title {
    font-size: var(--text-4xl);
    /* Larger title */
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-6);
    background: linear-gradient(to right, #ffffff 20%, #D8B4FE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.guarantee-text {
    font-size: var(--text-xl);
    /* Larger text */
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-highlight {
    color: #C084FC;
    /* Purple-light tint */
    font-weight: var(--font-bold);
    text-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}

/* New Buttons Area */
.guarantee-actions {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    align-items: center;
    margin-top: var(--space-10);
}

.btn-premium-glow {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
    border: none;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-premium-glow:hover {
    box-shadow: 0 0 70px rgba(124, 58, 237, 0.7);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .guarantee-section {
        padding: var(--space-12) 0;
    }

    .guarantee-card {
        padding: var(--space-10) var(--space-6);
    }

    .guarantee-title {
        font-size: var(--text-2xl);
    }

    .guarantee-text {
        font-size: var(--text-lg);
    }

    .guarantee-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-4);
    }

    .guarantee-actions .btn {
        width: 100%;
        justify-content: center;
    }
}