/* OneKasa Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #f093fb;
    --success: #48bb78;
    --warning: #f6ad55;
    --danger: #f56565;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .btn-large {
        padding: 1rem 1.8rem !important;
        font-size: 1rem !important;
    }
    
    .pricing-grid,
    .features-grid,
    .testimonials-grid,
    .problems-grid {
        grid-template-columns: 1fr !important;
    }
    
    .trial-stats {
        gap: 2rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem !important;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 13px !important;
    }
    
    .logo {
        font-size: 22px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .trial-cta h2 {
        font-size: 2rem !important;
    }
    
    .trial-cta p {
        font-size: 1.1rem !important;
    }
}
