  :root {
    --navy: #0A2540;
    --navy-700: #0F3358;
    --navy-50: #EEF2F7;
    --bronze: #C9A961;
    --bronze-soft: #E6D6A8;
    --bg: #FAFAF7;
    --ink: #1A1A1A;
    --muted: #6B7280;
    --border: #E5E7EB;
    --border-soft: #ECECE6;

    --container: 1280px;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;

    --font-ar: 'Cairo', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
    --font-en: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 88px; }
  body {
    font-family: var(--font-ar);
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ===== Header ===== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, background .25s ease;
  }
  .site-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(250, 250, 247, 0.88);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 76px;
  }

  /* Logo placeholder — reserve 140x40 */
  .logo {
    display: inline-flex;
    align-items: center;
    height: 44px;
  }
  .logo-img { height: 100%; width: auto; display: block; }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .logo-mark svg { width: 20px; height: 20px; }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-text .ar {
    font-family: var(--font-ar);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--navy);
  }
  .logo-text .en {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 3px;
  }

  /* Nav */
  .nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    opacity: 0.78;
    transition: opacity .2s ease;
    position: relative;
  }
  .nav a:hover { opacity: 1; }
  .nav a.active { opacity: 1; }
  .nav a.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 2px;
    background: var(--bronze);
  }

  /* Header right cluster */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Language switcher */
  .lang {
    position: relative;
  }
  .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: background .2s ease;
  }
  .lang-btn:hover { background: var(--navy-50); }
  .lang-btn .globe { width: 16px; height: 16px; opacity: 0.6; }
  .lang-btn .chev { width: 12px; height: 12px; opacity: 0.5; transition: transform .2s; }
  .lang.is-open .lang-btn .chev { transform: rotate(180deg); }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px -12px rgba(10, 37, 64, 0.18), 0 4px 12px -4px rgba(10, 37, 64, 0.08);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .lang.is-open .lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .lang-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--ink);
  }
  .lang-menu a:hover { background: var(--bg); }
  .lang-menu a.active { background: var(--navy-50); color: var(--navy); }
  .lang-menu a .code {
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .lang-menu a.active .code { color: var(--navy); }

  /* CTA button */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--bronze);
    color: #1A1404;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 1px 2px rgba(10, 37, 64, 0.1);
  }
  .btn-primary:hover {
    background: #b89752;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 8px 20px -6px rgba(201, 169, 97, 0.5);
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
  }
  .btn-ghost:hover {
    border-color: var(--navy);
    background: rgba(10, 37, 64, 0.03);
  }
  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
  }
  .btn .arrow {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
  }
  /* Arrow direction in RTL flips naturally via transform */
  [dir="rtl"] .btn .arrow { transform: scaleX(-1); }
  .btn:hover .arrow { transform: translateX(-3px) scaleX(-1); }
  [dir="ltr"] .btn:hover .arrow { transform: translateX(3px); }

  .menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
  }
  .menu-btn:hover { background: var(--navy-50); }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    padding: 88px 0 120px;
    overflow: hidden;
  }

  /* Soft, restrained gradient — only on hero */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(1100px 520px at 88% 8%, rgba(201, 169, 97, 0.10), transparent 60%),
      radial-gradient(900px 600px at 5% 100%, rgba(10, 37, 64, 0.05), transparent 55%);
    pointer-events: none;
    z-index: 0;
  }

  /* Subtle grid backdrop */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(10, 37, 64, 0.045) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(10, 37, 64, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 80px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    box-shadow: 0 1px 2px rgba(10, 37, 64, 0.04);
  }
  .hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bronze);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
  }
  .hero-eyebrow .sep {
    width: 1px;
    height: 14px;
    background: var(--border);
  }
  .hero-eyebrow .label {
    color: var(--muted);
    font-weight: 500;
  }

  .hero-headline {
    font-family: var(--font-ar);
    font-weight: 800;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.18;
    letter-spacing: -0.005em;
    color: var(--navy);
    margin: 24px 0 24px;
    text-wrap: balance;
  }
  .hero-headline .accent {
    color: var(--navy);
    background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.35) 70%, rgba(201, 169, 97, 0.35) 92%, transparent 92%);
    padding: 0 6px;
  }

  .hero-sub {
    font-size: 19px;
    line-height: 1.75;
    color: #3F4855;
    max-width: 560px;
    margin: 0 0 36px;
    text-wrap: pretty;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
  }

  /* Trust strip — stats row */
  .hero-trust {
    border-top: 1px solid var(--border-soft);
    padding-top: 28px;
  }
  .trust-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .trust-stats li:not(.div) {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .trust-stats li strong {
    font-family: var(--font-ar);
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .trust-stats li span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
  .trust-stats li.div {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
  }

  /* ===== Hero visual: device mockup collage ===== */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 580px;
    margin-inline-start: auto;
  }
  .device-stage {
    position: absolute;
    inset: 0;
    perspective: 1600px;
  }
  .device { position: absolute; }

  /* --- Laptop --- */
  .device-laptop {
    width: 88%;
    top: 18%;
    left: 50%;
    transform: translateX(-50%) rotateX(2deg);
    transform-style: preserve-3d;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(10, 37, 64, 0.18));
  }
  .laptop-lid {
    position: relative;
    background: linear-gradient(180deg, #2a3140 0%, #1a1f2b 100%);
    border-radius: 14px 14px 4px 4px;
    padding: 14px 14px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
  }
  .laptop-notch {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 6px;
    background: #0c0d12;
    border-radius: 0 0 4px 4px;
  }
  .laptop-screen {
    aspect-ratio: 16 / 10;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .laptop-base {
    position: relative;
    height: 12px;
    margin: 0 -3%;
    background: linear-gradient(180deg, #c9ccd2 0%, #9ea3ad 60%, #7c828c 100%);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px rgba(10, 37, 64, 0.2);
  }
  .laptop-hinge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18%;
    height: 4px;
    background: #4a4f5a;
    border-radius: 0 0 4px 4px;
  }

  /* Dashboard mock inside laptop */
  .dash {
    width: 100%; height: 100%;
    display: grid;
    grid-template-columns: 22% 1fr;
    background: #FAFAF7;
    font-size: 0;
  }
  .dash-side {
    background: #fff;
    border-inline-end: 1px solid #EEF1F4;
    padding: 8px 6px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .dash-brand { display: flex; align-items: center; gap: 4px; padding: 4px; }
  .dash-brand-mark { width: 10px; height: 10px; background: var(--navy); border-radius: 2px; }
  .dash-brand-text { display: block; height: 6px; width: 32px; background: var(--navy); border-radius: 1.5px; opacity: 0.85; }
  .dash-nav { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
  .dash-nav-item { display: flex; align-items: center; gap: 4px; padding: 4px 5px; border-radius: 3px; }
  .dash-nav-item i { width: 8px; height: 8px; background: #D7DBE0; border-radius: 1.5px; flex-shrink: 0; }
  .dash-nav-item b { display: block; height: 4px; flex: 1; background: #D7DBE0; border-radius: 2px; }
  .dash-nav-item.active { background: rgba(10,37,64,0.06); }
  .dash-nav-item.active i { background: var(--navy); }
  .dash-nav-item.active b { background: var(--navy); opacity: 0.7; }
  .dash-main { padding: 8px 10px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
  .dash-topbar { display: flex; align-items: center; gap: 6px; }
  .dash-search { flex: 1; height: 14px; background: #fff; border: 1px solid #EBEEF1; border-radius: 4px; }
  .dash-actions { display: flex; align-items: center; gap: 4px; }
  .dash-actions span { width: 12px; height: 12px; border-radius: 50%; background: #EBEEF1; }
  .dash-actions .dash-avatar { background: var(--bronze); }
  .dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .kpi {
    background: #fff;
    border: 1px solid #EEF1F4;
    border-radius: 5px;
    padding: 6px 7px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .kpi-label { display: block; height: 4px; width: 60%; background: #D7DBE0; border-radius: 2px; }
  .kpi-num { font-family: var(--font-ar); font-weight: 800; font-size: 11px; color: var(--navy); line-height: 1; letter-spacing: 0; }
  .kpi-bar { display: block; height: 3px; width: 100%; background: #EFF1F4; border-radius: 2px; overflow: hidden; }
  .kpi-bar i { display: block; height: 100%; background: var(--navy); border-radius: 2px; }
  .kpi-bar.gold i { background: var(--bronze); }
  .dash-chart {
    background: #fff;
    border: 1px solid #EEF1F4;
    border-radius: 5px;
    padding: 6px;
    flex: 1; min-height: 0;
  }
  .dash-chart svg { width: 100%; height: 100%; display: block; }
  .dash-rows { display: flex; flex-direction: column; gap: 3px; }
  .row {
    display: grid; grid-template-columns: 1fr 1fr auto;
    align-items: center; gap: 6px;
    background: #fff; border: 1px solid #EEF1F4;
    border-radius: 4px; padding: 4px 7px;
  }
  .row > span:not(.pill) { height: 4px; background: #D7DBE0; border-radius: 2px; }
  .row > span:nth-child(2) { width: 60%; justify-self: end; }
  .row .pill { width: 24px; height: 8px; border-radius: 4px; background: rgba(16,185,129,0.18); }
  .row .pill.warn { background: rgba(245,158,11,0.22); }
  .row .pill.ok { background: rgba(16,185,129,0.22); }

  /* --- Phone --- */
  .device-phone {
    width: 24%;
    bottom: 4%;
    inset-inline-end: 2%;
    transform: rotate(6deg);
    z-index: 3;
    filter: drop-shadow(0 24px 30px rgba(10, 37, 64, 0.22));
  }
  [dir="rtl"] .device-phone { transform: rotate(-6deg); }
  .phone-frame {
    position: relative;
    aspect-ratio: 9 / 19;
    background: linear-gradient(180deg, #1c2330 0%, #0f141d 100%);
    border-radius: 22px;
    padding: 6px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
  }
  .phone-screen {
    width: 100%; height: 100%;
    background: #FAFAF7;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
  }
  .phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 8px;
    background: #0a0d13;
    border-radius: 6px;
    z-index: 2;
  }
  .phone-status {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px 6px;
    height: 16px;
    flex-shrink: 0;
  }
  .phone-time {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 7px;
    color: var(--ink);
  }
  .phone-island { width: 30%; height: 6px; }
  .phone-icons { width: 18px; height: 4px; background: var(--ink); border-radius: 2px; opacity: 0.6; }
  .phone-app {
    flex: 1;
    padding: 8px 8px 10px;
    display: flex; flex-direction: column; gap: 7px;
    min-height: 0;
  }
  .app-greet { display: flex; flex-direction: column; gap: 3px; }
  .app-greet-1 { display: block; height: 5px; width: 50%; background: #C8CDD3; border-radius: 2px; }
  .app-greet-2 { display: block; height: 4px; width: 35%; background: #E3E6E9; border-radius: 2px; }
  .app-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 8px 9px;
    display: flex; flex-direction: column; gap: 5px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .app-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 90% 10%, rgba(201,169,97,0.25), transparent 60%);
  }
  .app-card-row { display: flex; align-items: center; justify-content: space-between; }
  .app-card-label { display: block; height: 4px; width: 30%; background: rgba(255,255,255,0.4); border-radius: 2px; }
  .app-card-pill { width: 24px; height: 7px; background: rgba(201,169,97,0.6); border-radius: 4px; }
  .app-card-num {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: -0.01em;
    z-index: 1;
  }
  .app-card-meta { display: flex; gap: 6px; }
  .app-card-meta span { display: block; height: 3px; width: 24px; background: rgba(255,255,255,0.3); border-radius: 2px; }
  .app-actions {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  }
  .app-action {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: #fff;
    padding: 6px 2px;
    border-radius: 6px;
    border: 1px solid #EEF1F4;
  }
  .app-action i { width: 8px; height: 8px; background: var(--navy); border-radius: 2px; }
  .app-action b { display: block; height: 3px; width: 70%; background: #D7DBE0; border-radius: 2px; }
  .app-list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
  .app-li {
    background: #fff;
    border: 1px solid #EEF1F4;
    border-radius: 6px;
    padding: 5px 6px;
    display: flex; align-items: center; gap: 5px;
  }
  .app-li-ico { width: 14px; height: 14px; border-radius: 4px; background: rgba(10,37,64,0.12); flex-shrink: 0; }
  .app-li-ico.gold { background: rgba(201,169,97,0.3); }
  .app-li-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .app-li-text b { display: block; height: 4px; width: 70%; background: #C8CDD3; border-radius: 2px; }
  .app-li-text i { display: block; height: 3px; width: 50%; background: #E3E6E9; border-radius: 2px; }
  .app-li-amt { width: 16px; height: 4px; background: var(--navy); opacity: 0.7; border-radius: 2px; }

  /* --- Tablet (back-left) --- */
  .device-tablet {
    width: 38%;
    top: 4%;
    inset-inline-start: 0;
    transform: rotate(-7deg);
    z-index: 1;
    filter: drop-shadow(0 24px 30px rgba(10, 37, 64, 0.18));
  }
  [dir="rtl"] .device-tablet { transform: rotate(7deg); }
  .tablet-frame {
    position: relative;
    aspect-ratio: 4 / 5.6;
    background: linear-gradient(180deg, #2a3140 0%, #1a1f2b 100%);
    border-radius: 14px;
    padding: 6px;
  }
  .tablet-screen {
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
  }
  .canvas-mock {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
  }
  .cv-toolbar {
    height: 14px;
    border-bottom: 1px solid #EEF1F4;
    display: flex; align-items: center; gap: 4px;
    padding: 0 6px;
    flex-shrink: 0;
  }
  .cv-tool { width: 6px; height: 6px; border-radius: 50%; background: #DDE1E6; }
  .cv-tool:nth-child(2) { background: #C9CDD3; }
  .cv-tool:nth-child(3) { background: #B6BBC2; }
  .cv-spacer { flex: 1; }
  .cv-pill { width: 20px; height: 6px; background: var(--bronze); border-radius: 3px; opacity: 0.75; }
  .cv-board {
    flex: 1;
    position: relative;
    background:
      linear-gradient(to right, rgba(10, 37, 64, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(10, 37, 64, 0.06) 1px, transparent 1px),
      #FAFAF7;
    background-size: 14px 14px;
  }
  .cv-art {
    position: absolute;
    background: #fff;
    border: 1.5px solid var(--navy);
    border-radius: 4px;
  }
  .cv-art.a1 { top: 12%; left: 10%; width: 38%; height: 28%; background: var(--navy); }
  .cv-art.a2 { top: 14%; left: 56%; width: 34%; height: 22%; }
  .cv-art.a3 { top: 50%; left: 22%; width: 56%; height: 36%; border-color: var(--bronze); border-style: dashed; }

  .device-watch {
    width: 14%;
    top: 0%;
    inset-inline-start: 28%;
    z-index: 4;
    transform: rotate(-12deg);
  }

  /* Floating chip overlays on hero visual */
  .hero-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 12px 30px -10px rgba(10, 37, 64, 0.18), 0 4px 8px -4px rgba(10, 37, 64, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    backdrop-filter: blur(8px);
  }
  .hero-chip .ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .hero-chip .ico svg { width: 14px; height: 14px; }
  .hero-chip .meta {
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .hero-chip strong { font-weight: 600; color: var(--navy); }

  .hero-chip .ico.services { background: var(--navy); color: #fff; }
  .hero-chip .ico.projects { background: rgba(16, 185, 129, 0.14); color: #047857; }
  .hero-chip .ico.flag { background: rgba(201, 169, 97, 0.2); color: #8a6d2a; }
  .hero-chip .ico.rento { background: var(--navy); color: #fff; }

  .chip-services {
    top: -2%;
    inset-inline-start: -4%;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
  }
  .chip-projects {
    bottom: 22%;
    inset-inline-start: -6%;
    animation: float 6s ease-in-out infinite 1.2s;
    z-index: 5;
  }
  .chip-flag {
    bottom: -1%;
    inset-inline-end: 8%;
    animation: float 6s ease-in-out infinite 0.6s;
    z-index: 5;
  }
  .chip-rento {
    top: 6%;
    inset-inline-end: -3%;
    animation: float 6s ease-in-out infinite 1.8s;
    z-index: 5;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  @keyframes draw {
    from { stroke-dashoffset: var(--len); }
    to { stroke-dashoffset: 0; }
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 0.6; r: 4; }
    50% { opacity: 1; r: 5.5; }
  }

  /* ===== Services Pillars ===== */
  .pillars {
    position: relative;
    z-index: 1;
    padding: 96px 0 112px;
  }
  .pillars-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 48px;
  }
  .pillars-head > div { display: flex; flex-direction: column; align-items: center; }
  .pillars-head .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-en);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--bronze); font-weight: 600;
    margin-bottom: 14px;
  }
  .pillars-head .eyebrow::before,
  .pillars-head .eyebrow::after {
    content: ''; width: 24px; height: 1px; background: var(--bronze);
  }
  .pillars-head h2 {
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    color: var(--navy);
    margin: 0 0 12px;
    letter-spacing: -0.005em;
    text-wrap: balance;
    max-width: 760px;
  }
  .pillars-head p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin: 0;
  }
  .pillars-head .right-link {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--navy);
    transition: gap .2s ease;
  }
  .pillars-head .right-link:hover { gap: 12px; }
  .pillars-head .right-link svg { width: 14px; height: 14px; }
  [dir="rtl"] .pillars-head .right-link svg { transform: scaleX(-1); }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
  }
  .pillar {
    position: relative;
    padding: 36px 32px 32px;
    border-inline-end: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .25s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 240px;
  }
  .pillar:nth-child(3n) { border-inline-end: none; }
  .pillar:nth-last-child(-n+3) { border-bottom: none; }
  .pillar:hover {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.02), rgba(201, 169, 97, 0.04));
  }
  .pillar:hover .pillar-icon {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
  }
  .pillar:hover .pillar-icon::after { opacity: 1; }
  .pillar:hover .pillar-arrow {
    opacity: 1;
    transform: translate(0, 0);
  }
  [dir="rtl"] .pillar:hover .pillar-arrow { transform: translate(0, 0); }

  .pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--navy-50);
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    position: relative;
  }
  .pillar-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    background: linear-gradient(135deg, transparent, rgba(201,169,97,0.5));
    opacity: 0;
    z-index: -1;
    transition: opacity .25s ease;
  }
  .pillar-icon svg { width: 30px; height: 30px; }
  .pillar-icon .bronze { color: var(--bronze); }

  .pillar-titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .pillar-titles .ar {
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.3;
  }
  .pillar-titles .en {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .pillar-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5260;
    margin: 0;
    text-wrap: pretty;
  }
  .pillar-arrow {
    position: absolute;
    top: 36px;
    inset-inline-end: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bronze);
    color: #1A1404;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translate(8px, -8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  [dir="rtl"] .pillar-arrow { transform: translate(-8px, -8px); }
  .pillar-arrow svg { width: 14px; height: 14px; }
  [dir="rtl"] .pillar-arrow svg { transform: scaleX(-1); }

  /* ===== Sub-hero ribbon (logos) ===== */
  .ribbon {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.4);
  }
  .ribbon-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 48px;
    padding: 28px 0;
  }
  .ribbon-label {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  [dir="rtl"] .ribbon-label {
    font-family: var(--font-ar);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
  }
  .ribbon-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    align-items: center;
  }
  .logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 6px;
    background: repeating-linear-gradient(
      135deg,
      #E5E7EB,
      #E5E7EB 6px,
      #EDEFF2 6px,
      #EDEFF2 12px
    );
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.65;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .hero-grid { gap: 56px; }
    .hero-headline { font-size: clamp(36px, 6vw, 60px); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(3n) { border-inline-end: 1px solid var(--border); }
    .pillar:nth-child(2n) { border-inline-end: none; }
    .pillar:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
    .pillar:nth-last-child(-n+2) { border-bottom: none; }
  }
  @media (max-width: 900px) {
    .nav { display: none; }
    .menu-btn { display: inline-flex; }
    .hero { padding: 56px 0 80px; }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .hero-visual { max-width: 460px; margin-inline-start: 0; margin-inline-end: 0; margin: 0 auto; }
    .ribbon-inner { grid-template-columns: 1fr; gap: 16px; }
    .ribbon-logos { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .ribbon-logos .logo-placeholder:nth-child(n+4) { display: none; }
    .header-actions .btn-primary { display: none; }
    .pillars { padding: 64px 0 80px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-inline-end: none !important; border-bottom: 1px solid var(--border) !important; }
    .pillar:last-child { border-bottom: none !important; }
  }
  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero { padding: 40px 0 60px; }
    .hero-headline { font-size: 38px; line-height: 1.22; }
    .hero-sub { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .chip-services, .chip-projects, .chip-flag, .chip-rento { display: none; }
  }

  /* Skip to content (a11y) */
  .skip {
    position: absolute;
    inset-inline-start: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
  }
  .skip:focus { inset-inline-start: 16px; top: 16px; z-index: 100; }

  /* ===== Featured Product · Rento Pro ===== */
  .rp-feat {
    position: relative;
    padding: 96px 0 112px;
    background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
    overflow: hidden;
  }
  .rp-feat .rp-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(circle at 12% 18%, rgba(201,169,97,0.06), transparent 36%),
      radial-gradient(circle at 88% 78%, rgba(10,37,64,0.05), transparent 40%);
  }
  .rp-feat .container { position: relative; z-index: 1; }

  .rp-head {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 14px; margin: 0 auto 56px;
    max-width: 760px;
  }
  .rp-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-en, 'Inter', system-ui, sans-serif);
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--bronze); font-weight: 600;
    margin-bottom: 4px;
  }
  .rp-eyebrow::before, .rp-eyebrow::after {
    content: ''; width: 32px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  }
  .rp-head h2 {
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.005em;
    text-wrap: balance;
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0 14px;
  }
  .rp-head h2 .rp-en { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; }
  .rp-head h2 .rp-divider { color: var(--bronze); font-weight: 400; }
  .rp-head p {
    font-size: 17px; line-height: 1.75; color: var(--muted);
    max-width: 620px; margin: 0;
  }

  /* Summary card */
  .rp-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 44px 40px;
    margin: 0 auto 64px;
    max-width: 960px;
    box-shadow: 0 1px 0 rgba(10,37,64,0.02), 0 24px 48px -32px rgba(10,37,64,0.18);
    position: relative;
  }
  .rp-summary-head {
    display: flex; align-items: center; gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .rp-summary-mark {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, #0f3354 100%);
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 6px 16px -8px rgba(10,37,64,0.5);
    position: relative;
  }
  .rp-summary-mark::after {
    content: ''; position: absolute; inset: auto -3px -3px auto;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--bronze); border: 2px solid #fff;
  }
  .rp-summary-meta { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 200px; }
  .rp-summary-tag {
    font-family: var(--font-en, 'Inter', sans-serif);
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--bronze); font-weight: 600;
  }
  .rp-summary-meta h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 24px; font-weight: 700; color: var(--navy);
    margin: 0; letter-spacing: -0.01em;
  }
  .rp-summary-sub {
    font-family: var(--font-ar);
    font-size: 14px; color: var(--muted);
  }
  .rp-summary-stats {
    display: flex; align-items: center; gap: 18px;
    padding-inline-start: 12px;
  }
  .rp-summary-stats > div {
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  }
  .rp-summary-stats strong {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 22px; font-weight: 700; color: var(--navy);
    line-height: 1;
  }
  .rp-summary-stats span {
    font-family: var(--font-ar);
    font-size: 12px; color: var(--muted);
  }
  .rp-summary-stats i {
    width: 1px; height: 28px; background: var(--border); display: block;
  }

  .rp-summary-lead {
    font-size: 17.5px; line-height: 1.95;
    color: var(--navy);
    margin: 0 0 22px;
    text-wrap: pretty;
  }

  .rp-summary-points {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px;
  }
  .rp-summary-points li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; line-height: 1.6; color: #2d3947;
  }
  .rp-check {
    flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(201,169,97,0.16); color: var(--bronze);
    display: grid; place-items: center;
    margin-top: 2px;
  }
  .rp-check svg { width: 12px; height: 12px; }

  /* Features grid: 3 + 2 centered */
  .rp-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 0 0 56px;
  }
  .rp-feature {
    grid-column: span 2;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .rp-feature:nth-child(4) { grid-column: 2 / span 2; }
  .rp-feature:nth-child(5) { grid-column: 4 / span 2; }
  .rp-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(10,37,64,0.18);
    box-shadow: 0 14px 32px -20px rgba(10,37,64,0.25);
  }
  .rp-feat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--navy-50);
    color: var(--navy);
    display: grid; place-items: center;
  }
  .rp-feat-icon svg { width: 26px; height: 26px; }
  .rp-feature h4 {
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin: 4px 0 0;
    letter-spacing: -0.005em;
  }
  .rp-feature p {
    font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0;
  }

  /* CTAs */
  .rp-cta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }
  .rp-cta-primary svg { transform: scaleX(-1); margin-inline-start: 6px; }
  .rp-cta-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(10,37,64,0.22);
  }
  .rp-cta-ghost:hover { background: var(--navy-50); border-color: var(--navy); }

  /* ===== Why Subull ===== */
  .why {
    position: relative;
    padding: 96px 0 112px;
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    overflow: hidden;
  }
  .why::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(10,37,64,0.07) 1px, transparent 1.4px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
  }
  .why .container { position: relative; z-index: 1; }
  .why-head {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 14px; margin: 0 auto 64px; max-width: 760px;
  }
  .why-head h2 {
    font-family: var(--font-ar); font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25;
    color: var(--navy); margin: 0; text-wrap: balance;
  }
  .why-head p {
    font-size: 17px; line-height: 1.75; color: var(--muted);
    max-width: 580px; margin: 0;
  }

  .why-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .why-grid::before {
    content: ''; position: absolute;
    inset-inline-start: 6%; inset-inline-end: 6%;
    top: 92px; height: 1px;
    border-top: 1px dashed rgba(201,169,97,0.5);
    z-index: 0;
  }
  .why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px 26px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    z-index: 1;
    overflow: hidden;
  }
  .why-card::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, var(--bronze), #d9b97a);
    transform: scaleX(0); transform-origin: right center;
    transition: transform .35s ease;
  }
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,169,97,0.55);
    box-shadow: 0 22px 44px -28px rgba(10,37,64,0.28);
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-num {
    position: absolute; top: 14px; inset-inline-end: 18px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700; font-size: 38px;
    color: rgba(201,169,97,0.22);
    letter-spacing: -0.02em; line-height: 1;
    pointer-events: none;
  }
  .why-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--navy-50); color: var(--navy);
    display: grid; place-items: center;
    position: relative; z-index: 1; margin-top: 4px;
  }
  .why-icon svg { width: 28px; height: 28px; }
  .why-card h4 {
    font-family: var(--font-ar); font-weight: 700;
    font-size: 18px; color: var(--navy); margin: 0;
    letter-spacing: -0.005em; line-height: 1.4;
  }
  .why-card p {
    font-size: 13.5px; line-height: 1.7; color: var(--muted); margin: 0;
  }

  @media (max-width: 1080px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid::before { display: none; }
  }
  @media (max-width: 760px) {
    .why { padding: 72px 0 88px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card:nth-child(5) { grid-column: 1 / span 2; }
  }
  @media (max-width: 500px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card:nth-child(5) { grid-column: span 1; }
  }

  @media (max-width: 900px) {
    .rp-feat { padding: 72px 0 88px; }
    .rp-summary { padding: 28px 24px 32px; }
    .rp-summary-head { gap: 14px; }
    .rp-summary-stats { width: 100%; padding: 16px 0 0; border-top: 1px solid var(--border); }
    .rp-summary-points { grid-template-columns: 1fr; }
    .rp-features { grid-template-columns: repeat(2, 1fr); }
    .rp-feature, .rp-feature:nth-child(4), .rp-feature:nth-child(5) { grid-column: span 1; }
    .rp-feature:nth-child(5) { grid-column: 1 / span 2; max-width: 50%; margin: 0 auto; }
  }
  @media (max-width: 600px) {
    .rp-features { grid-template-columns: 1fr; }
    .rp-feature:nth-child(5) { grid-column: span 1; max-width: none; }
    .rp-summary-meta h3 { font-size: 22px; }
    .rp-summary-stats { gap: 14px; }
    .rp-summary-stats strong { font-size: 19px; }
  }

  /* ===== CTA — Let's Talk ===== */
  .cta-section {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(180deg, #FAFAF7 0%, #F4F2EC 100%);
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 12% 18%, rgba(201, 169, 97, 0.08) 0, transparent 35%),
      radial-gradient(circle at 88% 82%, rgba(10, 37, 64, 0.06) 0, transparent 40%);
    pointer-events: none;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(10, 37, 64, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10, 37, 64, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Right column (visual right in RTL) — intro + WhatsApp */
  .cta-intro {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
  }
  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bronze);
  }
  .cta-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--bronze);
  }
  .cta-eyebrow span { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; font-size: 14px; }
  .cta-headline {
    font-family: var(--font-ar);
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
  }
  .cta-sub {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
    max-width: 48ch;
  }
  .cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 4px;
  }
  .cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
  }
  .cta-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--bronze);
    flex-shrink: 0;
  }

  /* WhatsApp card */
  .cta-whatsapp {
    margin-top: 12px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px 28px 28px 32px;
    box-shadow: 0 12px 32px -16px rgba(10, 37, 64, 0.18), 0 2px 6px -2px rgba(10, 37, 64, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    width: 3px;
    background: #25D366;
  }
  .cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px -18px rgba(10, 37, 64, 0.22), 0 4px 10px -2px rgba(10, 37, 64, 0.08);
  }
  .wa-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .wa-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .wa-icon svg { width: 24px; height: 24px; color: #25D366; }
  .wa-titles { display: flex; flex-direction: column; gap: 2px; }
  .wa-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.3; }
  .wa-sub { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
  .wa-phone {
    font-family: var(--font-en);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
    direction: ltr;
    text-align: start;
    margin: 4px 0 18px;
    padding: 12px 16px;
    background: rgba(37, 211, 102, 0.06);
    border-radius: var(--radius);
    border: 1px dashed rgba(37, 211, 102, 0.3);
  }
  .wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius);
    background: #25D366;
    color: #fff;
    font-family: var(--font-ar);
    font-size: 16px;
    font-weight: 700;
    transition: background .2s ease, transform .15s ease;
  }
  .wa-btn:hover { background: #1FBA58; transform: translateY(-1px); }
  .wa-btn svg { width: 16px; height: 16px; }
  [dir="rtl"] .wa-btn svg { transform: scaleX(-1); }

  /* Left column — form card */
  .cta-form-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 60px -28px rgba(10, 37, 64, 0.22), 0 4px 12px -4px rgba(10, 37, 64, 0.06);
  }
  .cta-form-head { margin-bottom: 28px; }
  .cta-form-title {
    font-family: var(--font-ar);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.3;
  }
  .cta-form-subtitle {
    font-size: 14.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
  }
  .cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .cta-field { display: flex; flex-direction: column; gap: 8px; }
  .cta-field.full { grid-column: 1 / -1; }
  .cta-field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
  }
  .cta-field .req { color: var(--bronze); margin-inline-start: 2px; }
  .cta-field .opt { color: var(--muted); font-weight: 400; font-size: 12.5px; margin-inline-start: 4px; }
  .cta-input,
  .cta-select,
  .cta-textarea {
    width: 100%;
    font-family: var(--font-ar);
    font-size: 15px;
    color: var(--ink);
    padding: 12px 14px;
    background: #FBFAF6;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    line-height: 1.5;
  }
  .cta-input::placeholder,
  .cta-textarea::placeholder { color: #9CA3AF; }
  .cta-input:focus,
  .cta-select:focus,
  .cta-textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
  }
  .cta-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-inline-start: 14px;
    padding-inline-end: 38px;
  }
  [dir="rtl"] .cta-select { background-position: left 14px center; }
  .cta-textarea { resize: vertical; min-height: 120px; }
  .cta-submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    background: var(--bronze);
    color: #fff;
    border-radius: var(--radius);
    font-family: var(--font-ar);
    font-size: 16px;
    font-weight: 700;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px -10px rgba(201, 169, 97, 0.5);
  }
  .cta-submit:hover {
    background: #B89651;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -10px rgba(201, 169, 97, 0.6);
  }
  .cta-submit svg { width: 16px; height: 16px; }
  [dir="rtl"] .cta-submit svg { transform: scaleX(-1); }
  .cta-disclaimer {
    grid-column: 1 / -1;
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
    margin: 4px 0 0;
    line-height: 1.5;
  }
  .cta-disclaimer a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

  @media (max-width: 1024px) {
    .cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-section { padding: 96px 0 112px; }
  }
  @media (max-width: 640px) {
    .cta-form { grid-template-columns: 1fr; }
    .cta-form-card { padding: 28px 22px; }
    .cta-section { padding: 72px 0 88px; }
    .cta-headline { font-size: 32px; }
    .cta-whatsapp { padding: 22px; }
  }

  /* ===== Footer ===== */
  .site-footer {
    position: relative;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 88px 0 0;
    overflow: hidden;
    font-size: 15px;
  }
  .site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(115deg, rgba(201, 169, 97, 0.06) 1px, transparent 1px),
      linear-gradient(65deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px;
    mask-image: radial-gradient(ellipse at 30% 20%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000 0%, transparent 75%);
    pointer-events: none;
  }
  .site-footer .container { position: relative; z-index: 1; }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 56px;
    padding-bottom: 56px;
  }

  /* Brand column */
  .footer-brand .logo {
    width: 140px;
    height: 40px;
    margin-bottom: 18px;
  }
  .footer-brand .logo-mark {
    background: #fff;
    color: var(--navy);
  }
  .footer-brand .logo-mark svg { color: var(--navy); }
  .footer-brand .logo-name { color: #fff; }
  .footer-brand .logo-name-en { color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; }
  .footer-tagline {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 24px;
    max-width: 38ch;
  }
  .footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
  }
  .footer-wa svg { width: 16px; height: 16px; color: #25D366; }
  .footer-wa:hover {
    border-color: var(--bronze);
    background: rgba(201, 169, 97, 0.08);
    color: var(--bronze);
  }

  /* Link columns */
  .footer-col h4 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-ar);
    font-size: 14px;
    font-weight: 700;
    color: var(--bronze);
    margin: 0 0 22px;
    letter-spacing: 0;
  }
  .footer-col h4 .en {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 169, 97, 0.55);
  }
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
    transition: color .15s ease, transform .15s ease;
    display: inline-block;
  }
  .footer-links a:hover {
    color: #fff;
    transform: translateX(-3px);
  }
  [dir="rtl"] .footer-links a:hover { transform: translateX(3px); }

  /* Contact column */
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
  }
  .footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--bronze);
    margin-top: 3px;
  }
  .footer-contact-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(201, 169, 97, 0.7);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .footer-contact-value {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .footer-contact a.footer-contact-value {
    transition: color .15s ease;
  }
  .footer-contact a.footer-contact-value:hover { color: var(--bronze); }
  .footer-contact-value.ltr { direction: ltr; text-align: start; display: inline-block; }

  /* Bottom bar */
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 24px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
  }
  .footer-legal {
    display: flex;
    align-items: center;
    gap: 8px 18px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
  }
  .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: color .15s ease;
  }
  .footer-legal a:hover { color: var(--bronze); }
  .footer-legal-sep {
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
  }
  .footer-lang {
    justify-self: end;
    position: relative;
  }
  .footer-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-ar);
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s ease, background .2s ease;
  }
  .footer-lang-btn svg { width: 12px; height: 12px; opacity: 0.6; transition: transform .2s ease; }
  .footer-lang-btn:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.06);
  }
  .footer-lang.is-open .footer-lang-btn svg { transform: rotate(180deg); }
  .footer-lang-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.35);
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 2px;
  }
  .footer-lang.is-open .footer-lang-menu { display: flex; }
  .footer-lang-menu a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    transition: background .15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-lang-menu a:hover { background: var(--navy-50); }
  .footer-lang-menu a .iso {
    font-family: var(--font-en);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  @media (max-width: 1024px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 44px 40px;
    }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 640px) {
    .site-footer { padding-top: 64px; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 36px;
      padding-bottom: 40px;
    }
    .footer-bottom {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 16px;
      padding: 20px 0 24px;
    }
    .footer-lang { justify-self: center; }
    .footer-copyright { text-align: center; }
  }

  /* ===== About Us ===== */
  .about {
    position: relative;
    padding: 120px 0;
    background:
      radial-gradient(ellipse at 80% 0%, rgba(201,169,97,0.05) 0, transparent 50%),
      radial-gradient(ellipse at 0% 100%, rgba(10,37,64,0.04) 0, transparent 55%),
      #FBF9F3;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle, rgba(10,37,64,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, transparent 30%, #000 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, #000 90%);
    pointer-events: none;
    opacity: 0.6;
  }
  .about-inner { position: relative; z-index: 1; }
  .about-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
  }
  .about-head .eyebrow { justify-content: center; }
  .about-head h2 {
    font-family: var(--font-ar);
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin: 16px 0 18px;
    letter-spacing: -0.01em;
  }
  .about-head p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
  }

  /* Mission & Vision — feature card */
  .about-mv {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 50px -28px rgba(10,37,64,0.18), 0 2px 6px -2px rgba(10,37,64,0.05);
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .about-mv::after {
    content: '';
    position: absolute;
    inset-inline-end: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.08) 0, transparent 70%);
    pointer-events: none;
  }
  .about-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--navy-50);
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .about-mv-icon svg { width: 32px; height: 32px; }
  .about-mv-block { position: relative; }
  .about-mv-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ar);
    font-size: 13px;
    font-weight: 700;
    color: var(--bronze);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }
  .about-mv-label::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--bronze);
  }
  .about-mv-block h3 {
    font-family: var(--font-ar);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
  }
  .about-mv-block p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ink);
    margin: 0;
    opacity: 0.82;
  }
  .about-mv-divider {
    grid-column: 2 / -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    margin: -6px 0;
    display: none; /* not used in side-by-side */
  }

  /* 3-card row */
  .about-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .about-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
  }
  .about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(10,37,64,0.18), 0 2px 6px -2px rgba(10,37,64,0.05);
    border-color: rgba(201,169,97,0.35);
  }
  .about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy-50);
    color: var(--navy);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .about-card-icon svg { width: 26px; height: 26px; }
  .about-card h3 {
    font-family: var(--font-ar);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
  }
  .about-card p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
  }
  .about-card.promise ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .about-card.promise li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.55;
  }
  .about-card.promise li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(201,169,97,0.14);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12.5 10 17.5 19 7.5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4px;
  }

  @media (max-width: 980px) {
    .about-mv {
      grid-template-columns: auto 1fr;
      gap: 32px;
      padding: 36px;
    }
    .about-mv-block.vision {
      grid-column: 2;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .about-trio { grid-template-columns: 1fr; gap: 18px; }
  }
  @media (max-width: 640px) {
    .about { padding: 80px 0; }
    .about-mv {
      grid-template-columns: 1fr;
      padding: 28px 24px;
    }
    .about-mv-block.vision {
      grid-column: 1;
    }
    .about-card { padding: 26px 22px; }
  }
