
        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Performance Optimizations */
        img {
            max-width: 100%;
            height: auto;
            loading: lazy;
        }
        
        /* Critical CSS - Above the fold content */
        .header {
            will-change: transform;
        }
        
        .hero {
            contain: layout style paint;
        }
        
        /* Reduce paint complexity */
        .card:hover {
            will-change: transform;
        }
        
        .card:not(:hover) {
            will-change: auto;
        }
        
        /* Optimize animations */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Custom Properties */
        :root {
            --primary-color: #32CD32;
            --primary-dark: #28a428;
            --primary-light: #7FFF7F;
            --secondary-color: #0B0C10;
            --accent-color: #1F2937;
            --text-primary: #0B0C10;
            --text-secondary: #6B7280;
            --text-light: #9CA3AF;
            --background-primary: #FFFFFF;
            --background-secondary: #F9FAFB;
            --background-dark: #111827;
            --border-color: #E5E7EB;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            --gradient-hero: linear-gradient(135deg, #0B0C10 0%, #1F2937 50%, #374151 100%);
        }
        
        /* Typography */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--background-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .font-display {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        
        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-10deg) scale(0.9);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }
        
        /* Animation Classes */
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .animate-fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }
        
        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }
        
        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .animate-slide-in-bottom {
            animation: slideInFromBottom 0.8s ease-out forwards;
        }
        
        .animate-rotate-in {
            animation: rotateIn 0.8s ease-out forwards;
        }
        
        /* Stagger animations */
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
        .stagger-6 { animation-delay: 0.6s; }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header & Navigation */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(50, 205, 50, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            border-bottom-color: var(--border-color);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            transition: padding 0.3s ease;
        }
        
        .header.scrolled .nav-container {
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }
        
        .logo:hover .logo-icon::before {
            transform: rotate(45deg) translateX(100%);
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }
        
        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(50, 205, 50, 0.4);
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 8px;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Page Content */
        .page-content {
            margin-top: 88px;
            min-height: calc(100vh - 88px);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(50, 205, 50, 0.08) 0%, transparent 50%);
        }
        
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(50, 205, 50, 0.6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
        .particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 4s; }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(50, 205, 50, 0.1);
            border: 1px solid rgba(50, 205, 50, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }
        
        .hero-badge-icon {
            width: 16px;
            height: 16px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }
        
        .hero h1 {
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
            font-family: 'Space Grotesk', sans-serif;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        .hero-highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 48px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }
        
        .hero-cta {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(50, 205, 50, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Parallax Sections */
        .parallax-section {
            position: relative;
            overflow: hidden;
        }
        
        .parallax-bg {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 120%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            will-change: transform;
        }
        
        /* Section Styles */
        .section {
            padding: 120px 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(50, 205, 50, 0.1);
            border: 1px solid rgba(50, 205, 50, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 16px;
        }
        
        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Grid System */
        .grid {
            display: grid;
            gap: 32px;
        }
        
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        
        /* Card Styles */
        .card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .card:hover::before {
            transform: scaleX(1);
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(50, 205, 50, 0.2);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .card-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }
        
        .card:hover .card-icon::before {
            transform: rotate(45deg) translateX(100%);
        }
        
        .card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--gradient-primary);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats-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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-number {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 8px;
            font-family: 'Space Grotesk', sans-serif;
            background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* Services Section */
        .services-section {
            background: var(--background-secondary);
            position: relative;
        }
        
        .service-card {
            background: white;
            border-radius: 24px;
            padding: 48px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-icon::before {
            transform: rotate(45deg) translateX(100%);
        }
        
        .service-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .service-features {
            list-style: none;
            margin: 24px 0;
        }
        
        .service-features li {
            padding: 8px 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 24px;
        }
        
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .service-cta {
            margin-top: 32px;
        }
        
        .btn-service {
            background: var(--gradient-primary);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-service:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.3);
        }
        
        /* Process Section */
        .process-section {
            background: var(--background-primary);
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-step:nth-child(even) .process-content {
            text-align: right;
        }
        
        .process-content {
            flex: 1;
            padding: 0 60px;
        }
        
        .process-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: white;
            z-index: 2;
            box-shadow: 0 0 0 8px white;
        }
        
        .process-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .process-description {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-secondary);
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(50, 205, 50, 0.08) 0%, transparent 50%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 24px;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .cta-section p {
            font-size: 20px;
            margin-bottom: 48px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-cta-primary:hover::before {
            left: 100%;
        }
        
        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(50, 205, 50, 0.4);
        }
        
        .btn-cta-secondary {
            background: transparent;
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }
        
        /* SEO Tools Section */
        .tools-section {
            background: var(--background-secondary);
            position: relative;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .tool-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .tool-card:hover::before {
            transform: scaleX(1);
        }
        
        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .tool-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
        }
        
        .tool-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            position: relative;
            overflow: hidden;
        }
        
        .tool-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
        }
        
        .tool-card:hover .tool-icon::before {
            transform: rotate(45deg) translateX(100%);
        }
        
        .tool-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .tool-info p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        
        .tool-demo {
            margin-bottom: 32px;
        }
        
        .demo-input {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .tool-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--background-primary);
        }
        
        .tool-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
        }
        
        .tool-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .tool-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.3);
        }
        
        .demo-results {
            background: var(--background-secondary);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border-color);
            animation: fadeInUp 0.5s ease-out;
        }
        
        /* Website Audit Results */
        .result-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .score-circle {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .score-number {
            font-size: 28px;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .score-label {
            font-size: 12px;
            opacity: 0.9;
        }
        
        .result-summary h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        
        .result-summary p {
            color: var(--text-secondary);
        }
        
        .result-categories {
            margin-bottom: 24px;
        }
        
        .category-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .category-icon.good {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        .category-icon.warning {
            background: rgba(251, 191, 36, 0.1);
            color: #fbbf24;
        }
        
        .category-icon.error {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }
        
        .category-score {
            margin-left: auto;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* Keyword Results */
        .keyword-list {
            margin-bottom: 24px;
        }
        
        .keyword-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .keyword-item:last-child {
            border-bottom: none;
        }
        
        .keyword-text {
            font-weight: 600;
            color: var(--text-primary);
            flex: 1;
        }
        
        .keyword-metrics {
            display: flex;
            gap: 16px;
        }
        
        .metric {
            font-size: 14px;
            padding: 4px 8px;
            border-radius: 6px;
            background: var(--background-primary);
            color: var(--text-secondary);
        }
        
        .metric.difficulty {
            background: rgba(251, 191, 36, 0.1);
            color: #fbbf24;
        }
        
        .metric.cpc {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        /* Backlink Results */
        .backlink-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .overview-stat {
            text-align: center;
        }
        
        .overview-stat .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .overview-stat .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        
        .backlink-list {
            margin-bottom: 24px;
        }
        
        .backlink-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .backlink-item:last-child {
            border-bottom: none;
        }
        
        .link-source {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .link-metrics {
            display: flex;
            gap: 12px;
        }
        
        .metric.authority {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        .metric.type {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
        }
        
        /* Rank Tracker Results */
        .rank-overview {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .current-rank {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .rank-position {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-color);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .rank-change {
            font-size: 18px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
        }
        
        .rank-change.positive {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        .rank-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .rank-chart {
            margin-bottom: 24px;
        }
        
        .chart-header h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        
        .chart-visual {
            background: white;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-color);
        }
        
        .ranking-chart {
            width: 100%;
            height: 100px;
        }
        
        .chart-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 2s ease-out forwards;
        }
        
        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }
        
        .chart-point {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .rank-competitors {
            margin-bottom: 24px;
        }
        
        .competitor-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .competitor-item:last-child {
            border-bottom: none;
        }
        
        .competitor-item.current {
            background: rgba(50, 205, 50, 0.05);
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid rgba(50, 205, 50, 0.2);
        }
        
        .competitor-rank {
            font-weight: 700;
            color: var(--text-primary);
            min-width: 32px;
        }
        
        .competitor-domain {
            color: var(--text-secondary);
        }
        
        /* Result Actions */
        .result-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .btn-tool-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-tool-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
        }
        
        .btn-tool-secondary {
            background: transparent;
            color: var(--primary-color);
            padding: 12px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-tool-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Tool Features */
        .tool-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }
        
        .feature-item {
            color: var(--text-secondary);
            font-size: 14px;
            padding: 8px 0;
        }
        
        /* Tools CTA */
        .tools-cta {
            background: var(--gradient-secondary);
            color: white;
            padding: 60px;
            border-radius: 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .tools-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(50, 205, 50, 0.08) 0%, transparent 50%);
        }
        
        .tools-cta .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .tools-cta h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .tools-cta p {
            font-size: 18px;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .tools-cta .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Blog Styles */
        .blog-admin {
            background: white;
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
        }
        
        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .admin-header h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .blog-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
        }
        
        .form-input {
            padding: 16px 20px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--background-primary);
            font-family: inherit;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
        }
        
        .form-actions {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .blog-image {
            height: 200px;
            background: var(--gradient-primary);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
        }
        
        .blog-category {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .blog-content {
            padding: 32px;
        }
        
        .blog-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.3;
        }
        
        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .blog-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-light);
        }
        
        .blog-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .blog-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .tag {
            background: rgba(50, 205, 50, 0.1);
            color: var(--primary-color);
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .blog-cta {
            text-align: center;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Tool Info Box */
        .tool-info-box {
            background: rgba(50, 205, 50, 0.05);
            border: 1px solid rgba(50, 205, 50, 0.2);
            border-radius: 16px;
            padding: 24px;
            margin: 24px 0;
        }
        
        .tool-info-box h4 {
            color: var(--primary-color);
            margin-bottom: 12px;
            font-size: 18px;
            font-weight: 700;
        }
        
        .tool-info-box ul {
            margin: 16px 0;
            padding-left: 0;
            list-style: none;
        }
        
        .tool-info-box li {
            padding: 4px 0;
            color: var(--text-secondary);
        }
        
        .tool-info-box small {
            color: var(--text-light);
            font-style: italic;
        }
        
        /* Search Results Styles */
        .search-results, .live-search {
            margin-bottom: 24px;
        }
        
        .search-queries, .search-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }
        
        .query-item, .search-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--background-primary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .query-item:hover, .search-link:hover {
            border-color: var(--primary-color);
            background: rgba(50, 205, 50, 0.05);
        }
        
        .query-label, .search-engine {
            font-weight: 600;
            color: var(--text-primary);
            min-width: 120px;
        }
        
        .query-link, .search-query {
            color: var(--primary-color);
            font-family: monospace;
            font-size: 14px;
        }
        
        /* Tool Alternatives */
        .tool-alternatives, .rank-tools {
            margin-bottom: 24px;
        }
        
        .tool-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }
        
        .tool-link {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 16px 20px;
            background: var(--background-primary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .tool-link:hover {
            border-color: var(--primary-color);
            background: rgba(50, 205, 50, 0.05);
            transform: translateY(-2px);
        }
        
        .tool-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
        }
        
        .tool-desc {
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        /* Rank Instructions */
        .rank-instructions {
            background: var(--background-secondary);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }
        
        .rank-instructions h4 {
            color: var(--text-primary);
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .rank-instructions ol {
            color: var(--text-secondary);
            line-height: 1.6;
            padding-left: 20px;
        }
        
        .rank-instructions li {
            margin-bottom: 8px;
        }
        
        /* Responsive Design for Blog */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-admin {
                padding: 24px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .admin-header {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
            
            .blog-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .blog-content {
                padding: 24px;
            }
        }
        
        /* Responsive Design for Tools */
        @media (max-width: 1024px) {
            .tools-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .tool-card {
                padding: 24px;
            }
            
            .tool-header {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            
            .demo-input {
                flex-direction: column;
            }
            
            .result-header {
                flex-direction: column;
                text-align: center;
            }
            
            .keyword-item,
            .backlink-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .keyword-metrics,
            .link-metrics {
                align-self: stretch;
                justify-content: space-between;
            }
            
            .backlink-overview {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 16px;
            }
            
            .tools-cta {
                padding: 40px 24px;
            }
            
            .tools-cta h3 {
                font-size: 24px;
            }
            
            .tools-cta .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Footer */
        .footer {
            background: var(--background-dark);
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--primary-color);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .footer-logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: white;
        }
        
        .footer-logo-text {
            font-size: 24px;
            font-weight: 800;
            color: white;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 24px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .grid-2 { grid-template-columns: 1fr; }
            .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
            .grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 32px;
                box-shadow: var(--shadow-xl);
                border-radius: 0 0 24px 24px;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero {
                padding: 80px 0;
                min-height: 80vh;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 48px;
            }
            
            .card {
                padding: 32px;
            }
            
            .service-card {
                padding: 32px;
            }
            
            .process-timeline::before {
                left: 20px;
            }
            
            .process-step {
                flex-direction: column !important;
                text-align: center;
            }
            
            .process-step:nth-child(even) .process-content {
                text-align: center;
            }
            
            .process-content {
                padding: 0 0 0 60px;
            }
            
            .process-number {
                left: 20px;
                transform: none;
            }
            
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 32px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .section {
                padding: 48px 0;
            }
            
            .card {
                padding: 24px;
            }
            
            .service-card {
                padding: 24px;
            }
            
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
    