/* Conversion AI Page Styles - Based on marketaianalysis.css structure */

/* Hero Section */
.business-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.business-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.business-hero-content {
    max-width: 600px;
}

.business-hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: #E53935;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.business-hero-description {
    margin-bottom: 32px;
}

.business-hero-description p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.business-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.business-hero-info {
    max-width: 600px;
    margin-bottom: 60px;
}

.business-hero-info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Device Section */
.device-section {
    margin-top: 60px;
}

.device-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.device-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-frame {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.browser-header {
    background: #2a2a2a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    display: flex;
    justify-content: center;
}

.browser-url span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.browser-content {
    position: relative;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Services Grid Section */
.services-grid {
    background: #000000;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 57, 53, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 100px 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.benefits-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Expert Help CTA Section */
.expert-help {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 100px 0;
}

.expert-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.expert-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.expert-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-block;
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-hero-title {
        font-size: 36px;
    }
    
    .business-hero-tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-header h2,
    .benefits-header h2,
    .expert-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .business-hero {
        padding: 100px 0 60px;
    }
    
    .business-hero-title {
        font-size: 28px;
    }
    
    .services-grid,
    .benefits-section,
    .expert-help {
        padding: 60px 0;
    }
    
    .services-header h2,
    .benefits-header h2,
    .expert-title {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
}