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

:root {
    /* Sky Blue Theme */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #06b6d4;
    --accent: #22d3ee;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Soft backgrounds */
    --bg-primary: rgba(14, 165, 233, 0.05);
    --bg-secondary: rgba(6, 182, 212, 0.03);
    --bg-accent: rgba(34, 211, 238, 0.08);
    
    /* Neutrals */
    --dark: #0c4a6e;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(14, 165, 233, 0.1);
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    border-radius: 0 2px 2px 0;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5), 0 0 5px rgba(34, 211, 238, 0.3);
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(14, 165, 233, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--accent));
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.02) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* Floating Orbs - Sky Blue Theme */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 211, 238, 0.08));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.06));
    bottom: 20%;
    left: 5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(56, 189, 248, 0.06));
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(0, -50px) scale(1); }
    75% { transform: translate(-30px, -30px) scale(0.95); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.08);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-ghost {
    color: var(--gray-700);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
}

.btn-ghost i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(14, 165, 233, 0.1);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    z-index: 1002;
    box-shadow: -10px 0 40px rgba(14, 165, 233, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    background: var(--white);
}

.mobile-sidebar-logo img {
    height: 40px;
    width: auto;
}

.mobile-sidebar-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-sidebar-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.mobile-sidebar-close:hover i {
    color: white;
}

.mobile-sidebar-close i {
    width: 22px;
    height: 22px;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.mobile-sidebar-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--gray-700);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(5px);
}

.mobile-nav-link i {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover i {
    color: var(--primary);
}

.mobile-sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.mobile-download-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-download-btn:hover {
    background: var(--primary);
    color: white;
}

.mobile-trial-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mobile-trial-btn i {
    color: #25D366;
}

.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    background: var(--gray-50);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.mobile-social-link i {
    width: 18px;
    height: 18px;
}

.mobile-sidebar-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Download Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.download-modal.active {
    opacity: 1;
    visibility: visible;
}

.download-modal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.download-modal.active .download-modal-content {
    transform: scale(1) translateY(0);
}

.download-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.download-modal-close:hover i {
    color: white;
}

.download-modal-close i {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.download-modal-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.download-modal-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 2rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.download-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.download-item:hover .download-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
}

.download-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.download-item:hover .download-icon i {
    color: white;
}

.download-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Kaushan Script', cursive;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 540px;
    text-align: justify;
    text-justify: inter-word;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
    transform: translateY(-2px);
}

.hero-feature i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 10;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-preview {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(14, 165, 233, 0.1),
                0 10px 30px rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dot:first-child { background: #ff6b6b; }
.dashboard-dot:nth-child(2) { background: #ffd93d; }
.dashboard-dot:nth-child(3) { background: #6bcb77; }

.dashboard-body {
    padding: 1.5rem;
    background: var(--gray-50);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.08);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.card-icon.sales { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.card-icon.orders { background: rgba(14, 165, 233, 0.1); color: var(--primary); }
.card-icon.revenue { background: rgba(6, 182, 212, 0.1); color: var(--secondary); }
.card-icon.inventory { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.card-icon.customers { background: rgba(34, 211, 238, 0.1); color: var(--accent); }
.card-icon.pending { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.card-icon i {
    width: 20px;
    height: 20px;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.card-trend {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.card-trend.up { color: var(--success); }
.card-trend.down { color: #ef4444; }
.card-trend.neutral { color: var(--gray-500); }

.dashboard-chart {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.08);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-top: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease forwards;
    transform-origin: bottom;
}

@keyframes growUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.chart-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 100%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 85%; animation-delay: 0.7s; }

/* Floating Elements */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 20;
}

.floating-card.ai-card {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.report-card {
    bottom: 20%;
    left: -40px;
    animation-delay: -1.5s;
}

.floating-card.invoice-card {
    bottom: 40%;
    right: -50px;
    animation-delay: -2.5s;
}

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

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon.ai { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }
.floating-icon.report { background: linear-gradient(135deg, var(--success), #34d399); color: white; }
.floating-icon.invoice { background: linear-gradient(135deg, var(--warning), #fbbf24); color: white; }

.floating-icon i {
    width: 22px;
    height: 22px;
}

.floating-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
}

.floating-text p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-badge i {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Kaushan Script', cursive;
}

.section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    text-align: center;
    text-justify: inter-word;
    letter-spacing: 0.3px;
    font-weight: 600;
    position: relative;
    padding-top: 2rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
    border-radius: 50%;
}

/* Modules Overview Section */
.modules-overview-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 4rem 2rem;
}

.modules-overview-section .section-header {
    margin-bottom: 3rem;
}

.modules-overview-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.module-overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-overview-item:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.03);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.module-overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.module-overview-item:hover .module-overview-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
}

.module-overview-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.module-overview-item:hover .module-overview-icon i {
    color: white;
}

.module-overview-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 4rem 2rem;
}

.features-section .section-header {
    margin-bottom: 3rem;
}

.features-overview-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-overview-item:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.03);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.feature-overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-overview-item:hover .feature-overview-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
}

.feature-overview-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-overview-item:hover .feature-overview-icon i {
    color: white;
}

.feature-overview-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

/* AI Section */
.ai-section {
    background: var(--white);
    overflow: hidden;
}

.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ai-content {
    padding-right: 2rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ai-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    transform: translateX(10px);
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    flex-shrink: 0;
}

.ai-feature-icon i {
    width: 24px;
    height: 24px;
}

.ai-feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.ai-feature-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.ai-visual {
    position: relative;
}

.ai-chat-demo {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-avatar i {
    width: 22px;
    height: 22px;
}

.chat-info h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.chat-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--gray-50);
}

.chat-message {
    max-width: 80%;
    padding: 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    animation: messageIn 0.5s ease forwards;
    opacity: 0;
}

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

.chat-message.user {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 0.2s;
}

.chat-message.ai {
    background: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--gray-200);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation-delay: 0.6s;
}

.chat-message.ai .typing {
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typingBounce 1s ease infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.1s; }
.typing-dot:nth-child(3) { animation-delay: 0.2s; }

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

/* Reports Section */
.reports-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.reports-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.reports-visual {
    position: relative;
}

.reports-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.report-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.report-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    transform: translateY(-5px);
}

.report-card:nth-child(2) {
    transform: translateY(30px);
}

.report-card:nth-child(4) {
    transform: translateY(30px);
}

.report-card:nth-child(2):hover,
.report-card:nth-child(4):hover {
    transform: translateY(25px);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.report-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-icon.blue { background: rgba(14, 165, 233, 0.1); color: var(--primary); }
.report-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.report-icon.purple { background: rgba(6, 182, 212, 0.1); color: var(--secondary); }
.report-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.report-icon i {
    width: 20px;
    height: 20px;
}

.report-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.report-badge.pdf { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.report-badge.excel { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.report-badge.print { background: rgba(14, 165, 233, 0.1); color: var(--primary); }

.report-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.report-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.reports-content {
    padding-left: 2rem;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.report-stat {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.report-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.report-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-300);
    transition: background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon,
.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pricing-card:hover .pricing-icon i,
.pricing-card.featured .pricing-icon i {
    color: white;
}

.pricing-icon i {
    width: 28px;
    height: 28px;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.pricing-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.pricing-name-nepali {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.pricing-amount {
    margin: 1.25rem 0;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price.free {
    background: linear-gradient(135deg, var(--success), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.pricing-server {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-server i {
    width: 14px;
    height: 14px;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature.included i {
    color: var(--success);
}

.pricing-feature.not-included i {
    color: var(--gray-300);
}

.pricing-feature.not-included span {
    color: var(--gray-400);
    text-decoration: line-through;
}

.pricing-feature span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.pricing-feature .highlight {
    font-weight: 600;
    color: var(--primary);
}

.pricing-cta {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:not(.featured) .pricing-cta {
    background: var(--gray-100);
    color: var(--gray-700);
}

.pricing-card:not(.featured):hover .pricing-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.pricing-card.featured .pricing-cta:hover {
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-item i {
    width: 24px;
    height: 24px;
    color: var(--success);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Kaushan Script', cursive;
}

.cta-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-justify: inter-word;
    letter-spacing: 0.3px;
    font-weight: 600;
    position: relative;
    padding-top: 2rem;
    margin-bottom: 2.5rem;
}

.cta-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 1400px) {
    .modules-overview-grid,
    .features-overview-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .modules-overview-grid,
    .features-overview-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .ai-container,
    .reports-container {
        grid-template-columns: 1fr;
    }
    
    .ai-content,
    .reports-content {
        padding: 0;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
    
    .modules-overview-grid,
    .features-overview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .cursor, .cursor-dot {
        display: none;
    }
    
    * {
        cursor: auto;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        order: 0;
    }
    
    .reports-showcase {
        grid-template-columns: 1fr;
    }
    
    .report-card:nth-child(2),
    .report-card:nth-child(4) {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .modules-overview-grid,
    .features-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .module-overview-item,
    .feature-overview-item {
        padding: 1rem 0.25rem;
    }
    
    .module-overview-icon,
    .feature-overview-icon {
        width: 40px;
        height: 40px;
    }
    
    .module-overview-icon i,
    .feature-overview-icon i {
        width: 20px;
        height: 20px;
    }
    
    .module-overview-label,
    .feature-overview-label {
        font-size: 0.7rem;
    }
    
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-modal-content {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile sidebar adjustments */
    .mobile-sidebar {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .modules-overview-grid,
    .features-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .module-overview-item,
    .feature-overview-item {
        padding: 0.75rem 0.25rem;
        gap: 0.5rem;
    }
    
    .module-overview-icon,
    .feature-overview-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .module-overview-icon i,
    .feature-overview-icon i {
        width: 18px;
        height: 18px;
    }
    
    .module-overview-label,
    .feature-overview-label {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .trust-content {
        gap: 2rem;
    }
    
    .trust-item {
        width: 45%;
        justify-content: center;
    }
    
    /* Mobile sidebar smaller screens */
    .mobile-sidebar {
        width: 260px;
    }
    
    .mobile-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-sidebar-header {
        padding: 1rem 1.25rem;
    }
    
    .mobile-sidebar-content {
        padding: 1.25rem;
    }
}