:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --accent: #f59e0b;
            --success: #10b981;
            --background: #ffffff;
            --surface: #f8fafc;
            --text: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        [data-theme="dark"] {
            --background: #0f172a;
            --surface: #1e293b;
            --text: #f8fafc;
            --text-muted: #94a3b8;
            --border: #334155;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

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

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .header {
            background: rgba(15, 23, 42, 0.95);
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 800;
            font-size: 1.25rem;
            text-decoration: none;
            color: var(--text);
        }

        /* Logo styles */
        .logo-image {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

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

        /* Mobile logo */
        .mobile-logo {
            height: 60px;
            width: auto;
            margin-bottom: 2rem;
            object-fit: contain;
        }

        /* Footer logo */
        .footer-logo {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

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

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            background: none;
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .theme-toggle:hover {
            border-color: var(--primary);
            background: rgba(37, 99, 235, 0.1);
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            position: relative;
        }

        .hamburger {
            width: 24px;
            height: 24px;
            position: relative;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--text);
            border-radius: 9px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2),
        .hamburger span:nth-child(3) {
            top: 10px;
        }

        .hamburger span:nth-child(4) {
            top: 20px;
        }

        .hamburger.open span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--background);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

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

        .mobile-nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            background: var(--surface);
            color: var(--primary);
        }

        .mobile-nav-links .btn {
            margin-top: 1rem;
        }

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

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

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

        .btn-outline:hover {
            border-color: var(--primary);
            background: rgba(37, 99, 235, 0.1);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 6rem;
            background: 
                radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
                var(--background);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            pointer-events: none;
        }

        [data-theme="dark"] .hero::before {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(148,163,184,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .trust-indicators {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .checkmark {
            color: var(--success);
            font-weight: bold;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 500px;
            border-radius: 20px;
            background: var(--surface);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .code-window {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .window-header {
            background: #2d2d2d;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid #444;
        }

        .window-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red { background: #ff5f57; }
        .dot.yellow { background: #ffbd2e; }
        .dot.green { background: #28ca42; }

        .window-title {
            margin-left: 1rem;
            color: #8b8b8b;
            font-size: 0.9rem;
        }

        .code-content {
            padding: 1.5rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #e6e6e6;
            height: calc(100% - 60px);
            overflow: hidden;
        }

        .code-line {
            opacity: 0;
            animation: typeIn 0.8s ease forwards;
        }

        .code-line:nth-child(1) { animation-delay: 0.5s; }
        .code-line:nth-child(2) { animation-delay: 1s; }
        .code-line:nth-child(3) { animation-delay: 1.5s; }
        .code-line:nth-child(4) { animation-delay: 2s; }
        .code-line:nth-child(5) { animation-delay: 2.5s; }

        @keyframes typeIn {
            from { opacity: 0; transform: translateX(-10px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .syntax-keyword { color: #ff79c6; }
        .syntax-string { color: #f1fa8c; }
        .syntax-function { color: #8be9fd; }
        .syntax-comment { color: #6272a4; }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: var(--background);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        }

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

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .plan-description {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .price-section {
            margin-bottom: 2rem;
        }

        .original-price {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-bottom: 0.5rem;
        }

        .current-price {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
            margin-bottom: 0.5rem;
        }

        .price-note {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--text-muted);
        }

        .features-list li::before {
            content: '✓';
            color: var(--success);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .limited-offer {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--accent);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .limited-offer-title {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .limited-offer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--text-muted);
        }

        .service-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Process Section */
/* ========================================
   PROCESS TIMELINE - PROPER SPACING FIX
   ======================================== */

.process {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 1;
}

/* ========================================
   TIMELINE STRUCTURE - BETTER SPACING
   ======================================== */

.process-timeline-modern {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto 0;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
    bottom: 120px;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary) 10%, 
        var(--primary) 90%, 
        transparent 100%
    );
    z-index: -1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid var(--background);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: -1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid var(--background);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: -1;
}

/* ========================================
   PROCESS BLOCKS - CONSISTENT SPACING
   ======================================== */

.process-block {
    position: relative;
    margin-bottom: 8rem; /* Increased spacing between blocks */
    opacity: 0;
    transform: translateY(50px) translateZ(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    isolation: isolate;
    min-height: 200px; /* Consistent minimum height */
    display: flex;
    align-items: center; /* Center content vertically */
}

.process-block.animate-in {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.process-block:nth-child(1) { transition-delay: 0.1s; }
.process-block:nth-child(2) { transition-delay: 0.3s; }
.process-block:nth-child(3) { transition-delay: 0.5s; }
.process-block:nth-child(4) { transition-delay: 0.7s; }

.process-block:last-child {
    margin-bottom: 0;
}

/* ========================================
   DESKTOP LAYOUT (992px+) - FIXED SPACING
   ======================================== */

@media (min-width: 992px) {
    .process-content {
        display: grid;
        grid-template-columns: 1fr 120px 1fr;
        align-items: center;
        gap: 0;
        min-height: 200px;
        position: relative;
        z-index: 15;
        transform: translateZ(0);
        width: 100%;
    }

    /* Left-side content (first, third, ...) — adjust because timeline-line is first child */
    .process-block:nth-child(even) .process-text {
        grid-column: 1;
        text-align: right;
        padding-right: 3rem;
        max-width: 450px;
        margin-left: auto;
        position: relative;
        z-index: 20;
    }

    .process-block:nth-child(even) .process-icon-wrapper {
        grid-column: 2;
        justify-self: center;
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
    }

    .process-block:nth-child(even) .empty-space {
        grid-column: 3;
    }

    /* Right-side content (second, fourth, ...) */
    .process-block:nth-child(odd) .process-text {
        grid-column: 3;
        text-align: left;
        padding-left: 3rem;
        max-width: 450px;
        margin-right: auto;
        position: relative;
        z-index: 20;
    }

    .process-block:nth-child(odd) .process-icon-wrapper {
        grid-column: 2;
        justify-self: center;
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
    }

    .process-block:nth-child(odd) .empty-space {
        grid-column: 1;
    }

    /* Adjust detail alignment */
    .process-block:nth-child(even) .process-details {
        align-items: flex-end;
        text-align: right;
    }

    .process-block:nth-child(even) .detail-item {
        flex-direction: row-reverse;
        text-align: right;
    }

    .process-block:nth-child(even) .process-timeline-info {
        justify-content: flex-end;
        text-align: right;
    }

    /* Hover effects for desktop */
    .process-block:hover .process-text {
        transform: translateX(0) translateZ(0);
    }

    .process-block:nth-child(even):hover .process-text {
        transform: translateX(-10px) translateZ(0);
    }

    .process-block:nth-child(odd):hover .process-text {
        transform: translateX(10px) translateZ(0);
    }
}

/* ========================================
   TABLET LAYOUT (768px - 991px) - PROPER SPACING
   ======================================== */

@media (min-width: 768px) and (max-width: 991px) {
    .timeline-line {
        display: none;
    }

    .process-block {
        margin-bottom: 4rem; /* Reduced but still adequate spacing for tablet */
        min-height: auto;
        display: block;
    }

    .process-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem;
        background: var(--background);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        position: relative;
        z-index: 15;
        isolation: isolate;
    }

    [data-theme="dark"] .process-content {
        background: var(--surface);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .process-icon-wrapper {
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
        order: 1;
    }

    .process-text {
        max-width: 500px;
        text-align: center !important;
        padding: 0 !important;
        position: relative;
        z-index: 20;
        order: 2;
    }

    .process-details,
    .process-timeline-info {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .detail-item {
        flex-direction: row !important;
        justify-content: center !important;
    }

    .empty-space {
        display: none;
    }
}

/* ========================================
   MOBILE LAYOUT (up to 767px) - OPTIMIZED SPACING
   ======================================== */

@media (max-width: 767px) {
    .process {
        padding: 4rem 0;
    }

    .timeline-line {
        display: none;
    }

    .process-block {
        margin-bottom: 2.5rem; /* Perfect spacing for mobile */
        min-height: auto;
        display: block;
    }

    .process-content {
        background: var(--background);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        transition: all 0.3s ease;
        position: relative;
        z-index: 15;
        isolation: isolate;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .process-content:hover {
        transform: translateY(-5px) translateZ(0);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    [data-theme="dark"] .process-content {
        background: var(--surface);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    [data-theme="dark"] .process-content:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .process-header {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 20;
    }

    .process-icon-wrapper {
        position: relative;
        z-index: 1000;
        transform: translateZ(0);
        flex-shrink: 0;
        order: 1;
        margin-bottom: 1rem;
        align-self: center;
    }

    .process-text {
        text-align: left !important;
        padding: 0 !important;
        position: relative;
        z-index: 20;
        flex: 1;
        order: 2;
        width: 100%;
    }

    .process-details,
    .process-timeline-info {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left;
    }

    .detail-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .empty-space {
        display: none;
    }

    /* Mobile-specific title adjustments */
    .process-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .process-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .detail-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .process-timeline-info {
        gap: 1rem;
        margin-top: 1rem;
    }

    .timeline-duration,
    .timeline-output {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (up to 480px)
   ======================================== */

@media (max-width: 480px) {
    .process-block {
        margin-bottom: 2rem;
    }

    .process-content {
        padding: 1.5rem;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .process-icon-wrapper {
        align-self: center;
    }

    .process-text {
        text-align: center !important;
    }

    .process-details,
    .process-timeline-info {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .detail-item {
        justify-content: center !important;
    }

    .process-timeline-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   PROCESS ICON STYLES - UNCHANGED
   ======================================== */

.process-icon-wrapper {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
    isolation: isolate;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--background);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 
        0 0 0 8px var(--background),
        0 15px 35px rgba(37, 99, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
    transform: translateZ(0);
}

[data-theme="dark"] .process-icon {
    background: var(--surface);
    box-shadow: 
        0 0 0 8px var(--surface),
        0 15px 35px rgba(37, 99, 235, 0.3);
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
    opacity: 0;
    animation: rotate 3s linear infinite;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.process-block:hover .process-icon::before {
    opacity: 0.2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.process-block:hover .process-icon {
    transform: scale(1.1) translateZ(0);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 
        0 0 0 8px var(--background),
        0 20px 40px rgba(37, 99, 235, 0.3);
}

[data-theme="dark"] .process-block:hover .process-icon {
    box-shadow: 
        0 0 0 8px var(--surface),
        0 20px 40px rgba(37, 99, 235, 0.4);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1003;
    border: 2px solid var(--background);
    transform: translateZ(0);
}

[data-theme="dark"] .process-number {
    border-color: var(--surface);
}

/* Mobile icon adjustments */
@media (max-width: 767px) {
    .process-icon {
        width: 60px;
        height: 60px;
        border-width: 3px;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
        z-index: 1001;
    }

    .process-icon svg {
        width: 20px;
        height: 20px;
    }

    .process-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: -6px;
        right: -6px;
    }
}

/* ========================================
   REST OF THE STYLES (UNCHANGED)
   ======================================== */

.process-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.process-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.detail-item:hover {
    color: var(--text);
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .process-block:nth-child(even) .detail-item:hover {
        transform: translateX(-5px);
    }
}

.detail-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.process-timeline-info {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.timeline-duration,
.timeline-output {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--surface);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Process Metrics (unchanged) */
/* Process Metrics - Fixed for Animation */
.process-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
    padding: 3rem;
    background: var(--background);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.process-metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.02;
    pointer-events: none;
}

[data-theme="dark"] .process-metrics {
    background: var(--surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

/* FIXED: Metric number styling for animation compatibility */
.metric-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    
    /* Apply gradient as background */
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    
    /* IMPORTANT: Use transparent but with fallback */
    color: transparent;
    
    /* Ensure text is selectable and animatable */
    -webkit-text-fill-color: transparent;
    
    /* Force hardware acceleration for better rendering */
    transform: translateZ(0);
    will-change: contents;
}

/* Fix for Safari and older browsers */
@supports not (background-clip: text) {
    .metric-number {
        color: var(--primary);
        background: none;
    }
}

/* Ensure gradient applies during animation */
.metric-number.animating {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Percentage symbol styling */
.metric-number::after {
    content: '%';
    font-size: 0.7em;
    margin-left: 0.1em;
    /* Inherit the same gradient styling */
    background: inherit;
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
}

/* Remove percentage for specific cards */
.metric-card:nth-child(3) .metric-number::after,
.metric-card:nth-child(4) .metric-number::after {
    content: '';
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .process-block {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .process-icon::before {
        animation: none;
    }
    
    .process-icon,
    .detail-item,
    .metric-card {
        transition: none;
    }
    
    .metric-number {
        will-change: auto;
    }
}

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--background);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--surface);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.9rem;
        }

        .contact-form {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            color: var(--text);
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            background: var(--surface);
            padding: 3rem 0 2rem;
            border-top: 1px solid var(--border);
        }

        [data-theme="dark"] .footer {
            background: #0a0f1a;
        }

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

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
        }

        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
        }

        .chatbot-pulse {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: var(--gradient);
            animation: pulse 2s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 380px;
            height: 500px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            display: none;
            flex-direction: column;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .chatbot-header {
            background: var(--gradient);
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header h3 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .chatbot-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.8rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

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

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 4px;
            transition: background 0.2s ease;
        }

        .close-chat:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .chatbot-messages {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            scroll-behavior: smooth;
        }

        .message {
            padding: 0.75rem 1rem;
            border-radius: 15px;
            max-width: 85%;
            word-wrap: break-word;
            font-size: 0.9rem;
            line-height: 1.4;
            animation: slideIn 0.3s ease;
        }

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

        .bot-message {
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.2);
            align-self: flex-start;
            color: var(--text);
        }

        .user-message {
            background: var(--gradient);
            color: white;
            align-self: flex-end;
        }

        .typing-indicator {
            display: flex;
            gap: 0.25rem;
            padding: 0.75rem 1rem;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.2);
            border-radius: 15px;
            align-self: flex-start;
            max-width: 85%;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

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

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-10px); }
        }

        .chatbot-input {
            padding: 1rem 1.5rem;
            display: flex;
            gap: 0.75rem;
            border-top: 1px solid var(--border);
            background: var(--background);
        }

        .chatbot-input input {
            flex: 1;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: 0.75rem 1rem;
            color: var(--text);
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
        }

        .chatbot-input input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .chatbot-input input::placeholder {
            color: var(--text-muted);
        }

        .send-btn {
            background: var(--gradient);
            border: none;
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 600;
            min-width: 60px;
        }

        .send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .send-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--gradient);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
        }

        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-white {
            background: white;
            color: var(--primary);
            font-weight: 700;
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

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

            .pricing-grid {
                grid-template-columns: 1fr;
            }

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

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .trust-indicators {
                justify-content: center;
                text-align: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .chatbot-window {
                width: calc(100vw - 2rem);
                right: 1rem;
                bottom: 80px;
            }

            .chatbot-container {
                bottom: 1rem;
                right: 1rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
        }

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

        .animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

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

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOutRight {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }