        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ec008c;
            --primary-light: #ec5fb4;
            --accent: #fc6767;
            --dark: #0A0A0F;
            --dark-light: #12121A;
            --gray: #9CA3AF;
            --gray-dark: #6B7280;
            --light: #F1F5F9;
            --white: #FFFFFF;
            --gradient: linear-gradient(135deg, #00f5a0, #00d9f5);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark);
            color: var(--white);
            overflow-x: hidden;
            cursor: default;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s ease, background 0.15s ease;
            transform: translate(-50%, -50%);
        }

        .cursor.hover {
            transform: translate(-50%, -50%) scale(2);
            background: rgba(0, 245, 212, 0.1);
            border-color: var(--primary-light);
        }

        .cursor-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10001;
            transform: translate(-50%, -50%);
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-text {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .preloader-bar {
            width: 200px;
            height: 3px;
            background: rgba(255,255,255,0.1);
            margin-top: 20px;
            border-radius: 10px;
            overflow: hidden;
        }

        .preloader-bar-fill {
            height: 100%;
            width: 0%;
            background: var(--gradient);
            border-radius: 10px;
            animation: loadBar 2s ease forwards;
        }

        @keyframes loadBar {
            to { width: 100%; }
        }

        /* Weave Canvas Background */
        #weaveCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            padding: 15px 60px;
            border-bottom: 1px solid rgba(108, 60, 225, 0.2);
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0px;
            
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-right: 10px;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
            color: var(--dark);
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 12px 28px;
            background: var(--gradient);
            border: none;
            border-radius: 50px;
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 120px 60px 80px;
    overflow: hidden;
    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.5s both;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Hero Visual - Right Side */
.hero-visual {
    position: relative;
    width: 580px;
    height: 580px;
    flex-shrink: 0;
    animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Browser Mockup */
.browser-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, calc(-50% - 15px)) rotate(1deg); }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--gray);
}

.browser-url svg {
    width: 12px;
    height: 12px;
    color: var(--accent);
}

.browser-content {
    padding: 20px;
    min-height: 280px;
}

/* Preview Navigation */
.preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.preview-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
}

.preview-links {
    display: flex;
    gap: 12px;
}

.preview-links span {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Preview Hero */
.preview-hero {
    margin-bottom: 25px;
}

.preview-headline {
    margin-bottom: 15px;
}

.line-shimmer {
    height: 14px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 10px;
    animation: shimmerLine 2s ease-in-out infinite;
}

.line-shimmer.short {
    width: 60%;
}

@keyframes shimmerLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.preview-cta {
    width: 100px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    opacity: 0.8;
}

/* Preview Cards */
.preview-cards {
    display: flex;
    gap: 12px;
}

.preview-card {
    flex: 1;
    height: 70px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    animation: cardPulse 3s ease-in-out infinite;
}

.preview-card:nth-child(2) { animation-delay: 0.5s; }
.preview-card:nth-child(3) { animation-delay: 1s; }

@keyframes cardPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Cards Base */
.floating-card {
    position: absolute;
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Code Card */
.code-card {
    top: 5%;
    right: 0;
    width: 200px;
    animation: floatCode 7s ease-in-out infinite;
}

@keyframes floatCode {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50% { transform: translate(-10px, 15px) rotate(-1deg); }
}

.code-header {
    display: flex;
    gap: 5px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-body {
    padding: 12px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.7rem;
    line-height: 1.6;
}

.code-line {
    display: block;
}

.code-line.indent { padding-left: 12px; }
.code-line.indent-2 { padding-left: 24px; }

.code-purple { color: #C792EA; }
.code-blue { color: #82AAFF; }
.code-white { color: #EEFFFF; }
.code-teal { color: var(--accent); }
.code-yellow { color: #FFCB6B; }
.code-orange { color: #F78C6C; }

/* Stats Card */
.stats-card {
    bottom: 20%;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    animation: floatStats 8s ease-in-out infinite;
}

@keyframes floatStats {
    0%, 100% { transform: translate(0, 0) rotate(-1deg); }
    50% { transform: translate(15px, -20px) rotate(2deg); }
}

.stats-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 245, 212, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.stats-info {
    display: flex;
    flex-direction: column;
}

.stats-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.stats-label {
    font-size: 0.7rem;
    color: var(--gray);
}

/* Design Card */
.design-card {
    top: 25%;
    left: -20px;
    padding: 16px;
    animation: floatDesign 9s ease-in-out infinite;
}

@keyframes floatDesign {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(20px, 10px) rotate(3deg); }
}

.design-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.design-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
}

.design-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.design-lines span {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.design-lines span:first-child { width: 60px; }
.design-lines span:last-child { width: 40px; }

.design-palette {
    display: flex;
    gap: 6px;
}

.design-palette span {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Notification Card */
.notification-card {
    bottom: 5%;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    animation: floatNotif 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatNotif {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -10px); }
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: rgba(40, 200, 64, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon svg {
    width: 18px;
    height: 18px;
    color: #28C840;
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.notif-sub {
    font-size: 0.7rem;
    color: var(--gray);
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decor-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 20%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.decor-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.1) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1s;
}

.decor-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 40px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 500px;
        height: 450px;
        margin-top: 40px;
    }

    .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 60, 225, 0.5);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 245, 212, 0.08);
    transform: translateY(-3px);
}

.btn-secondary:hover svg {
    transform: translateY(3px);
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

    .browser-mockup {
        width: 320px;
    }
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 60, 225, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 245, 212, 0.08);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .code-card {
        top: 0;
        right: 5%;
    }

    .stats-card {
        right: 0;
    }

    .design-card {
        left: 0;
    }

    .notification-card {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        height: 400px;
    }

    .browser-mockup {
        width: 280px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .code-card {
        display: none;
    }

    .design-card {
        top: 5%;
        left: -5%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 350px;
    }

    .browser-mockup {
        width: 240px;
    }

    .stats-card,
    .design-card {
        display: none;
    }
}

        /* Floating Elements */
        .float-element {
            position: absolute;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            z-index: 3;
        }

        .float-el-1 {
            top: 20%;
            right: 15%;
            width: 80px;
            height: 80px;
            background: rgba(108, 60, 225, 0.2);
            border: 1px solid rgba(108, 60, 225, 0.3);
            animation: floatEl1 8s ease-in-out infinite;
        }

        .float-el-2 {
            bottom: 25%;
            right: 10%;
            width: 60px;
            height: 60px;
            background: rgba(0, 245, 212, 0.15);
            border: 1px solid rgba(0, 245, 212, 0.3);
            animation: floatEl2 7s ease-in-out infinite;
            border-radius: 15px;
        }

        .float-el-3 {
            top: 35%;
            right: 5%;
            width: 40px;
            height: 40px;
            background: rgba(108, 60, 225, 0.3);
            animation: floatEl3 9s ease-in-out infinite;
            border-radius: 50%;
        }

        @keyframes floatEl1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(20px, -30px) rotate(10deg); }
            66% { transform: translate(-10px, 20px) rotate(-5deg); }
        }

        @keyframes floatEl2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, -20px) rotate(15deg); }
        }

        @keyframes floatEl3 {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(15px, -25px); }
            75% { transform: translate(-20px, 10px); }
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            padding: 60px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--gray-dark);
            font-size: 0.9rem;
            margin-top: 5px;
            font-weight: 500;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.1);
        }

        /* Section Styles */
        section {
            position: relative;
            z-index: 2;
            padding: 100px 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(108, 60, 225, 0.15);
            border: 1px solid rgba(108, 60, 225, 0.3);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }

        .section-title .highlight {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(18, 18, 26, 0.8);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 24px;
            padding: 45px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(108, 60, 225, 0.3);
            box-shadow: 0 20px 60px rgba(108, 60, 225, 0.15);
        }

        .service-icon {
            width: 65px;
            height: 65px;
            background: rgba(108, 60, 225, 0.15);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary-light);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gradient);
            transform: scale(1.1) rotate(-5deg);
        }

        .service-card:hover .service-icon svg {
            color: var(--dark);
        }

        .service-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .service-card .arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-size: 0.9rem;
            margin-top: 20px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .service-card .arrow svg {
            width: 16px;
            height: 16px;
        }

        .service-card:hover .arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Works Section */
        .works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .work-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4/5;
            cursor: pointer;
        }

        .work-card-bg {
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease;
        }

        .work-card:nth-child(1) .work-card-bg {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #6C3CE1 100%);
        }

        .work-card:nth-child(2) .work-card-bg {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a3e 50%, #00F5D4 100%);
        }

        .work-card:nth-child(3) .work-card-bg {
            background: linear-gradient(135deg, #2d1b4e 0%, #1a3a5c 50%, #8B5CF6 100%);
        }

        .work-card:hover .work-card-bg {
            transform: scale(1.05);
        }

        .work-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
        }

        .work-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
        }

        .work-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(0, 245, 212, 0.15);
            border: 1px solid rgba(0, 245, 212, 0.3);
            border-radius: 50px;
            font-size: 0.7rem;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .work-card-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .work-card-content p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .work-preview {
            position: absolute;
            top: 25px;
            left: 25px;
            right: 25px;
            bottom: 140px;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: flex-start;
            padding: 15px;
            gap: 6px;
            opacity: 0.9;
        }

        .preview-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .preview-dot:nth-child(1) { background: #FF5F57; }
        .preview-dot:nth-child(2) { background: #FFBD2E; }
        .preview-dot:nth-child(3) { background: #28C840; }

        .work-stats {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .work-stat {
            font-size: 0.8rem;
            color: var(--primary-light);
            font-weight: 600;
        }

        /* Process Section */
        .process-section {
            background: var(--dark-light);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0.3;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--dark);
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }

        .process-step h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-wrapper {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: rgba(18, 18, 26, 0.8);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 24px;
            padding: 50px;
            text-align: center;
            display: none;
        }

        .testimonial-card.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-quote-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
        }

        .testimonial-quote-icon svg {
            width: 100%;
            height: 100%;
            fill: url(#gradient);
        }

        .testimonial-quote {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--light);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark);
        }

        .author-info {
            text-align: left;
        }

        .author-info h4 {
            font-size: 1rem;
            font-weight: 600;
        }

        .author-info span {
            color: var(--gray);
            font-size: 0.85rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* Marquee */
        .marquee-section {
            padding: 40px 0;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .marquee-track {
            display: flex;
            animation: marquee 25s linear infinite;
            width: max-content;
        }

        .marquee-item {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: rgba(255,255,255,0.08);
            white-space: nowrap;
            padding: 0 30px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .marquee-item .sep {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.5;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 120px 60px;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 60px;
            background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(0, 245, 212, 0.1));
            border: 1px solid rgba(108, 60, 225, 0.3);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 40%, rgba(108, 60, 225, 0.15), transparent 50%);
            animation: rotateBg 15s linear infinite;
        }

        @keyframes rotateBg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-container h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }

        .cta-container p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        .cta-container .btn-primary {
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 2;
            padding: 80px 60px 30px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-top: 15px;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        .social-link:hover {
            border-color: var(--primary-light);
            color: var(--accent);
            background: rgba(108, 60, 225, 0.1);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .footer-bottom p {
            color: var(--gray-dark);
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.98);
            z-index: 999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 30px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .works-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .work-card:nth-child(3) {
                grid-column: span 2;
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .process-grid::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 25px;
            }

            nav.scrolled {
                padding: 12px 25px;
            }

            .nav-links, .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                padding: 120px 25px 60px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats-bar {
                flex-wrap: wrap;
                gap: 30px;
                padding: 40px 25px;
            }

            .stat-divider {
                display: none;
            }

            .stat-item {
                flex: 1;
                min-width: 120px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            section {
                padding: 60px 25px;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .works-grid {
                grid-template-columns: 1fr;
            }

            .work-card,
            .work-card:nth-child(3) {
                grid-column: span 1;
                aspect-ratio: 4/5;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 60px 25px;
            }

            .cta-container {
                padding: 50px 30px;
            }

            .cta-container h2 {
                font-size: 1.8rem;
            }

            footer {
                padding: 60px 25px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .cursor, .cursor-dot {
                display: none;
            }

            .float-element {
                display: none;
            }
        }

        @media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;  /* add this */
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 60, 225, 0.3);
    box-shadow: 0 20px 60px rgba(108, 60, 225, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.2), rgba(0, 245, 212, 0.1));
    border-color: rgba(108, 60, 225, 0.4);
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: translateY(-20px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    background: var(--gradient);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-price .range {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--light);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pricing-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.pricing-btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 245, 212, 0.08);
}

.pricing-btn.solid {
    background: var(--gradient);
    color: var(--dark);
}

.pricing-btn.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-card.featured {
        transform: translateY(0);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
