@layer page {
    .service-detail-page {
        padding-top: 140px;
        background-color: #0a0f1c; /* Midnight Blue */
        min-height: 100vh;
    }

    /* --- GREEN BRANDING ELEMENTS --- */
    .badge {
        background: rgba(0, 209, 102, 0.1) !important;
        color: #00d166 !important;
        padding: 6px 18px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 1rem;
        border: 1px solid rgba(0, 209, 102, 0.2);
    }

    /* HERO SECTION */
    .service-hero {
        text-align: center;
        padding: 80px 0 40px; 
        background: radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.05), transparent 50%);
    }

    .service-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin: 1.5rem 0;
        letter-spacing: -2px;
        color: white;
        font-weight: 800;
        line-height: 1.1;
    }

    .gradient {
        background: linear-gradient(135deg, #60a5fa 30%, #a855f7 90%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .lead {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.25rem;
        color: #94a3b8;
        line-height: 1.6;
    }

    /* PARTNER TRUST BAR */
    .partner-trust-bar {
        background: rgba(255, 255, 255, 0.02);
        padding: 1.5rem 0; 
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 3rem;
    }

    .trust-flex { display: flex; justify-content: center; align-items: center; gap: 1.5rem; }
    .trust-flex p { color: #94a3b8; font-size: 0.8rem; text-transform: uppercase; font-weight: 700; }
    .metro-logo { height: 32px; width: auto; display: block; }

    /* --- OFFERINGS BENTO GRID --- */
    .offerings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .feature-card {
        background: rgba(30, 41, 59, 0.3);
        padding: 2.5rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.3s ease;
    }

    .feature-card:hover {
        background: rgba(30, 41, 59, 0.6);
        border-color: #00d166 !important; 
        transform: translateY(-8px);
    }

    .green-link {
        color: #00d166 !important; 
        text-decoration: none !important;
        display: block;
        margin-top: 15px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: 0.2s;
    }

    .green-link:hover { text-decoration: underline !important; }

    .feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
    .feature-card h3 { color: white; margin-bottom: 1rem; }
    .feature-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

    /* --- WHY US SPLIT SECTION --- */
    .why-us-section {
        background: #0f172a;
        padding: 100px 0;
        margin-top: 100px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .split-layout { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 6rem; 
        align-items: center; 
    }

    .text-white { color: white; }

    /* --- THE ULTIMATE ALIGNMENT FIX FOR CHECKLIST --- */
    .check-list {
        list-style: none;
        padding: 0;
        margin: 2.5rem 0;
    }

    .check-list li {
        display: grid;
        /* Col 1: Icon (45px) | Col 2: Fixed Label (220px) | Col 3: Flexible Description */
        grid-template-columns: 45px 220px 1fr; 
        align-items: start;
        margin-bottom: 1.8rem;
        color: #94a3b8;
        line-height: 1.5;
        font-size: 1.1rem;
    }

    .check-list li::before {
        content: "✓";
        color: #00d166 !important;
        font-weight: 900;
        background: rgba(0, 209, 102, 0.1);
        width: 24px; height: 24px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%; font-size: 0.8rem;
        margin-top: 3px;
    }

    .check-list strong {
        color: white;
        white-space: nowrap; 
        padding-right: 15px;
        display: block;
    }

    .check-list span {
        display: block;
        color: #94a3b8;
    }

    /* --- THE IMAGE BLOCK & TEXT POSITION FIX --- */
    .split-visual {
        position: relative;
        height: 450px;
        border-radius: 40px; 
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        /* FIX: This ensures the 'DATA BACKUP' text on the left is fully visible */
        object-position: left center; 
        display: block !important;
    }

    .visual-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10, 15, 28, 0.1), rgba(2, 6, 23, 0.6));
    }

    .glow-box {
        position: absolute;
        bottom: -20px; right: -20px;
        width: 250px; height: 250px;
        background: #00d166;
        filter: blur(80px);
        opacity: 0.15;
    }

    /* --- GREEN CTA BUTTON --- */
    .cta-button-green {
        display: inline-flex;
        align-items: center;
        background: #00d166 !important;
        color: #0a0f1c !important; 
        text-decoration: none;
        padding: 1.2rem 2.8rem;
        border-radius: 100px;
        font-weight: 800;
        transition: 0.3s ease;
    }

    .cta-button-green:hover { background: #00ff7c !important; transform: translateY(-3px); }

    /* --- MOBILE RESPONSIVE --- */
    @media (max-width: 968px) {
        .split-layout { grid-template-columns: 1fr; gap: 3rem; text-align: center;}
        .split-visual { height: 320px; margin-top: 2rem; }
        .check-list li { grid-template-columns: 40px 1fr; text-align: left; }
        .check-list strong { white-space: normal; grid-column: 2; margin-bottom: 5px; }
        .check-list span { grid-column: 2; }
    }
}