/* REVOLUTIONARY INDUSTRIES SECTION - Ultra Premium Design */

/* Container with perspective for 3D effects */
.industries-section.revolutionary {
    padding: 60px 20px 100px 20px;
    background: #ffffff;
    position: relative;
    overflow: visible;
    min-height: auto;
    perspective: 2000px;
}

.industries-section.revolutionary .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

/* Removed gradient overlay for cleaner look */

@keyframes galaxyRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating particles effect */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #e8e0ff;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    to {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Header - Futuristic Style */
.industries-header.revolutionary {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.industries-header.revolutionary h2 {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -0.05em;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        #7C3AED 25%,
        #3B82F6 50%,
        #10B981 75%,
        #FFFFFF 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.industries-header.revolutionary .subtitle {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* REVOLUTIONARY BENTO BOX GRID */
.industries-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-rows: 200px;
    gap: 16px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px 0;
}

/* Industry Orb Cards - Clean Minimal Design */
.industry-orb {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: translateZ(0);
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* All cards same size for consistency */

/* Removed floating animations for cleaner static design */

/* Hover effect - STRONG & PREMIUM */
.industry-orb:hover {
    transform: translateY(-4px);
    border: 2px solid rgba(var(--orb-primary-rgb), 1);
    box-shadow:
        0 8px 40px rgba(var(--orb-primary-rgb), 0.25),
        0 16px 64px rgba(0, 0, 0, 0.12);
}

/* Product name - Large and bold */
.orb-product {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(125deg, var(--orb-primary) 0%, var(--orb-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

/* Product name glows on hover */
.industry-orb:hover .orb-product {
    filter: brightness(1.3);
    text-shadow:
        0 0 20px rgba(var(--orb-primary-rgb), 0.6),
        0 0 40px rgba(var(--orb-primary-rgb), 0.4);
    transform: scale(1.02);
}

/* Industry title */
.orb-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 5px;
    line-height: 1.2;
}

/* Description */
.orb-description {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.35;
    margin-bottom: 10px;
    max-height: 3em;
    overflow: hidden;
}

/* Interactive elements */
.orb-features {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-top: auto;
}

.industry-orb:hover .orb-features {
    opacity: 1;
}

.orb-feature {
    padding: 3px 7px;
    background: #f8f6ff;
    border-radius: 6px;
    font-size: 9px;
    color: #7C3AED;
    border: 1px solid #e8e0ff;
    white-space: nowrap;
}

/* Removed animated background for cleaner look */

/* Product-specific colors with RGB values for hover effects */
.industry-orb:nth-child(1) {
    --orb-primary: #007AFF;
    --orb-secondary: #5AC8FA;
    --orb-primary-rgb: 0, 122, 255;
    --orb-secondary-rgb: 90, 200, 250;
}
.industry-orb:nth-child(2) {
    --orb-primary: #00C896;
    --orb-secondary: #34E5B0;
    --orb-primary-rgb: 0, 200, 150;
    --orb-secondary-rgb: 52, 229, 176;
}
.industry-orb:nth-child(3) {
    --orb-primary: #FF6B35;
    --orb-secondary: #FF9558;
    --orb-primary-rgb: 255, 107, 53;
    --orb-secondary-rgb: 255, 149, 88;
}
.industry-orb:nth-child(4) {
    --orb-primary: #1d1d1f;
    --orb-secondary: #505052;
    --orb-primary-rgb: 29, 29, 31;
    --orb-secondary-rgb: 80, 80, 82;
}
.industry-orb:nth-child(5) {
    --orb-primary: #30B0C7;
    --orb-secondary: #64D2FF;
    --orb-primary-rgb: 48, 176, 199;
    --orb-secondary-rgb: 100, 210, 255;
}
.industry-orb:nth-child(6) {
    --orb-primary: #8E8E93;
    --orb-secondary: #AEAEB2;
    --orb-primary-rgb: 142, 142, 147;
    --orb-secondary-rgb: 174, 174, 178;
}
.industry-orb:nth-child(7) {
    --orb-primary: #FF3B30;
    --orb-secondary: #FF6961;
    --orb-primary-rgb: 255, 59, 48;
    --orb-secondary-rgb: 255, 105, 97;
}
.industry-orb:nth-child(8) {
    --orb-primary: #1C3A52;
    --orb-secondary: #2E5A7E;
    --orb-primary-rgb: 28, 58, 82;
    --orb-secondary-rgb: 46, 90, 126;
}
.industry-orb:nth-child(9) {
    --orb-primary: #FF9500;
    --orb-secondary: #FFB340;
    --orb-primary-rgb: 255, 149, 0;
    --orb-secondary-rgb: 255, 179, 64;
}
.industry-orb:nth-child(10) {
    --orb-primary: #5E5CE6;
    --orb-secondary: #7C7CFF;
    --orb-primary-rgb: 94, 92, 230;
    --orb-secondary-rgb: 124, 124, 255;
}
.industry-orb:nth-child(11) {
    --orb-primary: #FFD60A;
    --orb-secondary: #FFEA7F;
    --orb-primary-rgb: 255, 214, 10;
    --orb-secondary-rgb: 255, 234, 127;
}
.industry-orb:nth-child(12) {
    --orb-primary: #BF5AF2;
    --orb-secondary: #E07FFF;
    --orb-primary-rgb: 191, 90, 242;
    --orb-secondary-rgb: 224, 127, 255;
}

/* All featured styles removed - cards are equal */

/* Arrow indicator */
.orb-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industry-orb:hover .orb-arrow {
    transform: translateX(4px);
}

.orb-arrow svg {
    width: 14px;
    height: 14px;
    fill: #999;
    transition: fill 0.3s ease;
}

.industry-orb:hover .orb-arrow svg {
    fill: var(--orb-primary);
}

/* CTA Text "View solution" */
.orb-cta-text {
    position: absolute;
    top: 22px;
    right: 50px;
    font-size: 10px;
    font-weight: 600;
    color: #999;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.industry-orb:hover .orb-cta-text {
    opacity: 1;
    color: var(--orb-primary);
}


/* Responsive Design */
@media (min-width: 1400px) {
    .industries-bento {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1399px) and (min-width: 1050px) {
    .industries-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1049px) and (min-width: 700px) {
    .industries-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 699px) {
    .industries-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-orb {
        min-height: 180px;
    }

    .orb-product {
        font-size: 20px;
    }

    .industries-header.revolutionary h2 {
        font-size: 42px;
    }
}

/* Performance optimizations */
.industry-orb {
    will-change: transform;
    contain: layout style paint;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.industry-orb:focus {
    outline: 2px solid var(--orb-primary);
    outline-offset: 4px;
}

/* All cards visible by default */
.industry-orb {
    opacity: 1 !important;
}