
  :root {
    --orange:    #F06C00;
    --orange-lt: #FF7D1A;
    --orange-dk: #D45E00;
    --white:     #FFFFFF;
    --black:     #0A0A0A;
    --dark:      #111111;
    --dark2:     #1A1A1A;
    --dark3:     #222222;
    --border:    #2D2D2D;
    --muted:     #888888;
    --light:     #F0F0F0;
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }

  body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    background: var(--dark);
    color: var(--white);
    direction: rtl;
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--orange);
    padding: 10px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .topbar span { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: .3px; }
  .topbar-tag {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

  .nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }

  /* SVG logo Speedaf - guépard stylisé */
  .logo-icon {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .logo-icon svg { width:32px; height:32px; }

  .logo-text-wrap { line-height: 1; }
  .logo-name {
    font-size: 22px; font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    display: block;
  }
  .logo-name em { color: var(--orange); font-style: normal; }
  .logo-tagline {
    font-size: 9px; font-weight: 600;
    color: var(--muted);
    letter-spacing: 1px;
    display: block;
  }

  .nav-btn {
    background: var(--orange);
    color: var(--white);
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: 14px; font-weight: 800;
    padding: 11px 28px;
    border-radius: 4px; border: none; cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(240,108,0,.4);
  }
  .nav-btn:hover { background: var(--orange-lt); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 95vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--black);
  }

  /* Diagonal orange block - right side (LTR visually = left in RTL) */
  .hero-bg-block {
    position: absolute;
    top: 0; left: 0;
    width: 45%;
    height: 100%;
    background: var(--orange);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
    z-index: 0;
  }

  /* Cheetah silhouette SVG watermark */
  .hero-cheetah {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
  }

  .hero-dots {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1; pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 80px 60px 80px 40px;
    max-width: 700px;
    margin-right: 0;
    margin-left: auto;
  }

  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(240,108,0,.15);
    border: 1px solid rgba(240,108,0,.4);
    color: var(--orange);
    font-size: 12px; font-weight: 800; letter-spacing: .3px;
    padding: 7px 18px; border-radius: 2px;
    margin-bottom: 28px;
    animation: fadeUp .5s ease both;
  }
  .hero-pill .dot {
    width: 8px; height: 8px;
    background: var(--orange); border-radius: 50%;
    animation: blink 1.3s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1}50%{opacity:.2} }

  .hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp .6s .1s ease both;
  }
  .hero h1 .accent { color: var(--orange); }

  .hero-slogan {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    color: rgba(255,255,255,.65);
    margin-bottom: 30px;
    font-style: italic;
    animation: fadeUp .6s .2s ease both;
  }

  .hero-desc {
    font-size: 16px; color: var(--muted);
    line-height: 2; max-width: 560px;
    margin-bottom: 44px;
    animation: fadeUp .6s .3s ease both;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp .6s .4s ease both;
  }

  .btn-primary {
    background: var(--orange);
    color: var(--white);
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: 16px; font-weight: 800;
    padding: 17px 42px;
    border-radius: 4px; border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    box-shadow: 0 8px 30px rgba(240,108,0,.4);
    transition: background .2s, transform .2s;
  }
  .btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: 16px; font-weight: 700;
    padding: 17px 42px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: border-color .2s, color .2s;
  }
  .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

  /* stats row */
  .hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    margin-top: 60px; padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp .6s .5s ease both;
  }
  .h-stat .num {
    font-size: 34px; font-weight: 900;
    color: var(--orange); display: block; line-height: 1;
  }
  .h-stat .lbl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }

  /* ── TICKER ── */
  .ticker-wrap {
    background: var(--orange);
    padding: 16px 0;
    overflow: hidden;
  }
  .ticker {
    display: flex; gap: 50px;
    animation: scroll 28s linear infinite;
    width: max-content; white-space: nowrap;
  }
  @keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  .ticker span {
    font-size: 13px; font-weight: 800;
    color: var(--white); letter-spacing: .5px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .ticker span::before { content:'◆'; font-size:8px; opacity:.7; }

  /* ── SECTIONS ── */
  .sec { padding: 90px 40px; max-width: 1200px; margin: 0 auto; }
  .sec-full { padding: 90px 40px; }
  .sec-full > .inner { max-width: 1200px; margin: 0 auto; }

  .eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    color: var(--orange); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content:''; width:40px; height:2px; background:var(--orange); border-radius:2px; }

  .s-h2 {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 8px;
  }
  .s-sub { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; max-width: 600px; }

  /* ── MULTINATIONAL ── */
  .multi-bg { background: var(--dark2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

  .multi-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  @media(max-width:900px){ .multi-grid{grid-template-columns:1fr;gap:50px} }

  .presence-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-top: 32px;
  }
  .p-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 6px; padding: 18px 16px;
    display: flex; gap: 12px; align-items: flex-start;
    transition: border-color .25s;
  }
  .p-card:hover { border-color: var(--orange); }
  .p-icon { font-size: 28px; flex-shrink:0; }
  .p-name { font-size: 13px; font-weight: 800; margin-bottom: 3px; }
  .p-detail { font-size: 11px; color: var(--orange); font-weight: 600; line-height:1.5; }

  /* globe */
  .globe-visual { display:flex; flex-direction:column; align-items:center; gap:24px; }
  .globe {
    width: 260px; height: 260px; border-radius: 50%;
    background: conic-gradient(from 0deg, var(--orange) 0%, var(--orange-dk) 25%, #1a1a1a 25%, #222 50%, var(--orange) 50%, var(--orange-lt) 75%, #111 75%);
    display: flex; align-items:center; justify-content:center;
    box-shadow: 0 0 0 3px var(--border), 0 0 60px rgba(240,108,0,.2);
    animation: spinGlobe 25s linear infinite;
  }
  @keyframes spinGlobe { from{filter:brightness(1)} to{filter:brightness(1.05)} }
  .globe-inner {
    width: 210px; height: 210px; border-radius: 50%;
    background: var(--dark2); border: 1px solid var(--border);
    display: flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  }
  .globe-inner .gn { font-size: 52px; font-weight: 900; color: var(--orange); line-height:1; }
  .globe-inner .gl { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing:1px; }

  .country-tags { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
  .ctag {
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 5px 12px; border-radius: 2px;
    font-size: 12px; font-weight: 700; color: var(--light);
  }

  /* ── SERVICES ── */
  .svc-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2px; background: var(--border);
    border: 2px solid var(--border); border-radius: 8px; overflow: hidden;
    margin-top: 48px;
  }
  @media(max-width:900px){ .svc-grid{grid-template-columns:1fr 1fr} }
  @media(max-width:560px){ .svc-grid{grid-template-columns:1fr} }

  .svc-card {
    background: var(--dark2); padding: 38px 30px;
    position: relative; overflow: hidden;
    transition: background .25s;
  }
  .svc-card::before {
    content: '';
    position: absolute; bottom:0; right:0; left:0;
    height: 3px; background: var(--orange);
    transform: scaleX(0); transform-origin: right;
    transition: transform .3s;
  }
  .svc-card:hover { background: var(--dark3); }
  .svc-card:hover::before { transform: scaleX(1); }

  .svc-num { font-size: 10px; font-weight: 800; color:var(--orange); letter-spacing:1px; margin-bottom:16px; }
  .svc-icon { font-size: 38px; margin-bottom: 16px; display: block; }
  .svc-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
  .svc-desc { font-size: 14px; color: var(--muted); line-height: 1.9; }

  /* ── STATS CARDS ── */
  .stats-band {
    background: var(--orange);
    padding: 0;
  }
  .stats-inner {
    display: grid; grid-template-columns: repeat(4,1fr);
    max-width: 1200px; margin: 0 auto;
  }
  @media(max-width:700px){ .stats-inner{grid-template-columns:repeat(2,1fr)} }

  .stat-card {
    padding: 40px 20px; text-align: center;
    border-left: 1px solid rgba(255,255,255,.2);
  }
  .stat-card:last-child { border-left: none; }
  @media(max-width:700px){ .stat-card{ border-left:none; border-bottom:1px solid rgba(255,255,255,.2); } }

  .stat-num { font-size: 44px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
  .stat-lbl { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 8px; }

  /* ── ZONES ── */
  .zones-bg { background: var(--dark); border-top:1px solid var(--border); }
  .zones-wrap { display:flex; flex-wrap:wrap; gap:10px; margin-top:40px; }
  .zone-tag {
    border: 1px solid var(--border);
    padding: 10px 22px; border-radius: 3px;
    font-size: 14px; font-weight: 700; color: var(--light);
    transition: all .2s; cursor: default;
  }
  .zone-tag:hover, .zone-tag.hl { background:var(--orange); color:var(--white); border-color:var(--orange); }

  /* ── STEPS ── */
  .steps-bg { background: var(--dark2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; margin-top: 60px; position: relative;
  }
  .steps-grid::before {
    content:''; position:absolute;
    top: 26px; right:12.5%; left:12.5%;
    height: 2px;
    background: linear-gradient(270deg, var(--orange), rgba(240,108,0,.2));
    z-index: 0;
  }
  @media(max-width:800px){ .steps-grid{grid-template-columns:1fr 1fr;gap:40px} .steps-grid::before{display:none} }
  @media(max-width:480px){ .steps-grid{grid-template-columns:1fr} }

  .step { position:relative; z-index:1; padding:0 20px; text-align:center; }
  .step-circle {
    width: 54px; height: 54px;
    background: var(--orange); border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-size: 22px; font-weight: 900; color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 0 0 7px rgba(240,108,0,.12);
  }
  .step-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

  /* ── FORM ── */
  .form-bg { background: var(--black); }
  .form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
    max-width: 1100px; margin: 0 auto;
    padding: 90px 40px;
  }
  @media(max-width:900px){ .form-grid{grid-template-columns:1fr;gap:50px} }

  .form-benefits { list-style:none; display:flex; flex-direction:column; gap:16px; margin-top:30px; }
  .form-benefits li { display:flex; gap:14px; align-items:flex-start; font-size:14px; color:var(--muted); line-height:1.6; }
  .chk {
    width: 22px; height: 22px;
    background: rgba(240,108,0,.12);
    border: 1px solid rgba(240,108,0,.3);
    border-radius: 2px;
    display: flex; align-items:center; justify-content:center;
    color: var(--orange); font-size: 12px; flex-shrink:0; margin-top:2px;
  }

  .form-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 8px; padding: 44px 36px;
    position: relative;
  }
  .form-box::before {
    content:''; position:absolute; top:0;left:0;right:0;
    height:4px; background:var(--orange);
    border-radius:8px 8px 0 0;
  }

  .form-title { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
  .form-subtitle { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 30px; }

  .field { margin-bottom: 14px; }
  .field label { display:block; font-size:12px; font-weight:700; color:var(--muted); margin-bottom:8px; }
  .field input, .field select {
    width:100%;
    background: var(--dark3); border:1px solid var(--border);
    color:var(--white); font-family:'Noto Kufi Arabic',sans-serif;
    font-size:15px; font-weight:500;
    padding: 13px 16px; border-radius:4px; outline:none;
    transition:border-color .2s, box-shadow .2s;
    appearance:none; direction:rtl;
  }
  .field input:focus, .field select:focus {
    border-color:var(--orange);
    box-shadow:0 0 0 3px rgba(240,108,0,.12);
  }
  .field input::placeholder { color:#444; }
  .field select option { background:var(--dark3); }

  .btn-submit {
    width:100%; background:var(--orange); color:var(--white);
    font-family:'Noto Kufi Arabic',sans-serif;
    font-size:16px; font-weight:900;
    padding:17px; border-radius:4px; border:none; cursor:pointer;
    margin-top:10px;
    transition:background .2s, transform .15s;
    box-shadow:0 6px 24px rgba(240,108,0,.35);
  }
  .btn-submit:hover { background:var(--orange-lt); transform:translateY(-2px); }

  .form-note { text-align:center; font-size:12px; color:var(--muted); margin-top:14px; line-height:1.6; }

  .success-box { display:none; text-align:center; padding:30px 10px; }
  .success-box .icon { font-size:64px; margin-bottom:16px; }
  .success-box h3 { font-size:22px; font-weight:900; margin-bottom:10px; }
  .success-box p { font-size:14px; color:var(--muted); line-height:1.8; }

  /* ── TESTIMONIALS ── */
  .testi-bg { background:var(--dark2); border-top:1px solid var(--border); }
  .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
  @media(max-width:800px){ .testi-grid{grid-template-columns:1fr} }

  .testi-card {
    background:var(--dark); border:1px solid var(--border);
    border-radius:6px; padding:30px 26px;
    transition:border-color .25s;
  }
  .testi-card:hover { border-color:var(--orange); }
  .stars { color:var(--orange); font-size:16px; margin-bottom:16px; letter-spacing:2px; }
  .testi-text { font-size:14px; color:#ccc; line-height:1.9; margin-bottom:20px; font-style:italic; }
  .testi-author { display:flex; align-items:center; gap:12px; }
  .t-av {
    width:42px; height:42px; background:var(--orange); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:900; font-size:16px; color:var(--white);
  }
  .t-name { font-size:14px; font-weight:800; }
  .t-city { font-size:12px; color:var(--muted); }

  /* ── FAQ ── */
  .faq-bg { background:var(--black); border-top:1px solid var(--border); }
  .faq-list { max-width:760px; margin:48px auto 0; }
  .faq-item { border-bottom:1px solid var(--border); }
  .faq-trigger {
    display:flex; justify-content:space-between; align-items:center;
    padding:22px 0; cursor:pointer; gap:16px;
  }
  .faq-q { font-size:15px; font-weight:700; }
  .faq-btn {
    width:32px; height:32px;
    background:var(--dark3); border:1px solid var(--border); border-radius:2px;
    display:flex; align-items:center; justify-content:center;
    font-size:18px; flex-shrink:0; color:var(--muted);
    transition:background .2s, transform .3s, border-color .2s;
  }
  .faq-item.open .faq-btn { background:var(--orange); border-color:var(--orange); color:var(--white); transform:rotate(45deg); }
  .faq-body { max-height:0; overflow:hidden; transition:max-height .4s ease; }
  .faq-inner { padding-bottom:22px; font-size:14px; color:var(--muted); line-height:1.9; }
  .faq-item.open .faq-body { max-height:300px; }

  /* ── FOOTER ── */
  footer {
    background:var(--dark2);
    border-top:4px solid var(--orange);
    padding:60px 40px 28px;
  }
  .footer-grid {
    max-width:1200px; margin:0 auto;
    display:grid; grid-template-columns:2fr 1fr 1fr;
    gap:60px; margin-bottom:48px;
  }
  @media(max-width:800px){ .footer-grid{grid-template-columns:1fr;gap:30px} }

  .footer-brand-desc { font-size:13px; color:var(--muted); line-height:1.8; max-width:320px; margin-top:16px; }
  .footer-col h4 {
    font-size:12px; font-weight:800; letter-spacing:1px;
    color:var(--orange); margin-bottom:18px; text-transform:uppercase;
  }
  .footer-col ul { list-style:none; }
  .footer-col ul li { margin-bottom:10px; }
  .footer-col ul li a { font-size:13px; color:var(--muted); text-decoration:none; transition:color .2s; }
  .footer-col ul li a:hover { color:var(--white); }
  .footer-bottom {
    max-width:1200px; margin:0 auto;
    padding-top:24px; border-top:1px solid var(--border);
    display:flex; justify-content:space-between; align-items:center;
    flex-wrap:wrap; gap:10px;
  }
  .footer-bottom p { font-size:12px; color:#444; }

  /* ── FLOAT CTA ── */
  .float-btn {
    position:fixed; bottom:28px; left:28px;
    background:var(--orange); color:var(--white);
    font-family:'Noto Kufi Arabic',sans-serif;
    font-size:14px; font-weight:900;
    padding:14px 28px; border-radius:4px; border:none; cursor:pointer;
    box-shadow:0 8px 32px rgba(240,108,0,.5);
    z-index:999;
    display:none; transition:transform .2s;
  }
  .float-btn:hover { transform:translateY(-2px); }
  .float-btn.show { display:block; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

  @media(max-width:640px){
    .hero-bg-block { display:none; }
    .hero-content { padding:60px 20px; }
    nav, .topbar, .ticker-wrap { padding-right:20px; padding-left:20px; }
    .sec { padding:70px 20px; }
    footer { padding:50px 20px 24px; }
  }
