      
        :root {
            /* Primary Palette */
            --primary: #635BFF;
            --primary-light: #7C75FF;
            --primary-dark: #4F46E5;
            --primary-muted: rgba(99, 91, 255, 0.1);
            
            /* Accent */
            --accent: #00D4FF;
            --accent-light: #33DDFF;
            --accent-muted: rgba(0, 212, 255, 0.15);
            
            /* Neutrals */
            --dark: #0F0F1A;
            --dark-soft: #1A1A2E;
            --dark-lighter: #252542;
            --gray-900: #16161A;
            --gray-800: #2E2E3A;
            --gray-600: #6B6B80;
            --gray-400: #9E9EB0;
            --gray-200: #E4E4ED;
            --gray-100: #F4F4F8;
            --light: #F8F9FC;
            --white: #FFFFFF;
            
            /* Semantic */
            --success: #10B981;
            --warning: #F59E0B;
            
            /* Typography */
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px rgba(15, 15, 26, 0.04);
            --shadow-md: 0 4px 16px rgba(15, 15, 26, 0.08);
            --shadow-lg: 0 12px 40px rgba(15, 15, 26, 0.12);
            --shadow-glow: 0 0 60px rgba(99, 91, 255, 0.15);
            
            /* Transitions */
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ═══════════ LOADER ═══════════ */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .loader-symbol-img {
            height: 40px;
            width: auto;
            animation: pulse 1s ease-in-out infinite;
        }

        .loader-text-img {
            height: 28px;
            width: auto;
        }

        .loader-bar {
            width: 200px;
            height: 3px;
            background: var(--dark-soft);
            border-radius: 3px;
            overflow: hidden;
        }

        .loader-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            animation: loadProgress 1.3s ease forwards;
        }

        @keyframes loadProgress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ═══════════ NAVIGATION ═══════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 100;
            transition: all 0.4s var(--ease-out);
        }

        .nav.scrolled {
            background: rgba(15, 15, 26, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.75rem 2rem;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
        }

        .nav-logo-symbol {
            height: 36px;
            width: auto;
            transition: transform 0.3s var(--ease-out);
        }

        .nav-logo:hover .nav-logo-symbol {
            transform: scale(1.05);
        }

        .nav-logo-text {
            height: 37px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out);
        }

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

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

        .nav-cta {
            background: var(--primary);
            color: var(--white) !important;
            padding: 0.6rem 1.25rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(99, 91, 255, 0.4);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ═══════════ HERO SECTION ═══════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 7rem 2rem 5rem;
            background: var(--dark);
            overflow: hidden;
        }

        #heroCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(99, 91, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        linear-gradient(180deg, rgba(15, 15, 26, 0.5) 0%, rgba(15, 15, 26, 0.8) 100%);
            z-index: 2;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 3;
        }

        .hero-content {
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-muted);
            border: 1px solid rgba(99, 91, 255, 0.2);
            padding: 0.4rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s var(--ease-out) forwards 0.2s;
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero-badge-text {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary-light);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--white);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s var(--ease-out) forwards 0.35s;
        }

        .hero h1 .gradient {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s var(--ease-out) forwards 0.5s;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s var(--ease-out) forwards 0.65s;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.75rem;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
        }

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

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(99, 91, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

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

        .btn svg {
            transition: transform 0.3s ease;
        }

        .btn:hover svg {
            transform: translateX(3px);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s var(--ease-out) forwards 0.8s;
        }

        .hero-stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-value span {
            color: var(--primary);
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin-top: 0.25rem;
        }

        /* ═══════════ SECTIONS COMMON ═══════════ */
        section {
            padding: 6rem 2rem;
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-label::before {
            content: '//';
            opacity: 0.5;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-title .gradient {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 600px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-out);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════ ABOUT SECTION ═══════════ */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-content p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        .about-content p:first-of-type {
            font-size: 1.15rem;
            color: var(--dark);
        }

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

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .about-feature-icon {
            width: 24px;
            height: 24px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--dark);
        }

        .about-visual {
            position: relative;
        }

        .about-card {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            border-radius: 16px;
            padding: 2.5rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(99, 91, 255, 0.3) 0%, transparent 70%);
        }

        .about-card-label {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .about-card-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .about-card-stat h4 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .about-card-stat h4 span {
            color: var(--accent);
        }

        .about-card-stat p {
            font-size: 0.85rem;
            color: var(--gray-400);
        }

        /* ═══════════ SERVICES SECTION ═══════════ */
        .services {
            background: var(--light);
        }

        .services-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }

        .service-card:hover {
            border-color: transparent;
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-muted);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: all 0.4s var(--ease-out);
        }

        .service-card:hover .service-icon {
            background: var(--primary);
        }

        .service-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            transition: color 0.4s ease;
        }

        .service-card:hover .service-icon svg {
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ═══════════ TECH STACK SECTION ═══════════ */
        .tech-stack {
            background: var(--dark);
            color: var(--white);
            overflow: hidden;
        }

        .tech-stack .section-title {
            color: var(--white);
        }

        .tech-stack .section-desc {
            color: var(--gray-400);
        }

        .tech-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .tech-marquee {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem -2rem;
        }

        .tech-row {
            display: flex;
            gap: 1rem;
            animation: marquee 30s linear infinite;
        }

        .tech-row:nth-child(2) {
            animation-direction: reverse;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .tech-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--dark-soft);
            border: 1px solid var(--dark-lighter);
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            border-color: var(--primary);
            background: var(--dark-lighter);
        }

        .tech-item span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-200);
        }

        /* ═══════════ WHY CHOOSE SECTION ═══════════ */
        .why-choose {
            background: var(--white);
        }

        .why-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .why-header .section-desc {
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-card {
            background: var(--light);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.4s var(--ease-out);
        }

        .why-card:hover {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .why-card-num {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .why-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .why-card p {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ═══════════ PROCESS SECTION ═══════════ */
        .process {
            background: var(--light);
        }

        .process-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .process-header .section-desc {
            margin: 0 auto;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0.3;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            position: relative;
            padding: 0 1rem;
        }

        .process-step-num {
            width: 56px;
            height: 56px;
            background: var(--white);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.25rem;
            transition: all 0.4s var(--ease-out);
            position: relative;
            z-index: 1;
        }

        .process-step:hover .process-step-num {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: 0 0 0 8px rgba(99, 91, 255, 0.15);
        }

        .process-step h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .process-step p {
            font-size: 0.85rem;
            color: var(--gray-600);
            max-width: 140px;
        }

        /* ═══════════ CTA SECTION ═══════════ */
        .cta {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 91, 255, 0.2) 0%, transparent 70%);
        }

        .cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
        }

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

        .cta h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .cta h2 .gradient {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta p {
            font-size: 1.1rem;
            color: var(--gray-400);
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s var(--ease-out);
        }

        .cta-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(99, 91, 255, 0.4);
        }

        .cta-btn svg {
            transition: transform 0.3s ease;
        }

        .cta-btn:hover svg {
            transform: translateX(4px);
        }

        /* ═══════════ FOOTER ═══════════ */
        .footer {
            background: var(--dark);
            padding: 4rem 2rem 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand p {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

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

        .footer-links a:hover {
            color: var(--primary-light);
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            background: var(--dark-soft);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
        }

        .footer-copy {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

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

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

        .footer-legal a:hover {
            color: var(--gray-400);
        }

        /* ═══════════ RESPONSIVE ═══════════ */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-visual {
                order: -1;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .process-timeline::before {
                display: none;
            }

            .process-step {
                flex: 0 0 calc(33.333% - 1rem);
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0.75rem 1rem;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                flex-direction: column;
                padding: 1.5rem;
                gap: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero {
                padding: 6rem 1.5rem 4rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .services-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .process-step {
                flex: 0 0 100%;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }