.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(9, 195, 114, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    line-height: 1;
}

.currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-right: 8px;
    letter-spacing: -2px;
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 8px 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

.pricing-features .feature i {
    color: var(--success-green);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    background: rgba(56, 161, 105, 0.1);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(9, 195, 114, 0.3);
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(9, 195, 114, 0.4);
    background: linear-gradient(135deg, var(--primary-dark-green), var(--primary-green));
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--secondary-blue), #1557cc);
    box-shadow: 0 6px 20px rgba(25, 113, 255, 0.3);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 12px 30px rgba(25, 113, 255, 0.4);
    background: linear-gradient(135deg, #1557cc, var(--secondary-blue));
}



/* FAQ Section - Enhanced Styling */
.faq-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(9, 195, 114, 0.03), rgba(25, 113, 255, 0.03));
    transform: translateY(-50%);
    border-radius: 50px;
}



.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(9, 195, 114, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question::before {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark-green));
}

.faq-question:hover {
    background: rgba(9, 195, 114, 0.02);
}

.faq-question h4 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(9, 195, 114, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-green);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(9, 195, 114, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 32px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-top: 8px;
}

/* Add some decorative elements */
.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    border-radius: 2px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-card {
        padding: 32px 24px 24px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 24px 20px;
    }
    
    .faq-question h4 {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        padding: 0 20px 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features .feature {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .pricing-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-question {
        padding: 20px 16px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .faq-question i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 20px;
    }
}

/* Enhanced Animation Styles */
.hover-slide-right:hover {
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.trading-feed .feed-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.trading-feed .feed-item:hover {
    border-left-color: var(--primary-green);
    background: rgba(9, 195, 114, 0.02);
    transform: translateX(5px);
}

/* Enhanced Market Cards */
.market-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 195, 114, 0.1), rgba(25, 113, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card:hover::before {
    opacity: 1;
}

.market-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Asset Icons */
.asset-icon {
    position: relative;
    overflow: hidden;
}

.asset-icon img {
    transition: all 0.3s ease;
}

.asset-icon:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Signal Cards */
.signal-card {
    position: relative;
    transition: all 0.3s ease;
}

.signal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Investor Cards */
.investor-card {
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.investor-card:hover {
    transform: rotateY(5deg) translateY(-10px);
}

/* Time Progress Animation */
.time-progress {
    width: 100%;
    height: 2px;
    background: rgba(9, 195, 114, 0.2);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.time-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-dark-green));
    animation: timeProgress 5s ease-in-out infinite;
}

@keyframes timeProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Enhanced Button Animations */
.btn-primary-hero,
.btn-secondary-hero,
.trade-btn,
.pricing-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary-hero::before,
.btn-secondary-hero::before,
.trade-btn::before,
.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-hero:hover::before,
.btn-secondary-hero:hover::before,
.trade-btn:hover::before,
.pricing-btn:hover::before {
    left: 100%;
}

/* Enhanced FAQ Animations */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-question {
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.faq-item.active .faq-question::after,
.faq-item:hover .faq-question::after {
    width: 100%;
}

/* Loading Animation for Images */
.asset-icon img,
.market-icon {
    position: relative;
}

.asset-icon img:not([src]),
.asset-icon img[src=""] {
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: imageLoading 1.5s infinite;
}

@keyframes imageLoading {
    0% { background-position: 100% 50%; }
    100% { background-position: -100% 50%; }
}

/* Enhanced Statistics Animation */
.stat-card,
.activity-stat,
.signal-stat {
    transition: all 0.3s ease;
}

.stat-card:hover,
.activity-stat:hover,
.signal-stat:hover {
    transform: scale(1.05);
    background: rgba(9, 195, 114, 0.05);
}

/* Enhanced Floating Elements */
.floating-element {
    position: absolute;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
    .hover-lift:hover,
    .hover-lift-strong:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .market-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .floating-element {
        position: relative;
        margin: 10px 0;
    }

    /* Disable complex animations on mobile */
    .animate-float-1,
    .animate-float-2,
    .animate-float-3 {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* Respect user's motion preferences */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}