/* Guarantee Section Styles */
.guarantee-section {
    background: linear-gradient(135deg, 
        var(--accent-green-100) 0%, 
        var(--primary-purple-100) 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, 
        var(--accent-green-200) 0%, 
        transparent 50%);
    z-index: 1;
}

.guarantee-section .container {
    position: relative;
    z-index: 2;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.guarantee-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.guarantee-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.guarantee-item:first-child:hover {
    border-color: var(--accent-green);
}

.guarantee-item:last-child:hover {
    border-color: var(--primary-purple);
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-item h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: var(--line-height-heading);
}

.guarantee-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 16px;
}

.final-cta {
    text-align: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-purple);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--secondary-pink-50) 0%, 
        var(--primary-purple-50) 100%);
    z-index: 1;
}

.final-cta > * {
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.final-cta .cta-button {
    font-size: 22px;
    padding: 20px 48px;
    box-shadow: var(--shadow-purple-hover);
}

.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple-hover);
}

/* Floating Elements */
.guarantee-section::after {
    content: '🚀';
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 40px;
    opacity: 0.2;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: var(--mobile-padding);
    }
    
    .guarantee-item {
        padding: 32px;
    }
    
    .guarantee-item h3 {
        font-size: 20px;
    }
    
    .guarantee-item p {
        font-size: 15px;
    }
    
    .final-cta {
        padding: 32px;
    }
    
    .final-cta p {
        font-size: 18px;
    }
    
    .final-cta .cta-button {
        font-size: 20px;
        padding: 18px 36px;
    }
}

@media (max-width: 480px) {
    .guarantee-item {
        padding: 24px;
    }
    
    .guarantee-icon {
        font-size: 40px;
        height: 60px;
    }
    
    .guarantee-item h3 {
        font-size: 18px;
    }
    
    .guarantee-item p {
        font-size: 14px;
    }
    
    .final-cta {
        padding: 24px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .final-cta .cta-button {
        font-size: 18px;
        padding: 16px 32px;
    }
} 