/* Landing Page Specific Styles */

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0) 100%),
                linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-600);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.hero-title span {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 540px;
}

/* Trusted By Section */
.trusted-by {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Features Grid */
.features-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-200);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bg-purple-subtle { background: #f5f3ff; color: #7c3aed; }
.bg-blue-subtle { background: #eff6ff; color: #2563eb; }
.bg-green-subtle { background: #f0fdf4; color: #16a34a; }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.feature-list i {
    color: var(--primary-500);
    font-size: 1rem;
}

/* AI Transformation Section */
.ai-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.transformation-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 3rem;
    margin-top: 2rem;
}

.bullet-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.bullet-box {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.bullet-box.optimized {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.bullet-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    letter-spacing: 0.05em;
}

.magic-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Success Stories */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    height: 100%;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200); 
    /* Placeholder color if no image */
}

.user-info h6 {
    margin: 0;
    font-weight: 700;
    color: var(--gray-900);
}

.user-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Final CTA */
.cta-section {
    padding: 6rem 0;
    background: white;
}

.cta-box {
    background: #1e1b4b; /* Dark indigo */
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.3), transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

@media (max-width: 991px) {
    .bullet-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .magic-icon {
        margin: 0 auto;
        transform: rotate(90deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}
