 /* --- Section Container --- */
    .eeat-support-section {
        background-color: #1a1a1a; /* Dark Industrial Charcoal */
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
        color: #ffffff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .eeat-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .eeat-header h3 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        color: #ffffff;
    }

    /* Stats Bar */
    .eeat-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        border-left: 3px solid #cb4154; /* Brand Red */
        padding-left: 20px;
    }

    .stat-number {
        display: block;
        font-size: 24px;
        font-weight: 800;
        color: #cb4154;
    }

    .stat-label {
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.6);
    }

    /* 3-Column Execution Grid */
    .execution-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .execution-card {
        background: #222;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #333;
        transition: 0.3s;
    }

    .execution-card:hover {
        border-color: #cb4154;
        transform: translateY(-10px);
    }

    .card-image {
        height: 200px;
        position: relative;
        overflow: hidden;
    }

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

    .progress-tag {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(203, 65, 84, 0.9);
        color: #fff;
        padding: 4px 10px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .card-content {
        padding: 25px;
    }

    .card-content h4 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #fff;
    }

    .card-snapshot {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .card-snapshot li {
        font-size: 12px;
        color: #aaa;
        margin-bottom: 5px;
        padding-left: 15px;
        position: relative;
    }

    .card-snapshot li::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #cb4154;
    }

    /* Challenge-Approach-Result text */
    .car-text {
        font-size: 13px;
        line-height: 1.5;
        color: #ddd;
        margin-bottom: 20px;
    }

    .car-text strong { color: #cb4154; text-transform: uppercase; font-size: 11px; }

    .btn-card-cta {
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        color: #cb4154;
        text-decoration: none;
        letter-spacing: 1px;
        border-bottom: 1px solid #cb4154;
        padding-bottom: 3px;
    }

    @media (max-width: 992px) {
        .execution-grid { grid-template-columns: 1fr; }
    }


      /* --- Shared Container & Global Styles --- */
    .project-detail-section {
        padding: 60px 0;
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .project-case-card {
        display: flex;
        gap: 0;
        background: #f9f9f9;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eee;
        margin-bottom: 80px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }

    /* Alternating Layout Logic */
    .project-case-card.reverse { flex-direction: row-reverse; }

    .project-visual {
        flex: 1.2;
        position: relative;
        min-height: 480px;
    }

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

    .project-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #cb4154; /* SAAS Metal Red */
        color: #fff;
        padding: 8px 15px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        z-index: 5;
    }

    .project-info {
        flex: 1;
        padding: 50px;
        display: flex;
        flex-direction: column;
    }

    .project-info h3 {
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    /* Snapshot Grid */
    .snapshot-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .snap-item span {
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 4px;
    }

    .snap-item p {
        font-size: 13px;
        font-weight: 700;
        color: #333;
    }

    .project-text-block { margin-bottom: 20px; }

    .project-text-block h4 {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #cb4154;
        margin-bottom: 8px;
    }

    .project-text-block p, .project-text-block ul {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    .project-text-block ul { padding-left: 18px; list-style: square; }

    .btn-case-study {
        margin-top: auto;
        display: inline-block;
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 800;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 2px solid #cb4154;
        padding-bottom: 4px;
        align-self: flex-start;
        transition: 0.3s;
    }

    .btn-case-study:hover { color: #cb4154; }

    @media (max-width: 992px) {
        .project-case-card, .project-case-card.reverse { flex-direction: column; }
        .project-visual { min-height: 300px; }
        .project-info { padding: 30px; }
    }

    /* Section Container */
    .project-detail-section {
        background-color: #ffffff;
        padding: 60px 0;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Main Project Card Wrapper */
    .project-case-card {
        display: flex;
        gap: 50px;
        background: #f9f9f9;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }

    /* Project Visual Side */
    .project-visual {
        flex: 1.2;
        position: relative;
        min-height: 500px;
    }

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

    .project-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #cb4154; /* Brand Red */
        color: #fff;
        padding: 8px 15px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
    }

    /* Project Content Side */
    .project-info {
        flex: 1;
        padding: 50px;
        display: flex;
        flex-direction: column;
    }

    .project-info h3 {
        font-size: 26px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 25px;
        line-height: 1.2;
        color: #1a1a1a;
    }

    /* Snapshot Grid */
    .snapshot-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 35px;
        padding-bottom: 25px;
        border-bottom: 1px solid #ddd;
    }

    .snap-item span {
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 5px;
    }

    .snap-item p {
        font-size: 13px;
        font-weight: 700;
        color: #333;
        line-height: 1.4;
    }

    /* Text Content Sections */
    .project-text-block {
        margin-bottom: 25px;
    }

    .project-text-block h4 {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        color: #cb4154;
        margin-bottom: 10px;
    }

    .project-text-block p, .project-text-block ul {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    .project-text-block ul {
        padding-left: 18px;
        list-style: square;
    }

    .project-text-block ul li { margin-bottom: 5px; }

    /* CTA Button */
    .btn-case-study {
        margin-top: auto;
        display: inline-block;
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 2px solid #cb4154;
        padding-bottom: 5px;
        align-self: flex-start;
        transition: 0.3s;
    }

    .btn-case-study:hover { color: #cb4154; }

    /* Responsive Tweaks */
    @media (max-width: 992px) {
        .project-case-card { flex-direction: column; }
        .project-visual { min-height: 300px; }
        .project-info { padding: 30px; }
    }


       :root {
            --saas-red: #cb4154; /* Brand Red */
            --saas-dark: #1a1a1a;
            --white: #ffffff;
            --gray-bg: #f9f9f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

        /* --- Projects Hero Section --- */
        .hero-projects {
            position: relative;
            width: 100%;
            height: 60vh; /* Focused Hero height */
            min-height: 350px;
            background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), 
                        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1920') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-container {
            max-width: 900px; /* Matching your preferred narrow container */
            margin: 0 auto;
        }

        .hero-projects h1 {
            font-size: clamp(30px, 5vw, 48px);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-projects .hero-tag {
            font-size: 13px;
            font-weight: 800;
            color: var(--saas-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        /* --- Intro Section --- */
        .projects-intro {
            background-color: var(--white);
            padding: 80px 0 40px;
            text-align: center;
        }

        .intro-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .projects-intro h2 {
            font-size: 32px;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--saas-dark);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .projects-intro p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            font-weight: 500;
        }

        .red-divider {
            width: 60px;
            height: 4px;
            background-color: var(--saas-red);
            margin: 30px auto 0;
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .projects-intro h2 { font-size: 26px; }
            .projects-intro p { font-size: 16px; }
        }