        :root {
            --primary: #3A5EB7;
            --primary-dark: #1e40af;
            --secondary: #10b981;
            --dark: #0f172a;
            --light: #f8fafc;
            --text-main: #0f172a;
            --text-light: #64748b;
            --radius-lg: 16px;
            --radius-btn: 50px;
            --dark-blue: #002E5B;
        }

        html {
            direction: rtl;
        }


        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            direction: rtl;
            text-align: right;
        }

        body {
            font-family: 'Noto Kufi Arabic', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }


        /* ------------------  HEADER ------------------ */

        .main-header {
            background-color: #fff;
            padding: 15px 0;
            width: 100%;
            box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1654px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            gap: 20px;
        }

        /*  Logo Section (Right) */
        .logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1;
        }

        .header-logo-img {
            height: 100px;
            width: auto;
            object-fit: contain;
            image-rendering: -webkit-optimize-contrast;
            transition: transform 0.25s ease;
        }

        .logo-tagline {
            font-size: 12px;
            color: var(--dark-blue);
            font-weight: 700;
            margin-top: -4px;
        }

        .nav-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            padding-right: 40px;
        }

        /* Top small links */
        .top-nav-links {
            display: flex;
            gap: 8px;
            font-size: 10px;
            color: #64748b;
            margin-bottom: 8px;
            font-weight: 400;
            border-bottom: 1px solid #cbd5e146;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

        .top-nav-links a {
            text-decoration: none;
            color: #333;
            transition: 0.2s;
        }



        .top-nav-links a:hover {
            color:#DF5B25;
        }

        .divider {
            color: #cbd5e1;
        }

        /* Main Menu links */
        .main-nav-links {
            display: flex;
            gap: 25px;
        }

        .main-nav-links a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.2s;
        }

        .main-nav-links a i {
            font-size: 12px;
            margin-top: 4px;
            color: var(--dark-blue);
        }

        .main-nav-links a:hover {
            color: var(--accent);
            transform: scale(.8);
        }

        .main-nav-links a:hover i {
            color: var(--accent);
        }

        .nav-item-with-submenu {
            position: relative;
            display: inline-block;
        }

        .submenu {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            text-align: right;
            border-radius: 4px;
            padding: 10px 0;
        }

        .nav-item-with-submenu:hover .submenu {
            display: block;
        }

        .submenu-item {
            display: block;
            padding: 8px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s;
        }

        .submenu-item:hover {
            background-color: #f5f5f5;
        }

        .nav-link {
            text-decoration: none;
            color: inherit;
        }

        /* 3. Left Buttons */
        .header-actions {
            display: flex;
            gap: 12px;
        }

        .header-btn {
            text-decoration: none;
            transition: 0.2s;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #7A7A7A8A;
    border-radius: 6px 6px 6px 6px;
    padding: 8px 18px;
        }

        .btn-app {
            background-color: var(--dark-blue);
            color: #fff;
            box-shadow: 0 4px 6px -1px rgba(0, 46, 91, 0.3);
            border: 2px solid var(--dark-blue);
        }

        .btn-app:hover {
            background-color: #fff;
            transform: translateY(-1px);
            color: var(--dark-blue);
            border: 2px solid var(--dark-blue);

        }

        .btn-login {
            background-color: var(--dark-blue);
            color: #fff;
            box-shadow: 0 4px 6px -1px rgba(0, 46, 91, 0.3);
            border: 2px solid var(--dark-blue);

        }

        .btn-login:hover {
            background-color: #fff;
            transform: translateY(-1px);
            color: var(--dark-blue);
            border: 2px solid var(--dark-blue);


        }

        /* Responsive Header */
        @media (max-width: 991px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
                padding: 20px 5%;
            }

            .nav-center {
                padding-right: 0;
                align-items: center;
            }

            .logo-section {
                align-items: center;
            }

            .main-nav-links {
                gap: 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .main-nav-links {
                display: none;
                /* Hide main nav on mobile for simplicity */
            }

            .top-nav-links {
                display: none;
            }

            .header-actions {
                width: 100%;
                justify-content: center;
            }
        }


        /* --- Hero Section  ------------------------------------------------------------------------ */
        .hero-wrapper {
            background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .hero-bg-decoration {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-bg-decoration-2 {
            position: absolute;
            bottom: 50px;
            left: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 60px 5% 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
            gap: 60px;
            position: relative;
            z-index: 1;
            text-align: right;
        }

        .hero-content {
            flex: 1;
            text-align: right;
            padding-left: 20px;
        }

        .hero-title {
            font-size: 58px;
            line-height: 1.3;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .hero-title span {
            color: #2563eb;
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(37, 99, 235, 0.15);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 32px;
            max-width: 43ch;
            line-height: 1.6;
            margin-left: 0;
            margin-right: 0;
            margin-top: 46px;

        }

        /* CTA BUTTON */
        .hero-btn {
            display: inline-block;
            font-size: 18px;
            font-weight: 700;
            border-radius: 6px;
            padding: 12px 24px;
            text-decoration: none;
            transition: 0.2s ease-in-out;
            background-color: var(--dark-blue);
            color: #FFFFFF;
            border: 3px solid var(--dark-blue);
        }

        .hero-btn:hover {
            background-color: transparent;
            color: var(--dark-blue);
            border: 3px solid var(--dark-blue);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            align-items: center;
            max-width: 360px;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 470px;
            height: 470px;
            background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .custom-hero-img {
            z-index: 2;
            width: 100%;
            max-width: 500px;
            height: auto;
        }

        /* ------------------ TABLET RESPONSIVENESS (Max-Width: 991px) ------------------ */
        @media (max-width: 991px) {
            .hero-container {
                padding: 60px 4% 80px 4%;
                gap: 40px;
            }

            .hero-title {
                font-size: 42px;
            }

            .custom-hero-img {
                max-width: 380px;
            }

            .hero-image::before {
                width: 420px;
                height: 420px;
            }
        }


        /* ------------------ MOBILE RESPONSIVENESS (Max-Width: 768px) ------------------ */
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column-reverse;
                text-align: center;
                padding: 40px 20px 60px 20px;
                gap: 40px;
            }

            .hero-content {
                text-align: center;
                padding-left: 0;
            }

            .hero-title {
                font-size: 32px;
                margin-bottom: 16px;
                text-align: center;
            }

            .hero-subtitle {
                font-size: 16px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 24px;
                text-align: center;

            }

            .hero-btn {
                font-size: 16px;
            }

            .custom-hero-img {
                max-width: 280px;
            }

            .hero-image::before {
                width: 320px;
                height: 320px;
            }

            .hero-bg-decoration {
                width: 300px;
                height: 300px;
                top: -80px;
                right: -80px;
            }

            .hero-bg-decoration-2 {
                width: 150px;
                height: 150px;
                bottom: 10px;
                left: -50px;
            }
        }

        /* --- Features Section  ------------------------------------------------------------------------ */

        .features {
            background-color: var(--light);
            padding: 80px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 10px;
            text-align: center;
        }

        .section-header p {
            text-align: center;
        }


        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            max-width: 30ch;
        }

        /* --- Responsive --- */
        @media (min-width: 768px) {


            .grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (min-width: 1024px) {


            .grid {
                grid-template-columns: repeat(3, 1fr);
            }

        }




        /* --- CTA Section  ------------------------------------------------------------------------ */

        .cta-section {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 80px 5%;
            margin: 0 5% 60px 5%;
            border-radius: 24px;
        }

        .cta-section {
            max-width: 1200px;
            margin-inline: auto;
        }

        .cta-section h2 {
            margin-bottom: 20px;
            font-size: 2rem;
            text-align: center;
        }

        .cta-section p {
            text-align: center;
        }


        .cta-btn {
            display: inline-block;
            font-size: 18px;
            font-weight: 700;
            border-radius: 6px;
            padding: 12px 24px;
            text-decoration: none;
            transition: 0.2s ease-in-out;
            background-color: #ffffff;
            color: var(--dark-blue);
            border: 3px solid #ffffff;
        }

        .cta-btn:hover {
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }



        /* ------------------ CAROUSEL / SLIDER SECTION ------------------ */
        .screenshots-section {
            padding: 80px 0;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            user-select: none;
        }

        .carousel-container {
            position: relative;
            width: 90%;
            margin: 0 auto;
            padding-bottom: 40px;
        }

        .carousel-viewport {
            width: 100%;
            height: 480px;
            overflow: hidden;
            position: relative;
            cursor: grab;
        }

        .carousel-viewport:active {
            cursor: grabbing;
        }

        .carousel-track {
            display: flex;
            gap: 18px;
            height: 100%;
            direction: ltr;
            align-items: center;
            will-change: transform;
        }

        .carousel-slide {
            min-width: 260px;
            display: flex;
            justify-content: center;
            align-items: center;
            -webkit-user-drag: none;
        }

        .phone-img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 30px;
            display: block;
            pointer-events: none;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            color: #94a3b8;
            font-size: 32px;
            transition: all 0.2s;
        }

        .carousel-btn:hover {
            color: #1e293b;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: -30px;
        }

        .next-btn {
            right: -30px;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            padding: 20px 0;
            gap: 12px;
        }

        .carousel-indicator {
            border: none;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e2e8f0;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .carousel-indicator.current-slide {
            background: #0f172a;
            transform: scale(1.3);
        }

        /* ------------------ RESPONSIVE ------------------ */

        @media (max-width: 991px) {
            .carousel-viewport {
                height: 550px;
            }

            .carousel-slide {
                min-width: 280px;
            }
        }

        @media (max-width: 768px) {
            .carousel-container {
                width: 100%;
            }

            .carousel-viewport {
                height: 500px;
                mask-image: none;
                -webkit-mask-image: none;
            }

            .carousel-track {
                gap: 15px;
                padding-left: 25px;
            }

            .carousel-slide {
                min-width: 85%;
            }

            .phone-img {
                max-width: 260px;
            }

            .carousel-btn {
                display: none;
            }

        }


        /* ------------------ FOOTER SECTION ------------------ */

        .main-footer {
            background-color: #D3D9F7;
            color: var(--primary);
            position: relative;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* --- Top Row (Help & Social) --- */
        .footer-top {
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 46, 91, 0.1);
            position: relative;
        }

        .top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .footer-social {
            text-align: left;
        }

        .footer-social span {
            font-weight: 700;
            font-size: 14px;
            display: block;
            margin-bottom: 5px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background-color: #64748b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.2s;
            font-size: 14px;
        }

        .social-icons a:hover {
            background-color: var(--primary);
        }

        /* --- Main Links Area --- */
        .footer-links-area {
            padding: 40px 0;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .footer-col h4 {
            color: var(--primary);
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            transition: 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .brand-col {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }


        .footer-logo img{
            width: 100%;
    max-width: 100%;
    height: 90px;
    object-fit: contain;
    object-position: center center;
        }


        .app-promo-text {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            max-width: 250px;
            text-align: center;
        }

        .store-badge img {
            height: 45px;
        }

        /* --- Bottom Bar --- */
        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(0, 46, 91, 0.1);
        }

        .bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: row-reverse;
        }

        .copyright-text {
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
        }

        .mini-logo {
            font-weight: 900;
            color: var(--accent);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        /* ------------------ RESPONSIVE BREAKPOINTS ------------------ */

        @media (max-width: 991px) {

            /* Footer */
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                padding-top: 50px;
            }

            .top-row {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-social {
                text-align: center;
            }

            .footer-social .social-icons {
                justify-content: center;
            }
        }


        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .brand-col {
                order: -1;
                margin-bottom: 30px;
            }

            .bottom-row {
                flex-direction: column;
                gap: 10px;
            }
        }


        /* ==================================================================
           PRIVACY POLICY PAGE  —  سياسة الخصوصية
           Scoped under .privacy-page. Does not affect the header, footer,
           or any other page. Uses the site's own color variables.
           ================================================================== */
        .privacy-page {
            --pp-accent: var(--primary, #3A5EB7);
            --pp-accent-2: var(--dark-blue, #002E5B);
            --pp-accent-soft: rgba(58, 94, 183, 0.08);
            --pp-warn: #DF5B25;
            --pp-warn-soft: rgba(223, 91, 37, 0.09);
            --pp-ink: var(--text-main, #0f172a);
            --pp-muted: var(--text-light, #64748b);
            --pp-body: #334155;
            --pp-line: #e6eaf2;
            --pp-card: #ffffff;
            --pp-bg: #f4f6fb;
            background: var(--pp-bg);
            color: var(--pp-ink);
            padding-bottom: 90px;
        }

        /* --- Hero --- */
        .pp-hero {
            padding: 72px 20px 52px;
            background: linear-gradient(180deg, rgba(58, 94, 183, 0.07), transparent 90%);
        }
        /* override the global  *{ text-align:right }  so the hero centers */
        .pp-hero,
        .pp-hero * {
            text-align: center;
        }

        .pp-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pp-accent-soft);
            color: var(--pp-accent);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 16px;
            border-radius: 999px;
            margin-bottom: 22px;
            border: 1px solid rgba(58, 94, 183, 0.18);
        }

        .pp-hero h1 {
            font-size: clamp(2rem, 5vw, 3.1rem);
            font-weight: 800;
            margin-bottom: 14px;
            line-height: 1.35;
            color: var(--pp-ink);
        }

        .pp-hero-sub {
            font-size: clamp(1rem, 2.4vw, 1.22rem);
            color: var(--pp-muted);
            margin: 0 auto 20px;
            max-width: 660px;
            line-height: 1.9;
        }

        .pp-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: var(--pp-muted);
            background: #fff;
            border: 1px solid var(--pp-line);
            padding: 6px 16px;
            border-radius: 999px;
        }

        /* --- Container --- */
        .pp-container {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Intro card (lifts over the hero) --- */
        .pp-intro {
            background: var(--pp-card);
            border: 1px solid var(--pp-line);
            border-radius: var(--radius-lg, 16px);
            padding: 30px 32px;
            margin: -26px 0 42px;
            box-shadow: 0 20px 45px -30px rgba(15, 23, 42, 0.35);
            position: relative;
            z-index: 2;
        }
        .pp-intro p {
            margin-bottom: 14px;
            line-height: 2;
            color: var(--pp-body);
            font-size: 1.02rem;
        }
        .pp-intro p:last-child {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--pp-ink);
        }

        /* --- Section heading (icon + title) --- */
        .pp-section {
            margin-bottom: 36px;
        }
        .pp-section-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }
        .pp-icon {
            flex: 0 0 auto;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            font-size: 1.15rem;
            color: #fff;
            background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-2));
            box-shadow: 0 10px 22px -10px rgba(58, 94, 183, 0.6);
        }
        .pp-section-head h2 {
            margin: 0;
            font-size: clamp(1.25rem, 3vw, 1.55rem);
            font-weight: 800;
            color: var(--pp-ink);
        }

        /* --- Generic content card --- */
        .pp-card {
            background: var(--pp-card);
            border: 1px solid var(--pp-line);
            border-radius: var(--radius-lg, 16px);
            padding: 24px 26px;
            border-right: 4px solid var(--pp-accent);
        }
        .pp-card p {
            margin-bottom: 12px;
            line-height: 2;
            color: var(--pp-body);
        }
        .pp-card p:last-child {
            margin-bottom: 0;
        }
        .pp-lead {
            font-weight: 600;
            color: var(--pp-ink);
        }

        /* --- Bulleted lists (RTL diamond markers) --- */
        .pp-list {
            list-style: none;
        }
        .pp-list li {
            position: relative;
            padding-right: 22px;
            margin-bottom: 12px;
            line-height: 1.95;
            color: var(--pp-body);
        }
        .pp-list li:last-child {
            margin-bottom: 0;
        }
        .pp-list li::before {
            content: "";
            position: absolute;
            right: 2px;
            top: 13px;
            width: 8px;
            height: 8px;
            border-radius: 3px;
            transform: rotate(45deg);
            background: var(--pp-accent);
        }
        .pp-list li strong {
            color: var(--pp-ink);
            font-weight: 600;
        }

        /* --- Sub-grid for "data we collect" --- */
        .pp-subgrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        .pp-subcard {
            background: var(--pp-card);
            border: 1px solid var(--pp-line);
            border-radius: var(--radius-lg, 16px);
            padding: 22px 24px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .pp-subcard:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 36px -24px rgba(15, 23, 42, 0.4);
            border-color: rgba(58, 94, 183, 0.35);
        }
        .pp-subcard-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 1px dashed var(--pp-line);
        }
        .pp-subcard-head i {
            width: 38px;
            height: 38px;
            border-radius: 11px;
            display: grid;
            place-items: center;
            background: var(--pp-accent-soft);
            color: var(--pp-accent);
            font-size: 1rem;
            flex: 0 0 auto;
        }
        .pp-subcard-head h3 {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--pp-ink);
        }
        .pp-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--pp-warn);
            background: var(--pp-warn-soft);
            border: 1px solid rgba(223, 91, 37, 0.25);
            border-radius: 6px;
            padding: 2px 9px;
            margin-inline-start: auto;
            flex: 0 0 auto;
        }

        /* --- Highlight card (sensitive biometric data) --- */
        .pp-highlight {
            background: linear-gradient(135deg, #fff, var(--pp-warn-soft));
            border: 1px solid rgba(223, 91, 37, 0.22);
            border-right: 4px solid var(--pp-warn);
        }
        .pp-highlight .pp-list li::before {
            background: var(--pp-warn);
        }

        /* --- Contact panel --- */
        .pp-contact {
            margin-top: 52px;
            background: linear-gradient(135deg, var(--dark-blue, #002E5B), #0f172a);
            border-radius: 24px;
            padding: 42px 34px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        /* override the global  *{ text-align:right }  so the panel centers */
        .pp-contact,
        .pp-contact * {
            text-align: center;
        }
        .pp-contact::before {
            content: "";
            position: absolute;
            top: -70px;
            left: -70px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, var(--pp-warn), transparent 70%);
            opacity: 0.35;
        }
        .pp-contact h2 {
            margin-bottom: 10px;
            font-size: clamp(1.4rem, 3vw, 1.9rem);
            font-weight: 800;
            position: relative;
        }
        .pp-contact > p {
            margin: 0 auto 28px;
            color: #c9d3ea;
            max-width: 560px;
            line-height: 1.9;
            position: relative;
        }
        .pp-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            position: relative;
        }
        .pp-contact-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 14px;
            padding: 24px 16px;
            text-decoration: none;
            color: #fff;
            display: block;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .pp-contact-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-3px);
        }
        .pp-contact-item i {
            font-size: 1.4rem;
            color: var(--pp-warn);
            margin-bottom: 12px;
            display: block;
        }
        .pp-contact-item .lbl {
            display: block;
            font-size: 0.8rem;
            color: #aab6d4;
            margin-bottom: 6px;
        }
        .pp-contact-item .val {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            direction: ltr;
            unicode-bidi: plaintext;
            word-break: break-word;
        }
        .pp-contact-item .val.is-rtl {
            direction: rtl;
        }

        /* --- Privacy page responsive --- */
        @media (max-width: 680px) {
            .pp-subgrid {
                grid-template-columns: 1fr;
            }
            .pp-contact-grid {
                grid-template-columns: 1fr;
            }
            .pp-intro {
                padding: 24px 20px;
            }
            .pp-card {
                padding: 20px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .pp-subcard,
            .pp-contact-item {
                transition: none;
            }
        }
