    /* --- Global Reset & Variables --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #2563eb; --secondary: #8b5cf6; --accent-cyan: #06b6d4;
            --accent-green: #10b981; --accent-yellow: #f59e0b; --accent-pink: #ec4899;
            --dark: #0f172a; --light: #f8fafc; --gray: #64748b;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background: #ffffff; color: var(--dark); overflow-x: hidden; line-height: 1.6; }

        /* --- Animations --- */
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        .float-anim { animation: float 6s ease-in-out infinite; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* --- Navigation --- */
        nav { position: fixed; top: 0; width: 100%; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .logo { font-size: 24px; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Fredoka', sans-serif; display: flex; align-items: center; gap: 8px; z-index: 1002; }
        .nav-links { display: flex; gap: 30px; list-style: none; }
        .nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; transition: color 0.3s; padding: 8px 0; display: block; }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta-wrapper { position: absolute; left: 50%; transform: translateX(-50%); z-index: 1002; }
        .nav-cta-btn { padding: 12px 28px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
        .nav-cta-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }
        .menu-toggle { display: none; font-size: 24px; color: var(--dark); cursor: pointer; z-index: 1002; padding: 10px; }

        /* --- Generic Styles --- */
        .section-padding { padding: 80px 5%; position: relative; overflow: hidden; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; position: relative; z-index: 2; }
        .section-tag { display: inline-block; padding: 8px 20px; background: var(--accent-yellow); border-radius: 50px; color: var(--dark); font-size: 13px; font-weight: 700; margin-bottom: 16px; border: 2px solid #000; box-shadow: 2px 2px 0px #000; font-family: 'Fredoka', sans-serif; }
        .section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: var(--dark); font-family: 'Fredoka', sans-serif; }
        .cartoon-bg-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.4; }

        /* --- Hero --- */
        .hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 60px; background: radial-gradient(circle at top right, rgba(6,182,212,0.05), transparent 40%); flex-wrap: wrap; }
        .hero-content { flex: 1; min-width: 300px; max-width: 650px; z-index: 2; }
        .hero h1 { font-size: 52px; line-height: 1.1; margin-bottom: 24px; font-family: 'Fredoka', sans-serif; color: var(--dark); }
        .hero h1 span { color: var(--secondary); position: relative; display: inline-block; }
        .hero-visual { flex: 1; min-width: 300px; position: relative; height: 500px; display: flex; justify-content: center; align-items: center; }
        .floating-card { position: absolute; background: white; padding: 15px 20px; border-radius: 20px; box-shadow: 8px 8px 0px rgba(0,0,0,0.1); border: 2px solid #000; animation: floatCard 4s ease-in-out infinite; min-width: 140px; }
        .floating-card:nth-child(2) { top: 20%; right: 10%; animation-delay: 0s; }
        .floating-card:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 1s; }
        .floating-card:nth-child(4) { top: 60%; right: 5%; animation-delay: 2s; }
        @keyframes floatCard { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(3deg); } }

        /* --- Partners --- */
        .partners { padding: 40px 5%; background: white; text-align: center; border-top: 2px dashed #e2e8f0; border-bottom: 2px dashed #e2e8f0; }
        .partners-logos { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .partner-logo { font-weight: 800; font-size: 20px; color: #cbd5e1; display: flex; align-items: center; gap: 8px; }

        /* --- About --- */
        .about { background: var(--light); position: relative; }
        .about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
        .about-card { background: white; padding: 30px; border-radius: 24px; border: 2px solid transparent; transition: all 0.3s; box-shadow: 4px 4px 0px #e2e8f0; text-align: left; }
        .about-card:hover { transform: translateY(-5px); border-color: var(--accent-cyan); }
        .about-icon { width: 60px; height: 60px; background: rgba(6, 182, 212, 0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; color: var(--secondary); }

        /* --- Split Sections --- */
        .split-section { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 2; }
        .split-text { flex: 1; min-width: 300px; }
        .split-text h3 { font-family: 'Fredoka', sans-serif; font-size: 32px; margin-bottom: 20px; color: var(--dark); position: relative; display: inline-block; }
        .split-text h3::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 60px; height: 4px; background: var(--accent-pink); border-radius: 2px; }
        .split-text p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 30px; }
        .feature-list { list-style: none; margin-bottom: 30px; }
        .feature-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
        .feature-list li i { color: var(--accent-green); background: rgba(16, 185, 129, 0.1); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 14px; }
        .split-image { flex: 1; min-width: 300px; display: flex; justify-content: center; align-items: center; }
        .split-image svg { width: 100%; max-width: 500px; height: auto; }
        .section-data-analytics { background: #F0F9FF; }
        .section-target-strategy { background: #fff; }
        .section-target-strategy::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F0F9FF' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"); background-size: cover; background-position: bottom; z-index: 0; pointer-events: none; }

        /* --- Services --- */
        .services { background: white; }
        .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
        .service-card { background: #fff; padding: 24px; border-radius: 20px; border: 2px solid #f1f5f9; transition: all 0.3s; text-align: left; }
        .service-card:hover { transform: translateY(-5px) rotate(1deg); border-color: var(--accent-pink); box-shadow: 8px 8px 0px rgba(236, 72, 153, 0.2); }
        .service-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent-cyan), var(--secondary)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; margin-bottom: 16px; }

        /* --- Process --- */
        .process { background: #fff; position: relative; }
        .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
        .step-card { text-align: center; position: relative; }
        .step-number { width: 40px; height: 40px; background: var(--accent-yellow); color: var(--dark); font-weight: 800; font-size: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; border: 2px solid #000; box-shadow: 3px 3px 0px #000; font-family: 'Fredoka', sans-serif; }
        .process-steps::before { content: ''; position: absolute; top: 20px; left: 50px; right: 50px; height: 4px; background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 5 0, 10 5 T 20 5' stroke='%23cbd5e1' stroke-width='2' fill='none'/%3E%3C/svg%3E"); z-index: -1; }

        /* --- Testimonials --- */
        .testimonials { background: var(--light); }
        .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
        .testimonial-card { background: white; padding: 25px; border-radius: 20px; border: 2px solid #000; box-shadow: 8px 8px 0px #000; position: relative; }
        .client-info { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
        .client-img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--dark); object-fit: cover; }

        /* --- Why Us Section --- */
        .why-us { 
            background: var(--dark); 
            color: white; 
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); 
            position: relative; 
            overflow: hidden;
        }

        .why-container { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 60px; 
            align-items: center; 
            position: relative; 
            z-index: 2; 
        }

        .why-text h2 {
            font-family: 'Fredoka', sans-serif; 
            font-size: 38px; 
            margin-bottom: 25px; 
            color: white;
            line-height: 1.2;
        }
        .why-text p {
            color: #cbd5e1; 
            margin-bottom: 40px; 
            font-size: 17px; 
            line-height: 1.7; 
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: scale(1.03) translateX(10px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            border-color: var(--secondary);
        }

        .why-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--secondary));
            border-radius: 16px;
            display: flex; 
            align-items: center; 
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .why-card:hover .why-card-icon {
            transform: rotate(360deg);
        }

        .why-card-text h4 { font-size: 20px; margin-bottom: 5px; color: white; font-family: 'Fredoka', sans-serif; }
        .why-card-text p { font-size: 14px; color: #94a3b8; margin: 0; }

        .stats-wrapper { position: relative; min-height: 400px; display: flex; justify-content: center; align-items: center; }

        .stat-card {
            background: white;
            color: var(--dark);
            padding: 30px;
            border-radius: 24px;
            border: 3px solid var(--dark);
            box-shadow: 10px 10px 0px var(--secondary);
            position: absolute;
            width: 220px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .stat-card:nth-child(1) { top: 0; right: 20px; animation: floatCard1 6s ease-in-out infinite; z-index: 3; }
        .stat-card:nth-child(2) { top: 100px; left: 0; animation: floatCard2 7s ease-in-out infinite; z-index: 2; }
        .stat-card:nth-child(3) { top: 200px; right: 60px; animation: floatCard3 8s ease-in-out infinite; z-index: 1; }

        .stat-card:hover {
            transform: scale(1.1) rotate(-2deg) !important;
            box-shadow: 15px 15px 0px var(--accent-pink);
            z-index: 10;
        }

        @keyframes floatCard1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        @keyframes floatCard2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }
        @keyframes floatCard3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

        .stat-num { font-size: 36px; font-weight: 800; color: var(--primary); font-family: 'Fredoka', sans-serif; display: block; }
        .stat-label { font-size: 14px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

        /* --- FAQ --- */
        .faq { background: #fff; position: relative; }
        .faq-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
        .faq-item { background: #fff; border: 2px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s; }
        .faq-item:hover { border-color: var(--accent-cyan); }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; }
        .faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--gray); }
        .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }

        /* --- CTA --- */
        .ready-to-use { background: white; position: relative; }
        .cta-box { background: linear-gradient(120deg, var(--accent-yellow), #fbbf24); border-radius: 30px; padding: 50px 30px; text-align: center; position: relative; z-index: 2; border: 3px solid var(--dark); box-shadow: 10px 10px 0px var(--dark); overflow: hidden; }
        .cta-btn-large { padding: 16px 32px; background: var(--dark); color: white; border: none; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; margin-top: 25px; box-shadow: 0 5px 0px rgba(0,0,0,0.2); }
        .cta-btn-large:hover { transform: scale(1.05); background: var(--primary); }

        /* --- Footer --- */
        footer { background: var(--dark); color: white; padding: 60px 5% 30px; border-top: 5px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand h3 { font-size: 22px; margin-bottom: 20px; font-family: 'Fredoka', sans-serif; }
        .footer-col h4 { color: white; margin-bottom: 20px; font-size: 16px; }
        .footer-col a { color: #94a3b8; text-decoration: none; font-size: 14px; line-height: 2; display: block; transition: color 0.3s; }
        .footer-col a:hover { color: white; }

        /* ========================================= */
        /* --- NEW IMPACT SECTION STYLES (White BG) --- */
        /* ========================================= */
        .impact-section {
            background: #ffffff;
            color: var(--dark);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }
        
        /* Subtle pattern on white */
        .impact-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.5;
            z-index: 0;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .impact-card {
            background: white;
            padding: 40px 25px;
            border-radius: 24px;
            border: 2px solid #e2e8f0;
            box-shadow: 6px 6px 0px #cbd5e1;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .impact-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 10px 10px 0px var(--secondary);
        }

        .impact-icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .impact-card:hover .impact-icon-box {
            transform: scale(1.1) rotate(10deg);
        }

        .icon-1 { background: #E0F2FE; color: #0284C7; } /* Sky Blue */
        .icon-2 { background: #F3E8FF; color: #7C3AED; } /* Purple */
        .icon-3 { background: #DCFCE7; color: #16A34A; } /* Green */
        .icon-4 { background: #FEF3C7; color: #D97706; } /* Orange */

        .impact-number {
            font-size: 42px;
            font-weight: 800;
            font-family: 'Fredoka', sans-serif;
            margin-bottom: 5px;
            color: var(--dark);
            display: block;
        }

        .impact-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ========================================= */
        /* --- NEW CONTACT SECTION STYLES --- */
        /* ========================================= */
        .contact-section {
            background: #ffffff;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            background: white;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            border: 2px solid #f1f5f9;
            padding: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-info-wrapper {
            padding-right: 20px;
        }

        .contact-info-wrapper h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .contact-info-wrapper p {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 15px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .info-item:hover {
            background: #f8fafc;
            border-color: var(--accent-cyan);
            transform: translateX(5px);
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
        }

        .info-text h4 {
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .info-text span {
            font-size: 14px;
            color: var(--gray);
        }

        .contact-form-wrapper {
            background: var(--dark);
            padding: 40px;
            border-radius: 30px;
            color: white;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--dark);
            box-shadow: 10px 10px 0px var(--accent-cyan);
        }

        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(40px);
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
        }

        textarea.form-control {
            resize: none;
            height: 120px;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-cyan);
            color: var(--dark);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            border: 2px solid transparent;
        }

        .btn-submit:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .success-message {
            display: none;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid var(--accent-green);
            color: var(--accent-green);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========================================= */
        /* --- RESPONSIVE MEDIA QUERIES --- */
        /* ========================================= */

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .impact-grid { grid-template-columns: repeat(2, 1fr); } /* Impact: 4 -> 2 */
            .hero { flex-direction: column; text-align: center; padding-top: 100px; }
            .hero-content { max-width: 100%; margin-bottom: 60px; }
            .hero-visual { width: 100%; height: 350px; }
            .hero h1 { font-size: 42px; }

            .about-grid, .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: 1fr 1fr; }
            .process-steps::before { display: none; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .why-container { grid-template-columns: 1fr 1fr; }
            .nav-cta-wrapper { position: static; transform: none; margin-left: 20px; }

            .stats-wrapper { position: relative; height: auto; display: flex; flex-direction: column; gap: 30px; align-items: center; }
            .stat-card { position: static; width: 100%; max-width: 350px; margin-bottom: 20px; animation: none !important; }
            .split-section { flex-direction: column; text-align: center; }
            .split-text h3::after { left: 50%; transform: translateX(-50%); }
            .split-image { order: -1; width: 100%; }
            .split-image svg { max-width: 400px; }

            .section-header h2 { font-size: 32px; }

            /* Contact Section Tablet */
            .contact-container {
                grid-template-columns: 1fr;
                padding: 30px;
                gap: 40px;
            }
            .contact-info-wrapper {
                padding-right: 0;
                text-align: center;
            }
            .info-item {
                justify-content: center;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .impact-grid { grid-template-columns: 1fr !important; } /* Impact: 2 -> 1 */
            .menu-toggle { display: block; }
            .nav-links { 
                position: fixed; 
                top: 70px; 
                right: -100%; 
                width: 80%; 
                max-width: 300px;
                height: calc(100vh - 70px); 
                background: white; 
                flex-direction: column; 
                align-items: flex-start;
                justify-content: flex-start;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
                transition: 0.4s ease; 
                gap: 0;
                padding: 30px 20px;
                z-index: 1001;
            }
            .nav-links.active { right: 0; }
            .nav-links li { width: 100%; border-bottom: 1px solid #e2e8f0; }
            .nav-links a { padding: 15px 0; font-size: 16px; }
            .nav-cta-wrapper { display: none; }

            .hero { padding-top: 90px; min-height: auto; }
            .hero h1 { font-size: 32px; line-height: 1.2; }
            .hero p { font-size: 15px; }
            .hero-visual { height: 300px; }
            .floating-card { min-width: 120px; padding: 12px 16px; font-size: 14px; }

            .about-grid, .services-grid, .team-grid, .process-steps { grid-template-columns: 1fr; }
            .why-container { grid-template-columns: 1fr; }

            .why-card { flex-direction: column; text-align: center; padding: 25px; }
            .why-card:hover { transform: scale(1.02); }

            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
            .footer-brand { text-align: center; }
            .section-padding { padding: 60px 5%; }
            .section-header h2 { font-size: 28px; }
            .split-text h3 { font-size: 26px; }

            .cta-box { padding: 40px 20px; }
            .cta-btn-large { width: 100%; max-width: 300px; }

            .partners-logos { gap: 20px; }
            .partner-logo { font-size: 16px; }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .hero h1 { font-size: 28px; }
            .hero-visual { height: 250px; }
            .floating-card { min-width: 100px; padding: 10px 14px; font-size: 12px; }
            .floating-card:nth-child(2) { top: 10%; right: 5%; }
            .floating-card:nth-child(3) { bottom: 20%; left: 5%; }
            .floating-card:nth-child(4) { top: 50%; right: 2%; }

            .section-header h2 { font-size: 24px; }
            .section-tag { font-size: 12px; padding: 6px 14px; }

            .about-card, .service-card, .testimonial-card { padding: 20px; }
            .about-icon { width: 50px; height: 50px; font-size: 24px; }

            .why-text h2 { font-size: 28px; }
            .why-card { padding: 20px; }
            .why-card-icon { width: 50px; height: 50px; font-size: 20px; }

            .stat-card { padding: 20px; width: 100%; }
            .stat-num { font-size: 28px; }

            .team-img-wrapper { width: 70px; height: 70px; }
            .team-card { padding: 20px 15px; }

            .faq-question { font-size: 14px; padding: 15px; }
            .faq-answer { font-size: 14px; }

            .split-image svg { max-width: 280px; }
            .feature-list li { font-size: 14px; }
            
            /* Impact Section Mobile Adjustments */
            .impact-card { padding: 30px 20px; }
            .impact-icon-box { width: 60px; height: 60px; font-size: 28px; }
            .impact-number { font-size: 32px; }

            /* Contact Mobile Adjustments */
            .contact-container {
                padding: 20px;
            }
            .contact-info-wrapper h2 {
                font-size: 28px;
            }
        }

        /* Extra Small Devices */
        @media (max-width: 360px) {
            .hero h1 { font-size: 24px; }
            .nav-cta-btn { padding: 10px 20px; font-size: 13px; }
            .logo { font-size: 20px; }
        }

        /* Touch Device Optimizations */
        @media (hover: none) {
            .why-card:hover { transform: none; }
            .stat-card:hover { transform: none !important; }
            .service-card:hover { transform: translateY(-5px); }
            .impact-card:hover { transform: translateY(-5px); }
            .info-item:hover { transform: none; background: none; }
        }