@layer page {
    .service-detail-page {
        padding-top: 140px;
        background-color: #0a0f1c; /* Midnight Blue base */
    }

    /* --- GREEN BRANDING ELEMENTS --- */
    .badge {
        background: rgba(0, 209, 102, 0.1);
        color: #00d166;
        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: 100px 0;
        background: radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.05), transparent 50%);
    }

    .service-hero h1 {
        font-size: clamp(3rem, 6vw, 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;
    }

    /* --- OFFERINGS GRID --- */
    .offerings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-card {
        background: rgba(30, 41, 59, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 2.5rem;
        border-radius: 24px;
        transition: 0.3s ease;
    }

    .feature-card:hover {
        background: rgba(30, 41, 59, 0.6);
        border-color: #00d166; 
        transform: translateY(-8px);
    }

    .green-link {
        color: #00d166 !important;
        text-decoration: none;
        display: block;
        margin-top: 15px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .green-link:hover {
        text-decoration: underline;
    }

    .feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; 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: 5rem;
        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 (180px) | Col 3: Flexible Description */
        grid-template-columns: 45px 180px 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;
        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 --- */
    .split-visual {
        position: relative;
        height: 480px;
        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;
        display: block;
    }

    .visual-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(10, 15, 28, 0.2), rgba(2, 6, 23, 0.7));
    }

    /* --- GREEN CTA BUTTON --- */
    .cta-button-green {
        display: inline-flex;
        align-items: center;
        background: #00d166;
        color: #0a0f1c; 
        text-decoration: none;
        padding: 1.2rem 2.8rem;
        border-radius: 100px;
        font-weight: 800;
        transition: 0.3s ease;
        margin-top: 20px;
    }

    .cta-button-green:hover {
        background: #00ff7c;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 209, 102, 0.4);
    }

    /* --- MOBILE RESPONSIVE --- */
    @media (max-width: 968px) {
        .split-layout { grid-template-columns: 1fr; 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;
        }
    }
}