.section-spacer{
    padding: 200px 0;
}


/* --- PILLARS --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--mv-blue);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--mv-blue);
}

/* --- ADVANTAGE --- */
/* --- METRIC ADVANTAGE (ZIG ZAG) --- */
.advantage {
    background-color: var(--bg-light);
}

.zigzag-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zigzag-content h2 {
    margin-bottom: 24px;
}

.zigzag-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.zigzag-list li svg {
    color: var(--mv-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.zigzag-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- DIVISIONS --- */
.divisions {
    background: var(--text-dark);
    color: white;
    padding: 120px 0;
}

.division-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.division-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: transform 0.3s ease;
}

.division-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.division-card:hover .division-bg {
    transform: scale(1.05);
}

.division-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-horticulture {
    background: linear-gradient(to top, rgba(132, 148, 131, 0.95), rgba(132, 148, 131, 0.3));
}

.overlay-poultry {
    background: linear-gradient(to top, rgba(160, 110, 50, 0.9), rgba(160, 110, 50, 0.3));
}

.division-text * {
    position: relative;
    z-index: 3;
    color: white;
}

/* --- SOFTWARE ECOSYSTEM --- */
.ecosystem {
    border-bottom: 1px solid var(--border-color);
}

.ecosystem h4 {
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.logo-cloud {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.logo-cloud img {
    height: 40px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-cloud img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- TESTIMONIAL --- */
.testimonial {
    background: var(--bg-light);
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 2rem;
    font-weight: 500;
    color: var(--mv-blue);
    line-height: 1.4;
    margin-bottom: 32px;
}

.quote-author {
    font-weight: 700;
    color: var(--text-dark);
}

.quote-role {
    font-size: 0.9rem;
    color: var(--text-light);
}



/* --- RESPONSIVE HOME STYLES --- */

/* Tablet & Large Mobile (Under 992px) */
@media (max-width: 968px) {

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr); /* 3 columns to 2  */
        gap: 24px;
    }

    .zigzag-layout {
        grid-template-columns: 1fr; /* Stack images and text  */
        gap: 40px;
    }

    .division-grid {
        grid-template-columns: 1fr; /* Stack division cards  */
    }

    .quote-text {
        font-size: 1.5rem; /* Downsized from 2rem for readability  */
    }
}

/* Small Mobile (Under 600px) */
@media (max-width: 600px) {

    .pillars-grid {
        grid-template-columns: 1fr; /* Single column for pillars  */
    }

    .pillar-card {
        padding: 30px 20px; /* Reduced padding for small screens  */
    }

    .division-card {
        height: 350px; /* Shorter cards on mobile  */
    }

    /* Reverse Zig-Zag order for mobile so text always follows image (Optional) */
    /* To use this, ensure your HTML structure is consistent */
    .zigzag-layout > *:nth-child(1) {
        order: 2;
    }
    .zigzag-layout > *:nth-child(2) {
        order: 1;
    }

    .logo-cloud {
        gap: 20px;
    }

    .logo-cloud img {
        height: 30px; /* Smaller partner logos  */
    }
}