/* ============================================
   CORPORATE HOMEPAGE STYLES - Professional & Modern
   ============================================ */

/* Professional Hero Section */
.hero-section-corporate {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

body.light-theme .hero-section-corporate {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #F8FAFC 100%);
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, -80px 80px; }
}

.hero-content-corporate {
    position: relative;
    z-index: 2;
}

.hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50px;
    color: var(--primary-color) !important;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hero-badge-pro i,
.hero-badge-pro i::before,
.hero-badge-pro i::after {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

body.light-theme .hero-badge-pro {
    background: rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.4);
    color: #0891B2 !important;
}

body.light-theme .hero-badge-pro i,
body.light-theme .hero-badge-pro i::before,
body.light-theme .hero-badge-pro i::after {
    color: #0891B2 !important;
    opacity: 1 !important;
}

body.light-theme .hero-badge-pro span {
    color: #0891B2 !important;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 188, 212, 0); }
}

.hero-title-corporate {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

body.light-theme .hero-title-corporate {
    color: #0F172A;
}

.text-gradient-corporate {
    background: linear-gradient(135deg, #00BCD4 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-corporate {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
}

body.light-theme .hero-subtitle-corporate {
    color: #475569;
}

.hero-subtitle-corporate strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Trust Indicators in Hero */
.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

body.light-theme .trust-item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border-radius: 10px;
    font-size: 1.5rem;
    color: white !important;
    position: relative;
    z-index: 1;
}

.trust-icon i,
.trust-icon i::before,
.trust-icon i::after {
    color: white !important;
    opacity: 1 !important;
}

body.light-theme .trust-icon {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

body.light-theme .trust-icon i,
body.light-theme .trust-icon i::before,
body.light-theme .trust-icon i::after {
    color: white !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

body.light-theme .trust-text strong {
    color: #0F172A;
}

.trust-text small {
    font-size: 0.75rem;
    color: rgba(241, 245, 249, 0.6);
}

body.light-theme .trust-text small {
    color: #64748B;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-corporate-primary {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-corporate-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    color: white;
}

.btn-corporate-outline {
    background: transparent;
    border: 2px solid rgba(0, 188, 212, 0.5);
    color: var(--primary-color);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.light-theme .btn-corporate-outline {
    border-color: #0891B2;
    color: #0891B2;
}

.btn-corporate-outline:hover {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: #F59E0B !important;
    font-size: 1.25rem;
}

.rating-stars i,
.rating-stars i::before,
.rating-stars i::after {
    color: #F59E0B !important;
    opacity: 1 !important;
}

body.light-theme .rating-stars i,
body.light-theme .rating-stars i::before,
body.light-theme .rating-stars i::after {
    color: #F59E0B !important;
    opacity: 1 !important;
}

.rating-text {
    color: rgba(241, 245, 249, 0.8);
    font-size: 0.9375rem;
}

body.light-theme .rating-text {
    color: #475569;
}

.rating-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

body.light-theme .rating-text strong {
    color: #0F172A;
}

/* Hero Visual - Floating Cards */
.hero-visual-corporate {
    position: relative;
    height: 500px;
}

.hero-floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-game-card {
    position: absolute;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-game-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 5s;
}

.floating-game-card:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-duration: 6s;
}

.floating-game-card:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-duration: 7s;
}

.floating-game-card:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-duration: 5.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(20px) rotate(-2deg);
    }
}

.floating-card-inner {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .floating-card-inner {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.floating-card-inner:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.3);
}

.floating-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--game-color) 0%, var(--game-color)cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.floating-card-icon i,
.floating-card-icon i::before,
.floating-card-icon i::after {
    color: white !important;
    opacity: 1 !important;
}

body.light-theme .floating-card-icon {
    background: linear-gradient(135deg, var(--game-color) 0%, var(--game-color)dd 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-theme .floating-card-icon i,
body.light-theme .floating-card-icon i::before,
body.light-theme .floating-card-icon i::after {
    color: white !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-card-content h6 {
    color: var(--text-primary) !important;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

body.light-theme .floating-card-content h6 {
    color: #0F172A !important;
}

.floating-card-content .badge {
    background: #10B981 !important;
    color: white !important;
}

.floating-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Stats Circle */
.hero-stats-circle {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
}

.stats-circle-inner {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateBorder 10s linear infinite;
    position: relative;
}

body.light-theme .stats-circle-inner {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 188, 212, 0.5);
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-item-circle {
    text-align: center;
}

.stat-item-circle i,
.stat-item-circle i::before,
.stat-item-circle i::after {
    font-size: 2rem;
    color: var(--primary-color) !important;
    display: block;
    margin-bottom: 8px;
    opacity: 1 !important;
}

body.light-theme .stat-item-circle i,
body.light-theme .stat-item-circle i::before,
body.light-theme .stat-item-circle i::after {
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.stat-item-circle strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    font-weight: 800;
}

body.light-theme .stat-item-circle strong {
    color: #0F172A !important;
}

.stat-item-circle small {
    font-size: 0.75rem;
    color: rgba(241, 245, 249, 0.6) !important;
}

body.light-theme .stat-item-circle small {
    color: #64748B !important;
}

/* Professional Stats Section */
.stats-professional {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-pro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: 0;
}

.stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stat-card-pro {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    position: relative;
    overflow: hidden;
}

body.light-theme .stat-card-pro {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

.stat-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card-pro:hover::before {
    left: 100%;
}

.stat-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
    border-color: var(--primary-color);
}

.stat-icon-pro {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white !important;
    z-index: 1;
}

.stat-icon-pro i,
.stat-icon-pro i::before,
.stat-icon-pro i::after {
    color: white !important;
    opacity: 1 !important;
}

body.light-theme .stat-icon-pro {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

body.light-theme .stat-icon-pro i,
body.light-theme .stat-icon-pro i::before,
body.light-theme .stat-icon-pro i::after {
    color: white !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.4) 0%, transparent 70%);
    border-radius: 20px;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.stat-number-pro {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00BCD4 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label-pro {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #10B981;
    font-weight: 500;
}

.stat-trend i {
    font-size: 0.75rem;
}

/* Professional Trust Section */
.trust-professional {
    padding: 80px 0;
}

.trust-pro-wrapper {
    background: var(--dark-lighter);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

body.light-theme .trust-pro-wrapper {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

.section-title-pro {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle-pro {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.trust-card-pro {
    height: 100%;
}

.trust-card-inner {
    background: var(--dark-color);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .trust-card-inner {
    background: #F8FAFC;
    border-color: rgba(0, 0, 0, 0.08);
}

.trust-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
    border-color: var(--primary-color);
}

.trust-icon-pro {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-professional .trust-icon-pro i {
    font-size: 2.5rem !important;
    color: #00BCD4 !important;
    position: relative !important;
    z-index: 10 !important;
    opacity: 1 !important;
    display: block !important;
}

.trust-professional .trust-icon-pro i::before,
.trust-professional .trust-icon-pro i::after {
    color: #00BCD4 !important;
    opacity: 1 !important;
}

body.light-theme .trust-professional .trust-icon-pro i {
    color: #0891B2 !important;
    opacity: 1 !important;
    display: block !important;
}

body.light-theme .trust-professional .trust-icon-pro i::before,
body.light-theme .trust-professional .trust-icon-pro i::after {
    color: #0891B2 !important;
    opacity: 1 !important;
}

/* Force icon visibility */
.trust-professional i.fas,
.trust-professional i.far,
.trust-professional i.fab {
    opacity: 1 !important;
    visibility: visible !important;
}

.trust-professional i.fa-shield-check,
.trust-professional i.fa-bolt,
.trust-professional i.fa-headset,
.trust-professional i.fa-undo-alt,
.trust-professional i.fa-check-circle,
.trust-professional i.fa-certificate,
.trust-professional i.fa-lock,
.trust-professional i.fa-check-double,
.trust-professional i.fa-star {
    display: inline-block !important;
    opacity: 1 !important;
}

.trust-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 15px;
    z-index: 1;
}

body.light-theme .trust-icon-bg {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.trust-title-pro {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

body.light-theme .trust-title-pro {
    color: #0F172A;
}

.trust-desc-pro {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trust-check {
    color: #10B981 !important;
    font-size: 1.5rem;
}

.trust-professional .trust-check i {
    color: #10B981 !important;
    opacity: 1 !important;
    display: inline-block !important;
}

.trust-professional .trust-check i::before,
.trust-professional .trust-check i::after {
    color: #10B981 !important;
    opacity: 1 !important;
}

body.light-theme .trust-professional .trust-check i {
    color: #10B981 !important;
    opacity: 1 !important;
    display: inline-block !important;
}

body.light-theme .trust-professional .trust-check i::before,
body.light-theme .trust-professional .trust-check i::after {
    color: #10B981 !important;
    opacity: 1 !important;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
}

.trust-badge-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.light-theme .trust-badge-inline {
    background: rgba(0, 188, 212, 0.08);
    color: #0F172A;
}

.trust-professional .trust-badge-inline i {
    color: #00BCD4 !important;
    opacity: 1 !important;
    display: inline-block !important;
}

.trust-professional .trust-badge-inline i::before,
.trust-professional .trust-badge-inline i::after {
    color: #00BCD4 !important;
    opacity: 1 !important;
}

body.light-theme .trust-professional .trust-badge-inline i {
    color: #0891B2 !important;
    opacity: 1 !important;
    display: inline-block !important;
}

body.light-theme .trust-professional .trust-badge-inline i::before,
body.light-theme .trust-professional .trust-badge-inline i::after {
    color: #0891B2 !important;
    opacity: 1 !important;
}

/* Section Headers */
.section-header-pro {
    text-align: center;
}

.section-header-pro h2 {
    margin-bottom: 8px;
}

/* ============================================
   CORPORATE PRODUCTS SECTION
   ============================================ */

/* Section Header */
.products-corporate-header {
    margin-bottom: 60px;
}

.section-badge-corporate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

body.light-theme .section-badge-corporate {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(0, 188, 212, 0.3);
}

.products-corporate-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.products-corporate-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Modern Category Tabs */
.products-category-tabs {
    margin-bottom: 50px;
}

.tabs-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--dark-lighter);
    border: 2px solid rgba(0, 188, 212, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .category-tab-btn {
    background: white;
    border-color: rgba(0, 0, 0, 0.1);
}

.category-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    transition: left 0.4s ease;
}

.category-tab-btn:hover::before {
    left: 0;
}

.category-tab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
    border-color: var(--primary-color);
}

.category-tab-btn.active {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

body.light-theme .category-tab-btn.active {
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-tab-btn.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-tab-btn.active .tab-icon i,
.category-tab-btn.active .tab-icon i::before,
.category-tab-btn.active .tab-icon i::after {
    color: white !important;
    opacity: 1 !important;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tab-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

body.light-theme .tab-title {
    color: #0F172A;
}

.category-tab-btn.active .tab-title {
    color: white;
}

.tab-count {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.category-tab-btn.active .tab-count {
    color: rgba(255, 255, 255, 0.9);
}

/* Products Grid */
.products-corporate-grid {
    position: relative;
}

.products-category-pane {
    display: none;
}

.products-category-pane.active {
    display: block;
}

.corporate-products-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .corporate-products-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section-corporate {
        padding: 40px 0 60px;
    }
    
    .hero-title-corporate {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-corporate {
        font-size: 1rem;
    }
    
    .hero-description-corporate {
        font-size: 0.875rem;
    }
    
    .hero-visual-corporate {
        height: 250px;
        margin-top: 20px;
    }
    
    .stats-grid-corporate {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .floating-game-cards {
        gap: 0.75rem;
    }
    
    .floating-game-card {
        width: calc(50% - 0.375rem);
        min-width: 120px;
        padding: 1rem;
    }
    
    .floating-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-card-icon i {
        font-size: 1.5rem;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title-pro {
        font-size: 1.5rem;
    }
    
    .section-subtitle-pro {
        font-size: 0.95rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-badge-corporate {
        padding: 1.5rem 1rem;
    }
    
    .trust-icon-pro {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .product-card-corporate {
        margin-bottom: 1rem;
    }
    
    .product-title-corporate {
        font-size: 1rem;
        min-height: 40px;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .filter-tabs-corporate {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    .corporate-products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .corporate-products-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Corporate Product Card */
.corporate-product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-link-corporate {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-inner-corporate {
    background: var(--dark-lighter);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 188, 212, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

body.light-theme .product-card-inner-corporate {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card-inner-corporate:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.25);
    border-color: var(--primary-color);
}

/* Product Image */
.product-image-corporate {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

body.light-theme .product-image-corporate {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.product-image-corporate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-inner-corporate:hover .product-image-corporate img {
    transform: scale(1.1);
}

.product-placeholder-corporate {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(0, 188, 212, 0.2);
}

body.light-theme .product-placeholder-corporate {
    color: rgba(0, 188, 212, 0.3);
}

/* Product Badges */
.product-badges-corporate {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-discount-corporate,
.badge-bestseller-corporate,
.badge-new-corporate,
.badge-stock-corporate {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-discount-corporate {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.badge-bestseller-corporate {
    background: rgba(245, 158, 11, 0.95);
    color: white;
}

.badge-new-corporate {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.badge-stock-corporate {
    background: rgba(249, 115, 22, 0.95);
    color: white;
}

.product-category-badge-corporate {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: rgba(0, 188, 212, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

/* Product Info */
.product-info-corporate {
    padding: 24px;
}

.product-title-corporate {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-theme .product-title-corporate {
    color: #0F172A;
}

/* Price */
.product-price-corporate {
    margin-bottom: 16px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00BCD4 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features */
.product-features-corporate {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

body.light-theme .product-features-corporate {
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-item-corporate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feature-item-corporate i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Action Buttons */
.product-actions-corporate {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-cart-corporate {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00BCD4 0%, #0891B2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-cart-corporate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

.btn-add-cart-corporate i {
    color: white !important;
}

.btn-out-stock-corporate {
    width: 100%;
    padding: 14px 20px;
    background: rgba(100, 116, 139, 0.3);
    border: 1px solid rgba(100, 116, 139, 0.5);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: not-allowed;
}

/* Hover Overlay */
.product-hover-overlay-corporate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card-inner-corporate:hover .product-hover-overlay-corporate {
    opacity: 1;
}

.hover-content-corporate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.hover-content-corporate i {
    font-size: 2.5rem;
    color: white !important;
}

/* Empty State */
.empty-state-corporate {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-corporate i {
    font-size: 5rem;
    color: rgba(0, 188, 212, 0.2);
    margin-bottom: 20px;
}

.empty-state-corporate p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-corporate {
        padding: 60px 0 80px;
    }
    
    .hero-title-corporate {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-corporate {
        font-size: 1.125rem;
    }
    
    .hero-description-corporate {
        font-size: 0.95rem;
    }
    
    .hero-visual-corporate {
        height: 300px;
        margin-top: 30px;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title-pro {
        font-size: 1.75rem;
    }
    
    .stats-grid-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .floating-game-cards {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .floating-game-card {
        width: calc(50% - 0.5rem);
        min-width: 140px;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card-corporate {
        margin-bottom: 1rem;
    }
    
    .products-corporate-title {
        font-size: 2.25rem;
    }
    
    .tabs-container {
        flex-direction: column;
    }
    
    .category-tab-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section-corporate {
        padding: 60px 0 80px;
    }
    
    .hero-title-corporate {
        font-size: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-corporate-primary,
    .btn-corporate-outline {
        width: 100%;
        text-align: center;
    }
    
    .stat-number-pro {
        font-size: 2.5rem;
    }
    
    .trust-pro-wrapper {
        padding: 40px 20px;
    }
}


