
        /* ═══════════════════════════════════════════════════════════════
           DIVINE DESIGN SYSTEM – التضامن الجامعي المغربي
           ═══════════════════════════════════════════════════════════════ */
        :root {
            --blue:        #094a8c;
            --blue-dark:   #063266;
            --blue-mid:    #0d5fb3;
            --blue-light:  #e8f0fa;
            --yellow:      #f7ec11;
            --yellow-dark: #d4c90e;
            --yellow-soft: #fdf6b2;
            --cream:       #f7f5f0;
            --white:       #ffffff;
            --text:        #1a1a1a;
            --muted:       #5a5a5a;
            --border:      #d9d4c7;
            --radius:      12px;
            --radius-sm:   8px;
            --font:        'Cairo', 'Segoe UI', sans-serif;
            --serif:       'Tajawal', Georgia, serif;
            --shadow-sm:   0 2px 8px rgba(0,0,0,.05);
            --shadow-md:   0 8px 24px rgba(9,74,140,.1);
            --shadow-lg:   0 16px 40px rgba(0,0,0,.1);
            --shadow-xl:   0 24px 56px rgba(0,0,0,.14);
            --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font);
            font-size: 16px;
            color: var(--text);
            background: #fff;
            line-height: 1.7;
            /* direction now set on <html> */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: inherit; text-decoration: none; }
        img { display: block; max-width: 100%; }

        

        
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            font-family: var(--font);
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
        .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(247,236,17,0.1); }
        .btn-yellow { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
        .btn-yellow:hover { background: #fff; border-color: #fff; color: var(--blue-dark); }
        .btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
        .btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

        

        /* ── BREADCRUMB ── */
        .breadcrumb-bar { background: var(--cream); border-bottom: 1px solid var(--border); padding: 10px 0; }
        .breadcrumb {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--muted);
        }
        .breadcrumb a { color: var(--muted); transition: color .2s; }
        .breadcrumb a:hover { color: var(--blue); }
        .breadcrumb-sep { opacity: .4; }
        .breadcrumb-current { color: var(--text); font-weight: 700; }

        /* ── CONTAINERS ── */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
        .container-sm { max-width: 860px; margin: 0 auto; padding: 0 28px; }

        /* ── PAGE TITLE ── */
        .page-title-bar { background: var(--white); padding: 32px 0 20px; border-bottom: 1px solid var(--border); }
        .page-h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--blue); }

        /* ── HERO IMAGE ── */
        .hero-image-wrap { overflow: hidden; max-height: 480px; }
        .hero-image-wrap img { width: 100%; object-fit: cover; max-height: 480px; }

        /* ── INTRO ── */
        .intro-block { background: var(--white); padding: 48px 0; }
        .intro-text {
            font-size: 24px;
            font-family: var(--serif);
            line-height: 1.8;
            color: var(--text);
            border-inline-end: 5px solid var(--yellow); /* flips with direction */
            padding-inline-end: 24px; /* flips with direction */
        }

        /* ── ANCHOR NAV ── */
        .anchor-nav-wrap {
            background: var(--white);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 80px;
            z-index: 90;
        }
        .anchor-nav {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .anchor-nav::-webkit-scrollbar { display: none; }
        .anchor-link {
            padding: 14px 20px;
            font-size: 13px;
            font-weight: 700;
            color: var(--muted);
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all .2s;
        }
        .anchor-link:hover, .anchor-link.active { color: var(--blue); border-bottom-color: var(--yellow); }

        /* ── SECTIONS ── */
        .content-section { padding: 80px 0; }
        .bg-white { background: var(--white); }
        .bg-soft { background: var(--cream); }
        .bg-blue-soft { background: var(--blue-light); }

        h2.section-title {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 900;
            color: var(--blue-dark);
            position: relative;
            padding-bottom: 16px;
            margin-bottom: 40px;
            text-align: center;
        }
        h2.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--yellow);
            border-radius: 2px;
        }
        /* ── Principles Strip ── */
        .principles-strip {
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(9, 74, 140, 0.1);
        }

        .principle-item {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 32px 36px;
            background: #fff;
            transition: all 0.3s;
            border-bottom: 1px solid #e0dbd0;
        }
        .principle-item:last-child {
            border-bottom: none;
        }
        .principle-item:hover {
            background: var(--blue-light);
            transform: scale(1.01);
        }

        .principle-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--yellow);
            line-height: 1;
            min-width: 70px;
            text-align: center;
        }

        .principle-content h3 {
            font-size: 22px;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .principle-content p {
            font-family: var(--serif);
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
        }

        /* Responsive – stack vertically on small screens */
        @media (max-width: 860px) {
            .principle-item {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            .principle-number {
                min-width: auto;
            }
        }
        /* ── OBJECTIVES ── */
        .objectives-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .objective-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid transparent;
        }
        .objective-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .obj-icon {
            font-size: 28px;
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--blue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .obj-text { font-family: var(--serif); font-size: 16px; line-height: 1.7; color: var(--text); }

        /* ── SERVICES ACCORDION ── */
        .services-accordion { max-width: 700px; margin: 0 auto; }
        .accordion-item {
            margin-bottom: 12px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            background: var(--white);
            border: 1px solid var(--border);
        }
        .accordion-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }
        .accordion-header {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 700;
            color: var(--blue);
            text-align:start;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font);
            transition: background .2s;
        }
        .accordion-header:hover { background: var(--blue-light); }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
            font-family: var(--serif);
            color: var(--muted);
            line-height: 1.8;
            background: #fafcff;
        }
        .accordion-item.open .accordion-content { max-height: 400px; padding: 16px 24px; }
        .accordion-icon { font-size: 22px; transition: transform 0.3s; font-weight: 300; }
        .accordion-item.open .accordion-icon { transform: rotate(45deg); }

        /* ═══════════════════════════════════════════════════════════
           COURT CARDS – side‑by‑side boxes
           ═══════════════════════════════════════════════════════════ */
        .court-cards-row {
            display: flex;
            gap: 24px;
            margin-top: 48px;
            flex-wrap: wrap;
        }
        .court-card {
            flex: 1 1 280px;
            border-radius: 16px;
            padding: 28px 24px 24px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,.06);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .court-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,.1);
        }
        .court-card--yellow {
            background: #fffdf0;
            border: 2px solid var(--yellow);
        }
        .court-card--blue {
            background: var(--blue-lt);
            border: 2px solid var(--blue);
        }
        .court-card__icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .court-card h3 {
            font-size: 18px;
            font-weight: 900;
            color: var(--blue-dark);
            margin-bottom: 16px;
        }
        .list-bubbles {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .list-bubble {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--blue-dark);
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,.04);
        }
        .list-bubble:hover {
            background: var(--yellow-soft);
            border-color: var(--yellow);
            transform: translateY(-1px);
        }

        /* Mobile – stack vertically */
        @media (max-width: 600px) {
            .court-cards-row {
                flex-direction: column;
            }
        }        /* ── Strategy: radical split‑screen design ── */
        .strategy-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }
        .strategy-block {
            border-radius: 24px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .strategy-block:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        /* Yellow‑accent panel */
        .strategy-block:first-child {
            background: #fffbf0;
            border: 2px solid var(--yellow);
        }
        /* Blue‑accent panel */
        .strategy-block:last-child {
            background: #f0f6fd;
            border: 2px solid var(--blue);
        }
        .strategy-icon {
            font-size: 80px;
            margin-bottom: 24px;
            line-height: 1;
            display: block;
        }
        .strategy-content {
            width: 100%;
            max-width: 360px;
        }
        .strategy-content h3 {
            font-size: 26px;
            font-weight: 900;
            color: var(--blue-dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 16px;
        }
        .strategy-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 50px;
            height: 4px;
            border-radius: 2px;
        }
        .strategy-block:first-child h3::after { background: var(--yellow); }
        .strategy-block:last-child h3::after  { background: var(--blue); }

        .strategy-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: start; /* adapts to direction */
        }
        .strategy-list li {
            position: relative;
            padding-inline-start: 32px; /* flips with direction */
            margin-bottom: 14px;
            font-family: var(--serif);
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
        }
        .strategy-list li::before {
            content: '';
            position: absolute;
            inset-inline-start: 4px; /* flips with direction */
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--yellow);
            border-radius: 50%;
        }
        .strategy-block:last-child .strategy-list li::before { background: var(--blue); }

        .strategy-content p {
            font-family: var(--serif);
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
            text-align: start; /* adapts to direction */
        }

        @media (max-width: 860px) {
            .strategy-row {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .strategy-block {
                padding: 36px 24px;
            }
        }
        /* ── Side‑by‑side CTA cards (structure + pilotage) ── */
        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .cta-card {
            background: linear-gradient(135deg, #0a1f3f 0%, #06204e 100%);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            color: #fff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -30%; left: -20%;
            width: 140%; height: 160%;
            background: radial-gradient(circle, rgba(247,236,17,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 32px 64px rgba(0,0,0,0.35);
        }
        .cta-card .cta-icon {
            font-size: 52px;
            display: block;
            margin-bottom: 16px;
            position: relative;
        }
        .cta-card .cta-title {
            font-size: 22px;
            font-weight: 900;
            color: var(--yellow);
            margin-bottom: 10px;
            position: relative;
        }
        .cta-card .cta-desc {
            font-family: var(--serif);
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.65;
            margin-bottom: 24px;
            position: relative;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            background: var(--yellow);
            color: var(--blue-dark);
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            font-family: var(--font);
            text-decoration: none;
        }
        .cta-btn:hover {
            background: #fff;
            transform: scale(1.03);
        }

        /* Mobile – stack vertically */
        @media (max-width: 860px) {
            .cta-grid {
                grid-template-columns: 1fr;
            }
        }
        /* ── Partners Call-to-Action Card ── */
        .partenaires-card {
            background: linear-gradient(135deg, #0a1f3f 0%, #06204e 100%);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 56px 48px;
            text-align: center;
            color: #fff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
        .partenaires-card::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 140%;
            height: 160%;
            background: radial-gradient(circle, rgba(247,236,17,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .partenaires-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 32px 64px rgba(0,0,0,0.35);
        }
        .partenaires-card .card-icon {
            font-size: 64px;
            display: block;
            margin-bottom: 20px;
            position: relative;
        }
        .partenaires-card .card-title {
            font-size: 26px;
            font-weight: 900;
            color: var(--yellow);
            margin-bottom: 12px;
            position: relative;
        }
        .partenaires-card .card-desc {
            font-family: var(--serif);
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto 28px;
            position: relative;
        }
        .partenaires-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 700;
            background: var(--yellow);
            color: var(--blue-dark);
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            font-family: var(--font);
            text-decoration: none;
            position: relative;
        }
        .partenaires-btn:hover {
            background: #fff;
            transform: scale(1.03);
        }
        /* ── STATS GRID ── */
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
        .stat-card {
            background: var(--blue-light);
            border-radius: var(--radius);
            padding: 36px 20px;
            text-align: center;
            transition: transform var(--transition), box-shadow var(--transition);
            border-top: 4px solid var(--blue);
        }
        .stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .stat-number { font-size: 44px; font-weight: 900; color: var(--blue); line-height: 1; }
        .stat-unit { font-size: 22px; font-weight: 700; color: var(--blue); }
        .stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; font-family: var(--serif); }

        

        /* ── SCROLL REVEAL ── */
        .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {
            .principles-strip,
            .objectives-grid,
            .strategy-row,
            .footer-grid,
            .stats-grid { grid-template-columns: 1fr; }
            .principle-item { flex-direction: column; text-align: center; }
            .principle-number { min-width: auto; }
            .content-section { padding: 56px 0; }
            .structure-block { padding: 40px 24px; }
        }
    