/* Global Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

.gradient-bg { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.gradient-text { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
}

.floating-element { 
    animation: float 6s ease-in-out infinite; 
}

@keyframes float { 
    0%, 100% { transform: translateY(0px); } 
    50% { transform: translateY(-20px); } 
}

.slide-in { 
    animation: slideIn 0.5s ease-out; 
}

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

.fade-in { 
    animation: fadeIn 1s ease-in; 
}

@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.pulse-glow { 
    animation: pulseGlow 2s infinite; 
}

@keyframes pulseGlow { 
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); } 
    50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); } 
}

.page { 
    display: none; 
}

.page.active { 
    display: block; 
}

.mobile-menu { 
    transform: translateX(-100%); 
    transition: transform 0.3s ease; 
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 1000;
}

.mobile-menu.open { 
    transform: translateX(0); 
}

.cookie-banner { 
    position: fixed; 
    bottom: -100px; 
    left: 0; 
    right: 0; 
    transition: bottom 0.3s ease; 
    z-index: 1000; 
}

.cookie-banner.show { 
    bottom: 0; 
}

.iti { 
    width: 100%; 
}

.pricing-card:hover { 
    transform: translateY(-5px); 
    transition: transform 0.3s ease; 
}

.testimonial-card { 
    background: linear-gradient(145deg, #f8fafc, #e2e8f0); 
}

/* Hero section centering fix */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content > div {
        flex: 1;
    }
    
    .hero-content .lg\:w-1\/2 {
        width: 50%;
    }
}

/* Header responsiveness */
.header-container {
    padding: 1rem;
}

.logo-container {
    flex: 1;
}

@media (max-width: 767px) {
    .header-container {
        padding: 0.75rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

/* Fix for mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.mobile-menu-overlay.open {
    display: block;
}

/* Button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Form styles */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation for elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}