/* Reset dan Base Styles dengan Font Poppins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CSS Variables - Mengikuti Skema Warna yang Anda Berikan */
:root {
    --primary-color: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-accent: #eff6ff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #dbeafe 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-blue-section: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
}

.nav-link:hover {
    background: var(--bg-accent);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.login-btn {
    background: var(--gradient-primary) !important;
    color: var(--bg-primary) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: var(--radius-2xl) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.login-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Background Gradasi Biru */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-2xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(59, 130, 246, 0.1);
    flex: 1;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-2xl);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Hero Illustration */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-visual {
    position: relative;
    width: 350px;
    height: 350px;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 3px solid var(--primary-light);
    animation: pulse 2s infinite;
}

.central-hub i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-light);
    animation: float 3s ease-in-out infinite;
}

.orbit-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.orbit-1 { top: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-2 { top: 50%; right: 20px; transform: translateY(-50%); animation-delay: 0.5s; }
.orbit-3 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.orbit-4 { top: 50%; left: 20px; transform: translateY(-50%); animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

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

/* Trust Indicators Section - Background Putih */
.trust-indicators {
    background: var(--bg-primary);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow);
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.trust-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Product Catalog Section - Background Abu-abu Terang */
.product-catalog {
    padding: 5rem 0;
    background: var(--gradient-blue-section);
    position: relative;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Bar - CLEAN DESIGN */
.catalog-search {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    align-items: center;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sort-select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Category Filters - MODERN DESIGN */
.category-filters {
    display: flex;
    gap: 0.8rem;
    margin: 3rem 0;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: white;
    color: var(--text-secondary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.category-btn i {
    font-size: 1rem;
}

/* Products Grid - PROFESSIONAL LAYOUT */
.products-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.products-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* PERFECT Product Card - ONETOBOT STYLE */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    width: 350px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

/* PERFECT Image Container - LARGER SIZE (70% of card) */
.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Product Info - SMALLER SECTION (30% of card) */
.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price Display - ATTRACTIVE DESIGN */
.product-price {
    margin-bottom: 1rem;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Checkout Button - PROFESSIONAL */
.add-to-cart-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

/* Carousel Controls - CLEAN DESIGN */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Auto Scroll Toggle */
.auto-scroll-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 25px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-scroll-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-color);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(25px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Why Choose Section - Background Abu-abu Terang */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.why-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials - Background Putih */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 0;
    animation: slideCardsSeamless 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.testimonial-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-light);
    font-weight: bold;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 80px;
    font-weight: 400;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

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

/* Team - Background Abu-abu Terang */
.team {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.team-card {
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.team-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.team-img {
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-light);
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-desc {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.team-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-2xl);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: #25D366;
    color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: var(--shadow);
}

.footer-logo h3 {
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
    line-height: 1.6;
    text-align: left;
}

.footer-contact {
    text-align: left;
}

.footer-contact h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
    line-height: 1.5;
    text-align: left;
}

.contact-info i {
    color: var(--primary-light);
    width: 16px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

@keyframes slideCardsSeamless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 5 - 2rem * 5));
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-15px,0);
    }
    70% {
        transform: translate3d(0,-7px,0);
    }
    90% {
        transform: translate3d(0,-2px,0);
    }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(248, 250, 252, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(59, 130, 246, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        min-width: 120px;
    }

    .automation-visual {
        width: 280px;
        height: 280px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
    }

    .central-hub {
        width: 80px;
        height: 80px;
    }

    .central-hub i {
        font-size: 2rem;
    }

    /* Product Catalog - MOBILE OPTIMIZED */
    .catalog-search {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0 1rem;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .category-filters::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .category-btn span {
        display: none;
    }
    
    /* MOBILE PRODUCT CARDS - FULL WIDTH OPTIMIZATION */
    .products-carousel {
        padding: 0 1rem;
    }
    
    .products-track {
        gap: 1.5rem;
    }
    
    /* === PERBAIKAN CSS DIMULAI DI SINI === */
    .product-card {
        width: 100%; /* Membuat kartu mengisi kontainer */
        min-width: 100%; /* Menyesuaikan min-width */
        max-width: none; /* Menghapus batasan max-width */
        margin: 0;
    }
    /* === PERBAIKAN CSS SELESAI DI SINI === */
    
    .product-image {
        height: 240px;
        padding: 1.5rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .price-current {
        font-size: 1.4rem;
    }
    
    .add-to-cart-btn {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .carousel-controls {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Trust Grid */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-item {
        padding: 1.5rem 1rem;
    }

    /* Why Features */
    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-title {
        font-size: 2rem;
    }
    
    /* SMALL MOBILE PRODUCT CARDS - FULL WIDTH */
    .product-card {
        width: 100%; /* Pastikan tetap 100% untuk layar sangat kecil */
        min-width: 100%;
    }
    
    .product-image {
        height: 220px;
        padding: 1.2rem;
    }
    
    .product-info {
        padding: 1.3rem;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .category-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
}

/* TABLET RESPONSIVE - 768px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-track {
        gap: 1.5rem;
    }
    
    .product-card {
        width: calc(50vw - 2rem);
        min-width: calc(50vw - 2rem);
        max-width: 400px;
    }
}

/* Focus and Accessibility */
.nav-link:focus,
.cta-button:focus,
.whatsapp-btn:focus,
.social-link:focus,
.category-btn:focus,
.search-input:focus,
.sort-select:focus,
.add-to-cart-btn:focus,
.carousel-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .carousel-controls,
    .auto-scroll-toggle {
        display: none;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066CC;
        --primary-dark: #004499;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .testimonials-track {
        animation: none;
    }
    
    .whatsapp-float {
        animation: none;
    }
}



.guarantee-box {
    background-color: #f9f9f9;
    border-left: 4px solid #007BFF;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.guarantee-box h4 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.guarantee-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.guarantee-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.guarantee-box ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.guarantee-box ul li .fa-check-circle {
    color: #28a745;
    margin-right: 8px;
}

.team-commitment {
    font-size: 14px;
    text-align: center;
    color: #777;
    font-style: italic;
    margin-top: 20px;
}

.popup-footer {
    text-align: center;
    margin-top: 25px;
}
.popup-footer .cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #007BFF, #0056b3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.popup-footer .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}