
      :root {
        --ink: #14202b;
        --ink-2: #2d4759;
        --muted: #4c6374;
        --blue: #196da5;
        --blue-700: #145981;
        --deep: #14425f;
        --surface: #f4f8fb;
        --line: #e0eaf1;
        --green: #12a150;
        --wrap: 1140px;
        --r: 8px;
        --dock: 84px;
      }
      * { box-sizing: border-box; }
      html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
      body {
        margin: 0;
        background: #fff;
        color: var(--ink);
        font-family: 'Cairo', system-ui, 'Segoe UI', Tahoma, sans-serif;
        font-size: 17px;
        line-height: 1.95;
        padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom, 0px));
        overflow-x: hidden;
      }
      .wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
      section { padding: 44px 0; }
      h1, h2, h3 { margin: 0 0 12px; line-height: 1.42; }
      h1 { font-size: clamp(26px, 5.2vw, 40px); font-weight: 800; }
      h2 { font-size: clamp(21px, 3.5vw, 28px); font-weight: 800; }
      h3 { font-size: 17.5px; font-weight: 700; }
      p { margin: 0 0 14px; max-width: 70ch; }
      a { color: var(--blue-700); }

      /* section heading with an accent rule under it */
      h2 { position: relative; padding-bottom: 12px; }
      h2::after {
        content: ''; position: absolute; bottom: 0; inset-inline-start: 0;
        width: 46px; height: 3px; background: var(--blue);
      }
      .band-deep h2::after { background: #fff; }
      .reveal h2::after { transform: scaleX(.12); transform-origin: right; transition: transform .6s cubic-bezier(.2,.8,.3,1) .1s; }
      .reveal.is-in h2::after { transform: scaleX(1); }

      /* ---------- top strip + header ---------- */
      .topbar {
        background: var(--deep); color: #cfe3f1; font-size: 13px; font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
      }
      .topbar .wrap { display: flex; justify-content: space-between; gap: 12px; padding-block: 7px; }
      .topbar b { color: #fff; font-weight: 700; }
      .site-head { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
      .head-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 66px; }
      .logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
      .logo-mark {
        width: 44px; height: 44px; display: grid; place-items: center; color: #fff;
        background: var(--blue); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
      }
      .logo-mark svg { width: 22px; height: 22px; }
      .logo-txt { display: flex; flex-direction: column; line-height: 1.2; }
      .logo-txt b { font-size: 19px; font-weight: 800; }
      .logo-txt small { font-size: 11.5px; color: var(--muted); font-weight: 500; }
      .head-call { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--deep); }
      .head-call .ring {
        width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
        background: var(--surface); color: var(--blue); border: 1px solid var(--line);
      }
      .head-call .ring svg { width: 17px; height: 17px; }
      .head-call em { font-style: normal; display: block; font-size: 11.5px; color: var(--muted); line-height: 1.2; }
      .head-call b { font-size: 19px; font-weight: 800; }

      /* ---------- hero: split ---------- */
      .hero {
        position: relative; padding: 34px 0 70px; overflow: hidden;
        background:
          radial-gradient(90% 120% at 100% 0%, rgba(52, 152, 219, .16) 0%, rgba(52, 152, 219, 0) 55%),
          linear-gradient(180deg, var(--surface) 0%, #fff 100%);
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 0 100%);
      }
      .hero::before {
        content: ''; position: absolute; inset: 0; pointer-events: none;
        background-image:
          linear-gradient(90deg, rgba(52,152,219,.07) 1px, transparent 1px),
          linear-gradient(0deg, rgba(52,152,219,.07) 1px, transparent 1px);
        background-size: 46px 46px;
        -webkit-mask-image: radial-gradient(80% 90% at 85% 0%, #000 0%, transparent 70%);
        mask-image: radial-gradient(80% 90% at 85% 0%, #000 0%, transparent 70%);
      }
      .hero .wrap { position: relative; z-index: 1; }
      .hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: start; }
      .hero h1 { max-width: 20ch; }
      .hero .lede { font-size: 18px; color: var(--ink-2); max-width: 60ch; }
      .brand-en {
        display: block; direction: ltr; text-align: right; font-size: 12.5px; font-weight: 700;
        letter-spacing: 1px; color: var(--blue-700); margin: 0 0 8px;
      }
      .disclosure {
        display: block; border-inline-start: 3px solid var(--blue); background: var(--surface);
        padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--ink-2); margin-bottom: 16px;
      }
      .disclosure b { font-weight: 800; color: var(--deep); }
      .badge-row { display: flex; flex-wrap: wrap; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
      .badge-row li {
        display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
        color: var(--deep); padding: 11px 0; flex: 1 1 200px;
        border-bottom: 1px solid var(--line);
      }
      .badge-row svg { width: 16px; height: 16px; color: var(--blue); flex: 0 0 auto; }

      /* ---------- contact panel (solid, inverted) ---------- */
      .panel {
        position: relative; background: var(--deep); color: #fff; padding: 22px;
        border-top: 4px solid var(--blue);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px));
        box-shadow: 0 18px 40px rgba(20, 66, 95, .25);
      }
      .panel::before {
        content: ''; position: absolute; inset: 0; pointer-events: none;
        background: radial-gradient(70% 55% at 90% 0%, rgba(52, 152, 219, .35), transparent 70%);
      }
      .panel > * { position: relative; }
      .panel-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
      .panel-head p { margin: 0; font-size: 16px; font-weight: 800; }
      .panel-head span { font-size: 12.5px; color: #9fd0ef; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
      .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: blip 2s infinite; }
      .num-row {
        display: flex; align-items: center; gap: 12px; padding: 11px 0; text-decoration: none; color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
      }
      .num-row:last-of-type { border-bottom: 0; }
      .num-row { transition: padding-inline-start .18s ease, color .18s ease; }
      .num-row:hover { padding-inline-start: 8px; }
      .num-row:hover .val { color: #9fd0ef; }
      .num-row.main:hover .val { color: #fff; }
      .num-row svg { width: 18px; height: 18px; color: #9fd0ef; flex: 0 0 auto; }
      .num-row .lbl { font-size: 12.5px; color: #9fd0ef; font-weight: 500; flex: 1; }
      .num-row .val { font-size: 19px; font-weight: 800; direction: ltr; }
      .num-row.main { background: rgba(52, 152, 219, .18); margin-inline: -22px; padding-inline: 22px; }
      .num-row.main .val { font-size: 25px; }
      .num-row.wa .val { color: #6ee7a0; }
      .panel-foot { margin: 14px 0 0; font-size: 13px; color: #9fd0ef; }

      /* ---------- buttons ---------- */
      .btn-call {
        position: relative; overflow: hidden;
        display: flex; align-items: center; justify-content: center; gap: 13px;
        width: 100%; min-height: 66px; background: var(--blue); color: #fff;
        text-decoration: none; padding: 10px 20px; border-radius: var(--r);
        box-shadow: 0 6px 18px rgba(52, 152, 219, .35);
        transition: background .16s ease;
      }
      .btn-call::after {
        content: ''; position: absolute; top: -25%; inset-inline-start: -55%;
        width: 34%; height: 150%; transform: skewX(-20deg); pointer-events: none;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
        animation: shine 3s ease-in-out infinite;
      }
      .btn-call:hover { background: var(--blue-700); }
      .btn-call .t1 { display: block; font-size: 20px; font-weight: 800; line-height: 1.35; }
      .btn-call .t2 { display: block; font-size: 13.5px; font-weight: 500; opacity: .95; }
      .btn-call > svg { width: 30px; height: 30px; flex: 0 0 auto; }
      .cta-wrap { margin: 18px 0 0; max-width: 460px; }
      .call-note { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

      /* ---------- dock + whatsapp FAB ---------- */
      .dock {
        position: fixed; inset-inline: 0; bottom: 0; z-index: 60; background: #fff;
        border-top: 2px solid var(--blue); padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -4px 18px rgba(20, 32, 43, .1);
      }
      .dock .btn-call { max-width: 560px; margin: 0 auto; min-height: 58px; box-shadow: none; }
      .dock .btn-call .t1 { font-size: 18px; }
      .dock .btn-call .t2 { font-size: 12.5px; }
      .dock .btn-call > svg { width: 26px; height: 26px; }
      .wa-fab {
        position: fixed; z-index: 61; inset-inline-start: 16px;
        bottom: calc(var(--dock) + 14px + env(safe-area-inset-bottom, 0px));
        width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
        background: #25d366; color: #fff; text-decoration: none;
        box-shadow: 0 6px 18px rgba(18, 161, 80, .4);
      }
      .wa-fab svg { width: 30px; height: 30px; }

      /* ---------- bands ---------- */
      .band-deep {
        position: relative; color: #fff; overflow: hidden;
        background: var(--deep);
      }
      .band-deep::before {
        content: ''; position: absolute; inset: 0; pointer-events: none;
        background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 2px, transparent 2px 22px);
      }
      .band-deep .wrap { position: relative; z-index: 1; }
      .band-deep p { color: #cfe3f1; }
      .band-soft { background: var(--surface); border-block: 1px solid var(--line); }
      .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
      .stat { padding: 6px 18px; border-inline-start: 1px solid rgba(255, 255, 255, .15); }
      .stat:first-child { border-inline-start: 0; padding-inline-start: 0; }
      .stat b { display: block; font-size: clamp(24px, 4.2vw, 32px); font-weight: 900; line-height: 1.25; font-variant-numeric: tabular-nums; }
      .stat span { font-size: 14px; color: #a9cfe6; }

      /* ---------- pillars (why us) ---------- */
      .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 28px; }
      .card { padding: 16px 0 16px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; }
      .card .ico { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; background: var(--surface); color: var(--blue); border-radius: 50%; }
      .card .ico svg { width: 18px; height: 18px; }
      .card h3 { margin: 0 0 2px; font-size: 16.5px; }
      .card p { margin: 0; font-size: 15px; color: var(--muted); }

      /* ---------- faults: striped rows ---------- */
      .faults { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 26px; }
      .faults li {
        display: flex; gap: 10px; align-items: baseline; padding: 11px 12px;
        font-size: 15.5px; font-weight: 500; border-bottom: 1px solid var(--line);
      }
      .faults li:nth-child(odd) { background: var(--surface); }
      .faults li { border-inline-start: 2px solid transparent; transition: border-color .16s ease, padding-inline-start .16s ease; }
      .faults li:hover { border-inline-start-color: var(--blue); padding-inline-start: 18px; }
      .faults li::before { content: '●'; color: var(--blue); font-size: 10px; flex: 0 0 auto; }

      /* ---------- timeline steps ---------- */
      .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; counter-reset: s; position: relative; }
      .step { position: relative; padding-top: 42px; }
      .step::before {
        counter-increment: s; content: counter(s);
        position: absolute; top: 0; inset-inline-start: 0;
        width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
        background: #fff; color: var(--blue); font-weight: 800; font-size: 15px;
        border: 2px solid var(--blue);
      }
      .step::after {
        content: ''; position: absolute; top: 15px; inset-inline-end: 0;
        width: calc(100% - 44px); height: 2px; background: var(--line);
      }
      .step:last-child::after { display: none; }
      .reveal .step::after { transform: scaleX(0); transform-origin: right; transition: transform .8s cubic-bezier(.2,.8,.3,1) .15s; }
      .reveal.is-in .step::after { transform: scaleX(1); }
      .reveal .step::before { transition: background .35s ease .2s, color .35s ease .2s; }
      .reveal.is-in .step::before { background: var(--blue); color: #fff; }
      .step h3 { margin: 0 0 3px; font-size: 16.5px; }
      .step p { margin: 0; font-size: 14.5px; color: var(--muted); }

      /* ---------- chips & brand list ---------- */
      .chips { display: flex; flex-wrap: wrap; gap: 0; padding: 0; margin: 0 0 14px; list-style: none; }
      .chips li { font-size: 15px; font-weight: 700; color: var(--deep); padding: 4px 0; }
      .chips li::after { content: '/'; color: var(--blue); margin: 0 10px; font-weight: 400; }
      .chips li:last-child::after { display: none; }
      .brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
      .brand-grid a {
        display: flex; align-items: center; gap: 8px; padding: 14px 16px; min-height: 52px;
        text-decoration: none; color: var(--ink); font-weight: 700; font-size: 15.5px;
        border-bottom: 1px solid var(--line); border-inline-end: 1px solid var(--line);
        transition: background .15s, color .15s;
      }
      .brand-grid a::before { content: '←'; color: var(--blue); font-size: 14px; }
      .brand-grid a {
        background-image: linear-gradient(135deg, var(--blue) 0 50%, transparent 50% 100%);
        background-size: 260% 260%; background-position: 100% 100%;
        transition: background-position .32s cubic-bezier(.2,.8,.3,1), color .2s ease;
      }
      .brand-grid a:hover { background-position: 0 0; color: #fff; }
      .brand-grid a:hover::before { color: #fff; }

      /* ---------- faq: flat ---------- */
      details { border-bottom: 1px solid var(--line); padding: 4px 0; }
      details:first-of-type { border-top: 1px solid var(--line); }
      summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 13px 0; font-size: 16.5px; }
      summary::-webkit-details-marker { display: none; }
      summary::after { content: '+'; color: var(--blue); font-size: 22px; font-weight: 400; line-height: 1; }
      details[open] summary { color: var(--blue-700); }
      details[open] summary::after { content: '−'; }
      details p { margin: 0 0 14px; color: var(--muted); font-size: 15.5px; }

      .ticks { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 0; }
      .ticks li { position: relative; padding: 11px 0 11px 0; padding-inline-start: 26px; font-size: 16px; border-bottom: 1px solid var(--line); }
      .ticks li::before { content: '✓'; position: absolute; inset-inline-start: 0; color: var(--blue); font-weight: 800; }

      /* ---------- closing CTA band ---------- */
      .cta-band { position: relative; background: var(--deep); color: #fff; overflow: hidden; text-align: center; }
      .cta-band::before {
        content: ''; position: absolute; inset: 0;
        background: radial-gradient(60% 120% at 50% 0%, rgba(52, 152, 219, .38), transparent 65%);
      }
      .cta-band .wrap { position: relative; z-index: 1; }
      .cta-band h2 { color: #fff; padding-bottom: 8px; }
      .cta-band h2::after { display: none; }
      .cta-band p { color: #bcd9ec; margin-inline: auto; }
      .cta-band .cta-wrap { margin: 20px auto 0; }
      .cta-band .btn-call { background: #fff; color: var(--deep); box-shadow: 0 10px 26px rgba(0, 0, 0, .28); }
      .cta-band .btn-call:hover { background: #eaf4fb; }

      /* ---------- footer ---------- */
      .site-foot { background: var(--ink); color: #9fb3c2; padding: 32px 0 24px; font-size: 14px; }
      .site-foot a { color: #fff; text-decoration: none; }
      .site-foot a:hover { color: var(--blue); }
      .foot-top { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
      .foot-nav { display: flex; flex-direction: column; gap: 7px; }
      .legal { font-size: 12.5px; line-height: 1.8; max-width: 86ch; color: #7a8fa0; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 14px; }

      /* ---------- motion ---------- */
      .reveal { opacity: 1; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
      .reveal.is-in { opacity: 1; transform: none; }
      .fade-up { animation: rise .55s ease both; }
      .d1 { animation-delay: .07s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .25s; }
      @keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
      @keyframes shine { 0% { inset-inline-start: -55%; } 55%, 100% { inset-inline-start: 130%; } }
      @keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
      @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { animation: none !important; transition: none !important; }
        .reveal { opacity: 1; transform: none; }
        html { scroll-behavior: auto; }
      }
      :focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

      @media (max-width: 860px) {
        .hero-split { grid-template-columns: 1fr; gap: 22px; }
        .step::after { display: none; }
      }
      @media (max-width: 640px) {
        body { font-size: 16px; --dock: 80px; }
        section { padding: 34px 0; }
        .topbar .wrap span.hide-sm { display: none; }
        .logo-txt { display: flex; }
        .disclosure { display: block; }
        .head-call em { display: none; }
        .stat { border-inline-start: 0; padding-inline: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding-block: 10px; }
        .num-row .val { font-size: 17.5px; }
        .num-row.main .val { font-size: 24px; }
        .wa-fab { width: 52px; height: 52px; }
      }
    

/* Readability, truthful identity and a working page without JavaScript. */
body { font-family: Tahoma, 'Segoe UI', Arial, sans-serif; overflow-x: clip; }
.logo-txt { display: flex; }
.disclosure { display: block; font-size: 15px; line-height: 1.85; opacity: 1; }
.reveal, .fade-up { opacity: 1; transform: none; animation: none; }
.reveal h2::after, .reveal .step::after { transform: none; }
.btn-call::after, .dot { animation: none; }
.dot { display: none; }
.hero h1 { max-width: 27ch; }
.hero-split > *, .head-in > *, .cb-grid > * { min-width: 0; }
.faults { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.cards { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.brand-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
.site-head { background: #fff; }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 16px; padding-block: 5px; border-top: 1px solid var(--line); }
.site-nav a { min-height: 36px; display: inline-flex; align-items: center; font-size: 14px; font-weight: 700; }
.skip-link { position: fixed; top: 8px; right: 12px; z-index: 200; transform: translateY(-200%); padding: 8px 16px; background: #fff; color: #102f52; border: 2px solid #102f52; }
.skip-link:focus { transform: none; }
[id] { scroll-margin-top: 140px; }
.breadcrumbs { margin: 0 0 16px; font-size: 14px; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li + li::before { content: '/'; margin-inline-end: 8px; }
.service-note { font-size: 15px; line-height: 1.85; border-inline-start: 3px solid var(--blue); padding: 8px 12px; background: #eef4fb; color: #193950; margin-top: 14px; }
.service-note a { color: #164f83; }
.safety-note { background: #fff5e2; color: #50340b; padding: 16px; border-inline-start: 4px solid #a36300; margin-top: 16px; }
.safety-note p { margin: 0; }
.legal-copy { max-width: 950px; }
.legal-copy h2 { margin-top: 28px; }
.legal-copy p, .legal-copy li { max-width: 80ch; }
.site-foot .legal { color: #b7c9d7; font-size: 14px; }
.site-foot .logo-txt small, .site-foot .copyright { color: #b7c9d7 !important; }
.panel-head, .cb-head { flex-wrap: wrap; }
.head-call b, .num-row .val, .cb-num { direction: ltr; unicode-bidi: isolate; }
.stat span { line-height: 1.7; display: block; }
.btn-call .t2 { direction: rtl; }
.num-row:focus-visible, .cb-item:focus-visible, .site-foot a:focus-visible { outline-color: #f5c54a; }
@media (max-width: 640px) {
  .wrap { padding-inline: 16px; }
  .logo-txt { display: flex; }
  .logo-txt b { font-size: 17px; }
  .logo-txt small { font-size: 11px; }
  .logo { gap: 7px; }
  .logo-mark { width: 36px; height: 36px; flex: 0 0 auto; }
  .disclosure { display: block; font-size: 14px; padding: 9px 11px; }
  .head-in { min-height: 68px; height: auto; gap: 8px; }
  .head-call { gap: 5px; padding-inline: 8px; }
  .head-call .ring { display: none; }
  .hero { padding-top: 24px; }
  .hero h1 { font-size: 28px; max-width: 100%; }
  .hero .lede { font-size: 17px; }
  .site-nav { gap: 2px 12px; }
  .site-nav a { font-size: 13px; }
  .btn-call .t1 { font-size: 18px; }
  .btn-call .t2 { font-size: 12px; }
  .panel { clip-path: none; }
  .cb-num { font-size: 17px; white-space: nowrap; }
  .cb-item { min-height: 60px; }
}
@media (max-width: 420px) {
  .cb-grid { grid-template-columns: 1fr; }
  .cb-ico { flex: 0 0 auto; }
  .site-head .logo-txt small { max-width: 140px; }
  .head-call { padding: 7px; }
}
