:root {
    --green: #69ab46;
    --green-dark: #3f6b2c;
    --green-deep: #20321a;
    --paper: #f7f9f3;
    --paper-alt: #ecf2e5;
    --ink: #1c231a;
    --ink-soft: #515c4d;
    --amber: #e2a640;
    --line: #d7e0cd;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(32, 50, 26, 0.08);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container,
.container-fluid,
.wrap {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {

    .container,
    .wrap {
        width: 1170px
    }
}

.eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--amber);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(105, 171, 70, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(63, 107, 44, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.btn-block {
    width: 100%;
}

.page-template-landing-template .page-wrapper {
    margin-top: -60px;
    background: #fff;
    z-index: 1;
    position: relative;
    padding-top: 0px !important;
}

section {
    padding: 88px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: 30px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 16.5px;
    margin-top: 14px;
}

/* ---------- MACHINE SHOWCASE ---------- */
.machine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width:900px) {
    .machine-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.machine-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.machine-media img {
    width: 100%;
    height: auto;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    background: #0d150a;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.machine-copy ul {
    list-style: none;
    margin-top: 22px;
}

.machine-copy li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink-soft);
}

.machine-copy li::before {
    content: "—";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.caption {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 10px;
}

/* ---------- BENEFITS ---------- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--paper-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-size: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
}

/* ---------- HOW IT WORKS (signature timeline) ---------- */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 6%;
    right: 6%;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--amber) 100%);
    border-radius: 3px;
    z-index: 0;
}

@media(max-width:760px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .timeline::before {
        display: none;
    }
}

.t-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}

@media(max-width:760px) {
    .t-step {
        text-align: left;
        padding-left: 56px;
    }
}

.t-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-deep);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-weight: 600;
    font-size: 13px;
    border: 4px solid var(--paper);
}

@media(max-width:760px) {
    .t-dot {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
}

.t-step h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
}

.t-step p {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ---------- SPECS ---------- */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.spec-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 20px;
}

.spec-stat .n {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
}

.spec-stat .l {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-top: 4px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.size-card {
    background: var(--green-deep);
    color: white;
    border-radius: var(--radius);
    padding: 26px 24px;
}

.size-card.mid {
    background: var(--green-dark);
}

.size-card.small {
    background: #2c4322;
}

.size-card h4 {
    color: white;
    font-size: 19px;
    margin-bottom: 8px;
}

.size-card p {
    font-size: 14px;
    color: #d9e8cf;
}

.size-card .tag {
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #bcd9ac;
    margin-bottom: 10px;
    display: block;
}

/* ---------- REPEAT CTA ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    color: white;
}

.cta-band h2 {
    color: white;
    font-size: clamp(24px, 3.4vw, 34px);
    margin-bottom: 14px;
    font-size: 30px;
}

.cta-band p {
    color: #d9e8cf;
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 16px;
}

.cta-band-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-amber {
    background: var(--amber);
    color: var(--green-deep);
    box-shadow: 0 8px 20px rgba(226, 166, 64, 0.35);
}

.btn-amber:hover {
    background: #cf9535;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline-light:hover {
    border-color: white;
}

/* ---------- FORM ---------- */
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 720px;
    margin: 0 auto;
}

.form-card br {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

@media(min-width:640px) {
    .form-row.two {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 14.5px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .15s ease;
}

.form-card select {
    padding: 0 10px;
}

.form-card textarea {
    height: 150px;
}

.form-card input:focus,
.form-card select:focus {
    outline: none;
    border-color: var(--green);
}

.form-card .wpcf7-submit {
    background-color: #63c132;
}

/* #form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

#form-success .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

#form-success h3 {
    margin-bottom: 8px;
}

#form-success p {
    color: var(--ink-soft);
    font-size: 14.5px;
} */

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--green-deep);
}

.faq-q .plus {
    font-size: 20px;
    color: var(--green);
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    padding-bottom: 22px;
    color: var(--ink-soft);
    font-size: 14.5px;
    max-width: 680px;
}


.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}


.service-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
}

.service-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.41);
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.service-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

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

.service-card {
    background-color: rgb(255 255 255 / 10%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(54px);
    border: 2px solid #FFFFFF21;
    border-radius: 11px;
    padding: 15px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    transition: .3s;
    height: 150px;
    align-items: center;
}

.service-card:hover {
    background: rgba(135, 110, 85, .65);
    transform: translateY(-5px);
}

.service-card img {
    width: 42px;
    margin: auto;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7496%) hue-rotate(206deg) brightness(99%) contrast(104%);
}

.service-card h3 {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.features-section {
    background: #6cab43;
    padding: 50px 20px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.feature-item {
    flex: 1;
}

.feature-icon {
    margin: 0 auto 18px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin: auto;
}

.feature-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.products-section {
    padding: 70px 0;
    background: #f8f8f8;
}

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

.product-card {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    transition: .3s;
}

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

.product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.product-img img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.product-content {
    padding: 10px;
}

.product-content h3 {
    color: #69b33d;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-content p {
    color: #868686;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 5px;
    min-height: 125px;
}

.product-content a {
    color: #69b33d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14PX;
}

.product-content a:hover {
    text-decoration: underline;
}

.clients-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    color: #2f3a4c;
    margin-bottom: 45px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.client-box {
    height: 105px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.client-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.client-box img {
    object-fit: contain;
}

.food-waste-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("http://www.wastexpert.com/wp-content/uploads/2026/04/Sustainable-Buffets-Turning-Waste-into-Wealth-for-SEA-Resorts-aimge.jpeg") center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.food-waste-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .95) 0%,
            rgba(0, 0, 0, .75) 35%,
            rgba(0, 0, 0, .15) 70%,
            rgba(0, 0, 0, 0) 100%);
}

.banner-content {
    width: 520px;
    color: #fff;
    z-index: 11;
    position: relative;
}

.banner-content h1 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.banner-content h1 span {
    display: block;
    color: #63c132;
    margin-top: 8px;
}

.banner-content p {
    font-size: 26px;
    color: #f5f5f5;
    font-weight: 300;
}

/* Bottom Wave */
.video-section {
    padding: 80px 0px;
    background-color: var(--paper-alt);
}

.video-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #222;
}

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

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    background: #000;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#consultation,
#benefits{
    background-color: var(--paper-alt);
}

/* Tablet */
@media (max-width:992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width:576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-section h2 {
        font-size: 28px;
    }
}

/* Responsive */
@media(max-width:991px) {

    .food-waste-banner {
        height: 420px;
    }

    .container {
        padding: 40px;
    }

    .banner-content {
        width: 100%;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .food-waste-banner {
        height: 360px;
    }

    .container {
        padding: 20px;
    }

    .banner-content h1 {
        font-size: 30px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .wave svg {
        height: 70px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .client-box {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:992px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width:768px) {
    .feature-item {
        width: 100%;
    }

}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .gauge-fill {
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

#main-menu li:not(:last-child) {
    display: none !important;
}

#main-menu li:last-child {
    display: block !important;

}

#main-menu li:last-child a {
    font-size: 18px;
    padding-bottom: 10px;
    padding-right: 35px;
    padding-top: 10px;
    padding-left: 35px;
    background-color: #69ab46 !important;
    display: inline;
    color: #ffff;
    border-radius: 20px;
}