    :root {
        --wp-primary: #73ADDF;
        --wp-secondary: #2c3e50;
        --wp-dark-bg: #1e293b;
        --wp-bg-light: #eef6fc;
        --wp-bg-white: #ffffff;
        --wp-border: #e2e8f0;
        --wp-text-main: #334155;
        --wp-text-muted: #64748b;
    }

    body {
        background-color: var(--wp-bg-white);
        font-family: 'DIN Next LT Arabic', sans-serif;
        color: var(--wp-text-main);
        overflow-x: hidden;
    }

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

    /* ========================
       MODERN HERO
       ======================== */
    .t5-new-hero {
        padding: 100px 0 80px;
        text-align: center;
        background: radial-gradient(circle at center, #eef6fc 0%, #ffffff 70%);
        position: relative;
    }

    .t5-new-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--wp-primary);
        border-radius: 2px;
    }

    .t5-new-hero h1 {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--wp-secondary);
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .t5-new-hero h1 span {
        color: var(--wp-primary);
        position: relative;
        display: inline-block;
    }

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

    /* ========================
       FEATURE STRIPS (ZIG-ZAG)
       ======================== */
    .t5-strip {
        padding: 80px 0;
        border-bottom: 1px solid var(--wp-border);
    }

    .t5-strip:last-child {
        border-bottom: none;
    }

    .t5-strip-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .t5-strip:nth-child(even) .t5-strip-content {
        flex-direction: row-reverse;
    }

    .t5-text-block {
        flex: 1;
    }

    .t5-visual-block {
        flex: 0.8;
        background: var(--wp-bg-light);
        padding: 40px;
        border-radius: 24px;
        position: relative;
        border: 1px solid rgba(115, 173, 223, 0.2);
    }

    .t5-visual-block h4 {
        color: var(--wp-primary);
        font-size: 1.15rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .t5-visual-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        display: grid;
        gap: 12px;
    }

    .t5-visual-block li {
        position: relative;
        padding-right: 20px;
        font-size: 1rem;
        color: var(--wp-secondary);
        line-height: 1.6;
    }

    .t5-visual-block li::before {
        content: '';
        position: absolute;
        right: 0;
        top: 9px;
        width: 6px;
        height: 6px;
        background: var(--wp-primary);
        border-radius: 50%;
    }

    .t5-btn-ghost {
        background: transparent;
        color: var(--wp-primary);
        border: 2px solid rgba(115, 173, 223, 0.3);
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
    }

    .t5-btn-ghost:hover {
        border-color: var(--wp-primary);
        background: rgba(115, 173, 223, 0.08);
    }

    .t5-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--wp-primary);
        font-weight: 700;
        margin-bottom: 12px;
        display: block;
    }

    .t5-text-block h2 {
        font-size: 2.2rem;
        color: var(--wp-secondary);
        margin-bottom: 20px;
        font-weight: 800;
    }

    .t5-text-block p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        color: var(--wp-text-muted);
    }

    .t5-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .t5-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.05rem;
        font-weight: 500;
    }

    .t5-list li svg {
        color: var(--wp-primary);
        flex-shrink: 0;
    }

    .t5-tech-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .t5-tech-tag {
        display: inline-block;
        background: #fff;
        border: 1px solid var(--wp-border);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.9rem;
        color: var(--wp-text-muted);
        box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    }

    /* ========================
       WHY SECTION - HORIZONTAL
       ======================== */
    .t5-why-wrapper {
        background: #fff;
        color: var(--wp-text-main);
        padding: 80px 40px;
        margin: 60px 0;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--wp-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .t5-why-wrapper h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
        color: var(--wp-dark-bg);
    }

    .t5-why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 2;
    }

    .t5-why-item {
        text-align: center;
        padding: 30px 20px;
        background: var(--wp-bg-light);
        border-radius: 16px;
        border: 1px solid rgba(115, 173, 223, 0.1);
        transition: transform 0.3s;
    }

    .t5-why-item:hover {
        transform: translateY(-5px);
        background: var(--wp-bg-white);
        box-shadow: 0 10px 20px rgba(115, 173, 223, 0.15);
        border-color: var(--wp-primary);
    }

    .t5-why-number {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--wp-primary);
        margin-bottom: 15px;
        display: block;
        opacity: 0.8;
    }
    
    .t5-why-item p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin: 0;
        color: var(--wp-text-muted);
    }
    
    .t5-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--wp-bg-light);
        padding: 8px 16px;
        border-radius: 50px;
        margin-bottom: 20px;
        color: var(--wp-secondary);
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(115, 173, 223, 0.2);
    }

    .t5-hero-badge svg {
        width: 20px;
        height: 20px;
        color: var(--wp-primary);
    }
    
    /* ========================
       SIMPLE CTA
       ======================== */
    .t5-final-cta {
        text-align: center;
        padding: 60px 40px;
        background: #fff;
        max-width: 800px;
        margin: 0 auto 80px;
        border: 2px solid var(--wp-primary);
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(115, 173, 223, 0.15);
    }

    .t5-btn-primary {
        background: var(--wp-primary);
        color: #fff;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        margin-top: 20px;
        transition: all 0.3s;
        border: 2px solid var(--wp-primary);
    }

    .t5-btn-primary:hover {
        background: transparent;
        color: var(--wp-primary);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(115, 173, 223, 0.2);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .t5-strip-content, .t5-strip:nth-child(even) .t5-strip-content {
            flex-direction: column;
            gap: 40px;
        }
        
        .t5-why-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .t5-new-hero h1 { font-size: 2.5rem; }
    }

    @media (max-width: 500px) {
        .t5-why-grid { grid-template-columns: 1fr; }
        .t5-final-cta { padding: 40px 20px; }
    }

/* ===================================
   Tier 5 — H2 Subtitle Paragraph
   Aurora glass + animated wave decoration
   =================================== */
@keyframes t5-auroraLight {
    0%, 100% { box-shadow: 0 4px 24px rgba(92,181,229,0.07); }
    33% { box-shadow: 0 6px 30px rgba(139,92,246,0.09); }
    66% { box-shadow: 0 5px 28px rgba(6,182,212,0.08); }
}
@keyframes t5-shine {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(400%) rotate(25deg); }
}
@keyframes t5-wavePulse {
    0%, 100% { transform: scaleX(1); opacity: 0.18; }
    50% { transform: scaleX(1.05); opacity: 0.28; }
}

.t5-text-block h2 + p,
.t5-why-wrapper h2 + p {
    font-size: 1.12rem;
    line-height: 1.95;
    color: #64748b;
    max-width: 720px;
    margin: 24px auto 34px;
    padding: 30px 34px 34px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 25%, #faf5ff 50%, #f0fdfa 75%, #ffffff 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(92,181,229,0.08);
    position: relative;
    text-align: right;
    overflow: hidden;
    animation: t5-auroraLight 6s ease infinite;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}

.t5-text-block h2 + p:hover,
.t5-why-wrapper h2 + p:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(92,181,229,0.12);
}

/* Animated light shine sweep */
.t5-text-block h2 + p::before,
.t5-why-wrapper h2 + p::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 30px;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(92,181,229,0.05),
        rgba(255,255,255,0.15),
        rgba(139,92,246,0.04),
        transparent
    );
    animation: t5-shine 7s ease-in-out infinite;
    pointer-events: none;
}

/* Decorative wave shape at bottom */
.t5-text-block h2 + p::after,
.t5-why-wrapper h2 + p::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 80%;
    height: 8px;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(92,181,229,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 50%, rgba(139,92,246,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6,182,212,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(236,72,153,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(92,181,229,0.18) 0%, transparent 50%);
    border-radius: 50%;
    animation: t5-wavePulse 4s ease-in-out infinite;
    pointer-events: none;
}

@media (max-width: 768px) {
    .t5-text-block h2 + p,
    .t5-why-wrapper h2 + p {
        font-size: 1rem;
        padding: 22px 24px 28px;
        margin: 18px auto 24px;
        border-radius: 18px;
    }
}
