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

        :root {
            /* Blue/Dark Logistics Theme */
            --primary: #2563EB;
            --primary-dark: #1D4ED8;
            --secondary: #0F172A;
            --accent: #2563EB;
            --success: #10B981;
            --bg-light: #FFFFFF;
            --bg-gray: #F1F5F9;
            --text-dark: #0F172A;
            --text-gray: #64748B;
            --border: #E2E8F0;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: url('assets/cursor.svg'), auto;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 37, 64, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }



        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 45px;
            width: auto;
            max-width: 100%;
        }



        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
            cursor: url('assets/cursor.svg'), pointer;
        }

        .apply-btn {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .apply-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            cursor: url('assets/cursor.svg'), pointer;
        }

        /* Retro 80s Effects */
        /* Removed Retro Effects */

        @keyframes neonFlicker {

            0%,
            18%,
            22%,
            25%,
            53%,
            57%,
            100% {
                text-shadow:
                    0 0 4px #fff,
                    0 0 11px #fff,
                    0 0 19px var(--primary),
                    0 0 40px var(--primary),
                    0 0 80px var(--primary),
                    0 0 90px var(--primary),
                    0 0 100px var(--primary),
                    0 0 150px var(--primary);
                opacity: 1;
            }

            20%,
            24%,
            55% {
                text-shadow: none;
                opacity: 0.8;
            }
        }

        .btn-retro {
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 2px;
            animation: pulseButton 2s infinite;
            cursor: url('assets/cursor.svg'), pointer;
        }

        @keyframes pulseButton {
            0% {
                box-shadow: 0 0 0 0 rgba(217, 61, 4, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(217, 61, 4, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(217, 61, 4, 0);
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)), url('assets/hero-bg.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 2rem 8rem;
            position: relative;
            overflow: hidden;
            border-bottom: 0;
        }

        /* Removed grid animations */

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        /* ... existing styles ... */


        .hero-highlight {
            color: var(--accent);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .hero-highlight {
                color: #60a5fa;
                /* Lighter blue for better contrast on dark hero bg */
                text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
            }
        }


        .hero-cta {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 61, 4, 0.4);
            cursor: url('assets/cursor.svg'), pointer;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1.2rem 2.5rem;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--secondary);
            cursor: url('assets/cursor.svg'), pointer;
        }

        /* Trust Indicators */
        .trust-section {
            background: var(--bg-gray);
            padding: 3rem 2rem;
            border-bottom: 1px solid var(--border);
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .trust-badge {
            text-align: center;
        }

        .badge-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .badge-text {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        .badge-subtext {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Why Choose Section */
        .why-section {
            padding: 6rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            color: var(--secondary);
            letter-spacing: 1px;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .benefits-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .benefit-card {
            background: var(--bg-gray);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--secondary);
        }

        .benefit-text {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .benefit-highlight {
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-top: 1rem;
        }

        /* Calculator Section */
        .calculator-section {
            background: linear-gradient(135deg, #051629 0%, var(--secondary) 100%);
            color: white;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .calculator-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
        }

        .calculator-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .calculator-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .calculator-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .calculator-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .calculator-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            cursor: url('assets/cursor.svg'), pointer;
        }

        .calculator-content {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 3rem;
            color: white;
            /* In dark mode, text should be white on glass */
        }

        .calculator-content .input-label,
        .calculator-content .results-title,
        .calculator-content .result-label-main {
            color: white;
        }

        .calculator-content .input-field,
        .calculator-content .select-field {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .calculator-content .result-main {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .calc-tab {
            display: none;
        }

        .calc-tab.active {
            display: block;
        }

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

        .calc-inputs {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
        }

        .input-label {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .input-helper {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .input-field,
        .select-field {
            padding: 1rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Work Sans', sans-serif;
            transition: all 0.3s;
        }

        .input-field:focus,
        .select-field:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(217, 61, 4, 0.1);
        }

        .calc-results {
            background: linear-gradient(135deg, var(--bg-gray), #e8eef3);
            padding: 2.5rem;
            border-radius: 12px;
            border: 2px solid var(--primary);
        }

        .results-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            text-align: center;
        }

        .result-main {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 8px;
        }

        .result-label-main {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .result-value-main {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            color: var(--primary);
            line-height: 1;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }

        .result-row:last-child {
            border-bottom: none;
        }

        .result-label {
            font-weight: 600;
            color: var(--text-gray);
        }

        .result-value {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .calculate-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .calculate-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            cursor: url('assets/cursor.svg'), pointer;
        }

        /* AI Toolbox */
        .ai-toolbox-section {
            padding: 8rem 2rem;
            background: #0f172a;
            color: white;
            position: relative;
        }

        .ai-toolbox-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 4rem;
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            text-align: left;
        }

        .tool-header {
            margin-bottom: 2rem;
        }

        .tool-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .tool-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .bio-result {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(37, 99, 235, 0.1);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            display: none;
        }

        .quiz-option {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .quiz-option:hover {
            background: rgba(37, 99, 235, 0.2);
            border-color: var(--primary);
        }

        .quiz-option.selected {
            background: var(--primary);
            color: white;
        }

        .testimonials-section {
            padding: 6rem 2rem;
            background: var(--bg-gray);
        }

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

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

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 700;
            color: var(--secondary);
        }

        .author-role {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .author-tenure {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
        }



        /* =========================================
           UNIVERSAL RESPONSIVE UTILITIES 
           (Tablet / iPad / Mobile)
           ========================================= */

        /* Tablet Landscape / Small Desktop (1024px - 1440px) */
        @media (max-width: 1440px) {
            .hero-container {
                gap: 2rem;
            }
        }

        /* iPad Pro / Large Tablet (Max 1200px) */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-cta {
                justify-content: center;
            }

            .benefits-grid,
            .ai-toolbox-grid,
            .testimonials-grid,
            .calc-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* standard iPad / Tablet (Max 1024px) - TRIGGER HAMBURGER HERE */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0;
            }

            .mobile-toggle {
                display: block !important;
                /* Force show toggle */
                order: 2;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 0;
                transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                /* Hide when not active to prevent clicks */
            }

            .nav-links.active {
                left: 0;
                opacity: 1;
                visibility: visible;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 1.5rem;
                font-size: 1.5rem;
                /* Larger touch targets */
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

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

        /* Mobile Devices (Max 768px) */
        @media (max-width: 768px) {
            .nav {
                padding: 0.8rem 1.25rem;
            }

            .benefits-grid,
            .ai-toolbox-grid,
            .testimonials-grid,
            .hero-stats,
            .calc-grid {
                grid-template-columns: 1fr;
                /* Force stack on mobile */
            }

            .logo img {
                height: 35px;
            }

            .hero {
                padding: 8rem 1.25rem 4rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                color: #ffffff;
            }

            .hero-highlight {
                color: #60a5fa !important;
            }

            .hero-stats {
                margin-bottom: 2rem;
            }

            .calculator-content,
            .tool-card {
                padding: 2rem 1.25rem;
            }

            .result-value-main {
                font-size: 3rem;
            }

            .ai-chat-window {
                width: 100% !important;
                height: 100% !important;
                bottom: 0 !important;
                right: 0 !important;
                border-radius: 0 !important;
                z-index: 10002 !important;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col {
                margin-bottom: 2rem;
            }

            .ai-bubble {
                bottom: 20px;
                right: 20px;
                padding: 0.75rem 1.25rem;
                font-size: 0.8rem;
                transform: scale(0.9);
            }
        }



        /* Job Breakdown */
        .breakdown-section {
            padding: 6rem 2rem;
            background: white;
        }

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

        .timeline {
            position: relative;
            margin-top: 3rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .timeline-item {
            position: relative;
            padding-left: 100px;
            margin-bottom: 3rem;
        }

        .timeline-marker {
            position: absolute;
            left: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .timeline-content {
            background: var(--bg-gray);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

        .timeline-time {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .timeline-task {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 0.8rem;
        }

        .timeline-desc {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .timeline-duration {
            display: inline-block;
            background: var(--accent);
            color: var(--text-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 0.8rem;
        }

        /* Comparison Section */
        .comparison-section {
            padding: 6rem 2rem;
            background: var(--bg-gray);
        }

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

        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .comparison-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            background: var(--secondary);
            color: white;
            padding: 1.5rem;
            font-weight: 700;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-row:nth-child(even) {
            background: var(--bg-gray);
        }

        .comparison-feature {
            font-weight: 600;
            color: var(--secondary);
        }

        .comparison-value {
            text-align: center;
            font-weight: 700;
        }

        .check {
            color: var(--success);
            font-size: 1.5rem;
        }

        .cross {
            color: #DC2626;
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
        }

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

        .cta-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0.8;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-icon {
            font-size: 1.2rem;
        }

        /* Application Form Section */
        .application-section {
            padding: 6rem 2rem;
            background: white;
        }

        .application-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--bg-gray);
            padding: 4rem;
            border-radius: 16px;
            border: 2px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .application-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-weight: 700;
            color: var(--secondary);
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(217, 61, 4, 0.1);
        }

        .form-textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: var(--primary);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 700;
            font-family: 'Bebas Neue', cursive;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 61, 4, 0.4);
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 4rem 2rem;
        }

        .success-icon {
            font-size: 4rem;
            color: var(--success);
            margin-bottom: 1.5rem;
        }

        .success-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .application-container {
                padding: 2rem;
            }
        }

        @media (max-width: 968px) {

            .comparison-header,
            .comparison-row {
                grid-template-columns: 1.5fr 1fr 1fr;
                font-size: 0.9rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 70px;
            }

            .timeline-marker {
                left: 0;
            }
        }

        .hidden {
            display: none;
        }

        .ai-bubble {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: none;
            font-weight: 800;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .ai-bubble:hover {
            transform: scale(1.05);
            cursor: pointer;
        }

        .ai-pulse {
            width: 10px;
            height: 10px;
            background: #10B981;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        .ai-chat-window {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            height: 500px;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            transform: translateY(20px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
        }

        .ai-chat-window.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .ai-chat-header {
            padding: 1.5rem;
            background: rgba(37, 99, 235, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            font-weight: 700;
        }

        .ai-chat-body {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ai-msg {
            padding: 0.8rem 1rem;
            border-radius: 12px;
            max-width: 85%;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .ai-msg.bot {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .ai-msg.user {
            background: var(--primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
        }

        .ai-chat-footer {
            padding: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 0.8rem;
        }

        .ai-chat-footer input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.8rem;
            border-radius: 8px;
            outline: none;
        }

        .ai-chat-footer button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .ai-bubble {
                bottom: 20px !important;
                right: 20px !important;
                padding: 0.6rem 1rem !important;
                font-size: 0.8rem !important;
            }

            .ai-chat-window {
                width: 100vw !important;
                height: 100vh !important;
                bottom: 0 !important;
                right: 0 !important;
                border-radius: 0 !important;
                z-index: 10002 !important;
            }
        }
