/*
Theme Name: Avada Child - ProfitNetwork
Description: High-conversion child theme for ProfitNetwork.in algorithmic trading platform
Author: ProfitNetwork Team
Template: Avada
Version: 1.0.0
*/

/* ============================================
   Hero Section - Full Width with Gradient
   ============================================ */
.pn-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,30 50,50 T100,50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.3;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.pn-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.pn-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pn-hero .tagline {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.pn-hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pn-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: #ffffff;
    color: #667eea !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.pn-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
    background: #f8f9ff;
}

.pn-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pn-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ============================================
   Features Section
   ============================================ */
.pn-features {
    padding: 80px 20px;
    background: #f8f9ff;
}

.pn-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.pn-feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pn-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
}

.pn-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pn-feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.pn-feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* ============================================
   Social Proof / Stats Section
   ============================================ */
.pn-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.pn-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.pn-stat {
    padding: 20px;
}

.pn-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.pn-stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   Pricing Teaser Section
   ============================================ */
.pn-pricing-teaser {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.pn-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.pn-pricing-card {
    background: #f8f9ff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pn-pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(102,126,234,0.3);
}

.pn-pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pn-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pn-pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pn-pricing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2d3748;
}

.pn-price {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.pn-price-period {
    font-size: 16px;
    color: #718096;
    margin-bottom: 30px;
}

.pn-pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pn-pricing-features li {
    padding: 10px 0;
    color: #4a5568;
    position: relative;
    padding-left: 30px;
}

.pn-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   Final CTA Section
   ============================================ */
.pn-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
    text-align: center;
}

.pn-final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.pn-final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ============================================
   Login Button in Header
   ============================================ */
.fusion-main-menu .pn-header-login {
    margin-left: 20px;
}

.pn-header-login a {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.pn-header-login a:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .pn-hero h1 {
        font-size: 36px;
    }
    
    .pn-hero .tagline {
        font-size: 18px;
    }
    
    .pn-btn-primary,
    .pn-btn-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .pn-features-grid,
    .pn-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pn-pricing-card.featured {
        transform: scale(1);
    }
    
    .pn-final-cta h2 {
        font-size: 32px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.pn-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2d3748;
    text-align: center;
}

.pn-section-subtitle {
    font-size: 20px;
    color: #718096;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pn-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    opacity: 0.6;
}

.pn-trust-badges img {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.pn-trust-badges img:hover {
    filter: grayscale(0%);
}
