/* Gufi Products Premium Branding - Apple-inspired Design */

/* Base Product Name Styling - MASSIVE & BOLD */
.gufi-product-name {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: left;
    background: linear-gradient(125deg, var(--product-primary) 0%, var(--product-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px transparent;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Split the name for dramatic effect */
.gufi-product-name::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--product-primary) 0%, transparent 100%);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card.clean:hover .gufi-product-name::before {
    opacity: 1;
    transform: scaleX(1);
}

/* Remove the box completely - just show the text */
.industry-icon-box {
    width: 100% !important;
    height: auto !important;
    min-height: 80px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative;
    overflow: visible;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Product-specific Premium Colors */

/* Gufi Prime - Manufacturing (Premium Space Gray) */
.gufi-product-name.prime {
    --product-primary: #1d1d1f;
    --product-secondary: #505052;
    --product-rgb: 29, 29, 31;
    background: linear-gradient(125deg, #1d1d1f 0%, #505052 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Motion - Logistics (Ocean Blue) */
.gufi-product-name.motion {
    --product-primary: #007AFF;
    --product-secondary: #5AC8FA;
    --product-rgb: 0, 122, 255;
    background: linear-gradient(125deg, #007AFF 0%, #5AC8FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Pulse - Retail (Mint Green) */
.gufi-product-name.pulse {
    --product-primary: #00C896;
    --product-secondary: #34E5B0;
    --product-rgb: 0, 200, 150;
    background: linear-gradient(125deg, #00C896 0%, #34E5B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Vertex - Hospitality (Sunset Orange) */
.gufi-product-name.vertex {
    --product-primary: #FF6B35;
    --product-secondary: #FF9558;
    --product-rgb: 255, 107, 53;
    background: linear-gradient(125deg, #FF6B35 0%, #FF9558 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Beam - Media (Electric Purple) */
.gufi-product-name.beam {
    --product-primary: #BF5AF2;
    --product-secondary: #E07FFF;
    --product-rgb: 191, 90, 242;
    background: linear-gradient(125deg, #BF5AF2 0%, #E07FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Nexus - Technology (Cosmic Blue) */
.gufi-product-name.nexus {
    --product-primary: #5E5CE6;
    --product-secondary: #7C7CFF;
    --product-rgb: 94, 92, 230;
    background: linear-gradient(125deg, #5E5CE6 0%, #7C7CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Volt - Energy (Electric Yellow) */
.gufi-product-name.volt {
    --product-primary: #FFD60A;
    --product-secondary: #FFEA7F;
    --product-rgb: 255, 214, 10;
    background: linear-gradient(125deg, #FFD60A 0%, #FFEA7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Pure - Health (Rose Red) */
.gufi-product-name.pure {
    --product-primary: #FF3B30;
    --product-secondary: #FF6961;
    --product-rgb: 255, 59, 48;
    background: linear-gradient(125deg, #FF3B30 0%, #FF6961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Atlas - Public Sector (Navy Blue) */
.gufi-product-name.atlas {
    --product-primary: #1C3A52;
    --product-secondary: #2E5A7E;
    --product-rgb: 28, 58, 82;
    background: linear-gradient(125deg, #1C3A52 0%, #2E5A7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Clear - Finance (Emerald) */
.gufi-product-name.clear {
    --product-primary: #00BF63;
    --product-secondary: #00E574;
    --product-rgb: 0, 191, 99;
    background: linear-gradient(125deg, #00BF63 0%, #00E574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Path - Education (Indigo) */
.gufi-product-name.path {
    --product-primary: #5856D6;
    --product-secondary: #7C7AED;
    --product-rgb: 88, 86, 214;
    background: linear-gradient(125deg, #5856D6 0%, #7C7AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gufi Edge - Professional Services (Graphite) */
.gufi-product-name.edge {
    --product-primary: #48484A;
    --product-secondary: #636366;
    --product-rgb: 72, 72, 74;
    background: linear-gradient(125deg, #48484A 0%, #636366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Hover Effects */
.industry-card.clean:hover .gufi-product-name {
    transform: scale(1.08) translateX(4px);
    filter: brightness(1.15) contrast(1.1);
    text-shadow: 0 0 40px rgba(var(--product-rgb), 0.3);
}

/* Glow Effect on Hover */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(var(--product-rgb), 0.4),
                     0 0 40px rgba(var(--product-rgb), 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(var(--product-rgb), 0.6),
                     0 0 60px rgba(var(--product-rgb), 0.3);
    }
}

.industry-card.clean:hover .gufi-product-name {
    animation: glow 2s ease-in-out infinite;
}

/* Dramatic entrance animation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gufi-product-name {
    animation: slideInFromLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Clean slate - no boxes, just text */
.industry-card.clean:nth-child(1) .industry-icon-box,
.industry-card.clean:nth-child(2) .industry-icon-box,
.industry-card.clean:nth-child(3) .industry-icon-box,
.industry-card.clean:nth-child(4) .industry-icon-box,
.industry-card.clean:nth-child(5) .industry-icon-box,
.industry-card.clean:nth-child(6) .industry-icon-box,
.industry-card.clean:nth-child(7) .industry-icon-box,
.industry-card.clean:nth-child(8) .industry-icon-box,
.industry-card.clean:nth-child(9) .industry-icon-box,
.industry-card.clean:nth-child(10) .industry-icon-box,
.industry-card.clean:nth-child(11) .industry-icon-box,
.industry-card.clean:nth-child(12) .industry-icon-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .gufi-product-name {
        font-size: 28px;
    }

    .industry-icon-box {
        min-height: 60px !important;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gufi-product-name {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Premium Typography Enhancement */
.gufi-product-name {
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}