:root { --dark-blue: #001f3f; --accent-blue: #007bff; --soft: #f6f8fb; --line: #e4e9f0; }
    body { font-family: 'Montserrat', sans-serif; color: #28313f; display: flex; flex-direction: column; min-height: 100vh; transition: all 0.3s; overflow-x: hidden; }

    /* Navbar */
    .navbar { background: var(--dark-blue); padding: 10px 0; }
    .navbar-brand img { height: 35px; width: auto; }
    .navbar-brand { font-size: 1.2rem; font-weight: 700; }
    .nav-link { font-size: 0.9rem; margin-left: 10px; }

    /* Hero */
    .hero {
        background: linear-gradient(rgba(0, 31, 63, 0.88), rgba(0, 31, 63, 0.72)),
                    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');
        background-size: cover; background-position: center;
        min-height: 62vh; display: flex; align-items: center; color: white; text-align: center;
        padding: 48px 0;
    }
    .hero h1 { font-size: calc(1.9rem + 1.6vw); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
    .hero .lead { font-size: 1.12rem; max-width: 640px; margin: 0 auto 1.6rem; color: #e8eef6; }
    .hero-cta .btn { margin: 6px; }

    section { padding: 64px 0; }
    .section-title { font-weight: 700; margin-bottom: 14px; font-size: 1.75rem; text-align: center; text-transform: uppercase; color: var(--dark-blue); }
    .eyebrow { color: var(--accent-blue); font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; text-align: center; margin-bottom: 8px; }
    .section-lead { text-align: center; max-width: 720px; margin: 0 auto 40px; color: #5a6679; font-size: 1.02rem; line-height: 1.7; }

    /* Model / capabilities */
    .flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
    .flow .node { background: var(--dark-blue); color: #fff; padding: 14px 26px; border-radius: 10px; font-weight: 700; font-size: .95rem; }
    .flow .node.mid { background: var(--accent-blue); box-shadow: 0 8px 24px rgba(0,123,255,.28); }
    .flow .arrow { color: var(--accent-blue); font-size: 1.3rem; }
    .cap { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; height: 100%; transition: transform .25s, box-shadow .25s; }
    .cap:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,31,63,.08); }
    .cap i { color: var(--accent-blue); font-size: 1.5rem; margin-bottom: 12px; }
    .cap h3 { font-size: 1.02rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 8px; }
    .cap p { font-size: .9rem; color: #5a6679; margin: 0; line-height: 1.6; }

    /* Catalog table */
    .cat-table { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
    .cat-table table { margin: 0; }
    .cat-table thead th { background: var(--dark-blue); color: #fff; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; border: 0; padding: 14px 18px; }
    .cat-table tbody td { padding: 15px 18px; vertical-align: middle; border-color: var(--line); font-size: .92rem; }
    .cat-table tbody tr:hover { background: var(--soft); }
    .cat-table .grp { font-weight: 700; color: var(--dark-blue); }
    .cat-table .hs { font-variant-numeric: tabular-nums; color: var(--accent-blue); font-weight: 600; white-space: nowrap; }

    /* Process steps */
    .step { text-align: center; padding: 0 12px; }
    .step .num { width: 56px; height: 56px; border-radius: 50%; background: var(--dark-blue); color: #fff; font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 2; }
    .step h3 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
    .step p { font-size: .86rem; color: #5a6679; line-height: 1.55; }
    .steps-row { position: relative; }
    .steps-row::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--line); z-index: 1; }
    @media (max-width: 767px){ .steps-row::before { display: none; } .step { margin-bottom: 28px; } }

    /* Audience cards */
    .aud-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; height: 100%; }
    .aud-card.dark { background: var(--dark-blue); color: #fff; border-color: var(--dark-blue); }
    .aud-card h3 { font-weight: 700; font-size: 1.25rem; margin-bottom: 6px; }
    .aud-card .sub { font-size: .9rem; opacity: .8; margin-bottom: 18px; }
    .aud-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
    .aud-card li { padding: 8px 0 8px 28px; position: relative; font-size: .93rem; line-height: 1.5; }
    .aud-card li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent-blue); }
    .aud-card.dark li::before { color: #4d9aff; }

    /* Geography */
    .country-badge { background: #fff; border: 1px solid var(--line); padding: 8px 16px; margin: 5px; display: inline-flex; align-items: center; font-weight: 600; color: var(--dark-blue); border-radius: 50px; font-size: 0.9rem; transition: all 0.3s ease; cursor: pointer; }
    .country-badge:hover { border-color: var(--accent-blue); box-shadow: 0 4px 12px rgba(0,123,255,.12); }
    #map { height: 400px; width: 100%; border-radius: 12px; z-index: 1; }
    .region-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
    .region-pill { background: var(--dark-blue); color: #fff; border-radius: 50px; padding: 8px 20px; font-size: .85rem; font-weight: 600; }

    /* Trust */
    .trust-tile { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 24px; height: 100%; text-align: center; }
    .trust-tile i { font-size: 1.7rem; color: var(--accent-blue); margin-bottom: 12px; }
    .trust-tile h3 { font-size: .98rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
    .trust-tile p { font-size: .85rem; color: #5a6679; margin: 0; line-height: 1.55; }

    /* FAQ */
    .accordion-button { font-weight: 600; color: var(--dark-blue); }
    .accordion-button:not(.collapsed) { background: var(--soft); color: var(--dark-blue); box-shadow: none; }
    .accordion-button:focus { box-shadow: none; border-color: var(--line); }
    .accordion-item { border-color: var(--line); }
    .accordion-body { color: #5a6679; font-size: .93rem; line-height: 1.65; }

    /* Contact */
    .contact-form { background: white; padding: 28px; border-radius: 14px; color: #333; }
    .role-toggle .btn { font-size: .85rem; }

    @media (max-width: 768px) {
        .navbar-brand span { display: none; }
        .hero h1 { font-size: 2rem; }
        #map { height: 300px; }
        .section-title { font-size: 1.5rem; }
        section { padding: 44px 0; }
    }

    /* RTL */
    body[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
    body[dir="rtl"] .me-2 { margin-left: .5rem !important; margin-right: 0 !important; }
    body[dir="rtl"] .me-3 { margin-left: 1rem !important; margin-right: 0 !important; }
    body[dir="rtl"] .nav-link { margin-right: 10px; margin-left: 0; }
    body[dir="rtl"] .aud-card li { padding: 8px 28px 8px 0; }
    body[dir="rtl"] .aud-card li::before { left: auto; right: 0; }
    body[dir="rtl"] .about-accent{ border-left:0; border-right:3px solid var(--accent-blue); padding-left:0; padding-right:18px; }

    /* About / Leadership */
    .about-sec { background: var(--dark-blue); border-radius: 12px; padding: 40px 30px; }
    .about-eyebrow { color:#7fb2e8; font-weight:600; font-size:12px; letter-spacing:2px; text-transform:uppercase; text-align:center; margin-bottom:26px; }
    .about-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:32px; align-items:center; max-width:760px; margin:0 auto; }
    .about-accent { border-left:3px solid var(--accent-blue); padding-left:18px; margin-bottom:18px; }
    .about-name { font-weight:700; font-size:21px; color:#fff; line-height:1.3; }
    .about-role { color:#4d9aff; font-weight:600; margin-top:7px; font-size:14px; }
    .about-bio { color:#cdd8e6; line-height:1.75; font-size:14px; margin:0 0 12px; }
    .about-bio:last-child { margin-bottom:0; }
    .about-stats { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
    .about-stat { background:rgba(255,255,255,.08); border-radius:10px; padding:15px; }
    .about-stat .n { font-size:21px; font-weight:700; color:#fff; line-height:1.1; }
    .about-stat .l { font-size:12px; color:#9bc4ef; margin-top:5px; }
    @media (max-width:768px){ .about-grid{ grid-template-columns:1fr; gap:24px; } }
