/* ============================================================
   INDUSTRY SOLUTIONS - PREMIUM DESIGN SYSTEM v3.0
   Modern, Clean, Professional
   ============================================================ */

/* ==================== CSS RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Brand Colors - Warm Gold */
    --gold-50: #fefaf6;
    --gold-100: #fdf3e8;
    --gold-200: #fae5cc;
    --gold-300: #f5d0a9;
    --gold-400: #e9a866;
    --gold-500: #d27b45;
    --gold-600: #b8612e;
    --gold-700: #a65323;
    --gold-800: #8a4520;
    --gold-900: #6d3719;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Semantic Colors */
    --primary: var(--gold-500);
    --primary-hover: var(--gold-600);
    --primary-light: var(--gold-100);
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-400);
    --bg-primary: var(--white);
    --bg-secondary: var(--slate-50);
    --bg-tertiary: var(--gold-50);
    --border-light: var(--slate-200);
    --border-medium: var(--slate-300);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.75;

    /* Spacing */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --rounded-none: 0;
    --rounded-sm: 0.25rem;
    --rounded: 0.5rem;
    --rounded-md: 0.625rem;
    --rounded-lg: 0.75rem;
    --rounded-xl: 1rem;
    --rounded-2xl: 1.25rem;
    --rounded-3xl: 1.5rem;
    --rounded-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-gold: 0 10px 40px -10px rgba(210, 123, 69, 0.3);
    --shadow-gold-lg: 0 20px 60px -15px rgba(210, 123, 69, 0.4);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;

    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-6);
}

/* ==================== BASE STYLES ==================== */
.industry-page {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.industry-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.industry-page a {
    color: inherit;
    text-decoration: none;
}

/* ==================== CONTAINER ==================== */
.industry-page .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== HERO SECTION ==================== */
.industry-page .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--white) 50%, var(--slate-50) 100%);
    overflow: hidden;
}

/* Hero Background Elements */
.industry-page .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--slate-200) 1px, transparent 1px),
        linear-gradient(to bottom, var(--slate-200) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.industry-page .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    pointer-events: none;
}

.industry-page .hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--gold-200);
    top: -200px;
    right: -100px;
}

.industry-page .hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-300);
    bottom: -100px;
    left: -50px;
    opacity: 0.3;
}

.industry-page .hero-3d-shapes {
    display: none;
}

/* Hero Container */
.industry-page .hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-24) 0 var(--space-16);
    width: 100%;
}

/* Hero Logo */
.industry-page .hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.industry-page .hero-logo {
    height: 48px;
    width: auto;
}

.industry-page .logo-divider {
    width: 1px;
    height: 32px;
    background: var(--border-medium);
}

.industry-page .brand-name {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: var(--leading-snug);
}

/* Hero Badge */
.industry-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.industry-page .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Hero Content */
.industry-page .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.industry-page .hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.industry-page .hero-title-highlight {
    color: var(--primary);
}

.industry-page .hero-description,
.industry-page .hero-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.industry-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* ==================== BUTTON SYSTEM ==================== */
.industry-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: 1;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.industry-page .btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.industry-page .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.industry-page .btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.industry-page .btn-secondary:hover {
    background: var(--slate-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.industry-page .btn-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast);
}

.industry-page .btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ==================== HERO VISUAL ==================== */
.industry-page .hero-visual {
    max-width: 500px;
    margin: var(--space-12) auto 0;
}

.industry-page .hero-image-card {
    background: var(--white);
    border-radius: var(--rounded-2xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.industry-page .hero-image-wrapper {
    position: relative;
    border-radius: var(--rounded-xl);
    overflow: hidden;
    background: var(--slate-100);
}

.industry-page .hero-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: var(--space-6);
    background: var(--white);
}

/* Hero Stats */
.industry-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.industry-page .hero-stat {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    padding: var(--space-4);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .hero-stat:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.industry-page .hero-stat-value,
.industry-page .stat-value {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.industry-page .hero-stat-label,
.industry-page .stat-label {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Image Navigation */
.industry-page .hero-image-nav {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    padding: var(--space-2);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: var(--rounded-full);
}

.industry-page .hero-image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.industry-page .hero-image-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: var(--rounded-full);
}

/* ==================== CERTIFICATIONS SECTION ==================== */
.industry-page .certifications-section {
    padding: var(--space-12) 0;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--gold-200);
    border-bottom: 1px solid var(--gold-200);
}

.industry-page .certifications-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.industry-page .cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    border: 1px solid var(--gold-200);
    border-radius: var(--rounded-xl);
    min-width: 120px;
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .cert-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.industry-page .cert-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    border-radius: var(--rounded-lg);
    color: var(--primary);
}

.industry-page .cert-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.industry-page .cert-name {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.industry-page .cert-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-align: center;
}

/* ==================== SECTION STYLES ==================== */
.industry-page .section {
    padding: var(--space-24) 0;
}

.industry-page .section-alt {
    background: var(--bg-secondary);
}

.industry-page .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.industry-page .section-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.industry-page .section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.industry-page .section-description,
.industry-page .section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ==================== CLIENTS SECTION ==================== */
.industry-page .clients-section {
    padding: var(--space-20) 0;
    background: var(--white);
}

.industry-page .clients-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.industry-page .clients-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    display: block;
}

.industry-page .clients-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.industry-page .clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

.industry-page .client-card {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .client-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px) scale(1.02);
}

.industry-page .client-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: all var(--duration-normal);
}

.industry-page .client-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.industry-page .client-card.large {
    width: 120px;
    height: 120px;
}

.industry-page .client-card.medium {
    width: 110px;
    height: 110px;
}

/* ==================== INDUSTRIES SECTION ==================== */
.industry-page .industries-section {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-tertiary) 100%);
}

.industry-page .quick-selector-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.industry-page .quick-selector-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-16);
}

.industry-page .quick-selector-item {
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .quick-selector-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Industries Grid */
.industry-page .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
}

.industry-page .industry-card {
    background: var(--white);
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--duration-slow) var(--ease-out);
    display: block;
}

.industry-page .industry-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.industry-page .industry-image-container {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--slate-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    overflow: hidden;
}

.industry-page .industry-image {
    max-width: 160px;
    max-height: 140px;
    object-fit: contain;
    transition: transform var(--duration-slow) var(--ease-out);
}

.industry-page .industry-card:hover .industry-image {
    transform: scale(1.1);
}

.industry-page .industry-content {
    padding: var(--space-6);
}

.industry-page .industry-title {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    transition: color var(--duration-fast);
}

.industry-page .industry-card:hover .industry-title {
    color: var(--primary);
}

.industry-page .industry-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.industry-page .industry-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .industry-card:hover .industry-link {
    opacity: 1;
    transform: translateY(0);
}

.industry-page .industry-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast);
}

.industry-page .industry-card:hover .industry-link svg {
    transform: translateX(4px);
}

/* Many More Card */
.industry-page .industry-card.many-more .industry-image-container {
    background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-200) 100%);
}

.industry-page .many-more-icon {
    color: var(--primary);
}

.industry-page .many-more-icon svg {
    width: 48px;
    height: 48px;
}

/* ==================== FEATURES SECTION ==================== */
.industry-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.industry-page .feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-2xl);
    padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.industry-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

.industry-page .feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-page .feature-card:hover::before {
    transform: scaleX(1);
}

.industry-page .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-100);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 1.5rem;
}

.industry-page .feature-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.industry-page .feature-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ==================== SPECS SECTION ==================== */
.industry-page .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-5);
}

.industry-page .spec-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .spec-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.industry-page .spec-label,
.industry-page .spec-title {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.industry-page .spec-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary);
    line-height: 1;
}

.industry-page .spec-unit {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--font-normal);
}

.industry-page .spec-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--space-2);
}

/* ==================== STANDARDS SECTION ==================== */
.industry-page .standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.industry-page .standards-card,
.industry-page .standard-category {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-2xl);
    padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .standards-card:hover,
.industry-page .standard-category:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.industry-page .standards-card-title,
.industry-page .standard-category h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.industry-page .standards-list,
.industry-page .standard-list {
    list-style: none;
}

.industry-page .standards-list li,
.industry-page .standard-list li,
.industry-page .standard-item {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-sm);
}

.industry-page .standards-list li:last-child,
.industry-page .standard-list li:last-child,
.industry-page .standard-item:last-child {
    border-bottom: none;
}

.industry-page .standard-code {
    font-weight: var(--font-semibold);
    color: var(--primary);
    background: var(--gold-100);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--rounded);
    font-size: var(--text-xs);
}

.industry-page .standard-desc {
    color: var(--text-secondary);
    text-align: right;
}

/* ==================== CTA SECTIONS ==================== */
.industry-page .cta-section {
    padding: var(--space-20) 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.industry-page .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(210, 123, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(210, 123, 69, 0.1) 0%, transparent 50%);
}

.industry-page .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.industry-page .cta-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.industry-page .cta-description {
    font-size: var(--text-lg);
    color: var(--slate-300);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

.industry-page .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.industry-page .btn-white {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.industry-page .btn-white:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.industry-page .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.industry-page .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mid CTA - Light Version */
.industry-page .mid-cta-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-50) 100%);
    border-top: 1px solid var(--gold-200);
    border-bottom: 1px solid var(--gold-200);
}

.industry-page .mid-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.industry-page .mid-cta-text h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.industry-page .mid-cta-text p {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.industry-page .mid-cta-actions {
    display: flex;
    gap: var(--space-4);
}

/* ==================== TRUSTED SECTION ==================== */
.industry-page .trusted-section {
    padding: var(--space-12) 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.industry-page .trusted-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.industry-page .trusted-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.industry-page .trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
}

.industry-page .trusted-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--duration-normal);
}

.industry-page .trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==================== FAQ SECTION ==================== */
.industry-page .faq-grid {
    display: grid;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.industry-page .faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.industry-page .faq-question {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.industry-page .faq-answer {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* ==================== APPLICATIONS SECTION ==================== */
.industry-page .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-4);
}

.industry-page .application-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    padding: var(--space-5);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .application-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.industry-page .application-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
}

.industry-page .application-title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.industry-page .application-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ==================== ANIMATIONS ==================== */
.industry-page .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.industry-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.industry-page .stagger-1 { transition-delay: 0.05s; }
.industry-page .stagger-2 { transition-delay: 0.1s; }
.industry-page .stagger-3 { transition-delay: 0.15s; }
.industry-page .stagger-4 { transition-delay: 0.2s; }
.industry-page .stagger-5 { transition-delay: 0.25s; }
.industry-page .stagger-6 { transition-delay: 0.3s; }

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: var(--space-5);
    }

    .industry-page .hero {
        min-height: auto;
        padding: var(--space-20) 0 var(--space-12);
    }

    .industry-page .hero-container {
        padding: var(--space-16) 0;
    }

    .industry-page .section {
        padding: var(--space-16) 0;
    }

    .industry-page .mid-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .industry-page .mid-cta-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
    }

    .industry-page .hero-logo-wrapper {
        flex-direction: column;
        gap: var(--space-3);
    }

    .industry-page .logo-divider {
        width: 40px;
        height: 1px;
    }

    .industry-page .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .industry-page .hero-actions .btn {
        width: 100%;
    }

    .industry-page .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-page .certifications-container {
        gap: var(--space-3);
    }

    .industry-page .cert-badge {
        padding: var(--space-3) var(--space-4);
        min-width: auto;
    }

    .industry-page .industries-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .industry-page .clients-grid {
        gap: var(--space-3);
    }

    .industry-page .client-card,
    .industry-page .client-card.large,
    .industry-page .client-card.medium {
        width: 80px;
        height: 80px;
        padding: var(--space-3);
    }

    .industry-page .client-card img {
        max-height: 36px;
    }

    .industry-page .cta-buttons,
    .industry-page .mid-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .industry-page .cta-buttons .btn,
    .industry-page .mid-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .industry-page .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }

    .industry-page .hero-stats {
        grid-template-columns: 1fr;
    }

    .industry-page .quick-selector-grid {
        gap: var(--space-2);
    }

    .industry-page .quick-selector-item {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }

    .industry-page .section-header {
        margin-bottom: var(--space-10);
    }

    .industry-page .clients-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 280px;
        margin: 0 auto;
    }

    .industry-page .client-card,
    .industry-page .client-card.large,
    .industry-page .client-card.medium {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .industry-page .hero-glow,
    .industry-page .hero-grid {
        display: none;
    }

    .industry-page .hero {
        min-height: auto;
        background: white;
    }

    .industry-page * {
        box-shadow: none !important;
        animation: none !important;
    }
}
