/* ===========================================
   INDUSTRY-SPECIFIC PAGE STYLES
   =========================================== */

/* Industry Hero */
.industry-hero {
    padding: calc(var(--space-32) + 20px) 0 var(--space-16);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-base) 100%);
    position: relative;
    overflow: hidden;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.industry-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.industry-hero__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
}

.industry-hero__icon .iconify {
    font-size: 32px;
    color: #FF8C42;
}

.industry-hero__tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.industry-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.15;
}

.industry-hero__title .industry-name {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-hero__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.industry-hero__stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.industry-hero__stat {
    text-align: left;
}

.industry-hero__stat-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-heading-bold);
    color: #FF8C42;
}

.industry-hero__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* Industry Services */
.industry-services {
    padding: var(--space-16) 0;
    background: var(--color-bg-base);
}

.industry-services__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-8);
}

.industry-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .industry-services__grid {
        grid-template-columns: 1fr;
    }
}

.industry-service-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all 0.3s;
}

.industry-service-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.industry-service-card__title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.industry-service-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.industry-services__compliance {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    font-style: italic;
}

/* Industry Why Section */
.industry-why {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg) 100%);
}

.industry-why__title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-heading-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-8);
}

.industry-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 992px) {
    .industry-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-why__grid {
        grid-template-columns: 1fr;
    }
}

.industry-why__item {
    text-align: center;
    padding: var(--space-4);
}

.industry-why__item .iconify {
    font-size: 2.5rem;
    color: #FF8C42;
    margin-bottom: var(--space-3);
}

.industry-why__item h3 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.industry-why__item p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}