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

/* Go To Market Hero Section Specific Styles */
.go-to-market-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.go-to-market-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

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

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

.go-to-market-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Go To Market Mockup Styles */
.go-to-market-mockup {
    width: 450px;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.go-to-market-mockup:hover {
    transform: scale(1.05);
}

/* Go To Market Demo Button Styling */
.go-to-market-demo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    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;
}

.go-to-market-demo-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

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

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

/* Go To Market Color Overrides */
.title-highlight {
    color: #059669;
}

/* Go To Market Service Cards Custom Styling */
.application-card {
    border-left: 4px solid #059669;
}

.application-card:hover {
    border-left-color: #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
}

/* Go To Market Benefits Section Color Updates */
.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
}

/* Go To Market Pricing Badge Updates */
.pricing-badge.go-to-market {
    background: linear-gradient(135deg, #059669, #047857);
    color: #FFFFFF;
}

/* Go To Market CTA Button Updates */
.cta-get-started-btn {
    background: #059669;
}

.cta-get-started-btn:hover {
    background: #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

/* Go To Market Action Button Updates */
.action-button {
    background: #059669;
}

.action-button:hover {
    background: #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

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

.get-started-btn:hover {
    background: #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

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

.start-project-button:hover {
    background: #047857;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

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

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