:root {
            --emerald: #047857;
            --emerald-dark: #065f46;
            --navy: #0f172a;
            --slate: #475569;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

            --radius-lg: 24px;
            --radius-md: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--slate);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--navy);
            font-weight: 800;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
        }

        .nav-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--emerald);
        }

        .desktop-menu {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .desktop-menu a {
            color: var(--navy);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .desktop-menu a:hover {
            color: var(--emerald);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--navy);
            font-size: 0.95rem;
        }

        .contact-btn i {
            font-size: 1.2rem;
        }

        .contact-btn:hover {
            color: var(--emerald);
        }

        .fa-whatsapp {
            color: #25d366;
            font-size: 1.4rem !important;
        }

        .fa-phone {
            color: var(--emerald);
            font-size: 1.2rem !important;
        }

        .burger {
            display: none;
            cursor: pointer;
            color: var(--navy);
            background: none;
            border: none;
            padding: 5px;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: white;
            z-index: 2000;
            padding: 40px;
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-overlay.active {
            right: 0;
        }

        .mobile-overlay a {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .section {
            padding: 90px 0;
        }

        .bg-gray {
            background: var(--light-bg);
        }

        .section-header {
            margin-bottom: 50px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .btn-submit {
            background: var(--emerald);
            color: white;
            width: 100%;
            padding: 18px;
            border-radius: 15px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .btn-submit:hover {
            background: var(--emerald-dark);
            transform: translateY(-3px);
        }

        .btn {
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            font-size: 0.9rem;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--emerald);
            color: white;
        }

        .btn-primary:hover {
            background: var(--emerald-dark);
        }

        .btn-dark {
            background: var(--navy);
            color: white;
        }

        .btn-dark:hover {
            background: #1e293b;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 14px 28px;
            border-radius: 12px;
        }

        .btn-outline:hover {
            background: white;
            color: var(--navy);
        }

        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)),
                url('../images/hero-bg.webp');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .hero-inner {
            max-width: 900px;
        }

        .hero h1 {
            color: white;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 25px;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .badges {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #6ee7b7;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stats-bar {
            border-bottom: 1px solid var(--border);
            background: white;
            padding: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-item .stat-value {
            font-size: 2.5rem;
            color: var(--emerald);
            margin-bottom: 5px;
            line-height: 1;
            font-weight: 800;
        }

        .stat-item p {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--slate);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            grid-auto-flow: dense;
        }

        .bento-item {
            background: var(--light-bg);
            border-radius: var(--radius-lg);
            padding: 35px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: #cbd5e1;
        }

        .bento-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .bento-large {
            grid-column: span 2;
        }

        .bento-tall {
            grid-row: span 2;
            background: #ecfdf5;
            border-color: #d1fae5;
        }

        .bento-item h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .bento-item p {
            font-size: 0.95rem;
            color: var(--slate);
            line-height: 1.6;
        }

        .icon-box-small {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--emerald);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .bento-badge-inner {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 25px;
            font-weight: 700;
            color: var(--emerald);
            background: white;
            padding: 10px 16px;
            border-radius: 50px;
            align-self: flex-start;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--navy);
        }

        .check-list li svg {
            color: var(--emerald);
            width: 20px;
        }

        .icon-bg {
            position: absolute;
            right: -20px;
            bottom: -20px;
            width: 160px;
            height: 160px;
            opacity: 0.04;
            color: var(--navy);
            pointer-events: none;
            transform: rotate(-10deg);
        }

        .bento-accent .icon-bg {
            opacity: 0.08;
            color: var(--emerald);
        }

        .logistics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .logistics-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .logistics-card:hover {
            border-color: var(--emerald);
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .log-icon {
            width: 60px;
            height: 60px;
            background: #ecfdf5;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--emerald);
        }

        .logistics-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .log-list {
            margin-top: 20px;
        }

        .log-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            color: var(--slate);
            font-weight: 500;
        }

        .log-list i {
            color: var(--emerald);
        }

        .process-section {
            background: var(--light-bg);
            position: relative;
        }

        .steps-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .steps-wrapper::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: #cbd5e1;
            z-index: 0;
        }

        .step-item {
            position: relative;
            z-index: 1;
            background: white;
            padding: 30px 20px;
            border-radius: 24px;
            border: 1px solid var(--border);
            text-align: center;
            transition: 0.3s;
        }

        .step-item:hover {
            transform: translateY(-8px);
            border-color: var(--emerald);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 2px solid var(--emerald);
            color: var(--emerald);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 800;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--navy);
        }

        .step-desc {
            font-size: 0.95rem;
            color: var(--slate);
            line-height: 1.5;
        }

        .compare-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .c-row {
            display: grid;
            grid-template-columns: 240px 1fr 1fr;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: 0.2s;
        }

        .c-row:hover:not(.c-header) {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .c-col {
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-size: 0.95rem;
        }

        .c-col.meta {
            border-right: 1px solid #f1f5f9;
            background: white;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;
        }

        .c-title {
            font-weight: 800;
            color: var(--navy);
            font-size: 1.05rem;
        }

        .icon-wrap {
            width: 40px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
        }

        .c-col.bad {
            color: var(--slate);
            background: white;
        }

        .c-col.good {
            background: #f0fdf4;
            color: var(--navy);
            position: relative;
        }

        .c-col.good::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: #dcfce7;
        }

        .c-header {
            background: transparent;
            box-shadow: none;
            border: none;
            margin-bottom: -5px;
        }

        .c-header .c-col {
            font-weight: 700;
            color: var(--slate);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding: 0 0 10px 24px;
            background: transparent !important;
        }

        .mobile-label {
            display: none;
        }

        /* --- Marketplace --- */
        .mp-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .mp-img {
            width: 100%;
            border-radius: 30px;
            height: 450px;
            object-fit: cover;
        }

        .highlight-box {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 20px;
            border-left: 4px solid var(--emerald);
            margin: 30px 0;
        }

        .form-section {
            background: var(--navy);
            color: white;
        }

        .form-wrap {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 40px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--navy);
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            font-family: inherit;
            font-size: 1rem;
        }

        .alert-box {
            display: none;
            align-items: center;
            gap: 10px;
            background: #fef2f2;
            color: #b91c1c;
            padding: 12px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        footer {
            background: #0a0f1c;
            color: #94a3b8;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 1100px) {
            .desktop-menu {
                display: none;
            }

            .burger {
                display: block;
            }

            .header-actions {
                gap: 15px;
            }

            .contact-btn span {
                display: none;
            }

            .contact-btn i {
                font-size: 1.5rem !important;
            }

            .mp-box {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .bento-grid {
                grid-template-columns: 1fr 1fr;
            }

            .bento-large {
                grid-column: span 2;
            }

            .bento-tall {
                grid-row: span 2;
                grid-column: 2;
            }

            .bento-item:nth-child(2) {
                grid-column: 1;
                grid-row: 2;
            }

            .steps-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .steps-wrapper::before {
                display: none;
            }

            .logistics-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .bento-large,
            .bento-tall,
            .bento-item {
                grid-column: auto;
                grid-row: auto;
                min-height: auto;
            }

            .steps-wrapper {
                grid-template-columns: 1fr;
            }

            .c-header {
                display: none;
            }

            .c-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .c-col.meta {
                border-right: none;
                border-bottom: 1px solid #f1f5f9;
                padding: 16px 20px;
                background: #f8fafc;
            }

            .c-col.bad,
            .c-col.good {
                padding: 16px 20px;
                flex-direction: row;
                align-items: flex-start;
                gap: 10px;
            }

            .c-col.bad {
                border-bottom: 1px solid #f1f5f9;
            }

            .c-col.good {
                background: white;
            }

            .c-col.good::after {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 4px;
                background: var(--emerald);
            }

            .mobile-label {
                display: inline-block;
                min-width: 90px;
                font-size: 0.75rem;
                font-weight: 800;
                text-transform: uppercase;
                margin-bottom: 4px;
                flex-shrink: 0;
            }

            .bad .mobile-label {
                color: #dc2626;
            }

            .good .mobile-label {
                color: var(--emerald);
                margin-bottom: 0;
            }
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--navy);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
            z-index: 998;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--emerald);
            transform: translateY(-5px);
        }