/* Import base styles from market analysis */
@import url('market-analysis-style.css');

/* Ecommerce Legal Hero Section Specific Styles */
.ecommerce-legal-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.ecommerce-legal-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecommerce-legal-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.ecommerce-legal-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.ecommerce-legal-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.ecommerce-legal-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Legal Compliance Mockup Styles */
.legal-mockup {
    width: 450px;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.legal-mockup:hover {
    transform: scale(1.05);
}

/* Legal Demo Button Styling */
.legal-demo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7C3AED;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-demo-button:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.legal-demo-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.legal-demo-button:hover i {
    transform: translateX(4px);
}

/* Legal Compliance Color Overrides */
.title-highlight {
    color: #7C3AED;
}

/* Legal Service Cards Custom Styling */
.application-card {
    border-left: 4px solid #7C3AED;
}

.application-card:hover {
    border-left-color: #6D28D9;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

/* Legal Benefits Section Color Updates */
.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

/* Legal Pricing Badge Updates */
.pricing-badge.legal {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #FFFFFF;
}

/* Legal CTA Button Updates */
.cta-get-started-btn {
    background: #7C3AED;
}

.cta-get-started-btn:hover {
    background: #6D28D9;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Legal Action Button Updates */
.action-button {
    background: #7C3AED;
}

.action-button:hover {
    background: #6D28D9;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Get Started Button Updates */
.get-started-btn {
    background: #7C3AED;
}

.get-started-btn:hover {
    background: #6D28D9;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Start Project Button Updates */
.start-project-button {
    background: #7C3AED;
}

.start-project-button:hover {
    background: #6D28D9;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .ecommerce-legal-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .ecommerce-legal-hero-section .hero-title {
        font-size: 36px;
    }
    
    .legal-mockup {
        width: 350px;
        height: 270px;
    }
}

@media (max-width: 480px) {
    .ecommerce-legal-hero-section .hero-title {
        font-size: 28px;
    }
    
    .legal-mockup {
        width: 280px;
        height: 210px;
    }
}