.custom-container {
    width: 100%;
    padding: 0px 80px;
}

@media (max-width: 768px) {
    .custom-container {
        width: 100%;
        padding: 0px 20px;
    }
}

.desktop {
    display: flex !important;
}

.mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

body,
body .wrapper {
    background: #FFF9F4 !important;
}

section {
    background: #FFF9F4 !important;
}

/* --------------------------------------------------------------------------
   1. Header Base
   -------------------------------------------------------------------------- */
.esg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.esg-header.esg-header--scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.esg-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    min-height: 100px;
    transition: padding 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__inner {
    padding: 12px 0;
}

/* --------------------------------------------------------------------------
   2. Logo
   -------------------------------------------------------------------------- */
.esg-header__logo {
    flex-shrink: 0;
}

.esg-header__logo a {
    display: inline-block;
    text-decoration: none;
}

.esg-header__logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.esg-header__logo-dark {
    display: none;
}

.esg-header__logo-white {
    display: block;
}

.esg-header.esg-header--scrolled .esg-header__logo-dark {
    display: block;
}

.esg-header.esg-header--scrolled .esg-header__logo-white {
    display: none;
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.esg-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.esg-header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.esg-header__menu-item {
    position: relative;
}

.esg-header__menu-link {
    display: inline-block;
    padding: 8px 18px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    font-family: 'Manrope', sans-serif;
    color: #E6E7E8;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.esg-header__menu-link:hover,
.esg-header__menu-link:focus {
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
}

.esg-header.esg-header--scrolled .esg-header__menu-link {
    color: #212121;
}

.esg-header.esg-header--scrolled .esg-header__menu-link:hover,
.esg-header.esg-header--scrolled .esg-header__menu-link:focus {
    color: #E8611A;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   4. Search Button
   -------------------------------------------------------------------------- */
.esg-header__search {
    margin-left: 10px;
    flex-shrink: 0;
}

.esg-header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-header__search-btn:hover {
    opacity: 0.7;
}

.esg-header__search-btn svg path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__search-btn svg path {
    fill: #212121;
}

/* --------------------------------------------------------------------------
   5. Mobile Toggle
   -------------------------------------------------------------------------- */
.esg-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    flex-direction: column;
    gap: 5px;
    z-index: 10001;
    outline: none;
}

.esg-header__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__toggle-bar {
    background-color: #212121;
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. Fullscreen Search Overlay
   -------------------------------------------------------------------------- */
.esg-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.esg-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.esg-search-overlay__close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 8px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-search-overlay__close:hover {
    opacity: 0.7;
}

.esg-search-overlay__inner {
    width: 100%;
    max-width: 680px;
    padding: 0 20px;
}

.esg-search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 10px;
}

.esg-search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0;
    font-family: inherit;
}

.esg-search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.esg-search-overlay__submit {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-search-overlay__submit:hover {
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   7. Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .esg-header__toggle {
        display: flex;
    }

    .esg-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        transition: right 0.35s ease;
        z-index: 10000;
        overflow-y: auto;
    }

    .esg-header__nav.active {
        right: 0;
    }

    .esg-header__menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .esg-header__menu-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .esg-header__menu-link {
        color: #212121;
        padding: 14px 10px;
        font-size: 14px;
        display: block;
        width: 100%;
    }

    .esg-header__menu-link:hover,
    .esg-header__menu-link:focus {
        color: #E8611A;
        opacity: 1;
    }

    .esg-header__search {
        margin-left: 0;
        margin-top: 15px;
        padding: 0 10px;
    }

    .esg-header__search-btn svg path {
        fill: #212121;
    }

    .esg-header__nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .esg-header__nav.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* --------------------------------------------------------------------------
   8. Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .esg-header__logo-img {
        height: 28px;
    }

    .esg-header__inner {
        padding: 14px 0;
    }

    .esg-header.esg-header--scrolled .esg-header__inner {
        padding: 10px 0;
    }
}

/* --------------------------------------------------------------------------
   9. Utility
   -------------------------------------------------------------------------- */
body.esg-header-active nav.bootsnav {
    display: none !important;
}


/* ==========================================================================
   ESG Secondary Navigation (Sticky Tab Bar)
   ========================================================================== */

.esg-secondary-nav {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E0E0E0;
    z-index: 9998;
    transition: box-shadow 0.3s ease;
}

.esg-secondary-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: space-between;
}

.esg-secondary-nav__item {
    position: relative;
}

.esg-secondary-nav__link {
    display: inline-block;
    padding: 25px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
}

.esg-secondary-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F47920;
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease, left 0.3s ease;
}

.esg-secondary-nav__link:hover {
    color: #F47920;
    text-decoration: none;
}

.esg-secondary-nav__link.active {
    color: #1A1A1A;
    font-weight: 600;
}

.esg-secondary-nav__link.active::after {
    width: 100%;
    left: 0;
}

.esg-secondary-nav.is-phase2 {
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    left: 0;
    right: 0;
}

.esg-secondary-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


.esg-header.esg-header--hidden {
    pointer-events: none;
    visibility: hidden;
}

.esg-secondary-nav-placeholder {
    display: none;
    width: 100%;
}

.esg-secondary-nav-placeholder.is-active {
    display: block;
}


@media (max-width: 991px) {
    .esg-secondary-nav .custom-container {
        overflow: hidden;
    }

    .esg-secondary-nav__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .esg-secondary-nav__list::-webkit-scrollbar {
        display: none;
    }

    .esg-secondary-nav__item {
        flex: 0 0 auto;
        /* prevents items from shrinking */
    }

    .esg-secondary-nav__link {
        display: block;
        padding: 14px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .esg-secondary-nav__link {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ==========================================================================
   ESG Overview New - Hero Banner Slider
   ========================================================================== */

.esg-hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.esg-hero-swiper {
    width: 100%;
    height: 100%;
}

.esg-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.esg-hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.esg-hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .esg-hero-slide__bg img {
    transform: scale(1);
}

.esg-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.esg-hero-slide__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 620px;
    padding: 0 5% 80px;
}

.esg-hero-slide__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
    font-family: 'Manrope', sans-serif;
    line-height: 22px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.swiper-slide-active .esg-hero-slide__label {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 22px;
    font-style: normal;
    font-family: 'Alexandria', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.swiper-slide-active .esg-hero-slide__title {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__desc {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 32px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.swiper-slide-active .esg-hero-slide__desc {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s,
        background 0.3s ease;
}

.swiper-slide-active .esg-hero-slide__cta {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta:hover {
    background-color: #d06a1c;
    text-decoration: none;
    color: #ffffff;
}


/* ==========================================================================
   Hero Bottom Bar & Custom Pagination
   ========================================================================== */

.esg-hero-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

/* Hide Swiper's default pagination — we use our own */
.esg-hero-pagination.swiper-pagination {
    display: none !important;
}

/* Hide old counter */
.esg-hero-slide-counter {
    display: none;
}

/* ---- Custom Pagination Component ---- */
.esg-custom-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Each pagination item is a flex row: dot + (line + number) */
.esg-pag-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0;
    position: relative;
}

/* The dot */
.esg-pag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
    box-sizing: border-box;
    position: relative;
}

.esg-pag-item:hover .esg-pag-dot {
    background: rgba(255, 255, 255, 0.75);
}

/* Active dot — orange ring outline */
.esg-pag-item.active .esg-pag-dot {
    width: 10px;
    height: 10px;
    background: #F47920;
}

.esg-pag-item.active .esg-pag-dot::after {
    content: '';
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid #F47920;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -48%);
}

.esg-pag-item.active:hover .esg-pag-dot {
    background: #F47920;
}

/* The line — hidden by default, expands when active */
.esg-pag-line {
    display: block;
    width: 0;
    height: 2px;
    background-color: #e87722;
    transition: width 0.4s ease, margin 0.4s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.esg-pag-item.active .esg-pag-line {
    width: 28px;
    margin-left: 5px;
}

/* The number — hidden by default, fades in when active */
.esg-pag-num {
    font-size: 14px;
    font-weight: 400;
    color: #F47920;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s ease, opacity 0.35s ease 0.1s, margin 0.35s ease;
    margin-left: 0;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.esg-pag-item.active .esg-pag-num {
    width: 22px;
    opacity: 1;
    margin-left: 5px;
}

/* ---- Navigation Arrows ---- */
.esg-hero-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esg-hero-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.esg-hero-nav__btn:hover {
    border-color: #e87722;
    color: #e87722;
}

.esg-hero-nav__btn:active {
    background-color: rgba(232, 119, 34, 0.15);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .esg-hero-slide__content {
        max-width: 520px;
        padding-bottom: 100px;
    }

    .esg-hero-slide__title {
        font-size: clamp(28px, 4vw, 44px);
    }
}

@media (max-width: 768px) {
    .esg-hero-banner-section {
        height: 100vh;
        min-height: 550px;
    }

    .esg-hero-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .esg-hero-slide__content {
        max-width: 100%;
        padding: 80px 6% 0px;
        justify-content: center;
        height: 80%;
        align-items: center;
        text-align: center;
    }

    .esg-hero-slide__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    .esg-hero-slide__title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .esg-hero-slide__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .esg-hero-bottom-bar {
        bottom: 20px;
        padding: 0 6%;
    }

    .esg-custom-pagination {
        gap: 14px;
    }

    .esg-pag-dot {
        width: 8px;
        height: 8px;
    }

    .esg-pag-item.active .esg-pag-dot {
        width: 12px;
        height: 12px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 20px;
    }

    .esg-pag-num {
        font-size: 12px;
    }

    .esg-hero-nav__btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .esg-hero-slide__label {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .esg-hero-slide__title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 44px;
    }

    .esg-hero-slide__desc {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 24px;
    }

    .esg-hero-slide__cta {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 28px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 16px;
    }

    .esg-pag-num {
        font-size: 14px;
    }

    .esg-pag-item.active .esg-pag-num {
        width: 18px;
    }
}


/* ==========================================================================
   Our Impact Css
   ========================================================================== */

.esg-impact-section {
    background: #853F00;
    min-height: 340px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 60px 0;
}

.section-header h2 {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    text-transform: capitalize;
    color: #E6E7E8;
}

/* ==========================================================================
   Four Pillars Section
   ========================================================================== */

.four-pillars-section {
    position: relative;
    padding-block: 80px 112px;

    .line {
        width: 100%;
        height: 1px;
        background: #000;
    }

    .section-header {
        color: #000;
        font-family: 'Alexandria', sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: capitalize;

        display: block;

        padding: 0;
    }

    .cloudsImg {
        position: absolute;
        top: 32px;
        right: 0;
        width: auto;
        height: auto;

        img {
            width: auto;
            height: auto;
        }
    }
}

/* ==========================================================================
   Four Pillars Cards
   ========================================================================== */

.four-pillars-cards {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-top: 40px;
}

.pillar-card {
    position: relative;
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 24px;
    height: 403px;
    display: flex;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.pillar-card:hover {
    text-decoration: none;
    color: #fff;
}

.pillar-card__gradient {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    width: 0;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.pillar-card:hover .pillar-card__gradient {
    width: 100%;
}

.pillar-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.pillar-card__header {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pillar-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pillar-card__title {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-card__title {
    color: #fff;
}

a.pillar-card {
    min-height: 470px;
}

.pillar-card__arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: filter 0.35s ease;
}

.pillar-card:hover .pillar-card__arrow {
    filter: brightness(0) invert(1);
}

.pillar-card__desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin: 0;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-card__desc {
    color: #fff;
}

.pillar-card__icons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-card__icons-row {
    display: grid;
    gap: 15px 15px;
    align-items: flex-start;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.pillar-card__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.pillar-card__icon-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.35s ease;
}

.pillar-card:hover .pillar-card__icon-item img {
    filter: brightness(0) invert(1);
}

.pillar-card__icon-item span {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    text-align: center;
    transition: color 0.35s ease;
}

.pillar-card:hover .pillar-card__icon-item span {
    color: #fff;
}

/* --------------------------------------------------------------------------
   Four Pillars - Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .pillar-card {
        height: auto;
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    .four-pillars-cards {
        flex-wrap: wrap;
    }

    .pillar-card {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
        height: auto;
    }
}

@media (max-width: 768px) {
    .four-pillars-cards {
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .four-pillars-cards::-webkit-scrollbar {
        display: none;
    }

    .pillar-card {
        flex: 0 0 305px;
        min-width: 305px;
        height: 403px;
        scroll-snap-align: start;
    }

    .four-pillars-section {
        padding-block: 40px 60px;
    }

    .four-pillars-section .section-header {
        font-size: 24px;
    }
}


/* ==========================================================================
   Inner Tabs Section
   ========================================================================== */
.inner-tabs-bar {
    border-bottom: 1px solid #000;
    transition: box-shadow 0.3s ease;
}

.inner-tabs-bar.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9997;
    background: #FFF9F4;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.inner-tabs-bar-placeholder {
    display: none;
    width: 100%;
}

.inner-tabs-bar-placeholder.is-active {
    display: block;
}

.inner-tabs {
    display: flex;
    align-items: flex-end;
}

.inner-tab {
    position: relative;
    padding: 20px 30px;
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    text-align: center;
    white-space: nowrap;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
    margin-bottom: -1px;
}

.inner-tab:hover {
    border-bottom: 1px solid #000;
}

.inner-tab.active {
    background: #FFEFE1;
    border: 1px solid #000;
    border-bottom: 1px solid #FFEFE1;
}

/* --------------------------------------------------------------------------
   Inner Tab Panels
   -------------------------------------------------------------------------- */

.inner-tab-panels {
    padding: 60px 0 0;
}

.inner-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.inner-tab-panel.active {
    display: block;
}

.inner-tab-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Inner Tabs - Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .inner-tabs-section {
        padding-top: 60px;
    }

    .inner-tabs-bar {
        position: relative;
        border-bottom: none;
    }

    .inner-tabs-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: #000;
        pointer-events: none;
    }

    .inner-tabs {
        position: relative;
        z-index: 1;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .inner-tabs::-webkit-scrollbar {
        display: none;
    }

    .inner-tab {
        font-size: 14px;
        padding: 16px 20px;
        margin-bottom: 0;
        border-bottom: 1px solid #000;
    }

    .inner-tab.active {
        border-top: 1px solid #000;
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid transparent;
    }
}

@media (max-width: 768px) {
    .inner-tabs-section {
        padding-top: 40px;
    }

    .inner-tabs-bar .custom-container {
        padding: 0;
    }

    .inner-tabs {
        padding-inline: 20px;
    }

    .inner-tab {
        font-size: 16px;
        padding: 20px 30px;
    }

    .inner-tab-panels {
        padding: 40px 0;
    }
}


/* ==========================================================================
   Pillar Intro Section
   ========================================================================== */

.pillar-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 199px;
}

.pillar-intro__left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 37.5%;
    flex-shrink: 0;
}

.pillar-intro__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
}

.pillar-intro__heading {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.pillar-intro__right {
    flex: 1;
    max-width: 49.21%;
}

.pillar-intro__right p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 1em;
}

.pillar-intro__right p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Pillar Intro - Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .pillar-intro {
        gap: 80px;
    }
}

@media (max-width: 991px) {
    .pillar-intro {
        flex-direction: column;
        gap: 32px;
    }

    .pillar-intro__left {
        width: 100%;
    }

    .pillar-intro__right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pillar-intro__heading {
        font-size: 26px;
    }

    .pillar-intro__right p {
        font-size: 14px;
    }
}


/* ==========================================================================
   Ornamental Frame Section
   ========================================================================== */

.ornamental-frame-section {
    position: relative;
}

.ornamental-frame {
    position: relative;
    width: 100%;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.ornamental-frame__border {
    width: 100%;
    height: auto;
}

.ornamental-frame__content {
    max-width: 1080px;
    min-width: 285px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-inline: 10.5vw;
}

/* @media (max-width: 768px) {
    .ornamental-frame__content {
        max-width: 285px;
        min-width: 0;
        padding-inline: 20px;
    }
} */

.ornamental-frame__content h2 {
    color: #000;
    text-align: center;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    margin: 0;
}

.ornamental-frame__content p {
    color: #000;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
}


/* ==========================================================================
   Planet Positive Intro Section
========================================================================== */

.pp-intro-section {
    position: relative;
    padding-bottom: 80px;
}

.pp-intro-decoration {
    position: absolute;
    top: -60px;
    right: 80px;

    img {
        width: auto;
        height: auto;
        object-fit: cover;
    }
}

.pp-intro__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 451px;
}

.pp-intro__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
}

.pp-intro__heading {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.pp-intro__content {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-top: 48px;
}



.pp-intro__image {
    width: 49.2%;
    flex-shrink: 0;
}

.pp-intro__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 630 / 480;
    object-fit: cover;
    display: block;
}

.pp-intro__text {
    flex: 1;
    min-width: 0;
}

.pp-intro__text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 1em;
}

.pp-intro__text p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Planet Positive Intro - Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .pp-intro__content {
        gap: 6%;
    }
}

@media (max-width: 991px) {
    .pp-intro__content {
        flex-direction: column;
        gap: 32px;
    }

    .pp-intro__image {
        width: 100%;
    }

    .pp-intro__text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pp-intro-section {
        padding-block: 40px;
    }

    .pp-intro__header {
        max-width: 100%;
    }

    .pp-intro__heading {
        font-size: 26px;
    }

    .pp-intro__content {
        margin-top: 32px;
        gap: 24px;
    }

    .pp-intro__text p {
        font-size: 14px;
    }
}

/* ==========================================================================
   Focus Areas Section
   ========================================================================== */

.focus-areas-section {
    position: relative;
    background: #85411E !important;
    padding: 80px 0;
    overflow: hidden;
}

.focus-areas__clouds {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.focus-areas__cloud {
    position: absolute;
}

.focus-areas__cloud--left {
    top: 10%;
    left: 5%;
    width: 280px;
    height: auto;
}

.focus-areas__cloud--right {
    top: 5%;
    left: 95.5%;
    width: 157px;
    height: auto;
}

.focus-areas__header {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.focus-areas__label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.focus-areas__title {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 16px;
}

.focus-areas__subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    max-width: 630px;
    margin: 0 auto;
}

/* ---- Carousel ---- */

.focus-areas__carousel {
    position: relative;
    z-index: 1;
    padding: 0 80px;
}

.focus-areas-swiper {
    overflow: visible;
}

.focus-areas-swiper .swiper-wrapper {
    align-items: stretch;
}

.focus-areas-swiper .swiper-slide {
    height: auto;
}

.focus-card {
    background: #FFF9F4;
    padding: 24px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.focus-card__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.focus-card__title {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.focus-card__desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

.focus-card__desc strong {
    font-weight: 700;
}

/* ---- Footer / Progress ---- */

.focus-areas__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

.focus-areas__progress {
    width: 613px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.focus-areas__progress-bar {
    height: 100%;
    background: #F47920;
    border-radius: 2px;
    width: 25%;
    transition: width 0.4s ease;
}

.focus-areas__counter {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Focus Areas - Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .focus-areas-section {
        padding: 40px 0;
    }

    .focus-areas__carousel {
        padding: 0 20px;
    }

    .focus-areas__cloud--left {
        top: 80px;
        left: -26px;
        width: 96px;
    }

    .focus-areas__cloud--right {
        top: 18px;
        right: -10px;
        width: 66px;
    }

    .focus-areas__header {
        padding-inline: 40px;
    }

    .focus-areas__title {
        font-size: 24px;
    }

    .focus-card {
        height: 95%;
        padding: 16px;
    }

    .focus-areas__footer {
        padding: 0 20px;
        margin-top: 24px;
    }

    .focus-areas__progress {
        width: 200px;
    }
}

/* ==========================================================================
   Our Goals Section
========================================================================== */

.our-goals-section {
    position: relative;
    padding-top: 80px;
}

.our-goals__clouds {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;

    img {
        width: auto;
        height: auto;
    }
}

.our-goals__tree-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;

    img {
        width: auto;
        height: auto;
    }
}

.our-goals__tree-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;

    img {
        width: auto;
        height: auto;
    }
}


.our-goals__content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.our-goals__left {
    width: 35.23%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;

}

.our-goals__label {
    color: #F36633;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.4px;
    margin: 0;
}

.our-goals__title {
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    margin: 0;
}

.our-goals__right {
    width: 51.95%;
    height: auto;
}

.our-goals__desc {
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
}

@media screen and (max-width: 900px) {

    .our-goals__tree-1 img,
    .our-goals__tree-2 img {
        width: 150px;
        height: 50px;
    }

    .our-goals__content {
        flex-direction: column;
    }

    .our-goals__left {
        width: 100%;
    }

    .our-goals__right {
        width: 100%;
    }
}


/* ==========================================================================
   Goals Circle Component
   ========================================================================== */

.goals-circle {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    min-height: 600px;
    padding: 55px 0;
}

.goals-circle__visual {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    min-height: 500px;
}

.goals-circle__svg {
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    transform: translateY(-50%);
    overflow: visible;
}

.goals-circle__center {
    position: absolute;
    top: 50%;
    right: 100px;
    width: 240px;
    height: 240px;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
}

.goals-circle__center-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
}

.goals-circle__center-tree {
    position: absolute;
    inset: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.goals-circle__cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    /* padding-left: 60px; */
}

.goals-card {
    background: linear-gradient(156deg, #CE5600 0.12%, #EA8033 114%);
    padding: 16px;
    min-height: 58px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.goals-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.goals-card p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.goals-circle__arc {
    fill: none;
    stroke: #D4763A;
    stroke-width: 30;
    opacity: 0.3;
}

.goals-circle__arc-active {
    fill: none;
    stroke: #F47920;
    stroke-width: 30;
    stroke-linecap: butt;
    transition: stroke-dashoffset 0.6s ease;
}

.goals-circle__pointer-num {
    font-family: 'Alexandria', sans-serif;
    font-size: 24px;
    font-weight: 400;
    fill: #fff;
}

.goals-circle__pointer-line {
    stroke: #C4C4C4;
    stroke-width: 2;
}

.goals-circle__pointer-line-active {
    stroke: #D4763A;
    stroke-width: 3;
    stroke-dasharray: var(--line-length);
    stroke-dashoffset: var(--line-length);
    transition: stroke-dashoffset 0.8s ease;
}

.goals-circle__pointer-line-active.animated {
    stroke-dashoffset: 0;
}

/* ==========================================================================
   Goals Circle Section
========================================================================== */



.chart-layout__circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-block: 60px;
}

/* ---- Mobile: Goals Full Circle + Stacked Cards ---- */

.page-wrapper-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 100px;
}

.chart-mobile {
    position: relative;
    width: 280px;
    height: 280px;
}

.chart-mobile svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-mobile__circle-container {
    position: relative;
    width: 280px;
    height: 280px;
    pointer-events: none;
}

.chart-mobile__circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-mobile__circle-center-bg {
    width: 100%;
    height: auto;
}

.chart-mobile__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.card-mobile {
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}

.chart-layout {
    position: relative;
    width: 1060px;
    min-height: 500px;
}

.chart-layout svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-layout__circle-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.card {
    position: absolute;
    left: 560px;
    width: 480px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Alexandria', sans-serif;
    transform: translateY(-50%);
}

/* ==========================================================================
   Our Progress Section
========================================================================== */

.our-progress-section {
    position: relative;
    background: linear-gradient(180deg, #FFF 0%, #FFF9F4 60.56%) !important;
    padding-block: 80px;
    width: 100%;
    height: auto;
}

.our-progress__decoration {
    position: absolute;
    top: 12%;
    left: 33%;
    width: auto;
    height: auto;
}

.our-progress__decoration img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.our-progress__tree-1 {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 140px;
    height: 60px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

.our-progress__tree-2 {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 140px;
    height: 60px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.our-progress__clouds {
    position: absolute;
    top: 45%;
    left: 50%;

    img {
        width: auto;
        height: auto;
        object-fit: cover;
    }
}

.our-progress__sun {
    position: absolute;
    right: -45px;
    top: 45%;

    img {
        width: 85px;
        height: 85px;
        object-fit: cover;
    }
}

.our-progress__content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 32px;
}

.our-progress__left {
    width: 21.32%;
}

.our-progress__title {
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.our-progress__right {
    width: 49.6%;
}

.our-progress__right p {
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
}

.our-progress__subtitle {
    padding-block: 80px;
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    text-transform: capitalize;
    margin: 0;
}

.our-progress__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.our-progress__stat-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;

    p {
        color: #F47920;
        font-family: 'Alexandria', sans-serif;
        font-size: 36px;
        font-weight: 400;
        line-height: 100%;
        margin: 0;
    }

    span {
        color: #000;
        font-family: 'Manrope', sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 170%;
        margin: 0;
    }
}

@media screen and (min-width:992px) and (max-width:1400px) {
    .our-progress__clouds {
        top: 40% !important;
        left: 50%;
    }

    .our-progress__sun {
        top: 40% !important;
    }
}

@media screen and (max-width: 768px) {
    .our-progress__content {
        flex-direction: column;
        gap: 12px;
        text-align: start;
    }

    .our-progress__left {
        width: 100%;
    }

    .our-progress__right {
        width: 100%;
    }

    .our-progress__title {
        font-size: 24px;
    }

    .our-progress__subtitle {
        padding-block: 32px;
        font-size: 24px;
        font-weight: 300;
    }

    .our-progress__decoration {
        top: 0%;
        right: -10%;
        left: unset;

        img {
            width: 150px;
        }
    }

    .our-progress__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
    }

    .our-progress__stat-item p {
        font-size: 24px;
    }

    .our-progress__stat-item span {
        font-size: 12px;
    }

    .our-progress__clouds {
        top: 38%;
        left: unset;
        right: 5%;

        img {
            width: 140px;
        }
    }

    .our-progress__sun {
        top: 40%;

        img {
            width: 75px;
            height: 75px;
        }
    }
}

/* ==========================================================================
   Major Takeaway Section
========================================================================== */

.major-takeaway__section {
    width: 100%;
    height: auto;
    margin-top: 100px;
}

.major-takeaway__label {
    color: #F36633;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0;
}

.major-takeaway__heading {
    color: #000;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    margin: 0;
    margin-top: 8px;
}

.major-takeaway__cards {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-top: 50px;
    padding-bottom: 124px;
}

.mt-cards--animate .major-takeaway__card__odd,
.mt-cards--animate .major-takeaway__card__even {
    opacity: 0;
    transition: opacity 0.6s ease-out, translate 0.6s ease-out;
}

.mt-cards--animate .major-takeaway__card__odd {
    translate: 0 -50px;
}

.mt-cards--animate .major-takeaway__card__even {
    translate: 0 50px;
}

.mt-cards--animate .major-takeaway__card__odd.mt-card--visible,
.mt-cards--animate .major-takeaway__card__even.mt-card--visible {
    opacity: 1;
    translate: 0 0;
}

.major-takeaway__card__odd {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 190 / 291;
    background-image: url('../images/esg-strategy/key-container-1.svg');
    background-size: auto auto;
    background-repeat: no-repeat;
    background-position: center;

    .major-takeaway__card__counter {
        position: absolute;
        top: 4vw;
        left: 6vw;

        span {
            color: #F47920;
            text-align: center;
            font-family: 'Alexandria', sans-serif;
            font-size: 32px;
            font-weight: 500;
            line-height: 48px;
            margin: 0;
        }
    }

    .major-takeaway__card__content {
        /* position: absolute;
        top: 124px;
        left: 23px; */
        max-width: 150px;
        width: 100%;
        height: auto;
        margin-top: 50px;

        p {
            color: #000;
            text-align: center;
            font-family: 'Manrope', sans-serif;
            font-size: 13px;
            font-weight: 500;
            line-height: 22px;
            margin: 0;
        }
    }
}

.major-takeaway__card__even {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 190 / 291;
    background-image: url('../images/esg-strategy/key-container-2.svg');
    background-size: auto auto;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(124px);

    .major-takeaway__card__counter {
        position: absolute;
        bottom: 4vw;
        left: 6vw;

        span {
            color: #F47920;
            text-align: center;
            font-family: 'Alexandria', sans-serif;
            font-size: 32px;
            font-weight: 500;
            line-height: 48px;
            margin: 0;
        }
    }

    .major-takeaway__card__content {
        /* position: absolute;
        bottom: 120px;
        left: 18px; */
        max-width: 160px;
        width: 100%;
        height: auto;
        margin-bottom: 50px;

        p {
            color: #000;
            text-align: center;
            font-family: 'Manrope', sans-serif;
            font-size: 13px;
            font-weight: 500;
            line-height: 22px;
            margin: 0;
        }
    }
}

@media screen and (min-width:1620px) {
    .major-takeaway__card__odd {
        .major-takeaway__card__counter {
            top: 5.5vw;
            left: 6.5vw;
        }
    }

    .major-takeaway__card__even {
        .major-takeaway__card__counter {
            bottom: 5.5vw;
            left: 6.5vw;
        }
    }
}

@media screen and (max-width: 1499px) {

    .major-takeaway__card__odd,
    .major-takeaway__card__even {
        background-size: 100% 100%;
    }
}

/* Tablet: 5-column grid with zigzag */
@media screen and (min-width: 501px) and (max-width: 1399px) {
    .major-takeaway__cards {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 8px;
        row-gap: 20px;
        margin-top: 40px;
        padding-bottom: clamp(50px, 12vw, 124px);
    }

    .major-takeaway__card__odd {
        background-size: 100% 100%;

        .major-takeaway__card__counter {
            top: 8%;
            left: 50%;
            transform: translateX(-50%);

            span {
                font-size: clamp(20px, 2.5vw, 32px);
            }
        }

        .major-takeaway__card__content {
            max-width: 85%;
            margin-top: clamp(20px, 4vw, 50px);

            p {
                font-size: clamp(11px, 1.3vw, 13px);
                line-height: clamp(16px, 2vw, 22px);
            }
        }
    }

    .major-takeaway__card__even {
        background-size: 100% 100%;
        transform: translateY(clamp(50px, 12vw, 124px));

        .major-takeaway__card__counter {
            bottom: 8%;
            left: 50%;
            transform: translateX(-50%);

            span {
                font-size: clamp(20px, 2.5vw, 32px);
            }
        }

        .major-takeaway__card__content {
            max-width: 85%;
            margin-bottom: clamp(20px, 4vw, 50px);

            p {
                font-size: clamp(11px, 1.3vw, 13px);
                line-height: clamp(16px, 2vw, 22px);
            }
        }
    }

    .major-takeaway__card__even:nth-child(n+6) {
        transform: none;
    }
}

@media screen and (max-width: 500px) {
    .major-takeaway__cards {
        flex-wrap: wrap;
        align-items: center;
        padding-bottom: 0;
    }

    .major-takeaway__card__odd {
        background-size: 100% 100%;
        width: 100%;
        aspect-ratio: 160 / 245;
        max-width: 160px;

        .major-takeaway__card__counter {
            top: 10%;
            left: 62px;

            span {
                font-size: 24px;
            }
        }

        .major-takeaway__card__content {
            max-width: 145px;

            p {
                font-size: 12px;
                line-height: 18px;
            }
        }
    }

    .major-takeaway__card__even {
        background-size: 100% 100%;
        width: 100%;
        aspect-ratio: 160 / 245;
        max-width: 160px;
        transform: translateY(44px);

        .major-takeaway__card__counter {
            bottom: 10%;
            left: 62px;

            span {
                font-size: 24px;
            }
        }

        .major-takeaway__card__content {
            max-width: 145px;

            p {
                font-size: 12px;
                line-height: 18px;
            }
        }
    }
}

.flowchart__subdepartments {
    width: 56.5%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}


.flowchart__subdept_box {
    width: max-content;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    &.img {
        width: 27px;
        height: 27px;
        object-fit: cover;
    }

    p {
        color: #000;
        font-family: 'Alexandria', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 140%;
        margin: 0;
    }
}


@media screen and (max-width: 768px) {
    .flowchart__subdepartments {
        width: 72.5%;
    }

    .flowchart__subdept_box {

        img {
            width: 18px;
            height: 18px;
        }
    }
}


/* ==========================================================================
   Planet Positive Intro Section
   ========================================================================== */

.pp-intro-section {
    padding-block: 80px;
}

.pp-intro__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 451px;
}

.pp-intro__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
}

.pp-intro__heading {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}

.pp-intro__text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 1em;
}

.pp-intro__text p:last-child {
    margin-bottom: 0;
}

.pp-intro__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ---- Desktop layout: image left, text right ---- */

.pp-intro__content {
    margin-top: 48px;
    overflow: hidden;
}

.pp-intro__content .pp-intro__image {
    width: 49.2%;
    float: left;
    margin-right: 5%;
}

.pp-intro__content .pp-intro__image img {
    aspect-ratio: 630 / 480;
}

.pp-intro__content .pp-intro__text {
    overflow: hidden;
}

/* ---- Mobile layout: text → image → text stacked ---- */

.pp-intro__content-mobile {
    margin-top: 12px;
}

.pp-intro__content-mobile>*+* {
    margin-top: 24px;
}

.pp-intro__content-mobile .pp-intro__image img {
    aspect-ratio: 335 / 287;
}

@media (max-width: 768px) {
    .pp-intro-section {
        padding-block: 40px;
    }

    .pp-intro__header {
        max-width: 100%;
    }

    .pp-intro__heading {
        font-size: 26px;
    }
}