/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GLASSMORPHISM COMPONENT ===== */
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px) rotateX(5deg);
    border-color: rgba(255, 0, 60, 0.4);
    box-shadow: 0 15px 45px rgba(255, 0, 60, 0.2);
}

/* ===== CUSTOM BUTTONS ===== */
.btn-gx-primary {
    background: linear-gradient(135deg, #ff003c 0%, #8a2be2 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 60, 0.3);
}

.btn-gx-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 60, 0.5);
    color: #fff;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 60, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000 0%, #111 100%);
    animation: heroAnimation 20s ease-in-out infinite;
}

@keyframes heroAnimation {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 60, 0.3) 0%, transparent 50%),
            linear-gradient(135deg, #000 0%, #111 100%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 0, 60, 0.4) 0%, transparent 50%),
            linear-gradient(135deg, #111 0%, #000 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff003c 0%, #8a2be2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 0, 60, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.2rem;
    padding: 15px 40px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 20px rgba(255, 0, 60, 0.3); }
    to { box-shadow: 0 8px 40px rgba(255, 0, 60, 0.6); }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 100px 0;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== PERFORMANCE SECTION ===== */
.performance-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    padding: 100px 0;
}

.performance-card {
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.performance-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff003c 0%, #8a2be2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress {
    height: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    transition: width 2s ease-in-out;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 100px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff003c 0%, #8a2be2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-card {
    padding: 50px 40px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff003c;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8a2be2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.7;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: #ff003c;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 0, 60, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff003c;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #8a2be2;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .sticky-cta {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
    
    .hero-section {
        height: 90vh;
        padding: 0 15px;
    }
    
    .feature-card,
    .performance-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .performance-card h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .footer-section .row {
        text-align: center;
    }
    
    .footer-section .col-md-6:last-child {
        margin-top: 1rem;
    }
    
    .footer-links {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-gx-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .performance-card h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
}