/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000 !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-dark {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-1px);
}

.btn-outline-dark {
    color: #000;
    border-color: #000;
    background-color: transparent;
}

.btn-outline-dark:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-hunt-badge {
    display: inline-block;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #000;
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin: 2rem 0;
}

.hero-image-container {
    margin-top: 3rem;
}

.hero-image-container img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Section */
.features-overview {
    padding: 5rem 0;
}

.features-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: #007bff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

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

.feature-showcase {
    margin-top: 3rem;
}

.feature-showcase img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background-color: #fff;
}

.why-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Feature Details */
.feature-details {
    padding: 5rem 0;
}

.feature-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.feature-details .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.feature-details img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Platform Benefits */
.platform-benefits {
    padding: 5rem 0;
    background-color: #fff;
}

.platform-benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
}

.platform-showcase img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
}

.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
}

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table table {
    margin-bottom: 0;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    padding: 1.5rem 1rem;
    border-bottom: 2px solid #dee2e6;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.comparison-table td:first-child {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.testimonial-avatar img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.blockquote-footer {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.footer h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.footer h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #000;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info a {
    color: #007bff;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .features-overview h2,
    .why-section h2,
    .platform-benefits h2,
    .comparison-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .feature-details h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .features-overview,
    .why-section,
    .feature-details,
    .platform-benefits,
    .comparison-section,
    .testimonials-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-overview h2,
    .why-section h2,
    .platform-benefits h2,
    .comparison-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }
}

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

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

/* Utility Classes */
.text-primary {
    color: #007bff !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.pricing-card.featured {
    border-color: #007bff;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}
