* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --dark: #1e3a8a;
            --accent: #f97316;
            --dark-bg: #0f172a;
            --light-bg: #f9fafb;
            --text: #1f2937;
            --gray: #6b7280;
            --border: #e5e7eb;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-svg {
            width: 45px;
            height: 45px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 50px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover, nav a.active {
            color: var(--primary);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2.5px;
            background: var(--primary);
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../internal-assets-images/hero-image-shoppers.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            min-height: 700px;
            position: relative;
        }

        .hero-left {
            opacity: 0;
            animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
            letter-spacing: -0.8px;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 600px;
        }

        .service-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 45px;
        }

        .badge {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .badge:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .badge-icon {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 900;
        }

        .badge-title {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .badge-desc {
            font-size: 12px;
            opacity: 0.85;
        }

        .form-box {
            background: white;
            border-radius: 16px;
            padding: 45px;
            opacity: 0;
            animation: slideInRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.2s;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .form-box h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-box p {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            color: var(--text);
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #d1d5db;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
            background: #fafbfc;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-top: 12px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37,99,235,0.3);
        }

        section {
            padding: 120px 60px;
        }

        section.light-bg {
            background: var(--light-bg);
        }

        section.dark-bg {
            background: var(--dark-bg);
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 18px;
            letter-spacing: -0.8px;
        }

        .section-header p {
            font-size: 17px;
            color: var(--gray);
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

        section.dark-bg .section-header p {
            color: rgba(255,255,255,0.8);
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 100px;
            align-items: start;
        }

        .intro-col {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .intro-col h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text);
        }

        .intro-col p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 20px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 14px;
            border: 2px solid var(--border);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .service-card:hover {
            border-color: var(--primary);
            box-shadow: 0 25px 60px rgba(37,99,235,0.2);
            transform: translateY(-10px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(249,115,22,0.08));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text);
        }

        .service-desc {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 18px;
            font-weight: 600;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 8px 0;
            color: var(--gray);
            font-size: 13px;
            position: relative;
            padding-left: 24px;
            line-height: 1.6;
        }

        .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            text-align: center;
            margin: 100px 0;
            padding: 80px 60px;
        }

        .stat {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .stat:nth-child(1) { animation-delay: 0.1s; }
        .stat:nth-child(2) { animation-delay: 0.2s; }
        .stat:nth-child(3) { animation-delay: 0.3s; }

        .stat-number {
            font-size: 52px;
            font-weight: 900;
            color: white;
            margin-bottom: 12px;
            line-height: 1;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .why-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .why-content {
            opacity: 0;
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .why-content h2 {
            font-size: 44px;
            font-weight: 900;
            margin-bottom: 28px;
            color: var(--text);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .why-content p {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 22px;
            line-height: 1.8;
        }

        .benefits-list {
            list-style: none;
            margin-top: 30px;
        }

        .benefits-list li {
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            color: var(--gray);
            font-size: 15px;
            position: relative;
            padding-left: 40px;
            line-height: 1.6;
        }

        .benefits-list li strong {
            color: var(--text);
            font-weight: 700;
        }

        .benefits-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 4px;
        }

        .why-visual {
            opacity: 0;
            animation: slideInRight 0.8s ease-out forwards;
        }

        .image-box {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 16px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    opacity: 1; 
}


        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
            margin-top: 70px;
        }

        .testimonial-card {
            background: white;
            padding: 45px;
            border-radius: 14px;
            border-left: 5px solid var(--accent);
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

        .testimonial-card:hover {
            box-shadow: 0 20px 50px rgba(37,99,235,0.15);
            transform: translateY(-8px);
        }

        .stars {
            color: var(--accent);
            font-size: 17px;
            letter-spacing: 5px;
            margin-bottom: 18px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 22px;
            font-style: italic;
        }

        .author-name {
            font-weight: 700;
            color: var(--text);
            font-size: 15px;
        }

        .author-role {
            font-size: 13px;
            color: var(--gray);
            margin-top: 5px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            align-items: center;
            justify-items: center;
            margin-top: 70px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .client-item {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
        }

        .client-item:hover {
            opacity: 1;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 100px 60px;
            text-align: center;
            border-radius: 18px;
            margin: 120px 0;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .cta-section h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 22px;
            letter-spacing: -0.5px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 45px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 16px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(249,115,22,0.4);
        }

        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
        }

        .contact-info {
            opacity: 0;
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .contact-info h3 {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 28px;
            color: var(--text);
        }

        .contact-info p {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .contact-block {
            margin-bottom: 45px;
        }

        .contact-block h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .contact-block p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .contact-form {
            opacity: 0;
            animation: slideInRight 0.8s ease-out forwards;
        }

        footer {
            background: var(--dark-bg);
            color: white;
            padding: 80px 60px 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        footer h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        footer p {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.8;
        }

        footer a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            font-size: 14px;
            margin-bottom: 8px;
        }

        footer a:hover {
            color: white;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 20px;
            text-align: center;
            color: #6b7280;
            font-size: 13px;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            nav {
                padding: 15px 40px;
            }

            nav ul {
                gap: 35px;
            }

            .hero {
                padding: 70px 40px;
                gap: 50px;
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 42px;
            }

            section {
                padding: 80px 40px;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .intro-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .why-section {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .why-content h2 {
                font-size: 36px;
            }

            .contact-section {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            footer {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                padding: 60px 40px 20px;
            }

            .stats-section {
                grid-template-columns: 1fr;
                padding: 60px 40px;
            }

            .cta-section {
                padding: 70px 40px;
                margin: 80px 0;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 12px;
                padding: 12px 20px;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero {
                padding: 50px 20px;
                gap: 30px;
                min-height: auto;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .form-box {
                padding: 30px;
            }

            .service-badges {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            section {
                padding: 60px 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .services-grid {
                gap: 25px;
            }

            .service-card {
                padding: 25px;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .why-section {
                gap: 40px;
            }

            .why-content h2 {
                font-size: 28px;
            }

            

            footer {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 50px 20px 15px;
            }

            .cta-section {
                padding: 50px 20px;
                margin: 60px 0;
            }

            .cta-section h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 10px 12px;
            }

            nav a {
                font-size: 12px;
            }

            nav ul {
                gap: 10px;
            }

            .hero h1 {
                font-size: 24px;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .why-content h2 {
                font-size: 24px;
            }

            .service-card h3 {
                font-size: 17px;
            }

            .stat-number {
                font-size: 40px;
            }

            .service-badges {
                grid-template-columns: 1fr;
            }

            .clients-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }