/* Pro Landing Page Styles */

/* Hero Section */
.pro-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.pro-badge-large {
    margin-bottom: 1.5rem;
}

.pro-badge-large .pro-badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 3px;
}

.pro-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pro-hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.pro-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pro-hero-buttons .btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
}

.pro-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border: none;
}

.pro-hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.pro-hero-buttons .btn-outline-primary {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.pro-hero-buttons .btn-outline-primary:hover {
    background: #2563eb;
    color: white;
}

/* Features Section */
.pro-features h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.pro-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pro-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pro-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pro-feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
}

.pro-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.pro-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* How It Works Section */
.pro-how-it-works h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Access Section */
.access-card {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
}

.access-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.access-card p {
    opacity: 0.9;
    font-size: 1rem;
}

.access-card .btn-primary {
    background: white;
    color: #2563eb;
    border: none;
    font-weight: 600;
}

.access-card .btn-primary:hover {
    background: #f1f5f9;
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .pro-hero {
        padding: 2.5rem 1.5rem;
    }
    
    .pro-hero-title {
        font-size: 1.75rem;
    }
    
    .pro-hero-subtitle {
        font-size: 1rem;
    }
    
    .pro-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .access-card {
        text-align: center;
    }
    
    .access-card .text-md-end {
        text-align: center !important;
    }
}
