/* Stats Bar Section */
.stats-bar {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(212, 175, 55, 0.05));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-sans);
    color: rgba(248, 245, 255, 0.8);
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--neutral-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    background: rgba(107, 70, 193, 0.1);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(248, 245, 255, 0.7);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--neutral-darker) 0%, var(--primary-dark) 50%, var(--neutral-darker) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 0 0 20px;
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(248, 245, 255, 0.8);
    line-height: 1.7;
}

.step-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 0.5rem 0;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* Trust Badges Section */
.trust-badges {
    padding: 3rem 0;
    background: rgba(107, 70, 193, 0.05);
}

.badges-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-text h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.trust-text p {
    color: rgba(248, 245, 255, 0.7);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--neutral-darker);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(107, 70, 193, 0.1);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--neutral-light);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: rgba(248, 245, 255, 0.8);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary-gold);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

.faq-cta p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--neutral-light);
    margin-bottom: 1.5rem;
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Card Animation */
.product-card-mini:nth-child(odd) {
    animation: floatUp 6s ease-in-out infinite;
}

.product-card-mini:nth-child(even) {
    animation: floatUp 6s ease-in-out infinite 3s;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}