.industry-page {
    background: #ffffff;
}

.industry-page .hero-section {
    background: linear-gradient(165deg, #0a1628 0%, #0f2d1a 50%, #0a1628 100%);
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
}

.industry-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(34,197,94,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(74,222,128,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.industry-page .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.industry-page .hero-section .container {
    position: relative;
    z-index: 1;
}

.industry-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.industry-page .hero-badge i {
    font-size: 0.75rem;
}

.industry-page .hero-section h1 {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.industry-page .hero-section h1 span {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-page .hero-section p.lead {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.industry-page .hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.industry-page .btn-hero-primary {
    background: #22c55e;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-page .btn-hero-primary:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34,197,94,0.35);
}

.industry-page .btn-hero-outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-page .btn-hero-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
}

.industry-page .hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-page .hero-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.industry-page .hero-feature-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(34,197,94,0.3);
    transform: translateY(-2px);
}

.industry-page .hero-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(74,222,128,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #4ade80;
}

.industry-page .hero-feature-text h6 {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.industry-page .hero-feature-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.5;
}

.industry-page .hero-stat-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.industry-page .hero-stat-pill {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.industry-page .hero-stat-pill .stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: -0.02em;
}

.industry-page .hero-stat-pill .stat-lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.industry-page section {
    padding: 5rem 0;
    background-color: #ffffff !important;
}

.industry-page .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1628 !important;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.industry-page .section-subtitle {
    font-size: 1.05rem;
    color: #6c757d !important;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.industry-page .challenge-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.industry-page .challenge-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 32px rgba(34,197,94,0.1);
    transform: translateY(-4px);
}

.industry-page .challenge-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #22c55e;
    margin-bottom: 1.25rem;
}

.industry-page .challenge-card h5 {
    font-weight: 700;
    color: #0a1628 !important;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.industry-page .challenge-card p {
    font-size: 0.9rem;
    color: #6c757d !important;
    line-height: 1.6;
    margin: 0;
}

.industry-page .solution-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.industry-page .solution-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 32px rgba(34,197,94,0.1);
    transform: translateY(-4px);
    text-decoration: none;
}

.industry-page .solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #22c55e;
    margin-bottom: 1.25rem;
}

.industry-page .solution-card h5 {
    font-weight: 700;
    color: #0a1628 !important;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.industry-page .solution-card p {
    font-size: 0.9rem;
    color: #6c757d !important;
    line-height: 1.6;
    margin: 0;
}

.industry-page .framework-section {
    background: #f8f9fa !important;
}

.industry-page .framework-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #0a1628;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.industry-page .framework-badge:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 16px rgba(34,197,94,0.1);
}

.industry-page .framework-badge i {
    color: #22c55e;
    font-size: 1.1rem;
}

.industry-page .module-section {
    background: linear-gradient(165deg, #0a1628 0%, #1a2744 100%) !important;
}

.industry-page .module-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.industry-page .module-card:hover {
    border-color: #22c55e;
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    text-decoration: none;
}

.industry-page .module-card h4 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.industry-page .module-card p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.industry-page .module-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(74,222,128,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.industry-page .module-badge {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industry-page .module-section .section-title {
    color: #ffffff !important;
}

.industry-page .module-section .section-subtitle {
    color: rgba(255,255,255,0.6) !important;
}

.industry-page .cta-section {
    background: linear-gradient(165deg, #071018 0%, #0a1628 100%) !important;
    position: relative;
    overflow: hidden;
}

.industry-page .cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(34,197,94,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.industry-page .cta-section .content {
    position: relative;
    z-index: 2;
}

.industry-page .cta-section h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.industry-page .cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7) !important;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.industry-page .btn-primary-lg {
    background: #22c55e;
    color: #ffffff;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.industry-page .btn-primary-lg:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34,197,94,0.4);
}

.industry-page .btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.industry-page .btn-outline-light-custom:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.industry-page .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.industry-page .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .industry-page .hero-features {
        margin-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .industry-page .hero-section {
        padding: 5rem 0 3rem;
    }

    .industry-page .hero-section h1 {
        font-size: 2rem !important;
    }

    .industry-page section {
        padding: 3.5rem 0;
    }

    .industry-page .section-title {
        font-size: 1.8rem;
    }

    .industry-page .hero-stat-row {
        flex-direction: column;
    }

    .industry-page .hero-feature-card {
        padding: 1rem 1.25rem;
    }
}
