/* Easy Profit Funnels Page Styles - Modern Design */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.icon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.icon-badge i {
    font-size: 3rem;
    color: #764ba2;
}

.main-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.sub-headline {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
    margin: 50px 0;
}

/* Features Section */
.features-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-content p {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0 50px;
}

.cta-intro {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    cursor: pointer;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff6b81 0%, #ff7979 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
    color: #ffffff;
}

.btn-cta i {
    font-size: 1.6rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
    border: none;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    font-size: 1.8rem;
    color: #ffd700;
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 35px 30px;
}

.modal-intro {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    color: #667eea;
}

.form-control {
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: #ffffff;
}

.btn-modal-submit {
    padding: 16px 30px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-modal-submit:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    color: #ffffff;
}

.btn-modal-submit i {
    font-size: 1.3rem;
}

.modal-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-footer-text i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#scroll-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .icon-badge {
        width: 80px;
        height: 80px;
    }
    
    .icon-badge i {
        font-size: 2.5rem;
    }
    
    .main-headline {
        font-size: 2.3rem;
    }
    
    .sub-headline {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 25px;
        gap: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .cta-intro {
        font-size: 1.4rem;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }
    
    .content-wrapper {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .main-headline {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .cta-intro {
        font-size: 1.2rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 16px 30px;
        width: 100%;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
}