/* ============================================================
   INDUSTRY SOLUTIONS - PREMIUM DESIGN SYSTEM v3.0
   Modern, Clean, Professional
   ============================================================ */

/* ==================== CSS RESET & BASE ==================== */
/* Scoped to .industry-page to prevent affecting main theme */
.industry-page *,
.industry-page *::before,
.industry-page *::after {
    box-sizing: border-box;
}

/* ==================== DESIGN TOKENS ==================== */
/* SCOPED: Variables moved inside .industry-page to prevent global collision */
.industry-page {
    /* Brand Colors - Warm Gold */
    --gold-50: var(--p-gold-50);
    --gold-100: var(--p-gold-100);
    --gold-200: var(--p-gold-200);
    --gold-300: var(--p-gold-300);
    --gold-400: var(--p-gold-400);
    --gold-500: var(--p-gold-500);
    --gold-600: var(--p-gold-600);
    --gold-700: var(--p-gold-700);
    --gold-800: var(--p-gold-800);
    --gold-900: var(--p-gold-900);

    /* Neutral Colors */
    --white: var(--p-white);
    --black: var(--p-ink);
    --slate-50: var(--p-blue-50);
    --slate-100: var(--p-blue-50);
    --slate-200: var(--p-blue-100);
    --slate-300: var(--p-blue-200);
    --slate-400: var(--p-blue-400);
    --slate-500: var(--p-blue-500);
    --slate-600: var(--p-blue-700);
    --slate-700: var(--p-blue-800);
    --slate-800: var(--p-blue-900);
    --slate-900: var(--p-blue-900);
    --slate-950: var(--p-blue-900);

    /* 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;

    /* 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;

    /* Border Radius */
    --rounded-none: 0;
    --rounded-sm: var(--p-radius-sm);
    --rounded: var(--p-radius);
    --rounded-md: var(--p-radius);
    --rounded-lg: var(--p-radius-lg);
    --rounded-xl: var(--p-radius-lg);
    --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 - moved from separate rule */
    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:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 155, 90, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 55%, rgba(210, 123, 69, 0.12), transparent 55%),
        linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

.industry-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center center;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
}

.industry-page > * {
    position: relative;
    z-index: 1;
}

.industry-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.industry-page a {
    color: inherit;
    text-decoration: none;
}

.industry-page a:focus-visible,
.industry-page button:focus-visible {
    outline: 3px solid rgba(210, 123, 69, 0.35);
    outline-offset: 3px;
    border-radius: var(--p-radius-lg);
}

/* ==================== 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: auto;
    padding: var(--space-12) 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 50%, rgba(210, 123, 69, 0.10), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(166, 83, 35, 0.08), transparent 30%),
        linear-gradient(180deg, var(--gold-50) 0%, var(--white) 55%, var(--slate-50) 100%);
    overflow: hidden;
}

/* Hero Background Elements */
.industry-page .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(210, 123, 69, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 123, 69, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.55;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 45%, black 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 45%, black 35%, transparent 75%);
}

.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 â€” two-column: text left | image right */
.industry-page .hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-16) 0 var(--space-10);
    width: 100%;
}

/* Hero Logo */
.industry-page .hero-logo-wrapper {
    display: none;
    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: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 123, 69, 0.22);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 4px 14px -6px rgba(210, 123, 69, 0.25),
        0 2px 6px -2px rgba(0, 0, 0, 0.08);
}

.industry-page .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: industryPulse 2s ease-in-out infinite;
}

@keyframes industryPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Hero Content */
.industry-page .hero-content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.industry-page .hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, 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: 540px;
    margin-left: 0;
    margin-right: 0;
}

/* Hero Actions */
.industry-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--space-4);
}

/* ==================== BUTTON SYSTEM ==================== */
.industry-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.78rem var(--space-6);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    line-height: 1;
    letter-spacing: -0.01em;
    border-radius: var(--rounded-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.industry-page .btn-primary {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 55%, var(--gold-400) 100%);
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 12px 30px -12px rgba(210, 123, 69, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.industry-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 55%, var(--gold-500) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.08),
        0 18px 44px -16px rgba(210, 123, 69, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.industry-page .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 10px 24px -16px rgba(0, 0, 0, 0.18);
}

.industry-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(210, 123, 69, 0.35);
    color: var(--gold-700);
    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 {
    position: relative;
    width: 100%;
    margin: 0;
}

.industry-page .hero-image-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--rounded-2xl);
    padding: var(--space-5);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 24px 60px -30px rgba(0, 0, 0, 0.25),
        0 12px 40px -20px rgba(210, 123, 69, 0.18);
    border: 1px solid rgba(210, 123, 69, 0.14);
    transition: box-shadow var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.industry-page .hero-image-card:hover {
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.18),
        0 32px 80px -30px rgba(0, 0, 0, 0.3),
        0 20px 60px -24px rgba(210, 123, 69, 0.25);
    transform: translateY(-4px);
}

.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;
    max-height: 360px;
    object-fit: contain;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.65);
}

/* Hero Stats */
.industry-page .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.industry-page .hero-stat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-xl);
    padding: var(--space-4);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 16px 42px -34px rgba(0, 0, 0, 0.35);
}

.industry-page .hero-stat:hover {
    border-color: rgba(210, 123, 69, 0.30);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 26px 70px -48px rgba(0, 0, 0, 0.45),
        0 24px 60px -54px rgba(210, 123, 69, 0.55);
    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);
    z-index: 2;
}

/* Gallery prev/next arrow buttons */
.industry-page .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity var(--duration-fast), background var(--duration-fast), transform var(--duration-fast);
    padding: 0;
}

.industry-page .hero-image-wrapper:hover .gallery-btn {
    opacity: 1;
}

.industry-page .gallery-btn:hover {
    background: var(--p-white);
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.22);
}

.industry-page .gallery-btn-prev {
    left: var(--space-3);
}

.industry-page .gallery-btn-next {
    right: var(--space-3);
}

.industry-page .gallery-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 123, 69, 0.18);
    border-radius: var(--rounded-xl);
    min-width: 120px;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.25);
}

.industry-page .cert-badge:hover {
    border-color: rgba(210, 123, 69, 0.5);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.12),
        0 22px 60px -38px rgba(0, 0, 0, 0.3),
        0 20px 60px -40px rgba(210, 123, 69, 0.55);
    transform: translateY(-4px);
}

.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;
}

/* Horizontal certification badge strip (Aerospace / Pharma standards sections) */
.industry-page .certifications-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-12);
}

.industry-page .certifications-row .cert-badge {
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 123, 69, 0.22);
    border-radius: var(--rounded-full);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--primary);
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px -6px rgba(210, 123, 69, 0.20);
    transition: all var(--duration-normal) var(--ease-out);
}

.industry-page .certifications-row .cert-badge:hover {
    background: var(--gold-100);
    border-color: rgba(210, 123, 69, 0.45);
    transform: translateY(-2px);
}

/* ==================== SECTION STYLES ==================== */
.industry-page .section {
    padding: var(--space-24) 0;
}

.industry-page .section-alt {
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(210, 123, 69, 0.04), transparent 70%),
        var(--bg-secondary);
}

.industry-page .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.industry-page .section-header::after {
    content: '';
    display: block;
    width: 96px;
    height: 3px;
    margin: var(--space-8) auto 0;
    border-radius: var(--rounded-full);
    background: linear-gradient(90deg, transparent, rgba(210, 123, 69, 0.75), transparent);
    opacity: 0.85;
}

.industry-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: var(--gold-700);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-3);
    padding: 6px 16px;
    border-radius: var(--rounded-full);
    background: var(--gold-100);
    border: 1px solid rgba(210, 123, 69, 0.25);
    box-shadow: 0 2px 8px -4px rgba(210, 123, 69, 0.30);
}

.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: transparent;
    position: relative;
    overflow: hidden;
}

.industry-page .clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 320px at 50% 0%, rgba(210, 123, 69, 0.10), transparent 60%),
        radial-gradient(900px 320px at 50% 100%, rgba(210, 123, 69, 0.06), transparent 60%);
    opacity: 0.9;
}

.industry-page .clients-section > * {
    position: relative;
    z-index: 1;
}

.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: 130px;
    height: 90px;
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 16px 42px -34px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.industry-page .client-card.large,
.industry-page .client-card.medium {
    width: 130px;
    height: 90px;
}

.industry-page .client-card:hover {
    border-color: rgba(210, 123, 69, 0.30);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 12px 32px -16px rgba(0, 0, 0, 0.18),
        0 8px 20px -10px rgba(210, 123, 69, 0.25);
    transform: translateY(-4px);
}

.industry-page .client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-2);
    opacity: 0.88;
    filter: none;
    transition: opacity var(--duration-normal), filter var(--duration-normal);
}

.industry-page .client-card:hover img {
    opacity: 1;
    filter: none;
}

/* Logo image inside client card */
.industry-page .client-logo {
    display: block;
    height: 38px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    margin: 0 auto 10px;
    filter: grayscale(30%) opacity(0.85);
    transition: filter var(--duration-normal) var(--ease-out);
}
.industry-page .client-card:hover .client-logo {
    filter: grayscale(0%) opacity(1);
}

/* Text-only client card label â€” hidden by default, shown only when logo fails to load */
/* Also shown on cards that have no .client-logo at all (text-only cards) */
.industry-page .client-card:not(:has(.client-logo)) .client-name {
    display: block;
}

.industry-page .client-name {
    display: none;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    text-align: center;
    line-height: var(--leading-snug);
    transition: color var(--duration-fast);
}

.industry-page .client-card:hover .client-name {
    color: var(--primary);
}

.industry-page .client-card.large {
    width: 130px;
    height: 90px;
}

.industry-page .client-card.medium {
    width: 130px;
    height: 90px;
}

/* ==================== 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: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    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: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--duration-slow) var(--ease-out);
    display: block;
    box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.35);
    position: relative;
}

.industry-page .industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(1200px 220px at 50% 0%, rgba(210, 123, 69, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.industry-page .industry-card:hover {
    border-color: rgba(210, 123, 69, 0.35);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 30px 80px -48px rgba(0, 0, 0, 0.45),
        0 26px 70px -48px rgba(210, 123, 69, 0.55);
    transform: translateY(-8px);
}

.industry-page .industry-card:hover::before {
    opacity: 1;
}

.industry-page .industry-image-container {
    position: relative;
    height: 200px;
    background: var(--p-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    overflow: hidden;
}

.industry-page .industry-image-container::after {
    display: none;
}

.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);
    background: linear-gradient(160deg, var(--slate-50) 0%, rgba(253, 246, 237, 0.55) 100%);
}

.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-50) 0%, var(--gold-100) 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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-2xl);
    padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.35);
}

.industry-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
    border-radius: 0 0 var(--rounded-sm) var(--rounded-sm);
}

.industry-page .feature-card:hover {
    border-color: rgba(210, 123, 69, 0.28);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.09),
        0 20px 48px -36px rgba(0, 0, 0, 0.30),
        0 16px 44px -32px rgba(210, 123, 69, 0.35);
    transform: translateY(-4px);
}

.industry-page .feature-card:hover::before {
    transform: scaleX(1);
}

.industry-page .feature-icon {
    width: 48px;
    height: 48px;
    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;
    color: var(--gold-600);
    transition: background var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.industry-page .feature-card:hover .feature-icon {
    background: var(--gold-200);
    box-shadow: 0 4px 12px -4px rgba(210, 123, 69, 0.30);
}

.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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 16px 42px -34px rgba(0, 0, 0, 0.35);
}

.industry-page .spec-card:hover {
    border-color: rgba(210, 123, 69, 0.30);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 16px 44px -24px rgba(0, 0, 0, 0.20),
        0 12px 32px -20px rgba(210, 123, 69, 0.28);
    transform: translateY(-4px);
    background: rgba(253, 243, 232, 0.25);
}

.industry-page .spec-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-100);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--gold-600);
    transition: background var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.industry-page .spec-card:hover .spec-icon {
    background: var(--gold-200);
    box-shadow: 0 4px 12px -4px rgba(210, 123, 69, 0.28);
}

.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,
.industry-page .spec-detail {
    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: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-2xl);
    padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.35);
}

.industry-page .standards-card:hover,
.industry-page .standard-category:hover {
    border-color: rgba(210, 123, 69, 0.28);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.09),
        0 16px 44px -24px rgba(0, 0, 0, 0.20),
        0 12px 32px -20px rgba(210, 123, 69, 0.25);
    transform: translateY(-2px);
}

.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-bold);
    color: var(--gold-700);
    background: var(--gold-100);
    padding: 3px var(--space-3);
    border-radius: var(--rounded);
    font-size: var(--text-xs);
    letter-spacing: 0.02em;
    border: 1px solid rgba(210, 123, 69, 0.18);
    white-space: nowrap;
}

.industry-page .standard-desc {
    color: var(--text-secondary);
    text-align: right;
}

/* ==================== CTA SECTIONS ==================== */
.industry-page .cta-section {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-page .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 18% 50%, rgba(210, 123, 69, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 82% 50%, rgba(210, 123, 69, 0.10) 0%, transparent 55%),
        radial-gradient(900px 320px at 50% 100%, rgba(255, 255, 255, 0.55), transparent 60%);
    opacity: 0.95;
}

.industry-page .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-2xl);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 26px 70px -48px rgba(0, 0, 0, 0.45),
        0 24px 60px -54px rgba(210, 123, 69, 0.35);
}

.industry-page .cta-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.industry-page .cta-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    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: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 55%, var(--gold-400) 100%);
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 12px 30px -12px rgba(210, 123, 69, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.industry-page .btn-white:hover {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 55%, var(--gold-500) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.08),
        0 18px 44px -16px rgba(210, 123, 69, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.industry-page .btn-outline-white {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.industry-page .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(210, 123, 69, 0.35);
    color: var(--gold-700);
}

/* Mid CTA - Light Version */
.industry-page .mid-cta-section {
    padding: var(--space-16) 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.industry-page .mid-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 320px at 18% 50%, rgba(210, 123, 69, 0.18), transparent 55%),
        radial-gradient(900px 320px at 82% 50%, rgba(210, 123, 69, 0.12), transparent 55%);
    opacity: 0.85;
}

.industry-page .mid-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding: clamp(22px, 2.6vw, 34px);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--rounded-2xl);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 26px 70px -48px rgba(0, 0, 0, 0.45),
        0 24px 60px -54px rgba(210, 123, 69, 0.35);
}

.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: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.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-3);
    max-width: 820px;
    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: rgba(210, 123, 69, 0.25);
    box-shadow: 0 8px 24px -12px rgba(210, 123, 69, 0.18);
}

.industry-page .faq-question {
    font-size: var(--text-base);
    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);
}

/* ==================== FAQ ACCORDION ==================== */
.industry-page .faq-dropdown {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--rounded-xl);
    padding: 0;
    overflow: hidden;
    transition: border-color var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                background var(--duration-normal) var(--ease-out);
}

.industry-page .faq-dropdown:hover {
    border-color: rgba(210, 123, 69, 0.22);
    box-shadow: 0 4px 16px -8px rgba(210, 123, 69, 0.14);
}

/* Active open state */
.industry-page .faq-dropdown.faq-open {
    border-color: rgba(210, 123, 69, 0.38);
    background: rgba(253, 243, 232, 0.35);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.12),
        0 12px 40px -20px rgba(210, 123, 69, 0.25);
}

/* Toggle button */
.industry-page .faq-dropdown .faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.industry-page .faq-dropdown .faq-toggle:hover {
    background: rgba(210, 123, 69, 0.03);
}

/* Question text */
.industry-page .faq-dropdown .faq-question {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    line-height: var(--leading-snug);
    transition: color var(--duration-fast);
    flex: 1;
    margin-bottom: 0;
}

.industry-page .faq-dropdown:hover .faq-question,
.industry-page .faq-dropdown.faq-open .faq-question {
    color: var(--gold-600);
}

/* Chevron icon */
.industry-page .faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-full);
    background: var(--slate-100);
    color: var(--text-muted);
    transition: transform var(--duration-normal) var(--ease-out),
                background var(--duration-normal) var(--ease-out),
                color var(--duration-fast);
}

.industry-page .faq-dropdown:hover .faq-chevron {
    background: var(--gold-100);
    color: var(--primary);
}

.industry-page .faq-dropdown.faq-open .faq-chevron {
    transform: rotate(180deg);
    background: var(--gold-200);
    color: var(--gold-700);
}

/* Body / Answer panel */
.industry-page .faq-dropdown .faq-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.38s var(--ease-out), opacity 0.28s ease;
    padding: 0 var(--space-6);
}

.industry-page .faq-dropdown.faq-open .faq-body {
    padding-bottom: var(--space-6);
}

/* Divider line between toggle and answer */
.industry-page .faq-dropdown.faq-open .faq-toggle {
    border-bottom: 1px solid rgba(210, 123, 69, 0.14);
    padding-bottom: var(--space-4);
}

.industry-page .faq-dropdown .faq-body .faq-answer {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    padding-top: var(--space-4);
}

/* Remove double borders between adjacent accordion items */
.industry-page .faq-accordion .faq-dropdown + .faq-dropdown {
    margin-top: var(--space-2);
}

/* ==================== 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: rgba(210, 123, 69, 0.35);
    box-shadow:
        0 0 0 1px rgba(210, 123, 69, 0.10),
        0 12px 32px -16px rgba(0, 0, 0, 0.18),
        0 8px 20px -10px rgba(210, 123, 69, 0.25);
    transform: translateY(-4px);
    background: rgba(253, 243, 232, 0.20);
}

.industry-page .application-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold-100);
    border-radius: var(--rounded-xl);
    margin: 0 auto var(--space-3);
    font-size: 1.5rem;
    transition: background var(--duration-normal) var(--ease-out);
    color: var(--gold-600);
}

.industry-page .application-card:hover .application-icon {
    background: var(--gold-200);
}

.industry-page .application-title {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    transition: color var(--duration-fast);
}

.industry-page .application-card:hover .application-title {
    color: var(--gold-700);
}

.industry-page .application-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ==================== ANIMATIONS ==================== */
.industry-page .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s 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) {
    .industry-page {
        --container-padding: var(--space-5);
    }

    .industry-page .hero {
        min-height: auto;
        padding: var(--space-12) 0 var(--space-8);
    }

    .industry-page .hero-container {
        grid-template-columns: 3fr 2fr;
        gap: var(--space-8);
        padding: var(--space-10) 0 var(--space-6);
    }

    .industry-page .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .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) {
    .industry-page {
        --container-padding: var(--space-4);
    }

    /* Collapse hero to single column on mobile */
    .industry-page .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-10) 0 var(--space-6);
        text-align: center;
    }

    .industry-page .hero-content {
        text-align: center;
    }

    .industry-page .hero-description,
    .industry-page .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .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;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .industry-page .hero-actions .btn {
        width: 100%;
    }

    .industry-page .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .industry-page .hero-stats {
        grid-template-columns: repeat(3, 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: 70px;
        padding: var(--space-2);
    }

    .industry-page .client-card img {
        padding: var(--space-1);
    }

    .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: repeat(2, 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;
    }
}

/* ==================== FOOTER ==================== */
.industry-page .industry-footer {
    background: var(--slate-900);
    border-top: 1px solid rgba(210, 123, 69, 0.20);
    padding: var(--space-10) 0;
    margin-top: 0;
}

.industry-page .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.industry-page .footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.industry-page .footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.9);
}

.industry-page .footer-tagline {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
    font-weight: var(--font-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.industry-page .footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.industry-page .footer-link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: color var(--duration-fast);
}

.industry-page .footer-link:hover {
    color: var(--gold-400);
}

.industry-page .footer-copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.30);
    white-space: nowrap;
}

/* ==================== 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;
    }
}
