:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --secondary: #0ea5e9;
    --dark: #0f172a;
    --slate: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* helpers */
.reveal-up,
.reveal-left,
.reveal-right,
.fade-in-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.fade-in-up { transform: translateY(30px); }

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.fade-in-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-up-delayed {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.reveal-up-delayed.active {
    opacity: 1;
    transform: translateY(0);
}

.glassmorphism {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.green-gradient-text {
    background: linear-gradient(90deg, var(--primary), #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.display-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

/* nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links li a {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar-spacer {
    height: 78px;
}

/* animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-complex {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(1deg); }
    66% { transform: translate(-5px, 10px) rotate(-1deg); }
}

.float-animation { animation: float 5s ease-in-out infinite; }
.float-animation-delayed { animation: float 6s ease-in-out infinite 1s; }

.float-img-1 { animation: float-complex 8s ease-in-out infinite; }
.float-img-2 { animation: float-complex 10s ease-in-out infinite -2s; }
.float-img-3 { animation: float-complex 12s ease-in-out infinite -4s; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

/* buttons */
.btn-premium-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-premium-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.35);
    background: var(--primary-dark);
}

.btn-premium-green i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.btn-premium-green:hover i {
    transform: translateX(5px);
}

.btn-premium-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.btn-premium-green:hover::before {
    left: 100%;
}

/* trust */
.trust-indicator-section {
    padding: 140px 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.trust-glow-1 {
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.3) 0%, transparent 70%);
}

.trust-glow-2 {
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
}

.trust-header-refined {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

.trust-badge-modern {
    color: #4ade80;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.trust-title-refined {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.trust-grid-refined {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* responsive trust */
@media (max-width: 1200px) {
    .trust-grid-refined {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid-refined {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-card-modern {
        padding: 45px 30px;
        border-radius: 35px;
    }

    .trust-icon-box-modern {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .trust-card-modern h3 {
        font-size: 2.2rem;
    }

    .trust-card-modern .trust-text-muted {
        font-size: 1rem;
    }
}

.trust-card-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.trust-card-modern:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.trust-icon-box-modern {
    width: 85px;
    height: 85px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    color: #4ade80;
    font-size: 2.2rem;
    border: 1px solid rgba(74, 222, 128, 0.15);
    transition: all 0.4s ease;
}

.trust-card-modern:hover .trust-icon-box-modern {
    background: #16a34a;
    color: white;
    transform: scale(1.1) rotate(-5deg);
}


.trust-card-modern h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
    white-space: nowrap;
}

.trust-card-modern .trust-text-muted {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.6;
}

/* sections */
.hero-video-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.2);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* products */
.products-preview-section {
    padding: 140px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.products-preview-section .section-header {
    text-align: center;
    margin-bottom: 90px;
}

.products-bg-organic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(22, 163, 74, 0.03) 0%, transparent 40%), 
        radial-gradient(circle at 90% 90%, rgba(2, 132, 199, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.preview-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* responsive products */
@media (max-width: 1200px) {
    .preview-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .preview-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ppc-img-wrapper {
        height: 250px;
    }
}

.product-preview-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    border-color: rgba(22, 163, 74, 0.2);
}

.ppc-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-preview-card:hover .ppc-img-wrapper img {
    transform: scale(1.05);
}

.ppc-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-preview-card:hover .ppc-category-badge {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* btn circle */
.ppc-link-circle {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ppc-link-circle i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ppc-link-circle:hover {
    transform: scale(1.15);
    background: #15803d;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.5);
    border-color: #ffffff;
}

.ppc-link-circle:hover i {
    transform: translateX(4px);
}

.ppc-content {
    padding: 20px 22px 22px 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ppc-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* price */
.ppc-price-info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.ppc-price-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.ppc-price-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.3px;
}

.btn-view-all-premium {
    background: #0f172a;
    color: white;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-all-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #16a34a, #22c55e);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-view-all-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(22, 163, 74, 0.3);
}

.btn-view-all-premium:hover::before {
    opacity: 1;
}

/* cta btn */
.cta-btn.secondary-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn.secondary-outline i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn.secondary-outline:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary-outline:hover i {
    transform: translateX(5px) scale(1.2);
}

.cta-btn.secondary-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
    z-index: -1;
}

.cta-btn.secondary-outline:hover::before {
    left: 100%;
}

/* partners */
.partners-area {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 60px;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* masks */
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.partner-item {
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.partner-item img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover {
    transform: scale(1.1);
}

/* responsive */
@media (max-width: 992px) {
    .nav-container {
        justify-content: space-between;
        gap: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 40px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        gap: 25px;
        text-align: center;
        border-top: 1px solid #f1f5f9;
        z-index: 999;
    }

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

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

    .nav-links li {
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    /* responsive sections */
    .about-mlp-wrapper, .wcu-container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .collage-wrapper {
        height: 350px !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .collage-img {
        width: 70% !important;
        height: auto !important;
    }

    .img-1 { 
        top: 0 !important; 
        left: 5% !important; 
        width: 65% !important; 
    }
    .img-2 { 
        bottom: 5% !important; 
        right: 5% !important; 
        width: 60% !important; 
    }
    .img-3 { 
        display: block !important; 
        top: 25% !important; 
        right: 10% !important; 
        width: 50% !important; 
        z-index: 5 !important;
    }

    .about-mlp-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-mlp-content div {
        justify-content: center;
    }

    /* responsive hero */
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
}


