  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1.2s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .hero-section {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 100px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-desktop {
            background-image: url('dlpd.svg');
            display: block;
        }
        
        .hero-mobile {
            background-image: url('dlpm.svg');
            display: none;
            background-attachment: scroll;
            padding-top: 80px;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .translucent-btn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
        }
        
        .translucent-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .products-container {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 2rem 0;
        }
        
        .moving-products {
            display: flex;
            animation: moveProducts 40s linear infinite;
            width: calc(400% + 4rem);
        }
        
        @keyframes moveProducts {
            0% { transform: translateX(0); }
            100% { transform: translateX(-25%); }
        }
        
        .product-card {
            flex-shrink: 0;
            width: 280px;
            margin-right: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            height: 80px;
        }
        
        .navbar-transparent {
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .navbar-solid {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 80px;
        }
        
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px) scale(0.95);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 320px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-sidebar.open {
            transform: translateX(0);
        }
        
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-toggle {
            position: relative;
            width: 30px;
            height: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hamburger-line {
            position: absolute;
            width: 100%;
            height: 3px;
            background: currentColor;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger-line:nth-child(1) { top: 6px; }
        .hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .hamburger-line:nth-child(3) { bottom: 6px; }
        
        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }
        
        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }
        
        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }
        
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown-menu.open {
            max-height: 200px;
        }
        
        .social-ribbon {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            border-radius: 15px 0 0 15px;
            padding: 15px 8px;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        }
        
        .card-hover {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .bg-calm-orange { background: linear-gradient(135deg, #ffb366 0%, #ff8a50 100%); }
        .bg-calm-blue { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
        .bg-calm-green { background: linear-gradient(135deg, #81ecec 0%, #00b894 100%); }
        .bg-calm-purple { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
        .bg-calm-pink { background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%); }
        
        .text-calm-orange { color: #e17055; }
        .text-calm-blue { color: #0984e3; }
        .text-calm-green { color: #00b894; }
        .text-calm-purple { color: #6c5ce7; }
        .text-calm-pink { color: #e84393; }
        
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .footer-section {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        }
        
        .footer-link {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link:hover {
            color: #667eea;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .shadow-custom {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
            40%, 43% { transform: translate3d(0,-30px,0); }
            70% { transform: translate3d(0,-15px,0); }
            90% { transform: translate3d(0,-4px,0); }
        }
        
        @media (max-width: 768px) {
            .hero-desktop { display: none !important; }
            .hero-mobile { display: block !important; }
            .hero-content h1 { font-size: 2.5rem !important; }
            .hero-content p { font-size: 1rem !important; }
            .translucent-btn { font-size: 0.875rem; padding: 0.75rem 1rem; }
            .nav-container { padding: 0 1rem; height: 70px; }
            .navbar { height: 70px; }
            .nav-menu { display: none; }
            .mobile-sidebar { width: 100%; }
            .product-card { width: 240px; margin-right: 1rem; }
            .social-ribbon { display: none; }
            h2 { font-size: 2rem !important; }
            .card-hover { padding: 1.5rem !important; }
        }
        
        @media (min-width: 769px) {
            .hero-desktop { display: block !important; }
            .hero-mobile { display: none !important; }
            .hero-content h1 { font-size: 5rem; }
            .hero-content p { font-size: 1.5rem; }
            .nav-menu { display: flex; }
            .mobile-menu-toggle { display: none; }
        }