/**
 * Hero Premium Styles - Ultra Modern
 * Font: Inter, Montserrat
 * Updated: 2026
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@600;700;800;900&display=swap');

/* ================================
   HERO SECTION OVERRIDES
   ================================ */

.gz-hero {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Enhanced Background with Gradient Overlay */
.gz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Hero Title - Montserrat */
.gz-hero-title {
    font-family: "Montserrat", "Inter", sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gz-hero-title .gz-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Subtitle */
.gz-hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Badge */
.gz-hero-badge {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ================================
   CTA BUTTONS - Enhanced
   ================================ */

.gz-btn {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 36px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Primary Button - Solid with Glow */
.gz-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gz-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gz-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5),
                0 0 60px rgba(99, 102, 241, 0.3);
}

.gz-btn-primary:hover::before {
    opacity: 1;
}

.gz-btn-primary span {
    position: relative;
    z-index: 1;
}

/* Secondary Button - Outline with Fill on Hover */
.gz-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gz-btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.gz-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.gz-btn-secondary:hover::before {
    transform: translateX(0);
}

.gz-btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Button Icon Animation */
.gz-btn .btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.gz-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ================================
   GLASSMORPHISM CARD - Enhanced
   ================================ */

.gz-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gz-glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(99, 102, 241, 0.15);
}

/* Glassmorphism Badge */
.gz-glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
}

/* ================================
   FLOATING BADGES - Enhanced
   ================================ */

.gz-float-badge {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.gz-float-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 30px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* ================================
   STATS SECTION
   ================================ */

.gz-hero-stat-value {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gz-hero-stat-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .gz-hero-title {
        font-size: clamp(36px, 5vw, 56px);
    }
    
    .gz-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .gz-hero-title {
        font-size: clamp(32px, 8vw, 44px);
        text-align: center;
    }
    
    .gz-hero-subtitle {
        text-align: center;
    }
    
    .gz-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .gz-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .gz-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}
