

.gb-explore {
    padding: 90px 0 40px;
    background: var(--brand-cream, #f7f3ec);
}

.gb-explore__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
}

.gb-explore__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gb-explore__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--agriox-secondary, #567a3d);
    color: #ffffff;
    padding: 20px 26px;
    border-radius: 12px;
    box-shadow: 0 20px 40px -28px rgba(43, 40, 43, 0.5);
    transition: all 220ms ease;
}

.gb-explore__item:hover {
    background: var(--brand-gold-dark, #b58a32);
    color: #ffffff;
    transform: translateY(-4px);
}

.gb-explore__icon {
    font-size: 24px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.gb-explore__label {
    font-family: var(--agriox-font, 'Poppins', sans-serif);
    font-weight: 700;
    font-size: 16px;
}

.gb-explore__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-explore__badge {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 6px solid var(--agriox-base, #cfae53);
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--brand-cream, #f7f3ec) 45%, var(--agriox-base, #cfae53) 145%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    box-shadow: 0 30px 65px -25px rgba(181, 138, 50, 0.5);
    text-align: center;
}

.gb-explore__badge-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.35;
    color: var(--agriox-primary, #2b282b);
}

@media (max-width: 991px) {
    .gb-explore__grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .gb-explore__col {
        width: 100%;
        max-width: 420px;
    }

    .gb-explore__center {
        order: -1;
        margin-bottom: 10px;
    }

    .gb-explore__badge {
        width: 220px;
        height: 220px;
    }
}

.gb-ecosystem {
    padding: 80px 0 70px;
}

.gb-ecosystem__title {
    margin-bottom: 44px;
}

.gb-ecosystem__stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.gb-ecosystem__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(43, 40, 43, 0.08);
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 20px 40px -30px rgba(43, 40, 43, 0.3);
}

.gb-ecosystem__check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--agriox-secondary, #567a3d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.gb-ecosystem__stat h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    margin: 0 0 2px;
    color: var(--agriox-primary, #2b282b);
    line-height: 1;
}

.gb-ecosystem__stat p {
    margin: 0;
    font-size: 12.5px;
    color: var(--agriox-color-1, #5c5a5a);
}

.gb-ecosystem__nav-title {
    text-align: center;
    margin-bottom: 26px;
}

.gb-ecosystem__nav-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--agriox-primary, #2b282b);
}

.gb-ecosystem__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.gb-ecosystem__nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--agriox-secondary, #567a3d);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: var(--agriox-font, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 14px;
    transition: all 220ms ease;
}

.gb-ecosystem__nav-item:hover {
    background: var(--brand-gold-dark, #b58a32);
    color: #ffffff;
    transform: translateY(-3px);
}

.gb-ecosystem__nav-icon {
    font-size: 15px;
}

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

@media (max-width: 575px) {
    .gb-ecosystem__stats {
        grid-template-columns: 1fr;
    }
}

.gb-journey {
    padding: 100px 0;
    background: var(--brand-cream, #f7f3ec);
    position: relative;
    overflow: hidden;
}

.gb-journey .sec-title {
    margin-bottom: 60px;
}

.gb-journey__wheel {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.gb-journey__wheel::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 2px dashed rgba(var(--agriox-secondary-rgb, 86, 122, 61), 0.35);
    animation: gbJourneySpin 40s linear infinite;
}

@keyframes gbJourneySpin {
    to {
        transform: rotate(360deg);
    }
}

.gb-journey__wheel:hover::before,
.gb-journey__wheel:hover .gb-journey__center-icon {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

    .gb-journey__wheel::before,
    .gb-journey__center-icon {
        animation: none;
    }
}

.gb-journey__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--agriox-secondary-rgb, 86, 122, 61), 0.92), rgba(var(--agriox-primary-rgb, 43, 40, 43), 0.9)), url('../images/backgrounds/cta-v1-bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 30px 60px -20px rgba(43, 40, 43, 0.4);
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.gb-journey__center-icon {
    display: inline-block;
    font-size: 30px;
    color: var(--agriox-base, #cfae53);
    animation: gbJourneySpin 6s linear infinite;
}

.gb-journey__center-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}

.gb-journey__step {
    position: absolute;
    width: 30%;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 20px 45px -25px rgba(43, 40, 43, 0.3);
    text-align: center;
    z-index: 1;
}

.gb-journey__step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--agriox-primary, #2b282b);
    margin: 0 0 6px;
}

.gb-journey__step p {
    font-size: 12.5px;
    color: var(--agriox-color-1, #5c5a5a);
    margin: 0;
    line-height: 1.5;
}

.gb-journey__step--1 { top: 4%;  left: 50%; transform: translate(-50%, 0); }
.gb-journey__step--2 { top: 33%; left: 90%; transform: translate(-50%, -50%); }
.gb-journey__step--3 { top: 80%; left: 75%; transform: translate(-50%, -50%); }
.gb-journey__step--4 { top: 80%; left: 25%; transform: translate(-50%, -50%); }
.gb-journey__step--5 { top: 33%; left: 10%; transform: translate(-50%, -50%); }

@media (max-width: 991px) {
    .gb-journey__wheel {
        max-width: 480px;
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gb-journey__wheel::before {
        display: none;
    }

    .gb-journey__center {
        position: static;
        transform: none;
        width: 180px;
        margin: 0 auto 28px;
    }

    .gb-journey__step {
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 16px;
    }

    .gb-journey__step:last-child {
        margin-bottom: 0;
    }
}
