/**
 * Marketing Site Styles
 */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero .btn-light {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.hero .btn-outline-light {
    padding: 0.75rem 2rem;
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-icon.primary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.feature-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-icon.info {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.feature-icon.danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #667eea;
}

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

.pricing-card .card-header {
    background: transparent;
    border-bottom: none;
    padding-top: 2rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card .feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-card .feature-list li i {
    width: 24px;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    border: none;
    border-radius: 12px;
    background: #f8f9fa;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .btn-light {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
}

/* About Page */
.about-hero {
    background: #f8f9fa;
    padding: 80px 0;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

/* Contact Page */
.contact-info-card {
    border: none;
    border-radius: 12px;
    background: #f8f9fa;
}

.contact-info-card i {
    font-size: 2rem;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }

    .stat-box .number {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* Footer Links */
footer a {
    color: #adb5bd !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white !important;
}

footer .text-muted {
    color: #adb5bd !important;
}
