/**
 * Industry Landing Page Styles
 *
 * Styles for programmatic SEO industry pages.
 * Premium icy/industrial aesthetic with Apple-like scroll animations.
 *
 * @package SubZero
 * @since 3.1.0
 */

/* ==========================================================================
   Variables & Defaults
   ========================================================================== */

.industry-page {
    --industry-hero-min-height: 90vh;
    --section-padding: clamp(4rem, 8vw, 8rem);
    --card-radius: 1rem;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --frost-gradient: linear-gradient(135deg, rgba(102, 196, 217, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --ice-blue: #66C4D9;
    --ice-dark: #0A1A24;
    --subzero-blue: #0099bf;
}

/* ==========================================================================
   Industry Hero Section
   ========================================================================== */

.industry-hero {
    position: relative;
    min-height: var(--industry-hero-min-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--color-secondary, #1a1a2e) 0%, #1a3a4a 50%, var(--color-primary-dark, #0a1a24) 100%);
    overflow: hidden;
}

.industry-hero__frost-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(102, 196, 217, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 153, 191, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.industry-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Ice shards - decorative elements */
.industry-hero__ice-shards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industry-hero__ice-shards .ice-shard {
    position: absolute;
    opacity: 0.1;
}

.industry-hero__ice-shards .ice-shard--1 {
    top: -10%;
    right: 5%;
    width: 200px;
    height: 400px;
    transform: rotate(15deg);
    animation: industryFloatShard 20s ease-in-out infinite;
}

.industry-hero__ice-shards .ice-shard--2 {
    bottom: -15%;
    left: 10%;
    width: 150px;
    height: 300px;
    transform: rotate(-20deg);
    animation: industryFloatShard 25s ease-in-out infinite reverse;
}

@keyframes industryFloatShard {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-20px);
    }
}

.industry-hero .container {
    position: relative;
    z-index: 2;
}

.industry-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.industry-hero__breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-steel-gray, rgba(255, 255, 255, 0.88)); /* WCAG AA compliant */
}

.industry-hero__breadcrumb a {
    color: var(--color-steel-gray, rgba(255, 255, 255, 0.88)); /* WCAG AA compliant */
    text-decoration: none;
    transition: color 0.2s ease;
}

.industry-hero__breadcrumb a:hover,
.industry-hero__breadcrumb a:focus {
    color: var(--ice-blue);
}

.industry-hero__breadcrumb a:focus-visible {
    color: var(--ice-blue);
    outline: 2px solid var(--ice-blue);
    outline-offset: 2px;
}

.industry-hero__breadcrumb .breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.industry-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 58, 74, 0.9); /* Fallback for Firefox */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--ice-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

@supports (backdrop-filter: blur(8px)) {
    .industry-hero__badge {
        background: rgba(255, 255, 255, 0.1); /* Lighter when blur supported */
    }
}

.industry-hero__badge svg {
    width: 18px;
    height: 18px;
}

.industry-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-frost-white, #ffffff);
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, var(--color-frost-white, #ffffff) 0%, var(--ice-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-hero__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.industry-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.industry-hero__stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ice-blue);
    line-height: 1;
}

.industry-hero__stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industry-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    animation: industryBounce 2s ease-in-out infinite;
}

@keyframes industryBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==========================================================================
   Section Padding
   ========================================================================== */

.section-padding {
    padding: var(--section-padding) 0;
}

/* ==========================================================================
   Industry Introduction
   ========================================================================== */

.industry-intro {
    background: var(--color-white, #ffffff);
    padding: 4rem 0 3rem;
}

.industry-intro__content {
    max-width: 900px;
    margin: 0 auto;
}

.industry-intro__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-dark-charcoal, #333333);
    margin-top: 2rem;
}

.industry-intro__text p {
    margin: 0;
}

/* ==========================================================================
   Dark Background Sections
   ========================================================================== */

.bg-dark {
    background: linear-gradient(135deg, var(--color-secondary, #1a1a2e) 0%, #1a3a4a 50%, var(--ice-dark) 100%);
    color: var(--color-frost-white, #ffffff);
    position: relative;
}

.bg-dark .section-header__title,
.bg-dark .section-intro__title {
    color: var(--color-frost-white, #ffffff);
}

.bg-dark .section-header__description,
.bg-dark .section-intro__description {
    color: rgba(255, 255, 255, 0.9);
}

.bg-dark .section-header__label,
.bg-dark .section-intro__label {
    color: var(--ice-blue);
}

.industry-challenges__frost-bg,
.industry-compliance__frost-bg,
.industry-cta__frost-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(102, 196, 217, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 153, 191, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* ==========================================================================
   Gradient Frost Background
   ========================================================================== */

.bg-gradient-frost {
    background: linear-gradient(180deg, #f8fbfc 0%, #e8f4f8 100%);
}

/* ==========================================================================
   Features Grid - Shared Layout Component
   ========================================================================== */

.industry-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ==========================================================================
   Challenge Cards
   ========================================================================== */

.industry-challenges {
    padding: 4rem 0;
}

.industry-challenges__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    background: rgba(26, 58, 74, 0.85); /* Fallback for Firefox */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@supports (backdrop-filter: blur(10px)) {
    .challenge-card {
        background: rgba(255, 255, 255, 0.05); /* Lighter when blur supported */
    }
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 196, 217, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.challenge-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ice-blue), #00c6ff);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.challenge-card:hover .challenge-card__number {
    transform: scale(1.1);
}

.challenge-card__number span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-frost-white, #ffffff);
}

.challenge-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-frost-white, #ffffff) !important;
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
    display: block !important;
}

.challenge-card__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
    position: relative;
    z-index: 2;
    display: block !important;
}

/* ==========================================================================
   Solution Cards
   ========================================================================== */

.industry-solutions {
    background: var(--color-white, #ffffff);
    padding: 4rem 0;
}

.industry-solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    display: flex;
    gap: 1.5rem;
    background: var(--color-frost-white, #ffffff);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 196, 217, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 196, 217, 0.3);
}

.solution-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 191, 0.1), rgba(102, 196, 217, 0.15));
    border-radius: 14px;
    color: var(--subzero-blue);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.solution-card:hover .solution-card__icon {
    background: linear-gradient(135deg, var(--subzero-blue), var(--ice-blue));
    color: var(--color-frost-white, #ffffff);
    transform: scale(1.05);
}

.solution-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark-charcoal, #333333);
    margin: 0 0 0.75rem;
}

.solution-card__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-steel-gray, #666666);
    margin: 0;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.industry-benefits {
    padding: 4rem 0;
}

.industry-benefits__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-frost-white, #ffffff);
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 196, 217, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 196, 217, 0.3);
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--subzero-blue);
    position: relative;
    z-index: 2;
}

.benefit-item__text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-dark-charcoal, #333333) !important;
    position: relative;
    z-index: 2;
    display: block !important;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.industry-projects {
    background: var(--color-white, #ffffff);
    padding: 4rem 0;
}

.industry-projects__cta {
    text-align: center;
    margin-top: 3rem;
}

.projects-grid--3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ==========================================================================
   Compliance Cards
   ========================================================================== */

.industry-compliance {
    padding: 4rem 0;
}

.industry-compliance__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: rgba(26, 58, 74, 0.85); /* Fallback for Firefox */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@supports (backdrop-filter: blur(10px)) {
    .compliance-card {
        background: rgba(255, 255, 255, 0.05); /* Lighter when blur supported */
    }
}

.compliance-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 196, 217, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.compliance-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 153, 191, 0.2), rgba(102, 196, 217, 0.15));
    border-radius: 50%;
    color: var(--ice-blue);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.compliance-card:hover .compliance-card__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 153, 191, 0.3), rgba(102, 196, 217, 0.25));
}

.compliance-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-frost-white, #ffffff);
    margin: 0 0 1rem;
}

.compliance-card__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.industry-faq {
    background: var(--color-white, #ffffff);
    padding: 4rem 0;
}

/* Industry FAQ - Uses global faq-accordion styles with slight overrides */
.industry-faq .faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.industry-faq .faq-item {
    border-color: rgba(102, 196, 217, 0.1);
}

.industry-faq .faq-item:hover {
    border-color: rgba(102, 196, 217, 0.2);
}

/* ==========================================================================
   Related Industries
   ========================================================================== */

.industry-related {
    padding: 4rem 0;
}

.industry-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-frost-white, #ffffff);
    border-radius: var(--card-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 196, 217, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 196, 217, 0.3);
}

.industry-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 191, 0.1), rgba(102, 196, 217, 0.15));
    border-radius: 16px;
    color: var(--subzero-blue);
    margin-bottom: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.industry-card:hover .industry-card__icon {
    background: linear-gradient(135deg, var(--subzero-blue), var(--ice-blue));
    color: var(--color-frost-white, #ffffff);
    transform: scale(1.05);
}

.industry-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark-charcoal, #333333);
    margin: 0 0 0.75rem;
}

.industry-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--subzero-blue);
}

.industry-card__link svg {
    transition: transform 0.2s ease;
}

.industry-card:hover .industry-card__link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Cross-Links Section
   ========================================================================== */

.industry-crosslinks {
    padding: 4rem 0;
    background: var(--color-frost-white, #f8fafc);
}

.industry-crosslinks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.crosslink-card {
    background: var(--color-white, #ffffff);
    border-radius: var(--card-radius, 1rem);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 196, 217, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.crosslink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 196, 217, 0.3);
}

.crosslink-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 191, 0.1), rgba(102, 196, 217, 0.15));
    border-radius: 14px;
    color: var(--subzero-blue);
    margin-bottom: 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.crosslink-card:hover .crosslink-card__icon {
    background: linear-gradient(135deg, var(--subzero-blue), var(--ice-blue));
    color: var(--color-frost-white, #ffffff);
}

.crosslink-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark-charcoal, #333333);
    margin: 0 0 0.75rem;
}

.crosslink-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-steel-gray, #666666);
    margin: 0 0 1.25rem;
}

.crosslink-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.crosslink-card__links a {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(0, 153, 191, 0.08);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--subzero-blue);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.crosslink-card__links a:hover {
    background: var(--subzero-blue);
    color: var(--color-frost-white, #ffffff);
}

.crosslink-card__links a.crosslink-card__more {
    background: transparent;
    border: 1px solid var(--subzero-blue);
}

.crosslink-card__links a.crosslink-card__more:hover {
    background: var(--subzero-blue);
    color: var(--color-frost-white, #ffffff);
}

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

    .crosslink-card__links {
        flex-direction: column;
    }

    .crosslink-card__links a {
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.industry-cta {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.industry-cta__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.industry-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-cta__badge,
.industry-page .cta-block__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(26, 58, 74, 0.9); /* Fallback for Firefox */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--ice-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

@supports (backdrop-filter: blur(8px)) {
    .industry-cta__badge,
    .industry-page .cta-block__badge {
        background: rgba(255, 255, 255, 0.1); /* Lighter when blur supported */
    }
}

.industry-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-frost-white, #ffffff);
    margin: 0 0 1.5rem;
}

.industry-cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
}

.industry-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.industry-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--color-frost-white, #ffffff);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.industry-cta__phone:hover {
    color: var(--color-frost-white, #ffffff);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-frost-white, #ffffff);
}

.industry-cta__trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.industry-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92); /* WCAG AA compliant on dark backgrounds */
    font-size: 0.9375rem;
}

.industry-cta__trust-item svg {
    color: var(--ice-blue);
}

/* ==========================================================================
   Section Headers - Consistent Styling
   ========================================================================== */

.industry-page .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-page .section-header__frost-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
    margin: 0 auto 1.5rem;
}

.industry-page .section-header__label,
.industry-page .section-intro__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--subzero-blue);
    margin-bottom: 0.75rem;
}

.industry-page .section-header__title,
.industry-page .section-intro__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark-charcoal, #1a1a2e);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.industry-page .section-header__description,
.industry-page .section-intro__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-steel-gray, #666666);
    margin: 0;
}

/* Override dark text for dark background sections (specificity fix) */
.industry-page .bg-dark .section-header__label,
.industry-page .bg-dark .section-intro__label,
.industry-page .section-header--light .section-header__label,
.industry-page .section-header--light .section-intro__label {
    color: var(--ice-blue, #66C4D9);
}

.industry-page .bg-dark .section-header__title,
.industry-page .bg-dark .section-intro__title,
.industry-page .section-header--light .section-header__title,
.industry-page .section-header--light .section-intro__title {
    color: var(--color-frost-white, #ffffff);
}

.industry-page .bg-dark .section-header__description,
.industry-page .bg-dark .section-intro__description,
.industry-page .section-header--light .section-header__description,
.industry-page .section-header--light .section-intro__description {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .industry-hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .industry-hero__stats {
        gap: 2rem;
    }

    .industry-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .industry-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .industry-hero__scroll {
        display: none;
    }

    .challenge-card,
    .solution-card,
    .compliance-card {
        padding: 1.5rem;
    }

    .solution-card {
        flex-direction: column;
        text-align: center;
    }

    .solution-card__icon {
        align-self: center;
    }

    .industry-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .industry-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .industry-cta__phone {
        justify-content: center;
    }

    .industry-cta__trust {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item__icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .industry-hero__title {
        font-size: 1.75rem;
    }

    .industry-hero__stat-value {
        font-size: 2rem;
    }

    .industry-faq .faq-item__trigger {
        padding: 1.25rem;
    }

    .industry-faq .faq-item__question {
        font-size: 1rem;
    }

    .industry-related__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .industry-hero__particles,
    .industry-hero__frost-overlay,
    .industry-hero__ice-shards,
    .industry-hero__scroll,
    .industry-challenges__frost-bg,
    .industry-compliance__frost-bg,
    .industry-cta__frost-bg,
    .industry-cta__particles {
        display: none;
    }

    .industry-hero,
    .bg-dark {
        background: #fff;
        color: #000;
    }

    .industry-hero__title,
    .industry-hero__description,
    .challenge-card__title,
    .challenge-card__description,
    .compliance-card__title,
    .compliance-card__description {
        color: #000;
        -webkit-text-fill-color: #000;
    }

    .industry-hero__badge,
    .industry-cta__badge {
        background: #f0f0f0;
        color: #333;
    }
}

/* ==========================================================================
   Animation Enhancements - Consistent with scroll-reveal.js
   ========================================================================== */

/* Ensure smooth initial states for animated elements */
.industry-page [data-fade] {
    will-change: transform, opacity;
}

/* Remove will-change after animation completes (handled by JS, but backup) */
.industry-page [data-fade].is-visible {
    will-change: auto;
}

/* Ice particle animation */
.ice-particle {
    position: absolute;
    top: -10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: floatDown linear infinite;
}

@keyframes floatDown {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Frost hover effect - shared utility class */
.frost-hover {
    position: relative;
}

.frost-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.frost-hover:hover::before {
    opacity: 1;
}

/* Card lift effect - shared utility class */
.card-lift {
    position: relative;
}

.card-lift::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(102, 196, 217, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.card-lift:hover::after {
    box-shadow: 0 0 0 3px rgba(102, 196, 217, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
