/* WapCRM Features Section Styles */
.wapcrm-features-section {
    position: relative;
    background: #0a0a0a;
    padding: 100px 0;
    overflow: hidden;
}

.wapcrm-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.wapcrm-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.wapcrm-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.wapcrm-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wapcrm-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.wapcrm-orb:nth-child(3) {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-30px, 30px); }
}

.wapcrm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wapcrm-hero {
    text-align: center;
    margin-bottom: 80px;
}

.wapcrm-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wapcrm-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wapcrm-hero-subtitle {
    font-size: 20px;
    color: #adb5bd;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.wapcrm-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.wapcrm-stat {
    text-align: center;
}

.wapcrm-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
}

.wapcrm-stat-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wapcrm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.wapcrm-feature {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wapcrm-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd93d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wapcrm-feature:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.wapcrm-feature:hover::before {
    transform: scaleX(1);
}

.wapcrm-feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.wapcrm-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wapcrm-feature-title .emoji {
    width: 28px;
    height: 28px;
}

.wapcrm-feature-desc {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wapcrm-feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.wapcrm-benefit-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.wapcrm-feature-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.wapcrm-mini-stat {
    text-align: center;
}

.wapcrm-mini-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.wapcrm-mini-stat-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .wapcrm-hero-title {
        font-size: 36px;
    }
    
    .wapcrm-hero-subtitle {
        font-size: 16px;
    }
    
    .wapcrm-hero-stats {
        gap: 30px;
    }
    
    .wapcrm-stat-number {
        font-size: 32px;
    }
    
    .wapcrm-features {
        grid-template-columns: 1fr;
    }
    
    .wapcrm-feature {
        padding: 20px;
    }
}
