/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%);
    color: white;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-description {
    margin: 1.5rem 0;
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Product Cards */
.product-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Stats Section */
.stats-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-card h3 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.company-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

blockquote p {
    font-style: italic;
    margin-bottom: 1rem;
}

blockquote cite {
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

