* { 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;
        }
        .ee-approach-img {
            background: #F2F2F2;
            overflow: hidden;
            height: 100%;
            min-height: 480px;
        }
        .ee-approach-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* =============================================
           SECTION 5: TOP KEYWORDS
           ============================================= */
        .ee-keywords {
            background: #F2F2F2;
            padding: 84px 100px;
        }
        .ee-keywords .ee-section-label { color: #63666A; }
        .ee-keywords .header-left {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .ee-keywords h2 {
            font-size: 40px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .ee-keywords .date-label {
            font-size: 24px;
            font-weight: 600;
            color: #000000;
            line-height: 1.2;
        }

        /* Stat badges */
        .ee-stat-badges {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .ee-stat-badge {
            background: #ffffff;
            border-radius: 15px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .ee-stat-badge .accent-bar {
            width: 5px;
            height: 59px;
            border-radius: 12px;
            flex-shrink: 0;
        }
        .ee-stat-badge .badge-content {
            display: flex;
            flex-direction: column;
            font-size: 14.7px;
            font-weight: 500;
            color: #000;
            white-space: nowrap;
            line-height: 1.4;
        }
        .ee-stat-badge .badge-type {
            color: rgba(0,0,0,0.5);
        }

        /* Tables */
        .ee-table-wrap {
            background: #ffffff;
            border: 1px solid #B9B9B9;
            border-radius: 4px;
            overflow: hidden;
        }
        .ee-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Poppins', sans-serif;
            table-layout: fixed;
        }
        .ee-table col.col-keyword { width: 60%; }
        .ee-table col.col-volume { width: 20%; }
        .ee-table col.col-position { width: 20%; }
        .ee-table th {
            font-size: 22px;
            font-weight: 400;
            padding: 10px 12px;
            text-align: left;
            border-left: 1px solid #B9B9B9;
            border-top: 1px solid #B9B9B9;
            line-height: 1.4;
            color: #000;
        }
        .ee-table th:first-child { border-left: none; }
        .ee-table th.col-keyword { background: #FEEDE9; }
        .ee-table th.col-volume { background: #E8E1F4; }
        .ee-table th.col-position { background: rgba(191,255,191,0.6); }
        .ee-table td {
            font-size: 18px;
            font-weight: 500;
            padding: 10px 12px;
            border-left: 1px solid #B9B9B9;
            border-top: 1px solid #B9B9B9;
            line-height: 1.5;
            color: #000;
            background: #ffffff;
        }
        .ee-table td:first-child { border-left: none; }

        /* =============================================
           SECTION 6: TOP LANDING PAGES
           ============================================= */
        .ee-landing {
            background: #ffffff;
            padding: 84px 100px;
        }
        .ee-landing-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .ee-landing-title h2 {
            font-size: 40px;
            font-weight: 600;
            color: #000000;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .ee-landing-title .date-label {
            font-size: 24px;
            font-weight: 600;
            color: #000000;
            line-height: 1.2;
            margin: 0;
        }
        .ee-landing-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .ee-landing-badge {
            border-radius: 12px;
            padding: 10px 24px 10px 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            width: 160px;
        }
        .ee-landing-badge .badge-bar {
            width: 7px;
            height: 65px;
            border-radius: 10px;
            flex-shrink: 0;
        }
        .ee-landing-badge .badge-content {
            display: flex;
            flex-direction: column;
        }
        .ee-landing-badge .badge-page {
            font-size: 18px;
            font-weight: 400;
            color: rgba(0,0,0,0.6);
            line-height: 1.5;
        }
        .ee-landing-badge.badge-about .badge-page {
            font-weight: 500;
            color: rgba(0,0,0,0.5);
        }
        .ee-landing-badge .badge-val {
            font-size: 28px;
            font-weight: 600;
            color: #000;
            line-height: 1.2;
        }
        .ee-landing-badge.badge-home {
            background: rgba(191,255,191,0.6);
        }
        .ee-landing-badge.badge-home .badge-bar {
            background: #00A86B;
        }
        .ee-landing-badge.badge-about {
            background: #FEEDE9;
        }
        .ee-landing-badge.badge-about .badge-bar {
            background: #F96815;
        }
        .ee-landing .laptop-wrap {
            position: relative;
            width: 100%;
            height: 100%;
            align-self: stretch;
            border-radius: 4px;
            overflow: hidden;
            min-height: 427px;
        }
        .ee-landing .laptop-wrap .mockup-frame {
            position: absolute;
            left: -33.38%;
            top: -39.62%;
            width: 169.15%;
            height: 181.52%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }
        .ee-landing .laptop-wrap .mockup-screen {
            position: absolute;
            left: 12.18%;
            top: 19.44%;
            width: 74.61%;
            height: 63.38%;
            display: block;
        }
        .ee-landing .row {
            align-items: stretch;
        }
        .ee-landing .row > [class*="col-"] {
            display: flex;
        }
        .ee-landing .ee-table-scroll .ee-table-wrap,
        .ee-landing .ee-table-scroll {
            width: 100%;
        }
        .ee-table th.col-pages { background: #E8E1F4; }
        .ee-table th.col-views { background: #CDEFF8; }

        /* =============================================
           SECTION 7: SEO RANKING
           ============================================= */
        .ee-ranking {
            background: #F2F2F2;
            padding: 84px 100px;
        }
        .ee-ranking h2 {
            font-size: 40px;
            font-weight: 600;
            color: #000000;
            margin: 0 0 42px !important;
            line-height: 1.3;
            display: block;
        }
        .ee-ranking .container-fluid {
            padding: 0;
        }
        .ee-ranking .container-fluid > .row {
            margin-top: 0;
        }
        .ee-ranking .ee-table-wrap {
            border-radius: 0;
        }
        .ee-ranking .ee-table th {
            padding: 16px;
            font-weight: 500;
            height: 71px;
        }
        .ee-ranking .ee-table th.col-jul,
        .ee-ranking .ee-table th.col-oct {
            font-weight: 400;
            font-size: 22px;
            line-height: 1.4;
            text-align: center;
            vertical-align: middle;
        }
        .ee-ranking .ee-table-wrap {
            border-color: #DADADA;
            border-radius: 0;
        }
        .ee-ranking .ee-table th {
            font-size: 22px;
            font-weight: 500;
            padding: 16px;
            border: none;
            text-align: left;
        }
        .ee-ranking .ee-table th.col-jul,
        .ee-ranking .ee-table th.col-oct {
            text-align: center;
            font-weight: 400;
        }
        .ee-ranking .ee-table td {
            padding: 12px 16px;
            font-size: 18px;
            font-weight: 500;
            border: none;
        }
        .ee-ranking .ee-table td:nth-child(2),
        .ee-ranking .ee-table td:nth-child(3) {
            text-align: center;
        }
        .ee-ranking .ee-table col.col-page { width: 54%; }
        .ee-ranking .ee-table col.col-jul { width: 23%; }
        .ee-ranking .ee-table col.col-oct { width: 23%; }
        .ee-table th.col-page { background: #E8E1F4; }
        .ee-table th.col-jul { background: #FEEDE9; }
        .ee-table th.col-oct { background: #E8E1F4; }
        .ee-ranking .ee-table tbody tr:nth-child(odd) td { background: #FFFFFF; }
        .ee-ranking .ee-table tbody tr:nth-child(even) td { background: #F8F8F8; }
        .ee-ranking .green-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(191,255,191,0.6);
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            margin-left: 6px;
            vertical-align: middle;
        }
        .ee-ranking .green-badge img {
            width: 8px;
            height: 9px;
            display: inline-block;
        }

        /* =============================================
           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 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; }

        /* =============================================
           SECTION 9: GROWTH
           ============================================= */
        .ee-growth {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 90px 100px 0;
            min-height: 710px;
            display: flex;
            flex-direction: column;
        }
        .ee-growth::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(-90deg, rgba(102,102,102,0) 23.333%, rgba(51,51,51,0.6) 43.918%, rgba(0,0,0,0.8) 91.806%);
            z-index: 1;
        }
        .ee-growth .ee-section-label { color: #DADADA; }
        .ee-growth-content {
            position: relative;
            z-index: 2;
            max-width: 611px;
        }
        .ee-growth-content h2 {
            font-size: 40px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 24px;
        }
        .ee-growth-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.2);
        }
        .ee-growth-item:last-child {
            border-bottom: none;
        }
        .ee-growth-item .growth-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ee-growth-item .growth-icon img {
            width: 20px;
            height: 20px;
            display: block;
        }
        .ee-growth-item p {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            line-height: 1.5;
            margin: 0;
            flex: 1;
        }
        .ee-growth-item p strong {
            font-weight: 600;
        }
        .ee-growth-bottom {
            position: relative;
            z-index: 2;
            background: #FEEDE9;
            padding: 24px;
            width: 100%;
            margin-top: auto;
        }
        .ee-growth-bottom h3 {
            font-size: 24px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 20px;
        }
        .ee-growth-bottom p {
            font-size: 18px;
            font-weight: 400;
            color: #000000;
            line-height: 1.5;
            margin: 0;
        }

        /* =============================================
           SECTION 10: CTA (matches SmartWheels pattern)
           ============================================= */
        .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-keywords,
            .ee-landing,
            .ee-ranking,
            .ee-impact,
            .ee-growth,
            .cta-section { padding-left: 40px; padding-right: 40px; }
            .ee-landing .row { flex-direction: column; gap: 24px !important; }
            .ee-landing .laptop-wrap { min-height: 320px; }
            .ee-ranking .row { flex-direction: column; gap: 24px !important; }
        }

        /* 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-keywords h2 { font-size: 26px; }
            .ee-stat-badges { flex-direction: column; gap: 16px; }
            .ee-stat-badges .ee-stat-badge { width: 100%; }

            /* Tables: wrap text and use full width so nothing overflows */
            .ee-table-scroll,
            .ee-impact-table-scroll { overflow-x: visible; }
            .ee-table,
            .ee-impact-table {
                width: 100%;
                min-width: 0;
                table-layout: auto;
            }
            .ee-table th,
            .ee-table td,
            .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-ranking .ee-table col.col-page,
            .ee-ranking .ee-table col.col-jul,
            .ee-ranking .ee-table col.col-oct { width: auto; }

            .ee-landing { padding: 50px 20px; }
            .ee-landing-title h2 { font-size: 26px; }
            .ee-landing-title .date-label { font-size: 18px; }
            .ee-landing-header { gap: 16px; margin-bottom: 24px; }
            .ee-landing-badges { gap: 12px; }
            .ee-landing-badge { width: calc(50% - 6px); padding: 10px 12px; }
            .ee-landing-badge .badge-val { font-size: 22px; }
            .ee-landing .laptop-wrap { min-height: 260px; }

            .ee-ranking { padding: 50px 20px; }
            .ee-ranking h2 { font-size: 26px; margin-bottom: 24px; }
            .ee-ranking .ee-table th { font-size: 16px; padding: 12px; height: auto; }
            .ee-ranking .ee-table td { font-size: 14px; padding: 10px 12px; }

            .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-growth { padding: 50px 20px; min-height: auto; }
            .ee-growth-content { max-width: 100%; }
            .ee-growth-content h2 { font-size: 26px; }
            .ee-growth-item { padding: 12px 0; gap: 10px; }
            .ee-growth-item .growth-icon { width: 32px; height: 32px; padding: 6px; }
            .ee-growth-item .growth-icon img { width: 20px; height: 20px; }
            .ee-growth-item p { font-size: 15px; }
            .ee-growth-bottom { padding: 20px; margin-top: 28px; }
            .ee-growth-bottom h3 { font-size: 18px; }
            .ee-growth-bottom p { font-size: 14px; }

            .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) {
            .ee-landing-badge { width: 100%; }
            .banner-left h1 { font-size: 24px; }
            .ee-about h2,
            .challenge-headline,
            .ee-approach h2,
            .ee-keywords h2,
            .ee-landing-title h2,
            .ee-ranking h2,
            .ee-impact h2,
            .ee-growth-content h2 { font-size: 22px !important; }
        }