
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
             overflow-x: hidden;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
        }

        nav {
        position: fixed;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            right: 0;
            left: 0;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #9333EA 0%, #a855f7 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .logo-text {
            color: #333;
        }

        .logo-accent {
            color: #9333EA;
        }

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

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

        .nav-links a:hover {
            color: #e84393;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            border: none;
            font-size: 1rem;
        }

        .btn-login {
            background: white;
            color: #9333EA;
            border: 2px solid #9333EA;
        }

        .btn-login:hover {
            background: #faf5ff;
        }

        .btn-register {
            background: linear-gradient(135deg, #9333EA 0%, #a855f7 100%);
            color: white;
            border: 2px solid transparent;
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 5rem 5%;
            align-items: center;
            min-height: calc(100vh - 80px);
        }

        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.2;
            color: #333;
            margin-bottom: 1rem;
        }

        .hero-content .highlight {
            color: #9333EA;
            display: block;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .visual-element {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            animation: float 3s ease-in-out infinite;
        }

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

        .warehouse {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .automation {
            bottom: 20%;
            left: 0;
            animation-delay: 0.5s;
        }

        .globe {
            top: 30%;
            right: 10%;
            animation-delay: 1s;
        }

        .delivery {
            top: 5%;
            right: 5%;
            animation-delay: 1.5s;
        }

        .tracking {
            bottom: 10%;
            right: 0;
            animation-delay: 2s;
        }

        .icon {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .icon-warehouse { background: #fff3e0; color: #f57c00; }
        .icon-automation { background: #f3e5f5; color: #8e24aa; }
        .icon-globe { background: #e3f2fd; color: #1976d2; }
        .icon-delivery { background: #ffebee; color: #e53935; }
        .icon-tracking { background: #e8f5e9; color: #43a047; }

        .visual-element h3 {
            font-size: 1rem;
            color: #333;
            margin: 0;
        }

        .path {
            position: absolute;
            stroke: #9333EA;
            stroke-width: 3;
            fill: none;
            stroke-dasharray: 10 5;
            opacity: 0.3;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .app-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: #333;
            color: white;
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .app-btn:hover {
            transform: translateY(-3px);
        }

        .app-icon {
            font-size: 1.8rem;
        }

        footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #999;
            font-weight: 600;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 1rem;
        }

        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-column ul li a:hover {
            color: #e84393;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e84393;
            font-size: 1.2rem;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }

        .benefits-section {
            padding: 5rem 5%;
            background: #fafafa;
        }

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

        .benefits-header h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .benefits-header p {
            font-size: 1.25rem;
            color: #666;
        }

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

        .benefit-card {
            background: linear-gradient(135deg, #9333EA 0%, #a855f7 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .benefit-card p {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .cta-section {
            background: linear-gradient(135deg, #9333EA 0%, #a855f7 100%);
            padding: 5rem 5%;
            position: relative;
            overflow: hidden;
        }

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

        .cta-inner {
            background: white;
            border-radius: 40px;
            padding: 4rem;
        }

        .cta-text h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-text p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #9333EA 0%, #a855f7 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #9333EA;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 2px solid #9333EA;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #faf5ff;
        }

        .cta-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            position: relative;
            width: 320px;
            height: 650px;
            background: #1a1a1a;
            border-radius: 45px;
            padding: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 35px;
            overflow: hidden;
            position: relative;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 30px;
            background: #1a1a1a;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .screen-content {
            padding: 50px 20px 20px;
        }

        .screen-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #9333EA, #a855f7);
            border-radius: 50%;
        }

        .greeting h4 {
            font-size: 0.9rem;
            color: #333;
            margin: 0;
        }

        .greeting p {
            font-size: 0.75rem;
            color: #999;
            margin: 0;
        }

        .action-btn {
            background: linear-gradient(135deg, #9333EA, #a855f7);
            color: white;
            padding: 15px;
            border-radius: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .wallet-card {
            background: #f8f8f8;
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .wallet-card p {
            font-size: 0.75rem;
            color: #999;
            margin: 0 0 5px 0;
        }

        .wallet-card h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 0;
        }

        .quick-actions {
            margin-bottom: 20px;
        }

        .quick-actions h4 {
            font-size: 0.9rem;
            color: #333;
            margin-bottom: 10px;
        }

        .action-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: #f0f0f0;
            padding: 15px;
            border-radius: 15px;
        }

        .action-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .pink-blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .tracking-section {
            background: #fff5f9;
            padding: 5rem 5%;
        }

        .tracking-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tracking-visual {
            position: relative;
            height: 500px;
        }

        .tracking-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 450px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            overflow: hidden;
        }

        .shopping-woman {
            position: absolute;
            bottom: 0;
            right: 20px;
            width: 250px;
            height: 300px;
            background: #e84393;
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
        }

        .tracking-overlay {
            position: absolute;
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 280px;
            z-index: 10;
        }

        .tracking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .tracking-status {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .status-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .status-icon.active {
            background: #9333EA;
            color: white;
        }

        .status-icon.inactive {
            background: #f0f0f0;
            color: #999;
        }

        .partners-section {
            background: white;
            padding: 5rem 5%;
            text-align: center;
        }

        .partners-header h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .partners-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-card {
            background: #fafafa;
            padding: 2.5rem 1.5rem;
            border-radius: 15px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .partner-card:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .partner-icon {
            font-size: 2.5rem;
            color: #9333EA;
        }

        .partner-name {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .see-all-btn {
            margin-top: 3rem;
            padding: 1rem 3rem;
            background: white;
            color: #9333EA;
            border: 2px solid #9333EA;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .see-all-btn:hover {
            background: #faf5ff;
        }
        
       

        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 3rem 5%;
            }

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

            .nav-links {
                display: none;
            }

            .hero-visual {
                height: 500px;
                margin-top: 3rem;
            }

            .warehouse {
                top: 5%;
                left: 5%;
            }

            .automation {
                bottom: 5%;
                left: 5%;
            }

            .globe {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .delivery {
                top: 5%;
                right: 5%;
            }

            .tracking {
                bottom: 5%;
                right: 5%;
            }

            .app-buttons {
                justify-content: center;
            }

            .nav-buttons {
                gap: 0.5rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }

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

            .benefits-header h2 {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefit-card {
                padding: 2rem;
            }

            .benefit-card h3 {
                font-size: 1.5rem;
            }

            .benefit-card p {
                font-size: 1rem;
            }

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

            .cta-inner {
                padding: 2rem;
            }

            .cta-text h2 {
                font-size: 2rem;
            }

            .cta-text p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .phone-mockup {
                width: 280px;
                height: 570px;
            }

            .tracking-content {
                grid-template-columns: 1fr;
            }

            .tracking-visual {
                height: 400px;
            }

            .tracking-image {
                width: 100%;
                height: 350px;
            }

            .tracking-overlay {
                left: 10px;
                width: 250px;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
             .store-btn {
           font-size: 1.1rem;
            white-space: nowrap;
           padding: 1rem 1.5rem;
           margin-top: 1rem;
        }
        }
        
a.btn,
a.btn-login,
a.btn-register,
a.btn-primary,
a.btn-secondary,
a.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}


