* {
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        /* =============================================
           SECTION 1: HERO BANNER
           ============================================= */
        .banner-section {
            margin-top: 75px;
            padding: 0;
            position: relative;
            overflow: visible;
            background-color: #120D0D;
        }

        .banner-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #ffffff;
            z-index: 20;
        }

        .banner-section .container-fluid {
            position: relative;
        }

        .banner-section .container {
            position: relative;
            z-index: 5;
        }

        .banner-section .row {
            margin: 0;
            align-items: stretch;
            padding-right: 100px;
        }

        .banner-left {
            padding: 0 0 0 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 600px;
            position: relative;
        }

        .banner-section .purple-logo {
            position: absolute;
            top: 40px;
            left: 40px;
            z-index: 1;
            width: 50px;
            height: 50px;
            pointer-events: none;
        }

        .banner-section .green-logo {
            position: absolute;
            bottom: -42px;
            right: 26px;
            z-index: 1;
            pointer-events: none;
        }

        .banner-left h1 {
            font-family: 'Poppins', sans-serif !important;
            color: #ffffff;
            font-size: 40px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 25px;
            padding-left: 0;
        }

        .banner-left p {
            font-family: 'Poppins', sans-serif !important;
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            opacity: 0.9;
            margin: 0;
            padding-left: 0;
        }

        .banner-right {
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            min-height: 600px;
            overflow: visible;
            width: 100%;
        }

        .banner-mockup-wrap {
            overflow: hidden;
            position: relative;
        }

        .banner-mockup-wrap img.mockup-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-metric-callout {
            position: absolute;
            background-color: #ffffff;
            padding: 10px 20px 14px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
            z-index: 15;
            min-width: 160px;
        }

        .banner-metric-callout .metric-label {
            font-size: 18px;
            font-weight: 400;
            color: rgba(0, 0, 0, 0.6);
            line-height: 1.5;
            margin: 0;
        }

        .banner-metric-callout .metric-value {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .banner-metric-callout .metric-value img {
            width: 16px;
            height: 8px;
        }

        .banner-metric-callout.callout-left {
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            background: #ffffff;
        }

        .banner-metric-callout.callout-left .metric-value {
            color: #000000;
        }

        .banner-metric-callout.callout-right {
            bottom: 40px;
            right: -30px;
            background: #00A86B;
            color: #ffffff;
        }

        .banner-metric-callout.callout-right .metric-label {
            color: rgba(255, 255, 255, 0.85);
        }

        .banner-metric-callout.callout-right .metric-value {
            color: #ffffff;
        }

        /* =============================================
           SECTION 2: ABOUT THE CLIENT
           ============================================= */
        .ee-about {
            background: #ffffff;
            padding: 90px 100px;
        }

        .ee-about .heading {
            font-size: 32px;
            font-weight: 600;
            color: #000000;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .ee-about p {
            font-size: 18px;
            font-weight: 400;
            color: #63666A;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        /* =============================================
           SECTION 3: THE CHALLENGE
           ============================================= */
        .challenge-section {
            background-color: #0F0A0A;
        }

        .challenge-section .challenge-title {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #FCFCFC;
            margin-bottom: 20px;
        }

        .challenge-section .challenge-headline {
            width: 100%;
            font-size: 40px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .challenge-section .challenge-subtitle {
            font-size: 18px;
            font-weight: 400;
            color: #D9D9D9;
            margin-bottom: 30px;
        }

        .challenge-section .challenge-body {
            font-size: 18px;
            font-weight: 400;
            color: #F3F2F2;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .challenge-section .hurdles-label {
            font-size: 18px;
            font-weight: 400;
            color: #D9D9D9;
            margin-bottom: 32px;
        }

        .challenge-box {
            background-color: transparent;
            min-height: 345px;
            padding: 2rem;
            border-radius: 0;
            height: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .challenge-box:hover {
            z-index: 100;
            transform: translateY(-5px);
        }

        .challenge-box.challenge-box-01:hover {
            background-color: #59CBE8;
            border-color: #59CBE8;
        }

        .challenge-box.challenge-box-02:hover {
            background-color: #C5B4E3;
            border-color: #C5B4E3;
        }

        .challenge-box.challenge-box-03:hover {
            background-color: #77DD77;
            border-color: #77DD77;
        }

        .challenge-box-number {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            color: #DADADA;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .challenge-box:hover .challenge-box-number {
            color: #000000;
        }

        .challenge-box-text {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-size: 24px;
            line-height: 130%;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
        }

        .challenge-box:hover .challenge-box-text {
            color: #000000;
        }

        .challenge-box-desc {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 18px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.3s ease;
        }

        .challenge-box:hover .challenge-box-desc {
            color: #000000;
        }

        .challenge-box-icon {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 80px;
            height: 80px;
            opacity: 0.8;
            transition: all 0.3s ease;
            z-index: 10;
            pointer-events: none;
        }

        .challenge-box:hover .challenge-box-icon {
            opacity: 1;
            transform: scale(1);
        }

        .challenge-box.challenge-box-01:hover .challenge-box-icon {
            filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(3000%) hue-rotate(200deg);
        }

        .challenge-box.challenge-box-02:hover .challenge-box-icon {
            filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(2000%) hue-rotate(260deg);
        }

        .challenge-box.challenge-box-03:hover .challenge-box-icon {
            filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(2000%) hue-rotate(100deg);
        }

        .ee-section-label {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2.16px;
            margin-bottom: 16px;
        }

        /* =============================================
           SECTION 4: OUR APPROACH
           ============================================= */
        .ee-approach {
            background: #ffffff;
            padding: 90px 100px;
        }

        .ee-approach .ee-section-label {
            color: #63666A;
        }

        .ee-approach h2 {
            font-size: 40px;
            font-weight: 600;
            color: #000000;
            line-height: 1.3;
            margin-bottom: 24px;
        }

        .ee-approach .approach-body {
            font-size: 18px;
            font-weight: 400;
            color: #212529;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .ee-approach-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

        .ee-approach-item img {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            align-self: flex-start;
            margin-top: 3px;
            object-fit: contain;
        }

        .ee-approach-item p {
            font-size: 18px;
            font-weight: 400;
            color: #212529;
            line-height: 1.5;
            margin: 0;
        }

        .ee-approach-item p strong {
            font-weight: 600;
        }

        /* =============================================
           SECTION 8: THE IMPACT
           ============================================= */
        .ee-impact {
            background: #0F0A0A;
            padding: 90px 100px;
        }

        .ee-impact .container-fluid {
            max-width: 100%;
            padding: 0;
        }

        .ee-impact .ee-section-label {
            color: #F2F2F2;
        }

        .ee-impact h2 {
            font-size: 40px;
            font-weight: 600;
            color: #FCFCFC;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .ee-impact>.container-fluid>p {
            font-size: 18px;
            font-weight: 400;
            color: #F3F2F2;
            line-height: 1.5;
            max-width: 1162px;
            margin-bottom: 30px;
        }

        .ee-impact-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 1px;
            table-layout: fixed;
        }

        .ee-impact-table col.col-focus {
            width: 22.8%;
        }

        .ee-impact-table col.col-prev {
            width: 32.2%;
        }

        .ee-impact-table col.col-new {
            width: 28.1%;
        }

        .ee-impact-table col.col-rank {
            width: 16.9%;
        }

        .ee-impact-table col.col-metric {
            width: 22.8%;
        }

        .ee-impact-table col.col-avg {
            width: 32.2%;
        }

        .ee-impact-table col.col-result {
            width: 28.1%;
        }

        .ee-impact-table col.col-perf {
            width: 16.9%;
        }

        .ee-impact-table th {
            padding: 16px;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.4;
            text-align: left;
            height: 71px;
            vertical-align: top;
        }

        .ee-impact-table th .th-sub {
            display: block;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.5;
            opacity: 0.95;
            margin-top: 2px;
        }

        .ee-impact-table th:nth-child(1) {
            background: #00A86B;
            color: #fff;
        }

        .ee-impact-table th:nth-child(2) {
            background: #FFC52B;
            color: #000;
        }

        .ee-impact-table th:nth-child(3) {
            background: #005EB8;
            color: #fff;
        }

        .ee-impact-table th:nth-child(4) {
            background: #8031A7;
            color: #fff;
        }

        .ee-impact-table td {
            padding: 16px;
            font-size: 18px;
            font-weight: 500;
            height: 71px;
            vertical-align: middle;
            border: none;
        }

        .ee-impact-table td:nth-child(1) {
            background: #D9FFD9;
            color: #000;
        }

        .ee-impact-table td:nth-child(2) {
            background: #FFE399;
            color: #000;
        }

        .ee-impact-table td:nth-child(3) {
            background: #CDEFF8;
            color: #000;
        }

        .ee-impact-table td:nth-child(4) {
            background: #E8E1F4;
            color: #000;
        }

        .ee-impact-table .perf-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #00A86B;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            padding: 12px;
            border-radius: 8px;
            min-width: 80px;
        }

        .ee-impact .footnote {
            font-size: 14px;
            font-weight: 400;
            color: #F3F2F2;
            line-height: 1.5;
            margin-top: 8px;
        }

        .ee-impact .quote-card {
            background: #005EB8;
            border-radius: 12px;
            padding: 24px;
            margin-top: 42px;
        }

        .ee-impact .quote-card p {
            font-size: 22px;
            font-weight: 400;
            color: #F3F2F2;
            line-height: 1.4;
            margin: 0;
        }

        /* =============================================
           SUMMARY CALLOUT
           ============================================= */
        .ee-summary-callout {
            border: 1px solid #DADADA;
            border-radius: 12px;
            padding: 42px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: #ffffff;
            width: fit-content;
        }

        .ee-summary-callout .callout-icon {
            width: 78px;
            height: 78px;
            flex-shrink: 0;
        }

        .ee-summary-callout .callout-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 925px;
        }

        .ee-summary-callout .callout-text .lead {
            font-size: 22px;
            font-weight: 400;
            color: #000;
            line-height: 1.4;
            margin: 0;
        }

        .ee-summary-callout .callout-text .body {
            font-size: 18px;
            font-weight: 400;
            color: #000;
            line-height: 1.5;
            margin: 0;
        }

        /* =============================================
           SECTION 10: CTA
           ============================================= */
        .cta-section {
            background-color: #ffffff;
            padding: 75px 100px;
        }

        .cta-section .cta-headline {
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-size: 32px;
            color: #000000;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-section .cta-button {
            background-color: #f7b82a;
            color: #1c1510;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-size: 18px;
            padding: 0.55rem 1rem;
            border: none;
            border-radius: 0;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .cta-section .cta-button:hover {
            background-color: #1c1510;
            color: #ffffff;
        }

        .cta-section .cta-image {
            max-width: 100%;
            height: auto;
        }

        .cta-image-wrapper {
            overflow: hidden;
            align-self: center;
        }

        /* =============================================
           RESPONSIVE
           ============================================= */
        /* Tablet */
        @media only screen and (max-width: 1024px) {

            .ee-about,
            .challenge-section,
            .ee-approach,
            .ee-impact,
            .cta-section {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Mobile */
        @media only screen and (max-width: 768px) {
            .banner-section {
                margin-top: 60px;
            }

            .banner-section .row {
                padding-right: 0;
            }

            .banner-left {
                padding: 40px 20px;
                min-height: auto;
            }

            .banner-section .purple-logo {
                display: none;
            }

            .banner-left h1 {
                font-size: 28px;
            }

            .banner-left p {
                font-size: 14px;
            }

            .banner-right {
                min-height: auto;
                padding: 0 20px 40px;
            }

            .banner-section .green-logo {
                display: none;
            }

            .banner-mockup-wrap {
                width: 100%;
                height: auto;
            }

            .banner-metric-callout.callout-left {
                left: -10px;
            }

            .banner-metric-callout.callout-right {
                right: -10px;
                bottom: -10px;
            }

            .ee-about {
                padding: 50px 20px;
            }

            .ee-about h2 {
                font-size: 26px !important;
            }

            .ee-about p {
                font-size: 15px !important;
            }

            .ee-about img {
                max-width: 180px;
                width: 100%;
                height: auto;
                display: block;
                margin: 0 auto 20px;
            }

            .challenge-section {
                padding: 50px 20px !important;
            }

            .challenge-headline {
                font-size: 26px !important;
            }

            .challenge-box {
                min-height: auto;
                padding: 20px !important;
            }

            .challenge-box h3 {
                font-size: 18px !important;
            }

            .challenge-box p {
                font-size: 14px !important;
            }

            .challenge-box-icon {
                display: none !important;
            }

            .ee-approach {
                padding: 50px 20px;
            }

            .ee-approach h2 {
                font-size: 26px;
            }

            .ee-approach p {
                font-size: 15px;
            }

            .ee-approach .row {
                flex-direction: column;
                gap: 24px !important;
            }

            .ee-approach .row>[class*="col-"] {
                width: 100%;
                max-width: 100%;
                flex: 1 1 100%;
            }

            .ee-approach-img {
                min-height: 220px;
                margin-top: 24px;
            }

            .ee-approach-img img {
                width: 100%;
                height: auto;
            }

            .ee-keywords {
                padding: 50px 20px;
            }

            .ee-impact-table-scroll {
                overflow-x: visible;
            }

            .ee-impact-table {
                width: 100%;
                min-width: 0;
                table-layout: auto;
            }

            .ee-impact-table th,
            .ee-impact-table td {
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            .ee-impact-table col {
                width: auto !important;
            }

            .ee-impact {
                padding: 50px 20px;
            }

            .ee-impact h2 {
                font-size: 26px;
            }

            .ee-impact p {
                font-size: 15px;
            }

            .ee-impact-table th {
                font-size: 16px !important;
                padding: 12px !important;
                height: auto !important;
            }

            .ee-impact-table td {
                font-size: 14px !important;
                padding: 12px !important;
                height: auto !important;
            }

            .ee-impact-table th .th-sub {
                font-size: 12px;
            }

            .ee-summary-callout {
                flex-direction: column;
                padding: 24px;
                gap: 16px;
            }

            .ee-summary-callout .callout-icon {
                width: 50px;
                height: 50px;
            }

            .ee-summary-callout .callout-text .lead {
                font-size: 18px;
            }

            .ee-summary-callout .callout-text .body {
                font-size: 16px;
            }

            section:has(.ee-summary-callout) {
                padding: 40px 20px !important;
            }

            .cta-section {
                padding: 50px 20px;
            }

            .cta-section .cta-headline {
                font-size: 22px;
            }

            .cta-section .cta-image-wrapper {
                display: none;
            }
        }

        /* Small mobile */
        @media only screen and (max-width: 480px) {
            .banner-left h1 {
                font-size: 24px;
            }

            .ee-about h2,
            .challenge-headline,
            .ee-approach h2,
            .ee-impact h2 {
                font-size: 22px !important;
            }
        }