/* ============================================
   INDUSTRY DETAIL PAGES
   ============================================ */

/* Industry Hero */
.industry-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.industry-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.industry-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 5, 30, 0.88), rgba(30, 10, 60, 0.82));
    z-index: 1;
}

.industry-hero .container {
    position: relative;
    z-index: 2;
}

.industry-hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-glow);
    color: var(--purple-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.industry-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.industry-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* Pain Points Grid */
.industry-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.industry-pain-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.industry-pain-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-pain-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.industry-pain-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pain-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.pain-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ef4444;
}

.pain-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Audit Lenses */
.industry-audit-section {
    background: var(--bg-secondary);
}

.audit-lenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.audit-lens {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.audit-lens:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-md);
}

.lens-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple-primary);
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

.audit-lens h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.audit-lens p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Outcomes Grid */
.outcomes-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.outcome-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-normal);
}

.outcome-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-md);
}

.outcome-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.outcome-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.outcome-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .industry-hero h1 {
        font-size: 2rem;
    }

    .industry-pain-grid,
    .audit-lenses-grid {
        grid-template-columns: 1fr;
    }
}