/* ============================================
   Industry-Specific Landing Pages CSS
   ============================================ */

/* Industry Hero */
.industry-hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.industry-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    margin-bottom: 24px;
}

.industry-badge span {
    font-size: 1.25rem;
}

.industry-hero h1 {
    margin-bottom: 24px;
}

.industry-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.industry-hero .hero-cta {
    justify-content: center;
}

.industry-hero-bg {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Industry Stats */
.industry-stats-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.industry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.industry-stat {
    padding: 24px;
}

.industry-stat .stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.industry-stat .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Industry Problems/Solutions */
.industry-why-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.industry-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card,
.solution-card {
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.problem-card {
    background: var(--white);
    border: 2px solid #ef4444;
}

.solution-card {
    background: var(--white);
    border: 2px solid #22c55e;
}

.problem-icon,
.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    border-radius: 50%;
}

.problem-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.problem-card h3,
.solution-card h3 {
    margin-bottom: 16px;
}

.problem-card p,
.solution-card p {
    color: var(--gray-600);
}

/* Industry Features */
.industry-features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Industry Pricing */
.industry-pricing-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.industry-pricing-section .pricing-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Industry Examples/Portfolio */
.industry-examples-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Industry FAQ */
.industry-faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

/* Responsive */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .industry-hero {
        padding: 40px 0 50px;
    }
    
    .industry-hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .industry-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Stats - horizontal swipe */
    .industry-stats {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 16px 0;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .industry-stats::-webkit-scrollbar {
        display: none;
    }
    
    .industry-stat {
        flex: 0 0 auto;
        min-width: 140px;
        scroll-snap-align: start;
        padding: 16px 24px;
        text-align: center;
        border-right: 1px solid var(--gray-200);
    }
    
    .industry-stat:last-child {
        border-right: none;
    }
    
    .industry-stat .stat-number {
        font-size: 2rem;
    }
    
    .industry-stat .stat-label {
        font-size: 0.875rem;
    }
    
    /* Problems grid - swipeable */
    .industry-problems-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .industry-problems-grid::-webkit-scrollbar {
        display: none;
    }
    
    .problem-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .industry-hero .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .industry-hero .hero-cta .btn {
        width: 100%;
    }
    
    /* Sections */
    .industry-why-section,
    .industry-features-section,
    .industry-pricing-section,
    .industry-cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Add padding for mobile CTA bar */
    body {
        padding-bottom: 80px;
    }
}
