/* =========================================================
   CLEANNORA — WHO WE ARE PAGE
   FINAL DESKTOP + MOBILE
========================================================= */

:root {
    --cn-green: #083D2B;
    --cn-green-dark: #052F22;
    --cn-gold: #F4BF19;
    --cn-white: #FFFFFF;
    --cn-soft: #F3F8F5;
    --cn-text: #12392C;
    --cn-muted: #64736D;
}


/* =========================================================
   PAGE
========================================================= */

.cn-about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    color: var(--cn-text);
}

.cn-about-page *,
.cn-about-page *::before,
.cn-about-page *::after {
    box-sizing: border-box;
}

.cn-about-page img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   HERO
========================================================= */

/*
   Your navbar is floating over the page.
   This creates enough space below it so the
   WHO WE ARE label and heading are never hidden.
*/

.cn-about-hero {
    position: relative;

    width: 100%;

    margin-top: 88px;

    min-height: 545px;

    display: grid;
    grid-template-columns: 51% 49%;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   HERO LEFT CONTENT
========================================================= */

.cn-about-hero-content {
    position: relative;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        45px
        45px
        50px
        clamp(55px, 7vw, 100px);
}


/* =========================================================
   LABEL
========================================================= */

.cn-about-label {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 14px;

    margin-bottom: 14px;

    border: 1px solid #E4E0D2;
    border-radius: 50px;

    background: #fff;

    color: var(--cn-green);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cn-about-label span {
    color: var(--cn-gold);
    font-size: 13px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.cn-about-hero h1 {
    max-width: 610px;

    margin: 0;

    color: var(--cn-green);

    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.02;

    font-weight: 900;

    letter-spacing: -2.3px;
}

.cn-about-hero h1 span {
    display: block;
}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.cn-about-hero h2 {
    max-width: 550px;

    margin: 11px 0 11px;

    color: var(--cn-gold);

    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.15;

    font-weight: 850;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.cn-about-hero p {
    max-width: 555px;

    margin: 0;

    color: #53615B;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   HERO STATS
========================================================= */

.cn-about-stats {
    width: 100%;
    max-width: 590px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 28px;
}

.cn-about-stat {
    text-align: center;
}

.cn-about-stat strong {
    display: block;

    color: var(--cn-green);

    font-size: 19px;
    line-height: 1;

    font-weight: 900;
}

.cn-about-stat span {
    display: block;

    margin-top: 7px;

    color: #596660;

    font-size: 10px;
    line-height: 1.3;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.cn-about-hero-image {
    position: relative;

    min-height: 545px;

    overflow: visible;
}

.cn-about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 545px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   DECORATIVE GOLD + GREEN CURVE
========================================================= */

.cn-about-hero-image::before {
    content: "";

    position: absolute;

    z-index: 4;

    left: -39px;
    top: -2px;

    width: 62px;
    height: calc(100% + 4px);

    background: var(--cn-gold);

    border-radius: 50%;

    transform: rotate(-7deg);
}

.cn-about-hero-image::after {
    content: "";

    position: absolute;

    z-index: 5;

    left: -21px;
    top: -2px;

    width: 25px;
    height: calc(100% + 4px);

    background: var(--cn-green);

    border-radius: 50%;

    transform: rotate(-7deg);
}


/* =========================================================
   HERO BADGE
========================================================= */

.cn-about-hero-badge {
    position: absolute;

    z-index: 20;

    left: -52px;
    bottom: 70px;

    width: 112px;
    height: 112px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 14px;

    text-align: center;

    border-radius: 50%;

    background: var(--cn-green);

    border: 3px solid #fff;

    box-shadow:
        0 10px 25px rgba(8, 61, 43, .24);
}

.cn-about-hero-badge::before {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(244, 191, 25, .8);

    border-radius: 50%;
}

.cn-about-hero-badge strong,
.cn-about-hero-badge span,
.cn-about-hero-badge small {
    position: relative;
    z-index: 2;
}

.cn-about-hero-badge strong {
    color: #fff;

    font-size: 12px;
    line-height: 1.2;
}

.cn-about-hero-badge span {
    color: var(--cn-gold);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 850;
}

.cn-about-hero-badge small {
    margin-top: 4px;

    color: #fff;

    font-size: 8px;
}


/* =========================================================
   MISSION / VISION / VALUES
========================================================= */

.cn-about-purpose {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: 230px 1.35fr 1.2fr;

    align-items: center;

    gap: 32px;

    padding:
        30px
        clamp(25px, 6vw, 90px);

    background: var(--cn-soft);
}


/* =========================================================
   PURPOSE IMAGE
========================================================= */

.cn-about-purpose-image {
    width: 100%;
}

.cn-about-purpose-image img {
    width: 100%;
    height: 165px;

    object-fit: cover;
    object-position: center;

    border-radius: 12px;

    background: #e8efeb;

    box-shadow:
        0 8px 22px rgba(8, 61, 43, .10);
}


/* =========================================================
   MISSION + VISION
========================================================= */

.cn-about-purpose-text {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 27px;
}

.cn-purpose-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.cn-purpose-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: var(--cn-green);

    font-size: 21px;

    box-shadow:
        0 4px 15px rgba(8, 61, 43, .06);
}

.cn-purpose-item h3 {
    margin: 3px 0 7px;

    color: var(--cn-green);

    font-size: 16px;

    line-height: 1.2;

    font-weight: 850;
}

.cn-purpose-item p {
    margin: 0;

    color: #586660;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   VALUES
========================================================= */

.cn-about-values {
    padding-left: 28px;

    border-left: 1px solid #DCE6E1;
}

.cn-section-mini-title {
    display: inline-block;

    color: var(--cn-gold);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 1.3px;
}

.cn-about-values h2 {
    margin: 7px 0 18px;

    color: var(--cn-green);

    font-size: 22px;

    font-weight: 850;
}

.cn-about-values h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 9px;

    background: var(--cn-gold);
}

.cn-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;
}

.cn-value {
    text-align: center;
}

.cn-value-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #fff;

    color: var(--cn-green);

    font-size: 18px;

    font-weight: 900;
}

.cn-value strong {
    display: block;

    color: var(--cn-green);

    font-size: 9px;

    line-height: 1.3;
}


/* =========================================================
   WHY CHOOSE CLEANNORA
========================================================= */

.cn-about-why {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1.1fr 1.45fr;

    align-items: center;

    gap: 36px;

    padding:
        38px
        clamp(25px, 6vw, 90px);

    background: #fff;
}


/* =========================================================
   WHY INTRO
========================================================= */

.cn-about-why-intro h2 {
    max-width: 350px;

    margin: 9px 0 13px;

    color: var(--cn-green);

    font-size: 30px;

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -.8px;
}

.cn-about-why-intro h2 span {
    display: block;
}

.cn-about-why-intro p {
    max-width: 325px;

    margin: 0;

    color: #596660;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   BENEFITS
========================================================= */

.cn-about-benefits {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.cn-benefit {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.cn-benefit-check {
    flex: 0 0 23px;

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cn-green);

    color: #fff;

    font-size: 11px;

    font-weight: 900;
}

.cn-benefit h3 {
    margin: 0 0 3px;

    color: var(--cn-green);

    font-size: 11px;

    font-weight: 850;
}

.cn-benefit p {
    margin: 0;

    color: #68746E;

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.cn-about-team {
    width: 100%;
}

.cn-about-team img {
    width: 100%;
    height: 225px;

    object-fit: cover;
    object-position: center;

    border-radius: 12px;

    background: #e8efeb;

    box-shadow:
        0 8px 24px rgba(8, 61, 43, .10);
}


/* =========================================================
   COMMITMENT
========================================================= */

.cn-about-commitment {
    width: calc(100% - 10vw);

    margin:
        0
        5vw
        25px;

    display: grid;

    grid-template-columns: 1.35fr 2.65fr;

    align-items: center;

    gap: 25px;

    padding: 22px 30px;

    background: var(--cn-green);

    border-top: 2px solid var(--cn-gold);

    border-radius: 13px;

    box-shadow:
        0 12px 30px rgba(8, 61, 43, .17);
}

.cn-commitment-intro {
    display: flex;

    align-items: center;

    gap: 20px;
}

.cn-commitment-icon {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--cn-gold);

    border: 3px solid var(--cn-gold);

    clip-path: polygon(
        50% 0,
        91% 18%,
        86% 72%,
        50% 100%,
        14% 72%,
        9% 18%
    );

    font-size: 25px;

    font-weight: 900;
}

.cn-commitment-intro h2 {
    margin: 0 0 5px;

    color: var(--cn-gold);

    font-size: 17px;

    font-weight: 850;
}

.cn-commitment-intro p {
    max-width: 300px;

    margin: 0;

    color: rgba(255,255,255,.9);

    font-size: 10px;

    line-height: 1.55;
}

.cn-commitment-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.cn-commitment-items > div {
    min-height: 85px;

    padding: 0 18px;

    text-align: center;

    border-left: 1px solid rgba(255,255,255,.13);
}

.cn-commitment-item-icon {
    color: var(--cn-gold);

    font-size: 21px;

    line-height: 1;
}

.cn-commitment-items h3 {
    margin: 7px 0 4px;

    color: var(--cn-gold);

    font-size: 10px;

    font-weight: 850;
}

.cn-commitment-items p {
    margin: 0;

    color: rgba(255,255,255,.87);

    font-size: 8px;

    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .cn-about-hero {
        grid-template-columns: 1fr 1fr;
    }

    .cn-about-hero-content {
        padding-left: 40px;
        padding-right: 25px;
    }

    .cn-about-hero h1 {
        font-size: 46px;
    }

    .cn-about-purpose {
        grid-template-columns: 200px 1fr;
    }

    .cn-about-values {
        grid-column: 1 / -1;

        padding:
            24px
            0
            0;

        border-left: 0;

        border-top:
            1px
            solid
            #DCE6E1;
    }

    .cn-about-why {
        grid-template-columns: 1fr 1fr;
    }

    .cn-about-team {
        grid-column: 1 / -1;
    }

    .cn-about-team img {
        height: 280px;
    }

    .cn-about-commitment {
        grid-template-columns: 1fr;
    }

    .cn-commitment-items > div:first-child {
        border-left: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-hero {
        display: flex;

        flex-direction: column;

        margin-top: 82px;

        min-height: auto;
    }

    .cn-about-hero-content {
        padding:
            35px
            20px
            30px;
    }

    .cn-about-hero h1 {
        font-size: 38px;

        letter-spacing: -1.4px;
    }

    .cn-about-hero h2 {
        font-size: 22px;
    }

    .cn-about-hero p {
        font-size: 13px;
    }

    .cn-about-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px 8px;
    }


    /* HERO IMAGE */

    .cn-about-hero-image {
        min-height: 350px;

        overflow: hidden;
    }

    .cn-about-hero-image img {
        min-height: 350px;
    }

    .cn-about-hero-image::before {
        left: -55px;

        width: 75px;

        top: 0;

        height: 100%;
    }

    .cn-about-hero-image::after {
        left: -37px;

        width: 25px;

        top: 0;

        height: 100%;
    }

    .cn-about-hero-badge {
        left: 18px;

        bottom: 20px;

        width: 98px;
        height: 98px;
    }


    /* PURPOSE */

    .cn-about-purpose {
        display: flex;

        flex-direction: column;

        gap: 24px;

        padding:
            28px
            20px;
    }

    .cn-about-purpose-image img {
        height: 220px;
    }

    .cn-about-purpose-text {
        display: flex;

        flex-direction: column;

        gap: 24px;
    }

    .cn-about-values {
        width: 100%;

        padding-top: 24px;
    }

    .cn-values-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    /* WHY */

    .cn-about-why {
        display: flex;

        flex-direction: column;

        gap: 28px;

        padding:
            32px
            20px;
    }

    .cn-about-why-intro h2 {
        font-size: 30px;
    }

    .cn-about-why-intro p {
        max-width: 100%;
    }

    .cn-about-team img {
        height: 250px;
    }


    /* COMMITMENT */

    .cn-about-commitment {
        width: calc(100% - 30px);

        margin:
            0
            15px
            20px;

        display: flex;

        flex-direction: column;

        gap: 25px;

        padding:
            25px
            18px;
    }

    .cn-commitment-items {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px 0;
    }

    .cn-commitment-items > div {
        min-height: auto;

        padding:
            0
            12px;
    }

    .cn-commitment-items > div:nth-child(3) {
        border-left: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .cn-about-hero {
        margin-top: 75px;
    }

    .cn-about-hero-content {
        padding:
            30px
            17px
            28px;
    }

    .cn-about-hero h1 {
        font-size: 33px;
    }

    .cn-about-hero h2 {
        font-size: 20px;
    }

    .cn-about-hero-image {
        min-height: 310px;
    }

    .cn-about-hero-image img {
        min-height: 310px;
    }

    .cn-about-hero-badge {
        width: 90px;
        height: 90px;

        left: 14px;
        bottom: 15px;
    }

    .cn-about-purpose {
        padding-left: 17px;
        padding-right: 17px;
    }

    .cn-about-why {
        padding-left: 17px;
        padding-right: 17px;
    }

    .cn-about-commitment {
        width: calc(100% - 24px);

        margin-left: 12px;
        margin-right: 12px;
    }
}

/* =========================================================
   FINAL WHO WE ARE POLISH
   DO NOT REMOVE THE MAIN ABOUT CSS ABOVE
========================================================= */


/* ---------------------------------------------------------
   DESKTOP HERO — MAKE IT SHORTER & MORE PREMIUM
--------------------------------------------------------- */

@media (min-width: 768px) {

    .cn-about-hero {
        margin-top: 72px;
        min-height: 465px;

        grid-template-columns: 51% 49%;
    }

    .cn-about-hero-content {
        min-height: 465px;

        padding-top: 35px;
        padding-bottom: 35px;
    }

    .cn-about-hero-image {
        min-height: 465px;
    }

    .cn-about-hero-image img {
        min-height: 465px;
        height: 465px;
    }


    /* HERO TITLE */

    .cn-about-hero h1 {
        max-width: 570px;

        font-size: clamp(40px, 3.7vw, 55px);
        line-height: 1.01;

        letter-spacing: -2px;
    }


    /* SUBTITLE */

    .cn-about-hero h2 {
        margin-top: 10px;
        margin-bottom: 10px;

        font-size: 26px;
    }


    /* DESCRIPTION */

    .cn-about-hero p {
        max-width: 525px;

        font-size: 13px;
        line-height: 1.65;
    }


    /* STATS */

    .cn-about-stats {
        margin-top: 24px;
    }


    /* -----------------------------------------------------
       GOLD / GREEN CURVE
    ----------------------------------------------------- */

    .cn-about-hero-image::before {
        left: -31px;

        width: 48px;
        height: 100%;

        top: 0;

        transform: rotate(-6deg);
    }

    .cn-about-hero-image::after {
        left: -16px;

        width: 19px;
        height: 100%;

        top: 0;

        transform: rotate(-6deg);
    }


    /* -----------------------------------------------------
       ROUND BADGE
    ----------------------------------------------------- */

    .cn-about-hero-badge {
        left: -42px;
        bottom: 55px;

        width: 100px;
        height: 100px;

        padding: 12px;
    }

    .cn-about-hero-badge strong {
        font-size: 11px;
    }

    .cn-about-hero-badge span {
        font-size: 11px;
    }

    .cn-about-hero-badge small {
        font-size: 7px;
    }


    /* -----------------------------------------------------
       PURPOSE SECTION
    ----------------------------------------------------- */

    .cn-about-purpose {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .cn-about-purpose-image img {
        height: 155px;
    }


    /* -----------------------------------------------------
       WHY SECTION
    ----------------------------------------------------- */

    .cn-about-why {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .cn-about-team img {
        height: 220px;
    }


    /* -----------------------------------------------------
       PROMISE
    ----------------------------------------------------- */

    .cn-about-commitment {
        margin-bottom: 24px;

        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/* =========================================================
   HIDE ACCIDENTAL DESKTOP CLOSE BUTTON
========================================================= */

/*
   The grey X visible at the top center should not
   appear on desktop.
*/

@media (min-width: 768px) {

    .mobile-close,
    .mobile-menu-close,
    .cn-mobile-close,
    .cn-menu-close,
    .navbar-close,
    .menu-close,
    .offcanvas-close {
        display: none !important;
    }
}


/* =========================================================
   MOBILE FINAL
========================================================= */

@media (max-width: 767px) {

    .cn-about-hero {
        margin-top: 75px;

        min-height: auto;
    }

    .cn-about-hero-content {
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .cn-about-hero h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .cn-about-hero-image {
        min-height: 330px;
    }

    .cn-about-hero-image img {
        min-height: 330px;
        height: 330px;
    }

    .cn-about-hero-image::before {
        left: -48px;
        width: 65px;
    }

    .cn-about-hero-image::after {
        left: -31px;
        width: 22px;
    }

    .cn-about-hero-badge {
        left: 15px;
        bottom: 18px;

        width: 92px;
        height: 92px;
    }
}

/* =========================================================
   FINAL FIX — REMOVE HERO DECORATIVE STRIPE + BADGE
========================================================= */

.cn-about-hero-image::before,
.cn-about-hero-image::after {
    display: none !important;
}

.cn-about-hero-badge {
    display: none !important;
}


/* Keep hero image clean and properly aligned */

.cn-about-hero-image {
    position: relative;
    overflow: hidden;
}

.cn-about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 465px;
    object-fit: cover;
    object-position: center center;
}

/* =========================================================
   CLEANNORA WHO WE ARE — FINAL HERO BALANCE
========================================================= */

@media (min-width: 768px) {

    /* -----------------------------------------------------
       HERO OVERALL
    ----------------------------------------------------- */

    .cn-about-hero {
        margin-top: 88px;

        min-height: 505px;

        grid-template-columns: 51% 49%;

        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                #ffffff 48%,
                #f8fbf9 48%,
                #f8fbf9 100%
            );

        overflow: visible;
    }


    /* -----------------------------------------------------
       LEFT CONTENT
    ----------------------------------------------------- */

    .cn-about-hero-content {
        min-height: 505px;

        justify-content: center;

        padding:
            35px
            55px
            42px
            clamp(55px, 7vw, 100px);

        position: relative;

        z-index: 5;
    }


    /* subtle premium decorative glow */

    .cn-about-hero-content::before {
        content: "";

        position: absolute;

        left: 25px;
        bottom: 25px;

        width: 190px;
        height: 120px;

        background:
            radial-gradient(
                circle,
                rgba(244,191,25,.10) 0%,
                rgba(244,191,25,0) 70%
            );

        pointer-events: none;

        z-index: -1;
    }


    /* -----------------------------------------------------
       LABEL
    ----------------------------------------------------- */

    .cn-about-label {
        margin-bottom: 16px;
    }


    /* -----------------------------------------------------
       HEADING
    ----------------------------------------------------- */

    .cn-about-hero h1 {
        max-width: 590px;

        font-size: clamp(42px, 3.8vw, 57px);

        line-height: 1.04;

        letter-spacing: -2px;

        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       GOLD SUBTITLE
    ----------------------------------------------------- */

    .cn-about-hero h2 {
        max-width: 560px;

        margin-top: 13px;
        margin-bottom: 13px;

        font-size: 27px;

        line-height: 1.15;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .cn-about-hero p {
        max-width: 545px;

        font-size: 13.5px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       STATS — MORE VISUAL WEIGHT
    ----------------------------------------------------- */

    .cn-about-stats {
        max-width: 575px;

        margin-top: 30px;

        padding-top: 20px;

        border-top: 1px solid #E6ECE8;
    }


    .cn-about-stat {
        position: relative;
    }


    .cn-about-stat:not(:last-child)::after {
        content: "";

        position: absolute;

        right: 0;
        top: 4px;

        width: 1px;
        height: 32px;

        background: #E0E8E3;
    }


    .cn-about-stat strong {
        font-size: 20px;
    }


    .cn-about-stat span {
        font-size: 10px;

        margin-top: 7px;
    }


    /* -----------------------------------------------------
       HERO IMAGE — CREATE GAP FROM NAVBAR
    ----------------------------------------------------- */

    .cn-about-hero-image {
        position: relative;

        min-height: 505px;

        height: 505px;

        /*
           This is the important part:
           image no longer touches navbar.
        */

        margin-top: 18px;

        margin-bottom: 18px;

        margin-right: 18px;

        overflow: hidden;

        border-radius: 18px 0 0 18px;

        box-shadow:
            0 12px 35px rgba(8,61,43,.12);
    }


    .cn-about-hero-image img {
        width: 100%;

        height: 100%;

        min-height: 0;

        object-fit: cover;

        object-position: center center;
    }


    /* -----------------------------------------------------
       SIMPLE GOLD ACCENT
       Instead of old huge curve/badge
    ----------------------------------------------------- */

    .cn-about-hero-image::before {
        content: "";

        display: block !important;

        position: absolute;

        z-index: 8;

        left: 0;
        top: 0;

        width: 5px;
        height: 100%;

        background: var(--cn-gold);

        border-radius: 0;

        transform: none;
    }


    .cn-about-hero-image::after {
        display: none !important;
    }


    /* Old round badge stays removed */

    .cn-about-hero-badge {
        display: none !important;
    }


    /* -----------------------------------------------------
       HERO BOTTOM BALANCE
    ----------------------------------------------------- */

    .cn-about-hero::after {
        content: "";

        position: absolute;

        left: 7%;
        bottom: 20px;

        width: 150px;
        height: 3px;

        background:
            linear-gradient(
                90deg,
                var(--cn-gold),
                rgba(244,191,25,0)
            );

        opacity: .9;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-hero {
        min-height: 520px;
    }

    .cn-about-hero-content {
        min-height: 520px;
    }

    .cn-about-hero-image {
        min-height: 520px;
        height: 520px;
    }

    .cn-about-hero h1 {
        font-size: 58px;
    }

    .cn-about-hero h2 {
        font-size: 28px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-hero {
        margin-top: 78px;

        background: #fff;

        overflow: hidden;
    }


    .cn-about-hero-content {
        padding:
            30px
            20px
            25px;
    }


    .cn-about-hero h1 {
        font-size: 36px;

        line-height: 1.04;
    }


    .cn-about-hero h2 {
        font-size: 21px;
    }


    .cn-about-stats {
        margin-top: 25px;

        padding-top: 18px;

        border-top: 1px solid #E6ECE8;
    }


    .cn-about-hero-image {
        margin-top: 12px;

        margin-right: 12px;
        margin-left: 12px;

        margin-bottom: 15px;

        min-height: 330px;

        height: 330px;

        border-radius: 16px;

        overflow: hidden;
    }


    .cn-about-hero-image::before {
        display: block !important;

        width: 4px;

        height: 100%;

        left: 0;
        top: 0;

        background: var(--cn-gold);

        transform: none;
    }


    .cn-about-hero-image::after {
        display: none !important;
    }


    .cn-about-hero-badge {
        display: none !important;
    }


    .cn-about-hero::after {
        display: none;
    }
}

/* =========================================================
   WHO WE ARE — FINAL HERO REFINEMENT
========================================================= */

@media (min-width: 768px) {

    /* HERO */
    .cn-about-hero {
        margin-top: 105px;
        min-height: 500px;
        height: 500px;

        display: grid;
        grid-template-columns: 51% 49%;

        overflow: hidden;

        background: #fff;
    }


    /* LEFT SIDE */
    .cn-about-hero-content {
        min-height: 500px;
        height: 500px;

        justify-content: center;

        padding:
            35px
            45px
            35px
            clamp(55px, 7vw, 96px);
    }


    /* LABEL */
    .cn-about-label {
        margin-bottom: 14px;

        padding: 6px 13px;

        font-size: 10px;
    }


    /* MAIN HEADING
       Keep it visually like the reference:
       3 compact lines instead of 4 large lines.
    */

    .cn-about-hero h1 {
        width: 100%;
        max-width: 570px;

        margin: 0;

        font-size: clamp(38px, 3.35vw, 52px);

        line-height: 1.04;

        letter-spacing: -1.8px;
    }


    /* GOLD HEADING */

    .cn-about-hero h2 {
        max-width: 540px;

        margin:
            12px
            0
            10px;

        font-size: 25px;

        line-height: 1.15;
    }


    /* DESCRIPTION */

    .cn-about-hero p {
        max-width: 540px;

        margin: 0;

        font-size: 13px;

        line-height: 1.65;
    }


    /* STATS */

    .cn-about-stats {
        max-width: 560px;

        margin-top: 23px;

        padding-top: 16px;

        border-top: 1px solid #E4EBE7;
    }


    .cn-about-stat strong {
        font-size: 18px;
    }

    .cn-about-stat span {
        margin-top: 6px;

        font-size: 9px;
    }


    /* =====================================================
       RIGHT IMAGE
    ===================================================== */

    .cn-about-hero-image {
        position: relative;

        width: calc(100% - 18px);

        height: 468px;

        min-height: 468px;

        margin-top: 16px;
        margin-right: 18px;
        margin-bottom: 16px;

        overflow: hidden;

        border-radius: 16px;

        box-shadow:
            0 10px 30px rgba(8, 61, 43, .12);
    }


    .cn-about-hero-image img {
        width: 100%;
        height: 100%;

        min-height: 0;

        object-fit: cover;

        /*
           Slightly favor the woman/right side.
        */
        object-position: 58% center;
    }


    /* Clean gold accent only */

    .cn-about-hero-image::before {
        content: "";

        display: block !important;

        position: absolute;

        z-index: 5;

        left: 0;
        top: 0;

        width: 4px;
        height: 100%;

        background: #F4BF19;

        border-radius: 0;

        transform: none;
    }


    .cn-about-hero-image::after {
        display: none !important;
    }


    /* REMOVE OLD BADGE */

    .cn-about-hero-badge {
        display: none !important;
    }


    /* REMOVE EXTRA DECORATIVE LINE */

    .cn-about-hero > .cn-about-hero-badge {
        display: none !important;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-hero {
        min-height: 510px;
        height: 510px;

        margin-top: 105px;
    }

    .cn-about-hero-content {
        height: 510px;
        min-height: 510px;
    }

    .cn-about-hero-image {
        height: 478px;
        min-height: 478px;

        margin-top: 16px;
        margin-bottom: 16px;
    }

    .cn-about-hero h1 {
        max-width: 590px;

        font-size: 53px;
    }

    .cn-about-hero h2 {
        font-size: 26px;
    }
}


/* =========================================================
   REMOVE DESKTOP CLOSE / X BUTTON
========================================================= */

@media (min-width: 768px) {

    .btn-close,
    button[aria-label="Close"],
    button[title="Close"],
    [data-bs-dismiss="modal"],
    [data-bs-dismiss="offcanvas"] {
        display: none !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-hero {
        margin-top: 78px;

        height: auto;
        min-height: auto;

        display: flex;

        flex-direction: column;

        overflow: hidden;
    }


    .cn-about-hero-content {
        height: auto;
        min-height: 0;

        padding:
            30px
            20px
            25px;
    }


    .cn-about-hero h1 {
        max-width: 100%;

        font-size: 36px;

        line-height: 1.04;

        letter-spacing: -1.2px;
    }


    .cn-about-hero h2 {
        font-size: 21px;
    }


    .cn-about-hero-image {
        width: calc(100% - 24px);

        height: 330px;
        min-height: 330px;

        margin:
            10px
            12px
            16px;

        border-radius: 15px;

        overflow: hidden;
    }


    .cn-about-hero-image img {
        height: 330px;
        min-height: 0;

        object-position: center;
    }


    .cn-about-hero-image::before {
        display: block !important;

        width: 4px;
        height: 100%;

        left: 0;
        top: 0;

        background: #F4BF19;

        transform: none;
    }


    .cn-about-hero-image::after {
        display: none !important;
    }


    .cn-about-hero-badge {
        display: none !important;
    }
}

/* =========================================================
   WHO WE ARE — HERO IMAGE SIZE & SPACING FIX
========================================================= */

@media (min-width: 768px) {

    .cn-about-hero-image {
        height: 430px !important;
        min-height: 430px !important;

        margin-top: 28px !important;
        margin-bottom: 28px !important;

        margin-right: 28px !important;

        border-radius: 16px !important;

        overflow: hidden !important;
    }

    .cn-about-hero-image img {
        width: 100% !important;
        height: 100% !important;

        min-height: 0 !important;

        object-fit: cover !important;
        object-position: center center !important;
    }

    /* thin brand accent */
    .cn-about-hero-image::before {
        width: 4px !important;
        height: 100% !important;

        left: 0 !important;
        top: 0 !important;

        background: #F4BF19 !important;

        transform: none !important;
    }

    .cn-about-hero-image::after {
        display: none !important;
    }

    .cn-about-hero-badge {
        display: none !important;
    }
}


/* Larger desktop */
@media (min-width: 1200px) {

    .cn-about-hero-image {
        height: 445px !important;
        min-height: 445px !important;

        margin-top: 30px !important;
        margin-bottom: 30px !important;

        margin-right: 32px !important;
    }
}

/* =========================================================
   WHO WE ARE — MISSION / VISION / VALUES FINAL SPACING
========================================================= */

@media (min-width: 768px) {

    /* -----------------------------------------------------
       PURPOSE SECTION — ADD SPACE FROM HERO
    ----------------------------------------------------- */

    .cn-about-purpose {
        margin-top: 32px !important;

        padding-top: 32px !important;
        padding-bottom: 32px !important;

        position: relative;
    }


    /* -----------------------------------------------------
       PURPOSE IMAGE
    ----------------------------------------------------- */

    .cn-about-purpose-image img {
        width: 100% !important;

        height: 155px !important;

        object-fit: cover !important;

        border-radius: 14px !important;
    }


    /* -----------------------------------------------------
       MISSION + VISION TITLES
    ----------------------------------------------------- */

    .cn-about-purpose h3 {
        font-size: 17px !important;

        line-height: 1.25 !important;

        font-weight: 750 !important;

        color: #083D2B !important;

        margin-bottom: 8px !important;
    }


    /* -----------------------------------------------------
       MISSION + VISION PARAGRAPH
    ----------------------------------------------------- */

    .cn-about-purpose p {
        font-size: 12.5px !important;

        line-height: 1.7 !important;

        font-weight: 400 !important;

        color: #52635C !important;

        margin-bottom: 0 !important;
    }


    /* -----------------------------------------------------
       ICON CIRCLE
    ----------------------------------------------------- */

    .cn-about-purpose .icon,
    .cn-about-purpose .cn-purpose-icon {
        width: 46px !important;
        height: 46px !important;

        min-width: 46px !important;

        border-radius: 50% !important;

        background: #FFFFFF !important;

        box-shadow:
            0 6px 18px rgba(8, 61, 43, .08) !important;
    }


    /* -----------------------------------------------------
       VALUES HEADING
    ----------------------------------------------------- */

    .cn-about-purpose h2 {
        font-size: 22px !important;

        line-height: 1.2 !important;

        font-weight: 800 !important;

        color: #083D2B !important;

        margin-bottom: 8px !important;
    }


    /* GOLD UNDERLINE */

    .cn-about-purpose h2::after {
        content: "";

        display: block;

        width: 45px;
        height: 2px;

        margin-top: 8px;

        background: #F4BF19;
    }


    /* -----------------------------------------------------
       VALUES LABEL
    ----------------------------------------------------- */

    .cn-about-purpose .eyebrow,
    .cn-about-purpose .section-label {
        color: #F4BF19 !important;

        font-size: 10px !important;

        font-weight: 750 !important;

        letter-spacing: 1.4px !important;
    }


    /* -----------------------------------------------------
       VALUE TEXT
    ----------------------------------------------------- */

    .cn-about-purpose .value-item,
    .cn-about-purpose .value-card {
        font-size: 11px !important;

        color: #083D2B !important;
    }


    .cn-about-purpose .value-item strong,
    .cn-about-purpose .value-card strong {
        font-size: 10px !important;

        font-weight: 700 !important;

        color: #083D2B !important;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-purpose {
        margin-top: 38px !important;

        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }


    .cn-about-purpose h3 {
        font-size: 18px !important;
    }


    .cn-about-purpose p {
        font-size: 13px !important;

        line-height: 1.72 !important;
    }


    .cn-about-purpose h2 {
        font-size: 23px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-purpose {
        margin-top: 18px !important;

        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }


    .cn-about-purpose h3 {
        font-size: 17px !important;
    }


    .cn-about-purpose p {
        font-size: 13px !important;

        line-height: 1.65 !important;
    }


    .cn-about-purpose h2 {
        font-size: 22px !important;
    }
}

/* =========================================================
   WHY CHOOSE CLEANNORA — FONT ONLY
========================================================= */

@media (min-width: 768px) {

    /* Main heading */
    .cn-about-why h2 {
        font-size: 30px !important;
        line-height: 1.15 !important;
        font-weight: 800 !important;
        color: #083D2B !important;
        margin-bottom: 14px !important;
    }

    /* Intro paragraph */
    .cn-about-why p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        font-weight: 400 !important;
        color: #53615B !important;
    }

    /* Small gold label */
    .cn-about-why .eyebrow,
    .cn-about-why .section-label {
        font-size: 11px !important;
        line-height: 1.3 !important;
        font-weight: 750 !important;
        letter-spacing: 1.4px !important;
        color: #F4BF19 !important;
    }

    /* Checklist heading */
    .cn-about-why strong {
        font-size: 14px !important;
        line-height: 1.3 !important;
        font-weight: 750 !important;
        color: #083D2B !important;
    }

    /* Checklist description */
    .cn-about-why li p,
    .cn-about-why .why-item p {
        font-size: 12px !important;
        line-height: 1.55 !important;
        font-weight: 400 !important;
        color: #53615B !important;
    }
}


/* Large desktop */
@media (min-width: 1200px) {

    .cn-about-why h2 {
        font-size: 31px !important;
    }

    .cn-about-why p {
        font-size: 14px !important;
    }

    .cn-about-why strong {
        font-size: 14px !important;
    }

    .cn-about-why li p,
    .cn-about-why .why-item p {
        font-size: 12px !important;
    }
}

/* =========================================================
   WHY CHOOSE — FINAL ALIGNMENT + IMAGE HEIGHT
========================================================= */

@media (min-width: 768px) {

    /* -----------------------------------------------------
       WHOLE WHY SECTION
    ----------------------------------------------------- */

    .cn-about-why {
        padding-top: 42px !important;
        padding-bottom: 42px !important;

        align-items: flex-start !important;
    }


    /* -----------------------------------------------------
       LEFT CONTENT — MOVE TO TOP
    ----------------------------------------------------- */

    .cn-about-why > div:first-child {
        align-self: flex-start !important;

        padding-top: 8px !important;
    }


    /* Gold label */

    .cn-about-why .eyebrow,
    .cn-about-why .section-label {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }


    /* Main heading */

    .cn-about-why h2 {
        margin-top: 0 !important;
        margin-bottom: 14px !important;

        font-size: 30px !important;
        line-height: 1.15 !important;

        font-weight: 800 !important;

        color: #083D2B !important;
    }


    /* Paragraph */

    .cn-about-why > div:first-child p {
        margin-top: 0 !important;

        font-size: 14px !important;
        line-height: 1.7 !important;

        color: #53615B !important;
    }


    /* -----------------------------------------------------
       CHECKLIST — KEEP AT TOP
    ----------------------------------------------------- */

    .cn-about-why ul,
    .cn-about-why .why-list {
        margin-top: 0 !important;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        margin-bottom: 15px !important;
    }


    /* -----------------------------------------------------
       TEAM IMAGE — TALLER
       WIDTH WILL NOT CHANGE
    ----------------------------------------------------- */

    .cn-about-team,
    .cn-about-why-image {
        height: 300px !important;
        min-height: 300px !important;

        align-self: flex-start !important;

        margin-top: 0 !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        width: 100% !important;

        height: 300px !important;
        min-height: 300px !important;

        object-fit: cover !important;
        object-position: center center !important;

        display: block !important;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-why {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }


    .cn-about-why > div:first-child {
        padding-top: 6px !important;
    }


    .cn-about-team,
    .cn-about-why-image {
        height: 320px !important;
        min-height: 320px !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 320px !important;
        min-height: 320px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-why {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }


    .cn-about-why > div:first-child {
        padding-top: 0 !important;
    }


    .cn-about-team,
    .cn-about-why-image {
        height: 250px !important;
        min-height: 250px !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 250px !important;
        min-height: 250px !important;
    }
}

/* =========================================================
   WHY CHOOSE CLEANNORA — PREMIUM SECTION
========================================================= */

@media (min-width: 768px) {

    /* SECTION */
    .cn-about-why {
        position: relative;

        padding: 65px 0 70px !important;

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fbfdfc 100%
            );

        border-top: 1px solid #edf2ef;
        border-bottom: 1px solid #edf2ef;
    }


    /* LEFT CONTENT */
    .cn-about-why > div:first-child {
        position: relative;

        padding: 25px 28px !important;

        background: #ffffff;

        border: 1px solid #edf2ef;

        border-radius: 18px;

        box-shadow:
            0 10px 30px rgba(8, 61, 43, .055);
    }


    /* GOLD LABEL */
    .cn-about-why .eyebrow,
    .cn-about-why .section-label {
        display: inline-flex;

        align-items: center;

        gap: 7px;

        color: #F4BF19 !important;

        font-size: 10px !important;

        font-weight: 800 !important;

        letter-spacing: 1.6px !important;

        text-transform: uppercase;

        margin-bottom: 13px !important;
    }


    .cn-about-why .eyebrow::before,
    .cn-about-why .section-label::before {
        content: "";

        width: 20px;
        height: 2px;

        background: #F4BF19;

        border-radius: 2px;
    }


    /* HEADING */
    .cn-about-why h2 {
        font-size: 31px !important;

        line-height: 1.12 !important;

        letter-spacing: -1px;

        font-weight: 800 !important;

        color: #083D2B !important;

        margin: 0 0 16px !important;
    }


    /* HEADING ACCENT */
    .cn-about-why h2::after {
        content: "";

        display: block;

        width: 48px;
        height: 3px;

        margin-top: 14px;

        background: #F4BF19;

        border-radius: 5px;
    }


    /* INTRO */
    .cn-about-why > div:first-child p {
        font-size: 13.5px !important;

        line-height: 1.75 !important;

        color: #53615B !important;

        margin: 0 !important;

        max-width: 360px;
    }


    /* =====================================================
       CHECKLIST
    ===================================================== */

    .cn-about-why ul,
    .cn-about-why .why-list {
        display: flex;

        flex-direction: column;

        gap: 12px;

        margin: 0 !important;

        padding: 0 !important;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        position: relative;

        display: grid !important;

        grid-template-columns: 38px 1fr;

        column-gap: 12px;

        padding: 13px 16px;

        margin: 0 !important;

        background: #ffffff;

        border: 1px solid #edf2ef;

        border-radius: 13px;

        transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease;
    }


    .cn-about-why li:hover,
    .cn-about-why .why-item:hover {
        transform: translateY(-2px);

        border-color: rgba(244,191,25,.55);

        box-shadow:
            0 8px 22px rgba(8,61,43,.07);
    }


    /* CHECK CIRCLE */
    .cn-about-why li::before,
    .cn-about-why .why-icon {
        width: 32px !important;
        height: 32px !important;

        min-width: 32px !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        margin: 0 !important;

        border-radius: 50%;

        background: #083D2B !important;

        color: #F4BF19 !important;

        font-size: 13px !important;

        font-weight: 800;

        box-shadow:
            0 4px 10px rgba(8,61,43,.15);
    }


    /* ITEM TITLE */
    .cn-about-why li strong,
    .cn-about-why .why-item strong {
        display: block;

        font-size: 13px !important;

        line-height: 1.35 !important;

        font-weight: 750 !important;

        color: #083D2B !important;

        margin-bottom: 4px !important;
    }


    /* ITEM DESCRIPTION */
    .cn-about-why li p,
    .cn-about-why .why-item p {
        font-size: 11px !important;

        line-height: 1.55 !important;

        color: #64736D !important;

        margin: 0 !important;
    }


    /* =====================================================
       TEAM IMAGE
    ===================================================== */

    .cn-about-team,
    .cn-about-why-image {
        position: relative;

        height: 320px !important;

        min-height: 320px !important;

        overflow: hidden;

        border-radius: 18px;

        box-shadow:
            0 14px 35px rgba(8,61,43,.12);
    }


    .cn-about-team::after,
    .cn-about-why-image::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 5px;

        background: #F4BF19;

        z-index: 2;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        width: 100% !important;

        height: 320px !important;

        min-height: 320px !important;

        object-fit: cover !important;

        object-position: center center !important;

        display: block;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-why {
        padding: 75px 0 80px !important;
    }


    .cn-about-why > div:first-child {
        padding: 30px 32px !important;
    }


    .cn-about-why h2 {
        font-size: 33px !important;
    }


    .cn-about-why > div:first-child p {
        font-size: 14px !important;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        padding: 15px 17px;
    }


    .cn-about-why li strong,
    .cn-about-why .why-item strong {
        font-size: 14px !important;
    }


    .cn-about-why li p,
    .cn-about-why .why-item p {
        font-size: 11.5px !important;
    }


    .cn-about-team,
    .cn-about-why-image {
        height: 335px !important;

        min-height: 335px !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 335px !important;

        min-height: 335px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-why {
        padding: 45px 0 50px !important;
    }


    .cn-about-why > div:first-child {
        padding: 24px 20px !important;

        border-radius: 15px;
    }


    .cn-about-why h2 {
        font-size: 27px !important;
    }


    .cn-about-why > div:first-child p {
        font-size: 13px !important;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        padding: 13px;
    }


    .cn-about-team,
    .cn-about-why-image {
        height: 250px !important;

        min-height: 250px !important;

        margin-top: 20px;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 250px !important;

        min-height: 250px !important;
    }
}

/* =========================================================
   WHY CHOOSE — CLEAN PREMIUM FINAL
========================================================= */

@media (min-width: 768px) {

    /* ---------------------------------------------
       REMOVE EXTRA GAP FROM PREVIOUS SECTION
    --------------------------------------------- */

    .cn-about-purpose {
        margin-bottom: 0 !important;
    }

    .cn-about-why {
        margin-top: 0 !important;

        padding-top: 48px !important;
        padding-bottom: 55px !important;

        background: #ffffff !important;

        border-top: 0 !important;
        border-bottom: 0 !important;
    }


    /* ---------------------------------------------
       LEFT CONTENT — NO CARD
    --------------------------------------------- */

    .cn-about-why > div:first-child {
        background: transparent !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none !important;

        padding: 8px 25px 8px 0 !important;
    }


    /* ---------------------------------------------
       GOLD LABEL
    --------------------------------------------- */

    .cn-about-why .eyebrow,
    .cn-about-why .section-label {
        display: block !important;

        margin: 0 0 12px !important;

        padding: 0 !important;

        font-size: 10px !important;

        font-weight: 800 !important;

        letter-spacing: 1.5px !important;

        color: #F4BF19 !important;
    }


    .cn-about-why .eyebrow::before,
    .cn-about-why .section-label::before {
        display: none !important;
    }


    /* ---------------------------------------------
       MAIN HEADING
    --------------------------------------------- */

    .cn-about-why h2 {
        margin: 0 0 15px !important;

        padding: 0 !important;

        font-size: 30px !important;

        line-height: 1.15 !important;

        letter-spacing: -0.8px;

        font-weight: 800 !important;

        color: #083D2B !important;
    }


    /* Small gold line */

    .cn-about-why h2::after {
        content: "";

        display: block;

        width: 42px;
        height: 3px;

        margin-top: 13px;

        background: #F4BF19;

        border-radius: 3px;
    }


    /* ---------------------------------------------
       DESCRIPTION
    --------------------------------------------- */

    .cn-about-why > div:first-child p {
        margin: 0 !important;

        max-width: 350px;

        font-size: 13.5px !important;

        line-height: 1.72 !important;

        font-weight: 400 !important;

        color: #53615B !important;
    }


    /* ---------------------------------------------
       CHECKLIST
    --------------------------------------------- */

    .cn-about-why ul,
    .cn-about-why .why-list {
        margin: 0 !important;

        padding: 0 !important;

        display: flex;

        flex-direction: column;

        gap: 13px;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        margin: 0 !important;

        padding: 0 !important;

        background: transparent !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none !important;

        display: grid !important;

        grid-template-columns: 32px 1fr;

        column-gap: 12px;

        align-items: start;
    }


    .cn-about-why li:hover,
    .cn-about-why .why-item:hover {
        transform: none !important;

        border: 0 !important;

        box-shadow: none !important;
    }


    /* ---------------------------------------------
       CHECK ICON
    --------------------------------------------- */

    .cn-about-why li::before,
    .cn-about-why .why-icon {
        width: 24px !important;
        height: 24px !important;

        min-width: 24px !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        margin: 0 !important;

        border-radius: 50%;

        background: #083D2B !important;

        color: #ffffff !important;

        font-size: 11px !important;

        font-weight: 700 !important;
    }


    /* ---------------------------------------------
       ITEM TITLE
    --------------------------------------------- */

    .cn-about-why li strong,
    .cn-about-why .why-item strong {
        display: block;

        margin: 0 0 3px !important;

        font-size: 13px !important;

        line-height: 1.35 !important;

        font-weight: 750 !important;

        color: #083D2B !important;
    }


    /* ---------------------------------------------
       ITEM DESCRIPTION
    --------------------------------------------- */

    .cn-about-why li p,
    .cn-about-why .why-item p {
        margin: 0 !important;

        font-size: 11.5px !important;

        line-height: 1.55 !important;

        font-weight: 400 !important;

        color: #66736E !important;
    }


    /* ---------------------------------------------
       TEAM IMAGE
       KEEP CURRENT SIZE
    --------------------------------------------- */

    .cn-about-team,
    .cn-about-why-image {
        height: 320px !important;

        min-height: 320px !important;

        margin-top: 0 !important;

        border-radius: 16px !important;

        overflow: hidden !important;

        box-shadow:
            0 10px 28px rgba(8, 61, 43, .10) !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        width: 100% !important;

        height: 320px !important;

        min-height: 320px !important;

        object-fit: cover !important;

        object-position: center center !important;
    }


    /* Gold bottom accent */

    .cn-about-team::after,
    .cn-about-why-image::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 4px;

        background: #F4BF19;

        z-index: 2;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-why {
        padding-top: 55px !important;
        padding-bottom: 65px !important;
    }

    .cn-about-why > div:first-child {
        padding-right: 35px !important;
    }

    .cn-about-why h2 {
        font-size: 32px !important;
    }

    .cn-about-why > div:first-child p {
        font-size: 14px !important;
    }

    .cn-about-team,
    .cn-about-why-image {
        height: 335px !important;
        min-height: 335px !important;
    }

    .cn-about-team img,
    .cn-about-why-image img {
        height: 335px !important;
        min-height: 335px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-why {
        margin-top: 0 !important;

        padding-top: 38px !important;
        padding-bottom: 45px !important;
    }

    .cn-about-why > div:first-child {
        padding: 0 !important;

        background: transparent !important;

        border: 0 !important;

        box-shadow: none !important;
    }

    .cn-about-why h2 {
        font-size: 27px !important;
    }

    .cn-about-why > div:first-child p {
        font-size: 13px !important;
    }

    .cn-about-team,
    .cn-about-why-image {
        margin-top: 22px !important;

        height: 250px !important;
        min-height: 250px !important;
    }

    .cn-about-team img,
    .cn-about-why-image img {
        height: 250px !important;
        min-height: 250px !important;
    }
}

/* =========================================================
   WHY CHOOSE CLEANNORA — CLEAN FINAL OVERRIDE
   ========================================================= */

@media (min-width: 768px) {

    /* MAIN SECTION */
    .cn-about-why {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 52px 0 58px !important;

        background: #ffffff !important;

        box-sizing: border-box !important;
    }


    /* INNER CONTENT */
    .cn-about-why > * {
        box-sizing: border-box !important;
    }


    /* CREATE PROPER CENTERED LAYOUT */
    .cn-about-why {
        display: grid !important;

        grid-template-columns:
            minmax(250px, 0.85fr)
            minmax(330px, 1.05fr)
            minmax(390px, 1.25fr) !important;

        column-gap: 42px !important;

        align-items: center !important;

        padding-left: max(40px, calc((100vw - 1200px) / 2)) !important;
        padding-right: max(40px, calc((100vw - 1200px) / 2)) !important;
    }


    /* =====================================================
       LEFT — TEXT
       ===================================================== */

    .cn-about-why > div:first-child {
        width: auto !important;

        max-width: 370px !important;

        padding: 0 !important;

        margin: 0 !important;

        background: transparent !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none !important;

        align-self: start !important;
    }


    /* LABEL */

    .cn-about-why .eyebrow,
    .cn-about-why .section-label {
        display: block !important;

        margin: 0 0 12px !important;

        padding: 0 !important;

        font-size: 10px !important;

        line-height: 1.3 !important;

        font-weight: 800 !important;

        letter-spacing: 1.5px !important;

        color: #F4BF19 !important;
    }


    .cn-about-why .eyebrow::before,
    .cn-about-why .section-label::before {
        display: none !important;
    }


    /* HEADING */

    .cn-about-why h2 {
        margin: 0 0 15px !important;

        padding: 0 !important;

        font-size: 30px !important;

        line-height: 1.15 !important;

        letter-spacing: -0.6px !important;

        font-weight: 750 !important;

        color: #083D2B !important;
    }


    /* GOLD LINE */

    .cn-about-why h2::after {
        content: "";

        display: block;

        width: 42px;

        height: 3px;

        margin-top: 13px;

        background: #F4BF19;

        border-radius: 3px;
    }


    /* DESCRIPTION */

    .cn-about-why > div:first-child p {
        margin: 0 !important;

        max-width: 355px !important;

        font-size: 13.5px !important;

        line-height: 1.7 !important;

        font-weight: 400 !important;

        color: #53615B !important;
    }


    /* =====================================================
       CENTER — CHECKLIST
       ===================================================== */

    .cn-about-why ul,
    .cn-about-why .why-list {
        width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 15px !important;
    }


    .cn-about-why li,
    .cn-about-why .why-item {
        width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

        display: grid !important;

        grid-template-columns: 28px 1fr !important;

        column-gap: 11px !important;

        align-items: start !important;

        background: transparent !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none !important;
    }


    .cn-about-why li:hover,
    .cn-about-why .why-item:hover {
        transform: none !important;

        background: transparent !important;

        border: 0 !important;

        box-shadow: none !important;
    }


    /* CHECK ICON */

    .cn-about-why li::before,
    .cn-about-why .why-icon {
        width: 24px !important;

        height: 24px !important;

        min-width: 24px !important;

        margin: 0 !important;

        display: flex !important;

        align-items: center !important;

        justify-content: center !important;

        border-radius: 50% !important;

        background: #083D2B !important;

        color: #ffffff !important;

        font-size: 11px !important;

        font-weight: 700 !important;
    }


    /* CHECK TITLE */

    .cn-about-why li strong,
    .cn-about-why .why-item strong {
        display: block !important;

        margin: 0 0 4px !important;

        padding: 0 !important;

        font-size: 13px !important;

        line-height: 1.35 !important;

        font-weight: 750 !important;

        color: #083D2B !important;
    }


    /* CHECK DESCRIPTION */

    .cn-about-why li p,
    .cn-about-why .why-item p {
        margin: 0 !important;

        padding: 0 !important;

        font-size: 11.5px !important;

        line-height: 1.55 !important;

        font-weight: 400 !important;

        color: #66736E !important;
    }


    /* =====================================================
       RIGHT — TEAM IMAGE
       ===================================================== */

    .cn-about-team,
    .cn-about-why-image {
        width: 100% !important;

        height: 320px !important;

        min-height: 320px !important;

        margin: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

        border-radius: 16px !important;

        position: relative !important;

        box-shadow:
            0 10px 28px rgba(8,61,43,.10) !important;

        align-self: center !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        width: 100% !important;

        height: 320px !important;

        min-height: 320px !important;

        display: block !important;

        object-fit: cover !important;

        object-position: center center !important;
    }


    /* GOLD IMAGE LINE */

    .cn-about-team::after,
    .cn-about-why-image::after {
        content: "";

        position: absolute;

        left: 0;

        right: 0;

        bottom: 0;

        height: 4px;

        background: #F4BF19;

        z-index: 5;
    }


    /* =====================================================
       REMOVE EXTRA GAP BEFORE PROMISE
       ===================================================== */

    .cn-about-why + section,
    .cn-about-why + .cn-about-promise,
    .cn-about-why + .cn-promise {
        margin-top: 0 !important;
    }
}


/* =========================================================
   1200px+
   ========================================================= */

@media (min-width: 1200px) {

    .cn-about-why {
        grid-template-columns:
            0.85fr
            1.05fr
            1.25fr !important;

        column-gap: 48px !important;

        padding-top: 58px !important;
        padding-bottom: 62px !important;
    }


    .cn-about-why h2 {
        font-size: 31px !important;
    }


    .cn-about-why > div:first-child p {
        font-size: 14px !important;

        line-height: 1.72 !important;
    }


    .cn-about-team,
    .cn-about-why-image {
        height: 330px !important;

        min-height: 330px !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 330px !important;

        min-height: 330px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cn-about-why {
        display: flex !important;

        flex-direction: column !important;

        gap: 28px !important;

        padding: 40px 20px 45px !important;
    }


    .cn-about-why > div:first-child {
        width: 100% !important;

        max-width: none !important;

        padding: 0 !important;

        margin: 0 !important;
    }


    .cn-about-why h2 {
        font-size: 27px !important;

        line-height: 1.15 !important;
    }


    .cn-about-why > div:first-child p {
        font-size: 13px !important;

        line-height: 1.7 !important;
    }


    .cn-about-team,
    .cn-about-why-image {
        width: 100% !important;

        height: 250px !important;

        min-height: 250px !important;

        margin: 0 !important;
    }


    .cn-about-team img,
    .cn-about-why-image img {
        height: 250px !important;

        min-height: 250px !important;
    }
}

/* =========================================================
   MISSION IMAGE — BIGGER WITHOUT OVERLAP
========================================================= */

@media (min-width: 768px) {

    .cn-about-mission-image,
    .cn-about-purpose-image {
        width: 280px !important;
        min-width: 280px !important;

        height: 195px !important;
        min-height: 195px !important;

        flex: 0 0 280px !important;

        overflow: hidden !important;

        border-radius: 16px !important;

        position: relative !important;
    }

    .cn-about-mission-image img,
    .cn-about-purpose-image img {
        width: 100% !important;
        height: 195px !important;

        display: block !important;

        object-fit: cover !important;
        object-position: center center !important;
    }
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-mission-image,
    .cn-about-purpose-image {
        width: 290px !important;
        min-width: 290px !important;

        height: 200px !important;
        min-height: 200px !important;

        flex-basis: 290px !important;
    }

    .cn-about-mission-image img,
    .cn-about-purpose-image img {
        height: 200px !important;
    }
}

/* =========================================
   MISSION IMAGE — FIX ICON OVERLAP
========================================= */

@media (min-width: 768px) {

    .cn-about-mission-image,
    .cn-about-purpose-image {
        margin-right: 22px !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .cn-about-mission-image + *,
    .cn-about-purpose-image + * {
        position: relative !important;
        z-index: 3 !important;
    }
}

/* =========================================
   VISION + VALUES — TOP ALIGN
========================================= */

@media (min-width: 768px) {

    /* Our Vision column */
    .cn-about-vision,
    .cn-about-purpose-vision {
        align-self: flex-start !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }


    /* Vision content */
    .cn-about-vision > *,
    .cn-about-purpose-vision > * {
        margin-top: 0 !important;
    }


    /* Our Values column */
    .cn-about-values,
    .cn-about-purpose-values {
        align-self: flex-start !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }


    .cn-about-values > *,
    .cn-about-purpose-values > * {
        margin-top: 0 !important;
    }
}

/* =========================================================
   ABOUT — MISSION / VISION / VALUES
   BALANCED DESKTOP LAYOUT
========================================================= */

.cn-about-purpose {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto !important;

    padding: 44px 0 !important;

    display: grid !important;

    /* IMAGE | MISSION+VISION | VALUES */
    grid-template-columns:
        270px
        minmax(450px, 1fr)
        minmax(390px, 0.95fr) !important;

    column-gap: 34px !important;

    align-items: start !important;

    box-sizing: border-box !important;
}


/* =========================================================
   IMAGE
========================================================= */

.cn-about-purpose-image {
    width: 270px !important;
    height: 210px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    position: relative !important;

    align-self: start !important;

    box-sizing: border-box !important;
}

.cn-about-purpose-image img {
    display: block !important;

    width: 100% !important;
    height: 210px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* =========================================================
   MISSION + VISION WRAPPER
========================================================= */

.cn-about-purpose-text {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        minmax(210px, 1fr)
        minmax(210px, 1fr) !important;

    column-gap: 30px !important;

    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   MISSION / VISION ITEM
========================================================= */

.cn-purpose-item {
    display: grid !important;

    grid-template-columns: 44px minmax(0, 1fr) !important;

    column-gap: 12px !important;

    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* ICON */

.cn-purpose-icon {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #008C82 !important;

    font-size: 21px !important;

    line-height: 1 !important;

    box-shadow: 0 6px 18px rgba(8, 61, 43, 0.08) !important;
}


/* HEADING */

.cn-purpose-item h3 {
    margin: 3px 0 10px !important;
    padding: 0 !important;

    color: #083D2B !important;

    font-size: 18px !important;
    line-height: 1.25 !important;

    font-weight: 750 !important;
}


/* TEXT */

.cn-purpose-item p {
    margin: 0 !important;
    padding: 0 !important;

    color: #53615B !important;

    font-size: 13px !important;
    line-height: 1.7 !important;

    font-weight: 400 !important;
}


/* =========================================================
   VALUES
========================================================= */

.cn-about-values {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 0 0 28px !important;

    border-left: 1px solid #DCE7E2 !important;

    align-self: start !important;

    box-sizing: border-box !important;
}


.cn-section-mini-title {
    display: block !important;

    margin: 0 0 10px !important;

    color: #F4BF19 !important;

    font-size: 10px !important;
    line-height: 1.3 !important;

    font-weight: 800 !important;

    letter-spacing: 1.5px !important;
}


.cn-about-values h2 {
    margin: 0 0 17px !important;
    padding: 0 !important;

    color: #083D2B !important;

    font-size: 24px !important;
    line-height: 1.2 !important;

    font-weight: 800 !important;
}


.cn-about-values h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 9px;

    background: #F4BF19;

    border-radius: 3px;
}


/* VALUES GRID */

.cn-values-grid {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(70px, 1fr)) !important;

    gap: 12px !important;

    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;
}


.cn-value {
    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    text-align: center !important;

    margin: 0 !important;
    padding: 0 !important;
}


.cn-value-icon {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 0 9px !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #083D2B !important;

    font-size: 21px !important;

    box-shadow: 0 5px 15px rgba(8, 61, 43, 0.06) !important;
}


.cn-value strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #083D2B !important;

    font-size: 10px !important;
    line-height: 1.35 !important;

    font-weight: 700 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1150px) {

    .cn-about-purpose {
        width: calc(100% - 50px);

        grid-template-columns:
            230px
            minmax(390px, 1fr)
            minmax(280px, 0.9fr) !important;

        column-gap: 22px !important;
    }

    .cn-about-purpose-image {
        width: 230px !important;
        height: 190px !important;
    }

    .cn-about-purpose-image img {
        height: 190px !important;
    }

    .cn-about-purpose-text {
        column-gap: 18px !important;
    }

    .cn-purpose-item {
        grid-template-columns: 38px minmax(0, 1fr) !important;
        column-gap: 9px !important;
    }

    .cn-purpose-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
    }

    .cn-purpose-item h3 {
        font-size: 16px !important;
    }

    .cn-purpose-item p {
        font-size: 12px !important;
    }

    .cn-about-values {
        padding-left: 18px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-purpose {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 30px !important;

        padding: 35px 20px !important;
    }

    .cn-about-purpose-image {
        width: 100% !important;
        height: 220px !important;
    }

    .cn-about-purpose-image img {
        width: 100% !important;
        height: 220px !important;
    }

    .cn-about-purpose-text {
        display: flex !important;

        flex-direction: column !important;

        gap: 28px !important;
    }

    .cn-purpose-item {
        grid-template-columns: 40px 1fr !important;
        column-gap: 12px !important;
    }

    .cn-purpose-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .cn-purpose-item h3 {
        font-size: 18px !important;
    }

    .cn-purpose-item p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .cn-about-values {
        width: 100% !important;

        padding: 25px 0 0 !important;

        border-left: 0 !important;

        border-top: 1px solid #DCE7E2 !important;
    }

    .cn-values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px 12px !important;
    }
}

/* =========================================================
   FINAL FIX — MISSION / VISION / VALUES OVERFLOW
========================================================= */

/* Prevent horizontal page overflow */
html,
body {
    overflow-x: hidden !important;
}


/* MAIN SECTION */
.cn-about-purpose {
    width: 100% !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 44px 30px !important;

    display: grid !important;

    grid-template-columns:
        250px
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 30px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


/* IMAGE */
.cn-about-purpose-image {
    width: 250px !important;
    height: 205px !important;

    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    box-sizing: border-box !important;
}

.cn-about-purpose-image img {
    width: 100% !important;
    height: 205px !important;

    display: block !important;

    object-fit: cover !important;
}


/* MISSION + VISION */
.cn-about-purpose-text {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* EACH ITEM */
.cn-purpose-item {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;

    grid-template-columns: 42px minmax(0, 1fr) !important;

    gap: 11px !important;

    align-items: start !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* ICON */
.cn-purpose-icon {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #fff !important;

    color: #008C82 !important;

    font-size: 20px !important;

    box-sizing: border-box !important;
}


/* HEADINGS */
.cn-purpose-item h3 {
    margin: 2px 0 9px !important;

    font-size: 18px !important;
    line-height: 1.25 !important;

    color: #083D2B !important;

    font-weight: 750 !important;
}


/* PARAGRAPH */
.cn-purpose-item p {
    margin: 0 !important;

    font-size: 13px !important;
    line-height: 1.65 !important;

    color: #53615B !important;

    overflow-wrap: break-word !important;
}


/* VALUES */
.cn-about-values {
    width: 100% !important;
    min-width: 0 !important;

    padding-left: 25px !important;

    margin: 0 !important;

    border-left: 1px solid #DCE7E2 !important;

    box-sizing: border-box !important;
}


/* VALUES GRID */
.cn-values-grid {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 10px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) and (min-width: 768px) {

    .cn-about-purpose {
        padding-left: 25px !important;
        padding-right: 25px !important;

        grid-template-columns:
            220px
            minmax(0, 1fr)
            minmax(0, 0.9fr) !important;

        gap: 22px !important;
    }

    .cn-about-purpose-image {
        width: 220px !important;
        height: 185px !important;
    }

    .cn-about-purpose-image img {
        height: 185px !important;
    }

    .cn-about-purpose-text {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 18px !important;
    }

    .cn-purpose-item {
        grid-template-columns: 36px minmax(0, 1fr) !important;
        gap: 8px !important;
    }

    .cn-purpose-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .cn-purpose-item h3 {
        font-size: 16px !important;
    }

    .cn-purpose-item p {
        font-size: 12px !important;
    }

    .cn-about-values {
        padding-left: 18px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-purpose {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 28px !important;

        padding: 35px 20px !important;

        box-sizing: border-box !important;
    }

    .cn-about-purpose-image {
        width: 100% !important;
        height: 220px !important;

        min-width: 0 !important;
    }

    .cn-about-purpose-image img {
        width: 100% !important;
        height: 220px !important;
    }

    .cn-about-purpose-text {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 28px !important;
    }

    .cn-purpose-item {
        width: 100% !important;

        grid-template-columns:
            40px minmax(0, 1fr) !important;

        gap: 12px !important;
    }

    .cn-purpose-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .cn-purpose-item h3 {
        font-size: 18px !important;
    }

    .cn-purpose-item p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .cn-about-values {
        width: 100% !important;

        padding: 25px 0 0 !important;

        border-left: 0 !important;

        border-top: 1px solid #DCE7E2 !important;
    }

    .cn-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 20px 12px !important;
    }
}

/* =========================================================
   MISSION IMAGE — FINAL SIZE & ALIGNMENT
========================================================= */

@media (min-width: 768px) {

    .cn-about-purpose-image {
        width: 270px !important;
        height: 205px !important;

        min-width: 270px !important;
        max-width: 270px !important;

        margin: 0 !important;

        align-self: start !important;

        border-radius: 16px !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }

    .cn-about-purpose-image img {
        width: 100% !important;
        height: 205px !important;

        display: block !important;

        object-fit: cover !important;
        object-position: center center !important;

        margin: 0 !important;
    }
}

/* =========================================================
   CLEANNORA — COMMITMENT / PROMISE
   FINAL TYPOGRAPHY & SPACING
========================================================= */

.cn-about-commitment {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        minmax(330px, 1.05fr)
        minmax(0, 2.4fr) !important;

    align-items: center !important;

    gap: 30px !important;

    padding: 28px 42px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   INTRO — LEFT
========================================================= */

.cn-commitment-intro {
    display: grid !important;

    grid-template-columns: 60px minmax(0, 1fr) !important;

    align-items: center !important;

    column-gap: 18px !important;

    margin: 0 !important;
}


/* MAIN ICON */

.cn-commitment-icon {
    width: 54px !important;
    height: 54px !important;

    min-width: 54px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    color: #F4BF19 !important;

    font-size: 34px !important;

    line-height: 1 !important;
}


/* MAIN HEADING */

.cn-commitment-intro h2 {
    margin: 0 0 8px !important;

    color: #F4BF19 !important;

    font-size: 21px !important;

    line-height: 1.25 !important;

    font-weight: 800 !important;
}


/* MAIN DESCRIPTION */

.cn-commitment-intro p {
    margin: 0 !important;

    color: #ffffff !important;

    font-size: 13px !important;

    line-height: 1.55 !important;

    font-weight: 400 !important;
}


/* =========================================================
   FOUR COMMITMENT ITEMS
========================================================= */

.cn-commitment-items {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    align-items: stretch !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* EACH ITEM */

.cn-commitment-items > div {
    min-width: 0 !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: flex-start !important;

    text-align: center !important;

    padding: 0 20px !important;

    border-left: 1px solid rgba(255,255,255,0.16) !important;

    box-sizing: border-box !important;
}


/* ITEM ICON */

.cn-commitment-item-icon {
    width: 38px !important;
    height: 38px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 0 8px !important;

    color: #F4BF19 !important;

    font-size: 25px !important;

    line-height: 1 !important;
}


/* ITEM HEADING */

.cn-commitment-items h3 {
    margin: 0 0 6px !important;

    color: #F4BF19 !important;

    font-size: 13px !important;

    line-height: 1.3 !important;

    font-weight: 800 !important;
}


/* ITEM DESCRIPTION */

.cn-commitment-items p {
    max-width: 170px !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size: 11.5px !important;

    line-height: 1.45 !important;

    font-weight: 400 !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-commitment {
        padding: 30px 45px !important;

        grid-template-columns:
            minmax(350px, 1.05fr)
            minmax(0, 2.5fr) !important;

        gap: 35px !important;
    }

    .cn-commitment-intro h2 {
        font-size: 22px !important;
    }

    .cn-commitment-intro p {
        font-size: 13.5px !important;
    }

    .cn-commitment-items > div {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .cn-commitment-items h3 {
        font-size: 13.5px !important;
    }

    .cn-commitment-items p {
        font-size: 12px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

    .cn-about-commitment {
        grid-template-columns:
            280px
            minmax(0, 1fr) !important;

        padding: 25px 25px !important;

        gap: 20px !important;
    }

    .cn-commitment-intro {
        grid-template-columns: 48px minmax(0, 1fr) !important;

        column-gap: 12px !important;
    }

    .cn-commitment-icon {
        width: 45px !important;
        height: 45px !important;

        min-width: 45px !important;

        font-size: 28px !important;
    }

    .cn-commitment-intro h2 {
        font-size: 18px !important;
    }

    .cn-commitment-intro p {
        font-size: 12px !important;
    }

    .cn-commitment-items > div {
        padding: 0 10px !important;
    }

    .cn-commitment-items h3 {
        font-size: 11px !important;
    }

    .cn-commitment-items p {
        font-size: 10px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-commitment {
        display: flex !important;

        flex-direction: column !important;

        gap: 25px !important;

        padding: 30px 20px !important;
    }

    .cn-commitment-intro {
        width: 100% !important;

        grid-template-columns: 50px minmax(0, 1fr) !important;

        column-gap: 14px !important;
    }

    .cn-commitment-icon {
        width: 46px !important;
        height: 46px !important;

        min-width: 46px !important;

        font-size: 28px !important;
    }

    .cn-commitment-intro h2 {
        font-size: 20px !important;
    }

    .cn-commitment-intro p {
        font-size: 13px !important;

        line-height: 1.6 !important;
    }

    .cn-commitment-items {
        width: 100% !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 20px 0 !important;
    }

    .cn-commitment-items > div {
        padding: 0 12px !important;

        border-left: 0 !important;
    }

    .cn-commitment-items > div:nth-child(even) {
        border-left: 1px solid rgba(255,255,255,0.16) !important;
    }

    .cn-commitment-items h3 {
        font-size: 13px !important;
    }

    .cn-commitment-items p {
        font-size: 11px !important;
    }
}

/* =========================================================
   FINAL FIX — COMMITMENT CONTENT OVERFLOW
========================================================= */

.cn-about-commitment {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    display: grid !important;

    grid-template-columns:
        minmax(310px, 1.05fr)
        minmax(0, 2.35fr) !important;

    gap: 24px !important;

    padding: 28px 34px !important;

    overflow: hidden !important;
}


/* LEFT PROMISE */

.cn-commitment-intro {
    min-width: 0 !important;
    width: 100% !important;

    display: grid !important;

    grid-template-columns: 50px minmax(0, 1fr) !important;

    column-gap: 14px !important;

    box-sizing: border-box !important;
}

.cn-commitment-intro > div:last-child {
    min-width: 0 !important;
}

.cn-commitment-intro h2 {
    font-size: 21px !important;
    line-height: 1.25 !important;

    margin: 0 0 7px !important;

    white-space: normal !important;
}

.cn-commitment-intro p {
    font-size: 12.5px !important;
    line-height: 1.5 !important;

    margin: 0 !important;

    max-width: 100% !important;
}


/* =========================================================
   RIGHT 4 ITEMS
========================================================= */

.cn-commitment-items {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 0 !important;

    box-sizing: border-box !important;
}


.cn-commitment-items > div {
    min-width: 0 !important;
    width: 100% !important;

    box-sizing: border-box !important;

    padding: 0 14px !important;

    text-align: center !important;

    overflow: hidden !important;
}


/* First item separator remove */

.cn-commitment-items > div:first-child {
    border-left: 0 !important;
}


/* Headings */

.cn-commitment-items h3 {
    font-size: 12.5px !important;
    line-height: 1.3 !important;

    margin: 0 0 6px !important;

    white-space: normal !important;

    overflow-wrap: break-word !important;
}


/* Description */

.cn-commitment-items p {
    width: 100% !important;
    max-width: 155px !important;

    margin: 0 auto !important;

    font-size: 11px !important;
    line-height: 1.45 !important;

    white-space: normal !important;

    overflow-wrap: break-word !important;
}


/* Icons */

.cn-commitment-item-icon {
    width: 36px !important;
    height: 36px !important;

    margin: 0 auto 7px !important;

    font-size: 23px !important;
}


/* =========================================================
   DESKTOP — EXTRA SPACE
========================================================= */

@media (min-width: 1200px) {

    .cn-about-commitment {
        padding-left: 38px !important;
        padding-right: 38px !important;

        grid-template-columns:
            minmax(330px, 1.05fr)
            minmax(0, 2.45fr) !important;
    }

    .cn-commitment-items > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .cn-commitment-items h3 {
        font-size: 13px !important;
    }

    .cn-commitment-items p {
        font-size: 11.5px !important;
        max-width: 165px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

    .cn-about-commitment {
        grid-template-columns:
            minmax(250px, 0.9fr)
            minmax(0, 2fr) !important;

        padding: 24px 24px !important;

        gap: 15px !important;
    }

    .cn-commitment-items > div {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .cn-commitment-items h3 {
        font-size: 10.5px !important;
    }

    .cn-commitment-items p {
        font-size: 9.5px !important;
        max-width: 120px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-commitment {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        padding: 28px 20px !important;

        gap: 25px !important;

        overflow: hidden !important;
    }

    .cn-commitment-intro {
        width: 100% !important;

        grid-template-columns:
            48px minmax(0, 1fr) !important;
    }

    .cn-commitment-items {
        width: 100% !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        row-gap: 22px !important;
    }

    .cn-commitment-items > div {
        padding: 0 10px !important;

        border-left: 0 !important;
    }

    .cn-commitment-items > div:nth-child(even) {
        border-left: 1px solid rgba(255,255,255,0.16) !important;
    }

    .cn-commitment-items h3 {
        font-size: 12px !important;
    }

    .cn-commitment-items p {
        font-size: 10.5px !important;
        max-width: 145px !important;
    }
}

/* =========================================================
   FINAL COMMITMENT WIDTH + RIGHT OVERFLOW FIX
========================================================= */

.cn-about-commitment {
    width: calc(100% - 136px) !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 2.35fr) !important;

    gap: 20px !important;

    padding: 28px 30px !important;

    overflow: hidden !important;
}


/* LEFT SIDE */

.cn-commitment-intro {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;

    gap: 12px !important;

    box-sizing: border-box !important;
}

.cn-commitment-intro > div {
    min-width: 0 !important;
}

.cn-commitment-intro h2 {
    margin: 0 0 7px !important;

    font-size: 21px !important;
    line-height: 1.25 !important;

    white-space: normal !important;
}

.cn-commitment-intro p {
    margin: 0 !important;

    max-width: 100% !important;

    font-size: 12px !important;
    line-height: 1.5 !important;
}


/* =========================================================
   RIGHT SIDE — 4 EQUAL COLUMNS
========================================================= */

.cn-commitment-items {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 0 !important;

    box-sizing: border-box !important;
}


.cn-commitment-items > div {
    width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    padding: 0 12px !important;

    text-align: center !important;

    overflow: hidden !important;
}


/* ICON */

.cn-commitment-item-icon {
    width: 34px !important;
    height: 34px !important;

    margin: 0 auto 7px !important;

    font-size: 21px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* HEADING */

.cn-commitment-items h3 {
    width: 100% !important;

    margin: 0 0 6px !important;

    font-size: 12px !important;
    line-height: 1.3 !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
}


/* DESCRIPTION */

.cn-commitment-items p {
    width: 100% !important;
    max-width: 145px !important;

    margin: 0 auto !important;

    font-size: 10.5px !important;
    line-height: 1.45 !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .cn-about-commitment {
        width: calc(100% - 136px) !important;

        grid-template-columns:
            minmax(300px, 1fr)
            minmax(0, 2.35fr) !important;

        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .cn-commitment-items > div {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .cn-commitment-items h3 {
        font-size: 12.5px !important;
    }

    .cn-commitment-items p {
        max-width: 150px !important;
        font-size: 11px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .cn-about-commitment {
        width: calc(100% - 60px) !important;

        grid-template-columns:
            minmax(250px, 0.9fr)
            minmax(0, 2fr) !important;

        padding: 24px !important;
    }

    .cn-commitment-items > div {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .cn-commitment-items h3 {
        font-size: 11px !important;
    }

    .cn-commitment-items p {
        font-size: 9.5px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cn-about-commitment {
        width: calc(100% - 32px) !important;

        margin-left: 16px !important;
        margin-right: 16px !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 24px !important;

        padding: 24px 18px !important;

        overflow: hidden !important;
    }

    .cn-commitment-intro {
        width: 100% !important;

        grid-template-columns:
            44px minmax(0, 1fr) !important;
    }

    .cn-commitment-items {
        width: 100% !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        row-gap: 22px !important;
    }

    .cn-commitment-items > div {
        padding: 0 8px !important;
    }

    .cn-commitment-items h3 {
        font-size: 11.5px !important;
    }

    .cn-commitment-items p {
        max-width: 135px !important;

        font-size: 10px !important;
    }
}