/* Section 014 Enhanced Styles */
#section-014 {
    background: linear-gradient(135deg, #e9ebee 0%, #f8f9fa 100%);
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

#section-014::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1877F2, #42A5F5, #1877F2);
    animation: shimmer-header 3s infinite;
}

.section-014-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.section-014-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-014-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.section-014-title {
    color: #1a1a1a;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-014 {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-014-subtitle {
    color: #666;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Value Grid */
.section-014-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.section-014-value-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.section-014-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1877F2, #42A5F5);
}

.section-014-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.2);
}

/* Card Headers */
.card-header-014 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.card-icon-014 {
    font-size: 2.5rem;
    margin-right: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.card-header-014 h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.card-badge-014 {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Content */
.card-content-014 {
    margin-bottom: 20px;
}

.feature-item-014 {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item-014:hover {
    transform: translateX(5px);
    background: rgba(24, 119, 242, 0.05);
    border-radius: 8px;
    padding-left: 10px;
}

.feature-item-014:last-child {
    border-bottom: none;
}

.feature-icon-014 {
    font-size: 1.3rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.feature-item-014 small {
    color: #666;
    font-size: 0.8rem;
    margin-left: 8px;
    font-style: italic;
}

.card-value-014 {
    text-align: center;
    color: #1877F2;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(24, 119, 242, 0.1);
    border-radius: 10px;
    border: 2px dashed rgba(24, 119, 242, 0.3);
}

/* Bonus Grid */
.section-014-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.section-014-bonus-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-014-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.exclusive-card {
    border: 2px solid transparent;
    background: linear-gradient(135deg, white, white), 
                linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    animation: glow 2s infinite alternate;
}

/* Bonus Headers */
.bonus-header-014 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.bonus-icon-014 {
    font-size: 2.2rem;
    margin-right: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.bonus-header-014 h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.bonus-ribbon-014 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: bounce 2s infinite;
}

/* Bonus Content */
.bonus-content-014 {
    margin-bottom: 20px;
}

.bonus-item-014 {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bonus-item-014:last-child {
    border-bottom: none;
}

.bonus-check-014, .bonus-star-014 {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.bonus-item-014.glowing {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 10px;
    margin: 8px 0;
    padding: 12px 15px;
    animation: subtle-glow 3s infinite alternate;
}

.bonus-value-014 {
    text-align: center;
    color: #FF8E53;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px;
    background: rgba(255, 142, 83, 0.1);
    border-radius: 10px;
    border: 2px dashed rgba(255, 142, 83, 0.3);
}

/* Total Value & CTA */
.section-014-total {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-014-total::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.05), rgba(66, 165, 245, 0.05));
    z-index: -1;
}

.total-value-014 {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.total-label-014 {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.total-amount-014 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.total-savings-014 {
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
}

/* CTA Section */
.cta-header-014 h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-header-014 p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-014 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-primary-014 {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    justify-content: center;
}

.cta-primary-014:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
    animation: pulse-glow 1s infinite alternate;
}

.cta-secondary-014 {
    background: transparent;
    color: #1877F2;
    border: 2px solid #1877F2;
    border-radius: 50px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary-014:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateY(-2px);
}

.btn-icon-014 {
    font-size: 1.5rem;
}

.btn-price-014 {
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: 10px;
}

.cta-guarantee-014 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.guarantee-badge-014 {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer-header {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 165, 0, 0.8); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes subtle-glow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.6); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4); }
    100% { box-shadow: 0 15px 40px rgba(24, 119, 242, 0.8); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-014-title {
        font-size: 2.2rem;
    }
    
    .section-014-value-grid,
    .section-014-bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-014 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-014,
    .cta-secondary-014 {
        width: 100%;
        max-width: 300px;
    }
    
    .total-amount-014 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    #section-014 {
        padding: 50px 15px;
    }
    
    .section-014-title {
        font-size: 1.8rem;
    }
    
    .section-014-value-card,
    .section-014-bonus-card {
        padding: 20px;
    }
    
    .section-014-total {
        padding: 25px;
    }
}