    /* =========================================
       SEO Page Redesign - Minimalist Blue/White
       Strict Color Palette: #73ADDF (Primary), White, Grays
       No dark sections, no secondary accents.
       ========================================= */

    :root {
        --t2-blue: #73ADDF;
        --t2-blue-light: #eef6fc;
        /* Very light tint of brand blue */
        --t2-blue-hover: #5fa0d6;
        --t2-text-dark: #1e293b;
        --t2-text-gray: #64748b;
        --t2-bg-white: #ffffff;
        --t2-bg-gray: #f8fafc;
        --t2-border-light: #e2e8f0;
        --t2-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        --t2-shadow-hover: 0 10px 15px -3px rgba(115, 173, 223, 0.15), 0 4px 6px -2px rgba(115, 173, 223, 0.1);
    }

    body {
        background-color: var(--t2-bg-gray);
        /* Overall light gray background */
    }

    .t2-page-redesign {
        font-family: 'DIN Next LT Arabic', sans-serif;
        color: var(--t2-text-dark);
        line-height: 1.6;
        padding-bottom: 80px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .t2-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========================
       HERO SECTION - Centered, Clean
       ======================== */
    .t2-hero-clean {
        background: var(--t2-bg-white);
        padding: 100px 0 80px;
        text-align: center;
        border-bottom: 1px solid var(--t2-border-light);
        margin-bottom: 60px;
        position: relative;
    }

    /* Subtle background pattern/gradient strictly in blue range */
    .t2-hero-clean::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(circle at top center, var(--t2-blue-light) 0%, transparent 60%);
        pointer-events: none;
    }

    .t2-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .t2-badge {
        display: inline-block;
        background: var(--t2-blue-light);
        color: var(--t2-blue);
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 24px;
        border: 1px solid rgba(115, 173, 223, 0.2);
    }

    .t2-hero-clean h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--t2-text-dark);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .t2-hero-clean h1 span {
        color: var(--t2-blue);
        display: block;
        /* Stack for impact */
        margin-top: 10px;
    }

    .t2-hero-clean p {
        font-size: 1.25rem;
        color: var(--t2-text-gray);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .t2-hero-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .t2-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .t2-btn-primary {
        background: var(--t2-blue);
        color: #fff;
        box-shadow: 0 4px 12px rgba(115, 173, 223, 0.3);
    }

    .t2-btn-primary:hover {
        background: var(--t2-blue-hover);
        transform: translateY(-2px);
    }

    .t2-btn-ghost {
        background: transparent;
        color: var(--t2-blue);
        border: 2px solid rgba(115, 173, 223, 0.2);
    }

    .t2-btn-ghost:hover {
        border-color: var(--t2-blue);
        background: var(--t2-blue-light);
    }

    /* ========================
       STICKY NAV
       ======================== */
    .t2-nav-sticky {
        position: sticky;
        top: 20px;
        z-index: 100;
        margin: 0 auto 60px;
        max-width: fit-content;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        padding: 10px 10px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        /* Soft shadow */
        border: 1px solid var(--t2-border-light);
        display: flex;
        gap: 5px;
    }

    .t2-nav-link {
        display: flex;
        /* Ensure icon and text are aligned */
        align-items: center;
        padding: 10px 20px;
        border-radius: 40px;
        color: var(--t2-text-gray);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .t2-nav-link:hover,
    .t2-nav-link.active {
        background: var(--t2-blue-light);
        color: var(--t2-blue);
    }

    /* ========================
       MAIN CARD GRID LAYOUT
       Instead of alternating sections, we use big spacious cards
       ======================== */
    .t2-grid-section {
        margin-bottom: 100px;
        scroll-margin-top: 140px;
    }

    .t2-section-head {
        text-align: center;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .t2-section-head h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--t2-text-dark);
    }

    .t2-section-head p {
        font-size: 1.15rem;
        color: var(--t2-text-gray);
    }

    /* The "Card" Look */
    .t2-big-card {
        background: var(--t2-bg-white);
        border-radius: 24px;
        border: 1px solid var(--t2-border-light);
        padding: 60px;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
        /* Clean white look */
        box-shadow: var(--t2-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .t2-big-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--t2-shadow-hover);
    }

    .t2-card-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }

    .t2-card-text h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--t2-text-dark);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .t2-card-text h3 svg {
        color: var(--t2-blue);
        background: var(--t2-blue-light);
        padding: 8px;
        border-radius: 12px;
        width: 44px;
        height: 44px;
    }

    .t2-feature-list {
        display: grid;
        gap: 20px;
    }

    .t2-feature-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .t2-check-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        background: var(--t2-blue);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin-top: 4px;
    }

    .t2-feature-info h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--t2-text-dark);
    }

    .t2-feature-info p {
        font-size: 0.95rem;
        color: var(--t2-text-gray);
        margin: 0;
        line-height: 1.6;
    }

    /* "About the service" integration - Instead of dark box */
    .t2-service-insight {
        background: var(--t2-bg-gray);
        /* Very light gray instead of dark */
        padding: 40px;
        border-radius: 20px;
        border: 1px solid rgba(115, 173, 223, 0.2);
    }

    .t2-service-insight h4 {
        color: var(--t2-blue);
        /* Blue headings */
        font-size: 1.2rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .t2-service-insight ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
    }

    .t2-service-insight li {
        position: relative;
        padding-right: 20px;
        font-size: 1rem;
        color: var(--t2-text-dark);
    }

    .t2-service-insight li::before {
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        background: var(--t2-blue);
        border-radius: 50%;
    }

    /* KSA Grid Specifics */
    .t2-ksa-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .t2-ksa-item {
        background: #fff;
        border: 1px solid var(--t2-border-light);
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        transition: border-color 0.3s;
    }

    .t2-ksa-item:hover {
        border-color: var(--t2-blue);
    }

    .t2-ksa-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        background: var(--t2-blue-light);
        color: var(--t2-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .t2-ksa-icon svg {
        width: 28px;
        height: 28px;
    }

    /* FAQ Redesign - Clean Accordion */
    .t2-accordion-item {
        background: #fff;
        border: 1px solid var(--t2-border-light);
        margin-bottom: 12px;
        border-radius: 12px;
        overflow: hidden;
    }

    .t2-accordion-btn {
        width: 100%;
        text-align: right;
        padding: 24px;
        background: none;
        border: none;
        font-family: inherit;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--t2-text-dark);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s, color 0.3s;
    }

    .t2-accordion-btn:hover {
        background-color: transparent;
        color: var(--t2-blue);
    }

    .t2-accordion-btn[aria-expanded="true"] {
        background: var(--t2-blue-light);
        color: var(--t2-blue);
    }

    .t2-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .t2-accordion-inner {
        padding: 0 24px 24px;
        color: var(--t2-text-gray);
        line-height: 1.7;
    }

    /* Split Grid Layout (Desktop) */
    .t2-split-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .t2-container {
            padding: 0 16px;
            overflow-x: hidden;
        }

        /* Prevent horizontal scroll */
        .t2-hero-clean h1 {
            font-size: 2rem;
            word-wrap: break-word;
        }

        /* Smaller font */
        .t2-hero-clean p {
            font-size: 1rem;
            padding: 0;
        }

        /* Fix Split Grid Overflow */
        .t2-split-grid {
            grid-template-columns: 1fr;
            /* Force single column */
            gap: 20px;
        }

        .t2-hero-actions {
            flex-direction: column;
            width: 100%;
            max-width: 100%;
            /* Remove fixed width restriction */
            margin: 0;
            padding: 0 10px;
        }

        .t2-btn {
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
            /* Space between buttons */
        }

        /* Nav improvements */
        .t2-nav-sticky {
            display: none;
        }

        .t2-nav-sticky::-webkit-scrollbar {
            display: none;
        }

        .t2-nav-link {
            padding: 8px 14px;
            font-size: 0.8rem;
            white-space: nowrap;
            flex-shrink: 0;
            background: #f8fafc;
            border-radius: 20px;
            margin-left: 5px;
        }

        .t2-nav-link.active {
            background: var(--t2-blue);
            color: #fff;
        }

        /* Card Adjustments */
        .t2-grid-section {
            scroll-margin-top: 120px;
            margin-bottom: 60px;
        }

        .t2-big-card {
            padding: 40px 20px;
            border-radius: 16px;
            margin-left: 0;
            margin-right: 0;
        }

        .t2-card-content-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .t2-card-text h3 {
            font-size: 1.5rem;
        }

        /* Ensure images/SVGs don't overflow */
        img,
        svg {
            max-width: 100%;
            height: auto;
        }

        /* Fix Order for Local SEO Section on Mobile */
        #local-seo .t2-card-content-grid {
            display: flex;
            flex-direction: column;
        }

        #local-seo .t2-card-text {
            order: 1;
        }

        #local-seo .t2-service-insight {
            order: 2;
            margin-top: 10px;
            width: 100%;
            box-sizing: border-box;
        }

        .t2-cta-academy {
            padding: 40px 20px;
            border-radius: 16px;
            width: 100%;
            box-sizing: border-box;
        }

        .t2-cta-academy h2 {
            font-size: 1.6rem;
        }

        .t2-cta-academy p {
            font-size: 1rem;
        }
    }

    /* Academy CTA Special Section */
    .t2-cta-academy {
        background: var(--t2-blue);
        color: #fff;
        border-radius: 24px;
        padding: 60px 40px;
        text-align: center;
        margin-top: 80px;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(115, 173, 223, 0.3);
    }

    .t2-cta-academy::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .t2-cta-academy h2 {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .t2-cta-academy p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 32px;
    }

    .t2-btn-white {
        background: #fff;
        color: var(--t2-blue);
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s;
    }

    .t2-btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* =========================================
       NEW PLATFORM SEO STYLES
       ========================================= */
    .t2-platforms-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .t2-platform-card {
        background: #fff;
        border: 1px solid var(--t2-border-light);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .t2-platform-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--t2-shadow-hover);
        border-color: var(--t2-blue);
    }

    .t2-platform-header {
        background: var(--t2-bg-gray);
        padding: 30px;
        border-bottom: 1px solid var(--t2-border-light);
        text-align: center;
    }

    .t2-platform-icon {
        width: 50px;
        height: 50px;
        background: var(--t2-blue);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin: 0 auto 15px;
        font-size: 1.2rem;
    }
    .t2-platform-icon.ecommerce { background: #10b981; }
    .t2-platform-icon.social { background: #8b5cf6; }
    .t2-platform-icon.code { background: #f59e0b; }

    .t2-platform-header h3 {
        margin: 0 0 10px;
        font-size: 1.4rem;
        color: var(--t2-text-dark);
    }

    .t2-platform-header p {
        font-size: 0.95rem;
        color: var(--t2-text-gray);
        margin: 0;
        line-height: 1.5;
    }

    .t2-platform-body {
        padding: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .t2-platform-col h4 {
        font-size: 1rem;
        color: var(--t2-blue);
        margin-bottom: 12px;
        font-weight: 700;
        border-bottom: 2px solid var(--t2-blue-light);
        padding-bottom: 5px;
        display: inline-block;
    }

    .t2-platform-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .t2-platform-col li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        position: relative;
        padding-right: 15px;
        color: var(--t2-text-dark);
    }

    .t2-platform-col li::before {
        content: '•';
        color: var(--t2-blue);
        position: absolute;
        right: 0;
        font-weight: bold;
    }
    
    .t2-platform-col.separator {
        border-right: 1px solid var(--t2-border-light);
        padding-right: 20px;
    }

    /* Why Box */
    .t2-platforms-why {
        background: var(--t2-text-dark);
        color: white;
        border-radius: 20px;
        padding: 40px;
        margin-top: 40px;
        text-align: center;
    }
    
    .t2-platforms-why h3 {
        color: white;
        margin-bottom: 25px;
    }

    .t2-why-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .t2-why-item {
        background: rgba(255,255,255,0.1);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.95rem;
    }
    
    .t2-why-item.fail {
        background: rgba(239, 68, 68, 0.2);
        color: #fca5a5;
        border: 1px solid rgba(239, 68, 68, 0.4);
    }

    /* Responsive for New Section */
    @media (max-width: 991px) {
        .t2-platforms-grid { grid-template-columns: 1fr; }
        .t2-platform-body { grid-template-columns: 1fr; gap: 30px; }
        .t2-platform-col.separator { border-right: none; padding-right: 0; border-top: 1px dashed var(--t2-border-light); padding-top: 30px; }
    }

/* ===================================
   Tier 2 — H2 Subtitle Paragraph
   Diamond corners + soft spotlight sweep
   =================================== */
@keyframes t2-spotlight {
    0% { left: -100%; }
    100% { left: 200%; }
}
@keyframes t2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes t2-diamondSpin {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.15); }
    100% { transform: rotate(45deg) scale(1); }
}

.t2-section-head h2 + p,
.t2-card-text h3 + p {
    font-size: 1.12rem;
    line-height: 1.9;
    color: #64748b;
    max-width: 720px;
    margin: 24px auto 32px;
    padding: 28px 32px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 50%, #fdf4ff 100%);
    border-radius: 22px;
    box-shadow:
        0 4px 20px rgba(92,181,229,0.06),
        0 1px 3px rgba(92,181,229,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(92,181,229,0.08);
    position: relative;
    text-align: right;
    overflow: visible;
    overflow: hidden;
    animation: t2-float 5s ease-in-out infinite;
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.t2-section-head h2 + p:hover,
.t2-card-text h3 + p:hover {
    box-shadow:
        0 10px 40px rgba(92,181,229,0.1),
        0 2px 8px rgba(92,181,229,0.06);
    transform: translateY(-5px);
}

/* Decorative diamond shapes at corners */
.t2-section-head h2 + p::before,
.t2-card-text h3 + p::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(92,181,229,0.2), rgba(139,92,246,0.12));
    border: 2px solid rgba(92,181,229,0.1);
    transform: rotate(45deg);
    animation: t2-diamondSpin 4s ease-in-out infinite;
    box-shadow:
        0 65px 0 -2px rgba(6,182,212,0.12),
        0 65px 0 0 rgba(6,182,212,0.06);
    pointer-events: none;
    z-index: 2;
}

/* Spotlight sweep across card */
.t2-section-head h2 + p::after,
.t2-card-text h3 + p::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(92,181,229,0.04),
        rgba(255,255,255,0.2),
        rgba(139,92,246,0.03),
        transparent
    );
    transform: skewX(-15deg);
    animation: t2-spotlight 6s ease-in-out infinite;
    pointer-events: none;
    border-radius: 22px;
}

@media (max-width: 768px) {
    .t2-section-head h2 + p,
    .t2-card-text h3 + p {
        font-size: 1rem;
        padding: 22px 24px;
        margin: 18px auto 24px;
        border-radius: 18px;
    }
    .t2-section-head h2 + p::before,
    .t2-card-text h3 + p::before {
        width: 12px; height: 12px; top: -6px; right: -6px;
        box-shadow: 0 50px 0 -2px rgba(6,182,212,0.1);
    }
}
