:root {
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--slate-600);
    line-height: 1.5;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--slate-100);
    position: fixed;
    top: 0;
    z-index: 50;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.dot {
    color: var(--primary-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-600);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--slate-200);
    color: var(--slate-600);
}

.btn-outline:hover {
    border-color: var(--primary-600);
    color: var(--primary-600);
}

.btn-primary {
    background: var(--primary-600);
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-700);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-text {
    color: var(--slate-600);
    background: transparent;
    font-weight: 500;
}

.btn-text:hover {
    color: var(--slate-900);
}

.btn-whatsapp {
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    box-shadow: var(--shadow-sm);
}

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

.btn-dark {
    background: var(--slate-900);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    width: 100%;
}

.btn-dark:hover {
    background: var(--slate-800);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 6px 12px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--primary-600);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-row {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-100);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--slate-600);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-600);
}

/* Visual Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.profile-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--slate-100);
    border-radius: 50%;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line {
    height: 8px;
    background: var(--slate-100);
    border-radius: 4px;
}

.line-lg {
    width: 100px;
}

.line-sm {
    width: 60px;
}

.stat-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.visual-body {
    background: var(--slate-50);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.product-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f9ce34 10%, #ee2a7b 100%);
    /* Instagram Gradient */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 10px 15px -3px rgba(238, 42, 123, 0.3);
}

.product-spotlight h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.product-spotlight p {
    font-size: 0.9rem;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.floating-stat {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-800);
    border: 1px solid var(--slate-100);
}

.stat-1 {
    top: -20px;
    right: -20px;
    transform: rotate(3deg);
}

.stat-2 {
    bottom: 30px;
    left: -30px;
    transform: rotate(-3deg);
}

.floating-stat i {
    color: var(--primary-600);
}

/* Background Decor */
.background-decor {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--slate-50) 0%, #edf2f8 100%);
    z-index: -1;
    border-left: 1px solid var(--slate-100);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--slate-900);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .navbar {
        padding: 15px 0;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        /* Ensure content is first on mobile too, or 2 if we wanted visual first */
    }

    .hero-visual {
        order: 2;
    }

    .trust-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .background-decor {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        /* Ensure opaque background */
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        /* Standard shadow */
        border-top: 1px solid var(--slate-100);
        align-items: stretch;
        gap: 16px;
        z-index: 1001;
        /* Higher than navbar */
    }

    .nav-links.active {
        display: flex !important;
        /* Force override */
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: block;
        /* Show hamburger on mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        /* Smaller font for mobile */
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .visual-card {
        padding: 20px;
    }

    .floating-stat {
        display: none;
        /* Hide floating stats on very small screens to save space */
    }
}