@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;

background:#fff;

}

a{

text-decoration:none;

color:#222;

}

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

    overflow:visible;

    background:#fff;

    backdrop-filter:none;

    box-shadow:none;

    transition:

        height .45s ease,
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;

    z-index:9999;

}

.container{

    max-width:1320px;

    position:absolute;

    left:44%;

    top:1%;

    transform:translateX(-50%);

    width:100%;

    padding:0 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    transition:.45s;

}

.navbar.scrolled{

    height:90px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    box-shadow:

        0 8px 28px rgba(0,0,0,.06);

}

.navbar.scrolled .container{

    top:18px;

}

.logo img{

height:90px;

}

.nav-menu{

display:flex;

gap:38px;

align-items:center;

}

.nav-menu a{

font-weight:500;

font-size:16px;

position:relative;

transition:.3s;

}

.nav-menu a:hover{

color:#2F8D46;

}

.nav-menu .active{

font-weight:700;

color:#2F8D46;

}

.nav-menu .active::after{

content:"";

position:absolute;

bottom:-12px;

left:0;

width:100%;

height:3px;

border-radius:20px;

background:#2F8D46;

}

.nav-right{

display:flex;

align-items:center;

gap:18px;

}

.language{

position:relative;

}

.language-btn{

display:flex;

align-items:center;

gap:8px;

padding:13px 18px;

border-radius:50px;

background:#fff;

border:1px solid #ddd;

cursor:pointer;

font-size:15px;

font-weight:600;

transition:.3s;

}

.language-btn:hover{

border-color:#2F8D46;

}

.language-menu{

position:absolute;

top:60px;

right:0;

width:180px;

background:#fff;

border-radius:16px;

box-shadow:0 10px 35px rgba(0,0,0,.12);

display:none;

overflow:hidden;

}

.language-menu a{

display:block;

padding:14px 18px;

font-size:15px;

transition:.3s;

}

.language-menu a:hover{

background:#f3f7f3;

}

.language.active .language-menu{

display:block;

}

.btn-contact{

display:flex;

align-items:center;

gap:10px;

background:#237A34;

color:#fff;

padding:14px 24px;

border-radius:50px;

font-weight:600;

transition:.3s;

box-shadow:0 8px 20px rgba(47,141,70,.25);

}

.btn-contact:hover{

background:#1c642b;

transform:translateY(-2px);

}

.hamburger{

display:none;

font-size:30px;

cursor:pointer;

}

@media(max-width:992px){

.nav-menu{

position:fixed;

top:90px;

left:-100%;

width:100%;

background:#fff;

flex-direction:column;

padding:40px;

gap:30px;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.nav-menu.show{

left:0;

}

.hamburger{

display:block;

}

.btn-contact{

display:none;

}

}

@media(max-width:768px){

.logo img{

height:46px;

}

.container{

padding:15px 18px;

}

}

.hero{

padding-top:90px;
padding-bottom:90px;

background:

radial-gradient(circle at right,
rgba(163,204,93,.18),
transparent 45%),

linear-gradient(to bottom,
#ffffff,
#f9fbf6);
position:relative;

overflow:visible;

min-height:950px;
margin-bottom:-21%;

}

.hero-container{

    max-width:1320px;

    margin:auto;

    padding:0 20px;

    position:relative;

    z-index:20;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

border-radius:50px;

background:#f3f8ef;

color:#2e7d32;

font-weight:600;

margin-bottom:8px;

}

.hero-badge i{

font-size:20px;

}

.hero-title{

font-size:62px;

font-weight:800;

line-height:1;

margin-bottom:4px;

color:#063d20;

}

.hero-title span{

display:block;

}

.hero-title .green{

color:#82bc39;

}

.hero-subtitle{

font-size:34px;

font-weight:700;

margin-bottom:5px;

color:#174a2c;

}

.hero-desc{

font-size:17px;

line-height:1.9;

max-width:560px;

color:#555;

margin-bottom:17px;

}

.hero-buttons{

display:flex;

gap:18px;

}

.btn-primary{

background:#1d7a38;

color:#fff;

padding:17px 34px;

border-radius:50px;

display:flex;

align-items:center;

gap:10px;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary{

border:2px solid #1d7a38;

color:#1d7a38;

padding:17px 34px;

border-radius:50px;

display:flex;

align-items:center;

gap:10px;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:#1d7a38;

color:white;

}

.hero-right{

    position:absolute;

    top:0;

    right:0;

    width:66vw;

    height:100%;

    clip-path: inset(0 0 300px 0);

}

.hero-image{
    position:absolute;
    width:100%;
    height:122%;
    top:-6%;
    left:0;
    object-fit:cover;
    object-position:center;
}

.video-overlay{

position:absolute;

inset:0;

pointer-events:none;

background:none;

}

.certification{

    position:absolute;

    top:40%;

    left:46%;

    transform:translateX(-50%) rotate(-14deg);

    z-index:40;

    pointer-events:none;

}

.certification p{

    font-family:"Caveat",cursive;

    font-size:30px;

    line-height:.92;

    font-weight:700;

    color:#fff;

    margin:0;

}

.certification .green{

    color:#f8f41b;

}

.certification.korean{

    transform:rotate(-12deg);

}

.certification.korean p{

    font-family:"Gaegu",cursive;

    font-size:31px;

    line-height:.9;

    letter-spacing:-0.3px;

}

.certification.hindi{

    transform:rotate(-12deg);

}

.certification.hindi p{

    font-family:"Kalam",cursive;

    font-size:27px;

    line-height:1.05;

}

.organic-logo{

    position:absolute;

    top:45%;

    right:70px;

    width:100px;

    height:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top: -13%;
    z-index:30;

}

.organic-logo img{

    width:100px;

    position: absolute;

    height:auto;

    object-fit:cover;

    border-radius:50%;

    background:white;

    box-shadow:

    0 18px 40px rgba(0,0,0,.18);

    animation:

    floatingLogo 5s ease-in-out infinite;

}
.organic-logo{

    box-shadow:

    0 15px 35px rgba(0,0,0,.18),

    0 0 40px rgba(255,255,255,.35);

}

@keyframes floatingLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.organic-logo{

    animation:floatingLogo 4s ease-in-out infinite;

}

.logo-ring{

    position:absolute;

    width:130px;

    height:130px;

    border-radius:50%;

    border:2px dashed rgba(255,255,255,.85);

    animation:rotateRing 40s linear infinite;

    opacity:.9;

}

@keyframes floatingLogo{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-7px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes rotateRing{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.organic-logo:hover img{

    transform:scale(1.05);

    transition:.4s;

}

.music-toggle{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#1d7a38;

    color:white;

    font-size:24px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

    box-shadow:0 12px 30px rgba(0,0,0,.2);

    transition:.35s;

}

.music-toggle:hover{

    transform:scale(1.08);

}

.music-toggle.muted{

    background:#666;

}

.music-toggle{

    bottom:10px;

}

.hero-left{
    transform: translateX(10%);
    width:42%;

    position:relative;

    z-index:25;

    top:-9%!important;
}

.hero-highlights{
    transform: translateX(5%);
    position:absolute;

    z-index:50;

    width:auto;

    max-width:none;

    margin:0;

    padding:14px 22px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:22px;

    box-shadow:

    0 8px 24px rgba(0,0,0,.08);

    left:18px;

    bottom:-18px;

    top:auto;

}

.highlight-item{

    flex:1;

    display:flex;

    align-items:center;

    gap:18px;

}

.highlight-icon{

    flex-shrink:0;

    color:#6EA63A;

    font-size:31px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.highlight-text h4{

    font-size:17px;

    font-weight:700;

    color:#153F22;

    margin-bottom:6px;

    line-height:1.2;

}

.highlight-text p{

    font-size:13px;

    color:#444;

    line-height:1.5;

}

.divider{

    width:1px;

    align-self:stretch;

    background:

    linear-gradient(

    transparent,

    #e8e8e8,

    transparent

    );

}

.highlight-item{

    transition:.35s;

}

.highlight-item:hover{

    transform:translateY(-4px);

}

.highlight-item:hover .highlight-icon{

    transform:scale(1.1);

    transition:.3s;

    color:#2F8D46;

}

@media(max-width:992px){

.hero-highlights{

    flex-direction:column;

    padding:28px;

    gap:24px;

}

.divider{

    width:100%;

    height:1px;

    margin:0 8px;
}

.highlight-item{

    width:100%;

    min-width:180px;

}

}

.hero-image{
    filter:
        brightness(.98)
        contrast(.72)
        saturate(.72);
}

.hero-container{

    position:relative;

    z-index:5;

}

.hero-highlights{

    position:relative;

    z-index:5;

}

.hero-right{

    width:66vw;

}

.hero::after{

    content:"";

    position:absolute;

    right:-260px;

    top:-150px;

    width:900px;

    height:900px;

    background:

    radial-gradient(

        circle,

        rgba(176,214,110,.32),

        transparent 70%

    );

    filter:blur(60px);

    z-index:1;

}

.hero-mask{

    position:absolute;

    inset:0;

    width:72%;

    height:108%;

    pointer-events:none;

    z-index:15;

    top:-20px;

    left:-60px;

    overflow:visible;

    filter:

    drop-shadow(

    45px 0 80px rgba(194,220,120,.18)

    );

}

.hero-right{

    z-index:5;

}

.hero-fade{

    z-index:15;
    left:373px;

}

.certification{

    z-index:25;

}

.floating-leaf{

    z-index:26;

}

.hero-container{

    z-index:30;

}

.hero-highlights{

    z-index:35;

}

.floating-leaf{

    position:absolute;

    top:120px;

    left:37.5%;

    width:62px;

    z-index:35;

    pointer-events:none;

    user-select:none;

    animation:leafFloat 5s ease-in-out infinite;

}

@keyframes leafFloat{

    0%{

        transform:
        translateY(0)
        rotate(-6deg);

    }

    50%{

        transform:
        translateY(-12px)
        rotate(7deg);

    }

    100%{

        transform:
        translateY(0)
        rotate(-6deg);

    }

}

.floating-leaf{

    filter:

        drop-shadow(0 6px 10px rgba(0,0,0,.12));

}

.floating-leaf{

    top:138px;

    left:37.5%;

    width:55px;

}

.hero-wave{

position:absolute;

left:0;

bottom:25%;

width:100%;

height:130px;

overflow:hidden;

z-index:30;

pointer-events:none;

}

.hero-wave svg{

width:100%;

height:100%;

display:block;

}

.hero-wave{

filter:

drop-shadow(

0 -8px 25px

rgba(184,215,92,.28)

);

}

.video-wrapper{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.hero-wave{

    filter:

        drop-shadow(
        0 -10px 35px
        rgba(180,220,90,.28)
        );

}

.hero-fade{

    position:absolute;

    top:0;

    left:30%;

    width:70%;

    height:100%;

    object-fit:fill;

    pointer-events:none;

    z-index:18;

    image-rendering:auto;

}

/* ================================================= */
/* TABLET */
/* ================================================= */

@media (max-width:1200px){

.hero{

    padding-top:130px;
    min-height:auto;
    padding-bottom:140px;

}

.hero-container{

    max-width:100%;
    padding:0 40px;

}

.hero-buttons{
    display:inline-grid;
}

.hero-left{

    width:52%;

}

.hero-title{

    font-size:56px;

}

.hero-subtitle{

    font-size:26px;

}

.hero-desc{

    font-size:16px;
    max-width:460px;

}

.hero-right{

    width:60vw;
    height:760px;
    right:-70px;

}

.video-wrapper{

    height:760px;

}

.organic-logo{

    width:150px;
    height:150px;
    right:40px;
    top:120px;

}

.organic-logo img{

    width:120px;
    height:120px;

}

.logo-ring{

    width:150px;
    height:150px;

}

.certification{

    left:52%;
    top:180px;
    transform:
    translateX(-50%)
    rotate(-12deg);

}

.certification p{

    font-size:24px;

}

.floating-leaf{

    width:42px;
    left:40%;
    top:150px;

}


.hero-fade{

    left:40%;

    width:80%;

}

}
/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width:768px){

.hero{

    padding-top:110px;

    padding-bottom:80px;

    min-height:auto;

}

.hero-container{

    padding:0 24px;

}

.hero-left{

    width:100%;

    max-width:none;

    text-align:center;

}

.hero-title{

    font-size:48px;

}

.hero-subtitle{

    font-size:22px;

}

.hero-desc{

    max-width:100%;

    font-size:15px;

    line-height:1.8;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-right{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    right:0;

}

.video-wrapper{

    height:100%;

}

.hero-image{
    height:100%;
    object-position:68% center;
}

.hero-mask{

    display:none;

}
.certification{

    display:none;

}

.organic-logo{

    width:110px;

    height:110px;

    right:15px;

    top:95px;

}

.organic-logo img{

    width:90px;

    height:90px;

}

.logo-ring{

    width:110px;

    height:110px;

}

.floating-leaf{

    display:none;

}

.hero-highlights{

    position:relative;

    left:auto;

    bottom:auto;

    margin:40px auto 0;

    transform:none;

    display:flex;

    flex-direction:column;

    width:100%;

    max-width:420px;

    border-radius:18px;

}

.highlight-item{

    width:100%;

}

.divider{

    width:100%;

    height:1px;

}

.hero-wave{

    height:90px;

}

.hero-wave{

    height:140px;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:rgba(255,255,255,.58);

    pointer-events:none;

    z-index:8;

}

}

/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width:768px){

.hero{

    padding-top:110px;

    padding-bottom:80px;

    min-height:auto;

}

.hero-container{

    padding:0 24px;

}

.hero-left{

    width:100%;

    max-width:none;

    text-align:center;

}

.hero-title{

    font-size:48px;

}

.hero-subtitle{

    font-size:22px;

}

.hero-desc{

    max-width:100%;

    font-size:15px;

    line-height:1.8;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-right{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    right:0;

}

.video-wrapper{

    height:100%;

}

.video-wrapper video{

    height:100%;

    object-position:68% center;

}

.hero-mask{

    width:120%;

    left:-20%;

}

.certification{

    display:none;

}

.organic-logo{

    width:110px;

    height:110px;

    right:15px;

    top:95px;

}

.organic-logo img{

    width:90px;

    height:90px;

}

.logo-ring{

    width:110px;

    height:110px;

}

.floating-leaf{

    display:none;

}

.hero-highlights{

    position:relative;

    left:auto;

    bottom:auto;

    margin:40px auto 0;

    transform:none;

    display:flex;

    flex-direction:column;

    width:100%;

    max-width:420px;

    border-radius:18px;

}

.highlight-item{

    width:100%;

}

.divider{

    width:100%;

    height:1px;

}

.hero-wave{

    height:90px;

}

@media(max-width:768px){

.hero-fade{

    display:none;

}

}

}

@media(max-width:1200px){

.hero-right{

    right:-20px;

}

}

/* ================================================= */
/* SMALL MOBILE */
/* ================================================= */

@media (max-width:480px){

.hero-title{

    font-size:38px;

}

.hero-subtitle{

    font-size:18px;

}

.hero-desc{

    font-size:14px;

}

.hero-buttons{

    flex-direction:column;

    gap:14px;

}

.btn-primary,

.btn-secondary{

    justify-content:center;

    width:100%;

}

.hero-badge{

    font-size:13px;

    padding:10px 18px;

}

.hero-highlights{

    padding:18px;

}

.highlight-text h4{

    font-size:15px;

}

.highlight-text p{

    font-size:12px;

}

.highlight-icon{

    font-size:26px;

}

.organic-logo{

    width:90px;

    height:90px;

}

.organic-logo img{

    width:72px;

    height:72px;

}

.logo-ring{

    width:90px;

    height:90px;

}

}

.hamburger{

    display:none;

    font-size:32px;

    color:#123f21;

    cursor:pointer;

    position:relative;

    z-index:1200;

}

@media (max-width:992px){

.hamburger{

    display:block;

}

}

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

    flex-shrink:0;

}

.nav-right{

display:flex;
align-items:center;

}

html,
body{

    overflow-x:hidden;
    width:100%;

}

@media (max-width:768px){

.language{

    display:block;

}

.language-btn{

    padding:10px 12px;

    border-radius:50px;

    font-size:14px;

    gap:6px;

}

.language-btn span{

    display:none;

}

.language-btn .ri-arrow-down-s-line{

    display:none;

}

.language-btn .ri-earth-line{

    font-size:20px;

}

}

@media (max-width:768px){

.nav-right{

    display:flex;

    align-items:center;

    gap:10px;

}

}

@media (max-width:768px){

.language-menu{

    right:0;

    top:50px;

    width:160px;

}

.language-menu a{

    padding:12px 16px;

    font-size:14px;

}

}

/*======================================
WHY SECTION
======================================*/

.why{

    position:relative;

    padding:120px 20px;

    background:linear-gradient(
        to bottom,
        #fffdf6,
        #ffffff
    );

    margin-bottom:-13%;

}

.why-container{

    max-width:1320px;

    margin:auto;

    z-index:9999;

}

.section-title{

    position:relative;
    z-index: 999;

    text-align:center;

    margin-bottom:2%;

}

.section-title h2{

    font-size:48px;

    font-weight:800;

    color:#0E4C29;

    letter-spacing:.5px;

}

.title-decoration{

    margin-top:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

}

.title-decoration span{

    width:65px;

    height:2px;

    background:#A4C95A;

    border-radius:20px;

}

.title-decoration i{

    color:#8BC34A;

    font-size:18px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:32px 22px;

    text-align:center;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:

        0 12px 30px rgba(0,0,0,.05);

    transition:.35s;
    z-index: 999;
}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 20px 40px rgba(0,0,0,.08);

}

.why-icon{

    width:78px;

    height:78px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #8BC34A,
        #4C8B2B
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:24px;

}

.why-card h3{

    font-size:20px;

    color:#1A4F2D;

    margin-bottom:14px;

    line-height:1.4;

}

.why-card p{

    font-size:15px;

    color:#555;

    line-height:1.8;

}

@media(max-width:1200px){

.why-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.why{

    padding:90px 20px;

}

.section-title h2{

    font-size:34px;

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.why-card{

    padding:24px 18px;

}

.why-icon{

    width:60px;

    height:60px;

    font-size:28px;

}

.why-card h3{

    font-size:17px;

}

.why-card p{

    font-size:13px;

}

}

/*======================================
DECORATIVE LEAF
======================================*/

.why{

    position:relative;

    overflow:hidden;

}

.why-leaf{

    position:absolute;

    top:0px;
    left:18px;

    width:82px;

    user-select:none;
    pointer-events:none;

    z-index:999;

    filter:
        drop-shadow(0 12px 18px rgba(157, 184, 82, .22));

    transform:rotate(-8deg);

    animation:leafFloat 5s ease-in-out infinite;

}

@keyframes leafFloat{

    0%{
        transform:
            translateY(0)
            rotate(-8deg);
    }

    50%{
        transform:
            translateY(-8px)
            rotate(-3deg);
    }

    100%{
        transform:
            translateY(0)
            rotate(-8deg);
    }

}

@media(max-width:992px){

.why-leaf{

    width:68px;

    left:18px;

    top:22px;

}

}

@media(max-width:768px){

.why-leaf{

    width:54px;

    left:10px;

    top:16px;

    opacity:.9;

}

}

/*======================================
PRODUCT
======================================*/

.products{

    position:relative;

    padding:120px 20px;

    background:
    linear-gradient(
        to bottom,
        #fffdf7,
        #ffffff
    );

    overflow:hidden;

    margin-bottom: -12%;

}

.products-container{

    max-width:1320px;

    margin:auto;

}

.product-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:45px;

    margin-top:39px;

    padding:34px;

    border-radius:34px;

    background:#fff;

    box-shadow:

        0 18px 45px rgba(0,0,0,.06);

}

.product-image{

    display:flex;

    justify-content:center;

}

.product-image img{

    width:100%;

    max-width:560px;

    transition:.45s;

}

.product-image img:hover{

    transform:scale(1.04);

}

.product-content h3{

    font-size:42px;

    color:#0F4A27;

    margin-bottom:34px;

    font-weight:800;

}

.product-content{

    background:#fff;

    border-radius:28px;

    padding:42px 48px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 12px 35px rgba(0,0,0,.05);

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.product-content ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.product-content li{

    display:flex;

    align-items:center;

    gap:16px;

    margin:0;

    font-size:19px;

    color:#444;

    line-height:1.7;

}

.product-content i{

    color:#88BF34;

    font-size:24px;

    flex-shrink:0;

    margin-top:3px;

}

.product-leaf{

    position:absolute;

    left:-10px;

    top:40px;

    width:160px;

    z-index:5;

    pointer-events:none;

}

@media(max-width:992px){

.product-card{

    grid-template-columns:1fr;

    gap:25px;

}

.product-content{

    text-align:center;

}

.product-content li{

    justify-content:center;

    text-align:left;

}

.product-image img{

    max-width:420px;

}

}

@media(max-width:768px){

.products{

    padding:90px 20px;

}

.product-card{

    padding:22px;

    border-radius:24px;

}

.product-content h3{

    font-size:28px;

}

.product-content li{

    font-size:16px;

    gap:12px;

}

.product-content i{

    font-size:20px;

}

.product-image img{

    max-width:300px;

}

.product-leaf{

    width:90px;

}

.product-content{

    padding:28px 24px;

    border-radius:22px;

}

}

.capacity-card{

    display:grid;

    grid-template-columns:
        1.2fr
        1fr
        .9fr;

    align-items:stretch;

    background:#fff;

    border-radius:34px;

    overflow:hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

    margin-top:60px;

    align-items: stretch;

}

.capacity-info{

    padding:42px;

}

.commitment{

    margin:0;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.commitment{

    border-radius:30px 0 0 30px;

}

.progress{

    height:18px;

    background:#E8EDD9;

    border-radius:999px;

}

.bar{

    height:100%;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #8ACB38,
        #2B7A34
    );

}

.bar40{

width:40%;
}

.bar60{

width:60%;
}

.bar100{

width:100%;
}

.commitment{

    background:linear-gradient(
        160deg,
        #0F5D2E,
        #0B4E27
    );

    color:#fff;

    border-radius:28px;

    padding:34px 36px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);

}

.farmer-image{

    height:100%;

    overflow:hidden;

}

.capacity{

    padding:110px 20px;

    background:linear-gradient(
        to bottom,
        #fffdf7,
        #ffffff
    );

    margin-bottom: -7%;

}

.capacity-container{

    max-width:1320px;

    margin:auto;

}

.commitment h2{

    font-size:35px;

    font-weight:800;

    margin-bottom:11px;

    color:white;

}

.commitment ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:0;

    padding:0;

}

.commitment li{

    display:flex;

    align-items: center;

    gap:14px;

    font-size:15px;

    line-height:1.6;

    color:#fff;

}

.commitment li i{

    color:#D4F25B;

    font-size:22px;

    flex-shrink:0;

    margin-top:2px;

}

.commitment li span{

    flex:1;

}

@media(max-width:1200px){

.commitment{

    padding:28px;

}

.commitment h2{

    font-size:34px;

}

.commitment li{

    font-size:17px;

}

}

@media(max-width:768px){

.commitment{

    border-radius:22px;

    padding:24px;

}

.commitment h2{

    font-size:28px;

}

.commitment li{

    font-size:15px;

    gap:10px;

}

.commitment li i{

    font-size:18px;

}

}

.farmer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:66% center;
}

.capacity-info{

    padding:48px;

}

.farmer-image{
    position: relative;
    margin-left: -40px;
    z-index: 2;
}

.commitment{
    position: relative;
    z-index: 1;
}

.capacity-info h2{

    font-size:35px;

    font-weight:800;

    color:#0E4C29;

    margin-bottom:12px;

}

.capacity-info p{

    font-size:14px;

    line-height:1.7;

    color:#555;

    margin-bottom:12px;

}

.progress-item{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:24px;
}

.progress-text{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.progress-text span{
    font-size:14px;
    color:#333;
}

.progress-text strong{
    font-size:20px;
    font-weight:800;
    color:#0E4C29;
}

.progress{
    width:100%;
    height:18px;
    background:#E8EDD9;
    border-radius:999px;
}

.capacity-note{

    margin-top:24px;

    padding-top:20px;

    border-top:1px solid rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    gap:10px;

    color:#29562A;

    font-weight:600;

}

.capacity-note i{

    font-size:22px;

    color:#78B83A;

}

/*======================================
CAPACITY TABLET
======================================*/

@media (max-width:1200px){

.capacity{

    padding:90px 20px;

}

.capacity-card{

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.farmer-image{
    position: relative;
    overflow: hidden;
}

.farmer-image img{
    width: calc(100% + 70px);
    height: 100%;
    object-fit: cover;

    margin-left: -70px;   /* gambar melebar ke kiri */
    display: block;
}

.capacity-info{

    padding:34px;

}

.capacity-info h2{

    font-size:34px;

}

.capacity-info p{

    font-size:16px;

}

.commitment{

    border-radius:24px;

}

.progress-item{

    grid-template-columns:

        1fr
        140px;

    gap:14px;

}

.progress{

    grid-column:1 / 3;

}

}

/*======================================
CAPACITY MOBILE
======================================*/

@media (max-width:768px){

.capacity{

    padding:70px 18px;

}

.capacity-card{

    display:flex;

    flex-direction:column;

    border-radius:24px;

}

.capacity-info{

    padding:26px;

}

.capacity-info h2{

    font-size:28px;

    text-align:center;

}

.capacity-info p{

    font-size:15px;

    text-align:center;

    margin-bottom:28px;

}

.progress-item{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

    margin-bottom:22px;

}

.progress{

    width:100%;

}

.progress-item strong{

    align-self:flex-end;

    font-size:15px;

}

.commitment{

    border-radius:0;

    padding:28px 24px;

}

.commitment h2{

    font-size:26px;

    text-align:center;

}

.commitment li{

    font-size:15px;

}

.farmer-image{

    height:320px;

}

.capacity-note{

    justify-content:center;

    text-align:center;

    flex-wrap:wrap;

}

}

@media (max-width:480px){

.capacity-info h2{

    font-size:24px;

}

.commitment h2{

    font-size:22px;

}

.commitment li{

    font-size:14px;

}

.progress-item span{

    font-size:14px;

}

.progress-item strong{

    font-size:14px;

}

.farmer-image{

    height:250px;

}

}

.cta-footer{

    position:relative;

    padding:90px 0 25px;

    background:linear-gradient(
        to bottom,
        #FFFDF6,
        #FFF8E6
    );

    overflow:hidden;

}

.container{

    width:min(1320px,92%);

    margin:auto;

}

.cta-top{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

}

.cta-text h2{

    font-size:54px;

    line-height:1;

    color:#114D2B;

    font-weight:800;

}

.cta-text p{

    margin-top:22px;

    line-height:1.9;

    color:#555;

}

.cta-icons{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    align-items:start;

}

.cta-item{

    text-align:center;

}

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#FFF9E8;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:15px;

}

.icon i{

    font-size:34px;

    color:#6AA72C;

}

.cta-button{

    background:#167531;

    color:white;

    padding:18px 34px;

    border-radius:999px;

    display:flex;

    gap:10px;

    align-items:center;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.cta-button:hover{

    transform:translateY(-3px);

}

.footer-bar{

    display:grid;

    grid-template-columns:

        250px
        1fr
        320px
        250px
        220px;

    align-items:center;

    gap:28px;

    padding-top:45px;

}

.footer-offer{

    background:#FFF4C7;

    padding:18px 22px;

    border-radius:18px;

}

.footer-offer strong{

    display:block;

    margin-bottom:6px;

    font-size:17px;

}

.footer-offer small{

    line-height:1.6;

    color:#555;

}

.footer-wa{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:linear-gradient(135deg,#28b446,#1d8b37);
    color:#fff;

    padding:16px 28px;

    border-radius:999px;

    font-weight:700;
    font-size:16px;

    white-space:nowrap;

    box-shadow:0 12px 25px rgba(29,139,55,.25);

    transition:.3s;
}

.footer-wa:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(29,139,55,.35);
    background:linear-gradient(135deg,#2dc44c,#22923b);
}

.footer-bar.container {
    left:46%!important;
}

.footer-wa i{
    font-size:24px;
    color:#fff;
}

.footer-wa span{
    color:#fff;
}

.cta-leaf-left{

    position:absolute;

    right:-16px;

    top:35px;

    width:8%;

    z-index:0;

}

.cta-leaf-right{

    position:absolute;

    right:-25px;

    top:40px;

    width:170px;

}

@media(max-width:992px){

.cta-top{

    grid-template-columns:1fr;

    text-align:center;

}

.cta-icons{

    justify-content:center;

    flex-wrap:wrap;

}

.footer-bar{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-contact div{

    justify-content:center;

}

}

.cta-item{

    position:relative;

}

.cta-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:8px;

    right:-14px;

    width:1px;

    height:70px;

    background:#ece4c8;

}

.icon{

    width:78px;
    height:78px;

    background:#FFFBEF;

    border:1px solid #F3E8BF;
}

.icon i{

    font-size:34px;
}

.navbar .container{

    max-width:1320px;

    width:100%;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:relative;

    left:auto;
    top:auto;
    transform:none;

    padding:0 20px;

}

.container{

    max-width:1320px;

    width:92%;

    margin:0 auto;

    position:relative;

}

.footer-bar{

    display:grid;

    grid-template-columns:

        220px
        1fr
        330px
        250px
        auto;

    gap:30px;

    align-items:center;

    top: 10px;

}

.footer-desc{

    max-width:250px;

    line-height:1.7;

    color:#555;

    font-size:15px;

}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:12px;

    font-size:15px;

}

.footer-contact div{

    display:flex;

    align-items:center;

    gap:10px;

}

.footer-logo img{

    width:220px;

    display:block;

}

/* =========================================
   CTA FOOTER - TABLET
========================================= */

@media (max-width:992px){

.cta-footer{
    padding:70px 0 40px;
}

.cta-top{
    display:flex;
    flex-direction:column;
    gap:40px;
    text-align:center;
}

.cta-text h2{
    font-size:40px;
}

.cta-text p{
    max-width:650px;
    margin:20px auto 0;
}

.cta-icons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    width:100%;
}

.cta-item::after{
    display:none;
}

.footer-bar{
    display:flex;
    flex-direction:column;
    gap:22px;
    text-align:center;
    padding-top:50px;
}

.footer-logo img{
    width:200px;
    margin:auto;
}

.footer-desc{
    max-width:500px;
    margin:auto;
}

.footer-contact{
    align-items:center;
}

.footer-offer{
    max-width:420px;
    width:100%;
}

.footer-wa{
    width:100%;
    max-width:320px;
    margin:auto;
    justify-content:center;
}

}

/* =========================================
   CTA FOOTER - MOBILE
========================================= */

@media (max-width:768px){

.cta-footer{
    padding:60px 18px 35px;
}

.cta-text h2{
    font-size:30px;
    line-height:1.15;
}

.cta-text h2 img{
    width:22px;
}

.cta-text p{
    font-size:15px;
    line-height:1.8;
}

.cta-icons{
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.icon{
    width:64px;
    height:64px;
}

.icon i{
    font-size:28px;
}

.cta-item span{
    font-size:14px;
    line-height:1.4;
}

.footer-bar{
    gap:18px;
}

.footer-logo img{
    width:170px;
}

.footer-desc{
    font-size:14px;
    max-width:100%;
}

.footer-contact{
    font-size:14px;
    gap:10px;
}

.footer-contact div{
    justify-content:center;
    flex-wrap:wrap;
}

.footer-offer{
    width:100%;
    text-align:center;
}

.footer-offer strong{
    font-size:16px;
}

.footer-offer small{
    font-size:13px;
}

.cta-leaf-left,
.cta-leaf-right{
    width:80px;
    opacity:.35;
}

}

@media(max-width:768px){

.footer-wa{
    width:100%;
    max-width:320px;
    margin:auto;
    height:56px;
}

}

@media(max-width:768px){

.progress-text span{
    font-size:15px;
}

.progress-text strong{
    font-size:22px;
}

}

body.zh {

}

.video-wrapper{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.video-wrapper .hero-image{
    position:absolute;
    top:-6%;
    left:0;
    width:100%;
    height:122%;
    display:block;
    object-fit:cover;
    object-position:center;
    z-index:1;
}

.video-overlay{
    z-index:2;
}

.organic-logo{
    z-index:30;
}

.hero-right {
    z-index: 10 !important;
}

.video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 10;
}

.video-wrapper .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 11 !important;
}

.video-overlay {
    z-index: 12;
    pointer-events: none;
}

.organic-logo {
    z-index: 20 !important;
}