/*==================================================
NECTAFRESH - CONVENTIONAL INGREDIENTS
==================================================*/

:root{
    --green:#1b7f3b;
    --green-dark:#12632d;
    --text:#222;
    --muted:#666;
    --border:#e8e8e8;
    --bg:#f8faf8;
    --radius:18px;
}

*{box-sizing:border-box;}

.nf-container{
    width:min(1280px,92%);
    margin:auto;
}

.nf-conventional{
    overflow:hidden;
    background:#fff;
}

.section-heading{
    margin-bottom:45px;
}

.section-heading h2{
    font-size:38px;
    color:var(--green-dark);
    margin:0;
    font-weight:800;
}

.section-heading .line,
.line{
    width:70px;
    height:4px;
    background:var(--green);
    border-radius:50px;
    margin-top:15px;
}

/* HERO */

.conv-hero{
    padding:80px 0;
    background:linear-gradient(90deg,#f8fbf7 45%,#ffffff 100%);
}

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

.eyebrow{
    color:var(--green);
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.conv-content h1{
    font-size:72px;
    line-height:1.05;
    margin:18px 0;
    color:#222;
}

.conv-content h1 span{
    display:block;
    color:var(--green);
}

.conv-content p{
    font-size:20px;
    color:var(--muted);
    line-height:1.8;
    max-width:520px;
}

.conv-image img{
    width:100%;
    display:block;
    border-radius:24px;
}

.hero-icons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:45px;
}

.hero-icons .item{
    text-align:center;
}

.hero-icons img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.hero-icons span{
    display:block;
    margin-top:10px;
    font-weight:600;
}

/* PRODUCTS */

.conv-products{
    padding:90px 0;
    background:#fff;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

.product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    text-align:center;
    text-decoration:none;
    color:inherit;
    transition:.3s;
    display:flex;
    flex-direction:column;
    min-height:310px;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:18px;
    background:#fafafa;
}

.product-card h3{
    margin:18px 12px 6px;
    font-size:20px;
    color:#222;
}

.product-card p{
    margin:0 12px 20px;
    color:#666;
    font-size:14px;
    line-height:1.5;
}

.view-all-btn{
    margin-top:40px;
    text-align:center;
}

.nf-btn,
.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    border:2px solid var(--green);
    color:var(--green);
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.nf-btn:hover,
.cta-btn:hover{
    background:var(--green);
    color:#fff;
}

/* WHY */

.why-conventional{
    padding:90px 0;
    background:var(--bg);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    border:1px solid var(--border);
}

.why-box i{
    width:70px;
    height:70px;
    background:#eef8f0;
    color:#1b7f3b;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 25px;
}

.why-box h3{
    margin:20px 0 10px;
    color:var(--green-dark);
}

.why-box p{
    color:#666;
    line-height:1.7;
}

/* CERTIFICATIONS */

.conv-certifications{
    padding:80px 0;
}

.certification-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.cert-card{
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    min-height:120px;
}

.cert-card img{
    max-width:100%;
    max-height:70px;
}

/* CTA */

.conv-cta{
    padding:70px 0;
    background:linear-gradient(135deg,#0f6d30,#2d9448);
}

.cta-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr auto;
    gap:35px;
    align-items:center;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.cta-icon img{
    width:60px;
}

.cta-left h2{
    color:#fff;
    font-size:42px;
    margin:0;
}

.cta-left span{
    display:block;
}

.cta-middle p{
    color:#fff;
    line-height:1.8;
}

.cta-btn{
    background:#fff;
}

/* RESPONSIVE */

@media(max-width:1200px){
.products-grid{grid-template-columns:repeat(3,1fr);}
.why-grid{grid-template-columns:repeat(2,1fr);}
.certification-grid{grid-template-columns:repeat(3,1fr);}
.conv-grid{grid-template-columns:1fr;}
.cta-wrapper{grid-template-columns:1fr;text-align:center;}
.cta-left{justify-content:center;}
}

@media(max-width:768px){
.conv-content h1{font-size:48px;}
.hero-icons{grid-template-columns:repeat(2,1fr);}
.products-grid{grid-template-columns:repeat(2,1fr);}
.certification-grid{grid-template-columns:repeat(2,1fr);}
.section-heading h2{font-size:30px;}
}

@media(max-width:576px){
.products-grid,
.why-grid,
.certification-grid{
grid-template-columns:1fr;
}
.hero-icons{
grid-template-columns:1fr 1fr;
}
.conv-content h1{
font-size:38px;
}
.conv-content p{
font-size:16px;
}
}
