    /* ── TOKENS ───────────────────────────────────────────── */
    :root {
      --black:       #070b12;
      --black-2:     #0c1220;
      --black-3:     #111827;
      --navy:        #0a0f1e;
      --red:         #c0392b;
      --red-deep:    #7B0D1E;
      --purple:      #7c3aed;
      --purple-deep: #2d0047;
      --white:       #f0f4ff;
      --muted:       #8892b0;
      --surface:     rgba(99,120,255,0.06);
      --border:      rgba(120,140,255,0.12);
      --glow-purple: rgba(124,58,237,0.12);
      --glow-red:    rgba(192,57,43,0.10);
      --radius:      12px;
      --radius-lg:   20px;

      --fs-xs:   clamp(0.72rem,  0.66rem + 0.3vw,  0.875rem);
      --fs-sm:   clamp(0.875rem, 0.8rem  + 0.37vw, 1rem);
      --fs-base: clamp(1rem,     0.9rem  + 0.5vw,  1.125rem);
      --fs-lg:   clamp(1.125rem, 1rem    + 0.62vw, 1.375rem);
      --fs-xl:   clamp(1.5rem,   1.2rem  + 1.5vw,  2.25rem);
      --fs-2xl:  clamp(2rem,     1.5rem  + 2.5vw,  3.5rem);
      --fs-3xl:  clamp(2.75rem,  1.8rem  + 4.75vw, 5.5rem);

      --sp-xs:  clamp(0.5rem,  0.4rem + 0.5vw,  0.75rem);
      --sp-sm:  clamp(0.75rem, 0.6rem + 0.75vw, 1.125rem);
      --sp-md:  clamp(1.25rem, 1rem   + 1.25vw, 2rem);
      --sp-lg:  clamp(2rem,    1.5rem + 2.5vw,  4rem);
      --sp-xl:  clamp(4rem,    3rem   + 5vw,    8rem);
      --sec:    clamp(5rem,    4rem   + 5vw,    9rem);
    }

    /* Arabic font override */
    html[lang="ar"] body {
      font-family: 'Tajawal', sans-serif;
      font-size: clamp(1rem, 0.95rem + 0.5vw, 1.2rem);
    }
    html[lang="ar"] .section-label,
    html[lang="ar"] .process-day,
    html[lang="ar"] .footer-tagline {
      font-family: 'Tajawal', sans-serif;
      letter-spacing: 0;
    }

    /* ── RESET ────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: #030508;
      color: var(--white);
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: var(--fs-base);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img, canvas { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    input, textarea, select { font-family: inherit; }
    ul { list-style: none; }

    /* ── LANGUAGE SPLASH ──────────────────────────────────── */
    #lang-splash {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: var(--sp-lg);
    }
    #lang-splash::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(124,58,237,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 70% 50%, rgba(192,57,43,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .splash-logo {
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      position: relative;
    }
    .splash-logo .x { color: var(--red); }

    .splash-prompt {
      font-family: 'JetBrains Mono', 'Tajawal', monospace;
      font-size: var(--fs-sm);
      color: var(--muted);
      text-align: center;
      position: relative;
    }
    .splash-prompt strong {
      display: block;
      font-size: var(--fs-base);
      color: var(--white);
      margin-bottom: 0.3rem;
      font-family: 'Tajawal', 'Space Grotesk', sans-serif;
      font-weight: 500;
    }

    .lang-buttons {
      display: flex;
      gap: var(--sp-md);
      position: relative;
    }
    .lang-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1.5rem 2.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--white);
      cursor: pointer;
      font-size: var(--fs-lg);
      font-weight: 700;
      font-family: inherit;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s, background 0.25s;
      min-width: 160px;
    }
    .lang-btn .lang-native {
      font-size: var(--fs-sm);
      font-weight: 400;
      color: var(--muted);
      transition: color 0.25s;
    }
    .lang-btn:hover {
      border-color: var(--red);
      box-shadow: 0 0 40px rgba(192,57,43,0.25);
      transform: translateY(-3px);
      background: rgba(192,57,43,0.08);
    }
    .lang-btn:hover .lang-native { color: var(--white); }
    [data-lang-btn="ar"] { font-family: 'Tajawal', sans-serif; }

    @media (max-width: 480px) {
      .lang-buttons { flex-direction: column; width: 100%; padding: 0 2rem; }
      .lang-btn { min-width: unset; width: 100%; }
    }

    /* ── LAYOUT ───────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 3.5rem);
    }
    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: var(--fs-xs);
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: var(--sp-sm);
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 1px;
      background: var(--red);
      flex-shrink: 0;
    }
    .section-label.center { justify-content: center; }
    html[dir="rtl"] .section-label::before { order: 2; }
    html[dir="rtl"] .section-label.center::before { order: unset; }

    .section-title {
      font-size: var(--fs-2xl);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    html[lang="ar"] .section-title { letter-spacing: 0; line-height: 1.4; }
    .section-sub {
      font-size: var(--fs-base);
      color: var(--muted);
      margin-top: var(--sp-sm);
      max-width: 52ch;
      margin-inline: auto;
      line-height: 1.7;
    }

    /* ── BUTTONS ──────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875em 1.875em;
      border-radius: 8px;
      font-size: var(--fs-sm);
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.45s ease;
      pointer-events: none;
    }
    .btn:hover::after { transform: translateX(100%); }
    .btn-primary { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(192,57,43,0.35); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(192,57,43,0.5); }
    .btn-ghost { background: var(--surface); color: var(--white); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
    html[lang="ar"] .btn { letter-spacing: 0; }

    /* ── WHATSAPP WIDGET ─────────────────────────────────── */
    #wa-widget {
      position: fixed; bottom: 28px; right: 24px; z-index: 9999;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    #wa-widget-label {
      background: rgba(10,15,30,0.92); color: #fff;
      font-size: 0.72rem; font-weight: 600; white-space: nowrap;
      padding: 4px 10px; border-radius: 20px;
      border: 1px solid rgba(37,211,102,0.3);
      opacity: 0; transform: translateY(4px);
      transition: opacity 0.2s, transform 0.2s;
      pointer-events: none;
    }
    #wa-widget:hover #wa-widget-label { opacity: 1; transform: translateY(0); }
    #wa-widget-btn {
      width: 56px; height: 56px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: transform 0.18s, box-shadow 0.18s;
      position: relative;
    }
    #wa-widget-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
    #wa-widget-btn::before {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.5);
      animation: waPulse 2s ease-out infinite;
    }
    #wa-widget-btn::after {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.3);
      animation: waPulse 2s ease-out 0.6s infinite;
    }
    @keyframes waPulse {
      0%   { transform: scale(1);   opacity: 1; }
      100% { transform: scale(1.7); opacity: 0; }
    }
    html[dir="rtl"] #wa-widget { right: auto; left: 24px; }
    @media (max-width: 480px) {
      #wa-widget { bottom: 20px; right: 16px; }
      html[dir="rtl"] #wa-widget { right: auto; left: 16px; }
      #wa-widget-btn { width: 50px; height: 50px; }
    }

    /* ── NAV ──────────────────────────────────────────────── */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 1.25rem 0;
      transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
    }
    #nav.scrolled {
      background: rgba(5,5,8,0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); }
    .nav-logo { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.025em; flex-shrink: 0; }
    .nav-logo .x { color: var(--red); }
    .nav-links { display: flex; align-items: center; gap: var(--sp-sm); }
    .nav-links a { font-size: var(--fs-sm); color: var(--muted); transition: color 0.2s; white-space: nowrap; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.nav-partner-link {
      color: var(--red); font-weight: 500;
      background: rgba(192,57,43,0.10);
      border: 1px solid rgba(192,57,43,0.45);
      border-radius: 999px; padding: 0.42em 1em;
      transition: color 0.2s, background 0.2s, border-color 0.2s;
    }
    .nav-links a.nav-partner-link:hover {
      color: var(--white);
      background: rgba(192,57,43,0.26);
      border-color: rgba(192,57,43,0.8);
    }
    @media (max-width: 1100px) { .nav-links { display: none; } }
    .lang-toggle {
      font-family: 'Space Grotesk', sans-serif;
      font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.06em;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.38em 0.9em;
      cursor: pointer; flex-shrink: 0;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .lang-toggle:hover {
      color: var(--white);
      border-color: rgba(120,140,255,0.4);
      background: rgba(99,120,255,0.14);
    }
    /* ── MOBILE HAMBURGER + MENU ──────────────────────────── */
    .nav-burger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 42px; padding: 0; flex-shrink: 0; cursor: pointer;
      background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    }
    .nav-burger span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
    #nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
    #nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile {
      display: none; flex-direction: column;
      padding: 0.5rem var(--sp-md) var(--sp-md);
      background: rgba(5,5,8,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
      border-top: 1px solid var(--border);
    }
    .nav-mobile a { padding: 0.8rem 0.25rem; font-size: var(--fs-base); color: var(--muted); border-bottom: 1px solid var(--border); transition: color 0.2s; }
    .nav-mobile a:hover { color: var(--white); }
    .nav-mobile a.nav-mobile-partner {
      color: var(--red); font-weight: 600;
      background: rgba(192,57,43,0.10); border: 1px solid rgba(192,57,43,0.4);
      border-radius: 10px; padding: 0.8rem 0.9rem; margin-top: 0.5rem;
    }
    .nav-mobile a.btn { margin-top: 0.8rem; text-align: center; color: #fff; border-bottom: none; justify-content: center; }
    #nav.menu-open .nav-mobile { display: flex; }
    @media (max-width: 1100px) { .nav-burger { display: flex; } .nav-cta-btn { display: none; } }
    @media (min-width: 1101px) { .nav-mobile, #nav.menu-open .nav-mobile { display: none; } .nav-burger { display: none; } }

    /* ── HERO ─────────────────────────────────────────────── */
    #hero {
      position: relative;
      min-height: 100vh; min-height: 100svh;
      display: flex; flex-direction: column; justify-content: center;
      overflow: hidden;
    }
    #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
    .hero-content { position: relative; z-index: 1; padding-top: 7rem; padding-bottom: 5rem; }
    @media (max-width: 767px) {
      .hero-content { padding-top: 5.5rem; padding-bottom: 3rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      html[dir="rtl"] .hero-actions { align-items: flex-end; }
      .hero-actions .btn { width: 100%; justify-content: center; }
    }
    .hero-title {
      font-size: var(--fs-3xl);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.035em;
      margin-bottom: var(--sp-md);
      max-width: 18ch;
    }
    html[lang="ar"] .hero-title { letter-spacing: 0; line-height: 1.3; max-width: 100%; }
    .hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; margin-inline-end: 0.2em; }
    .hero-title .word-inner { display: inline-block; }
    .hero-title .accent {
      background: linear-gradient(130deg, var(--red) 0%, var(--purple) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub { font-size: var(--fs-lg); color: var(--muted); max-width: 46ch; margin-bottom: var(--sp-lg); line-height: 1.7; }
    .hero-actions { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
      color: var(--muted); font-size: var(--fs-xs); font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em;
    }
    .scroll-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: bounce 1.6s ease-in-out infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(9px);opacity:.35} }

    /* ── VALUE ────────────────────────────────────────────── */
    #value { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .value-header { text-align: center; margin-bottom: var(--sp-lg); }
    .value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
    @media (max-width: 767px) { .value-grid { grid-template-columns: 1fr; } }
    .value-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: var(--sp-lg) var(--sp-md);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .value-card:hover { border-color: rgba(192,57,43,0.45); box-shadow: 0 0 50px rgba(192,57,43,0.1); transform: translateY(-5px) !important; }
    .value-number {
      font-size: var(--fs-2xl); font-weight: 700; letter-spacing: -0.03em;
      background: linear-gradient(130deg,var(--red) 0%,var(--purple) 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      margin-bottom: 0.5rem; line-height: 1.1;
    }
    .value-title { font-size: var(--fs-lg); font-weight: 600; margin-bottom: 0.5rem; }
    .value-desc { color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }

    /* ── TIERS ────────────────────────────────────────────── */
    #tiers { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .tiers-header { text-align: center; margin-bottom: var(--sp-lg); }
    .tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
    @media (max-width: 767px) { .tier-grid { grid-template-columns: 1fr; } }
    .tier-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: var(--sp-lg) var(--sp-md); position: relative;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .tier-card:hover { border-color: rgba(192,57,43,0.45); box-shadow: 0 0 50px rgba(192,57,43,0.1); transform: translateY(-5px) !important; }
    .tier-name {
      font-family: 'JetBrains Mono', monospace; font-size: var(--fs-sm); font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
    }
    .tier-range {
      font-size: var(--fs-2xl); font-weight: 700; letter-spacing: -0.03em;
      background: linear-gradient(130deg,var(--red) 0%,var(--purple) 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      margin-bottom: 0.75rem; line-height: 1.1;
    }
    .tier-desc { color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }
    .tier-ceiling {
      text-align: center; margin-top: var(--sp-md); color: var(--white);
      font-size: var(--fs-base); font-weight: 500;
    }
    .tier-ceiling strong { color: var(--red); }

    /* ── PROCESS ──────────────────────────────────────────── */
    #process { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .process-header { text-align: center; margin-bottom: var(--sp-lg); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-md);
      position: relative;
    }
    /* Subtle connector line across the top of the steps */
    .process-grid::before {
      content: '';
      position: absolute;
      top: 2.4rem;
      left: calc(12.5% + 1rem);
      right: calc(12.5% + 1rem);
      height: 1px;
      background: linear-gradient(90deg, var(--red) 0%, var(--purple) 100%);
      opacity: 0.25;
      pointer-events: none;
    }
    html[dir="rtl"] .process-grid::before {
      background: linear-gradient(270deg, var(--red) 0%, var(--purple) 100%);
    }
    @media (max-width: 900px) {
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
    }
    @media (max-width: 560px) {
      .process-grid { grid-template-columns: 1fr; }
    }
    .process-step {
      background: var(--black-3);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: var(--sp-lg) var(--sp-md);
      position: relative;
      overflow: hidden;
      transition: border-color 0.35s, box-shadow 0.35s, transform 0.3s;
    }
    .process-step::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--purple));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    html[dir="rtl"] .process-step::before { transform-origin: right; }
    .process-step:hover { border-color: rgba(124,58,237,0.35); box-shadow: 0 20px 60px rgba(124,58,237,0.1); transform: translateY(-6px); }
    .process-step:hover::before { transform: scaleX(1); }
    .process-step-bg {
      position: absolute;
      top: -0.75rem; right: var(--sp-sm);
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(4rem, 7vw, 6.5rem);
      font-weight: 700;
      line-height: 1;
      color: rgba(255,255,255,0.035);
      user-select: none;
      pointer-events: none;
    }
    html[dir="rtl"] .process-step-bg { right: auto; left: var(--sp-sm); }
    .process-step-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: var(--sp-sm);
    }
    .process-step-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(192,57,43,0.6);
    }
    .process-step-label {
      font-family: 'JetBrains Mono', 'Tajawal', monospace;
      font-size: var(--fs-xs);
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }
    html[lang="ar"] .process-step-label { letter-spacing: 0; }
    .process-step-title { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
    html[lang="ar"] .process-step-title { letter-spacing: 0; }
    .process-step-desc { color: var(--muted); font-size: var(--fs-sm); line-height: 1.75; }

    /* ── SERVICES ─────────────────────────────────────────── */
    #services { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .services-header { text-align: center; margin-bottom: var(--sp-lg); }
    .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
    .service-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: var(--sp-md); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .service-card:hover { border-color: rgba(192,57,43,0.38); box-shadow: 0 0 40px rgba(192,57,43,0.12); transform: translateY(-5px) !important; }
    .service-icon { width: 44px; height: 44px; color: var(--red); margin-bottom: var(--sp-sm); }
    .service-title { font-size: var(--fs-lg); font-weight: 600; margin-bottom: 0.4rem; }
    .service-desc { color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }

    /* Management featured card */
    .service-card--featured {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(192,57,43,0.07) 0%, rgba(124,58,237,0.07) 100%);
      border-color: rgba(192,57,43,0.22);
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: var(--sp-md);
      align-items: start;
    }
    .service-card--featured:hover {
      border-color: rgba(192,57,43,0.55);
      box-shadow: 0 0 60px rgba(192,57,43,0.15);
      transform: translateY(-4px) !important;
    }
    @media (max-width: 560px) {
      .service-card--featured { grid-template-columns: 1fr; }
      .service-card--featured .service-icon { margin-inline: auto; }
    }
    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      background: rgba(192,57,43,0.14);
      border: 1px solid rgba(192,57,43,0.3);
      font-size: var(--fs-xs);
      color: var(--red);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--sp-sm);
    }
    html[lang="ar"] .service-badge { letter-spacing: 0; }
    .service-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      animation: badgePulse 2s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(0.75); }
    }

    /* ── FOR AGENCIES CALL-OUT ────────────────────────────── */
    #agency-cta { padding: var(--sp-lg) 0; position: relative; }
    .agency-band {
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--sp-md); flex-wrap: wrap; text-decoration: none;
      background: linear-gradient(120deg, rgba(192,57,43,0.12), rgba(124,58,237,0.12));
      border: 1px solid rgba(192,57,43,0.30);
      border-radius: var(--radius-lg); padding: var(--sp-lg) var(--sp-md);
      position: relative; overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .agency-band::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(600px 200px at 85% 50%, rgba(124,58,237,0.14), transparent 70%);
    }
    .agency-band:hover {
      border-color: rgba(192,57,43,0.6);
      box-shadow: 0 16px 50px rgba(124,58,237,0.14);
      transform: translateY(-3px);
    }
    .agency-band-text { flex: 1 1 440px; position: relative; z-index: 1; }
    .agency-band .section-label { justify-content: flex-start; margin-bottom: 0.55rem; }
    .agency-band h2 { font-size: var(--fs-xl); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.45rem; }
    .agency-band p { color: var(--muted); font-size: var(--fs-base); max-width: 54ch; line-height: 1.6; }
    .agency-band-btn { flex-shrink: 0; position: relative; z-index: 1; }
    @media (max-width: 640px) {
      .agency-band { flex-direction: column; align-items: flex-start; }
      html[dir="rtl"] .agency-band { align-items: flex-end; }
      .agency-band-btn { width: 100%; justify-content: center; }
    }

    /* ── STATS ────────────────────────────────────────────── */
    #stats { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .stats-grid { position:relative; z-index:1; display:grid; grid-template-columns:repeat(4,1fr); gap:var(--sp-md); text-align:center; }
    @media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
    .stat-number { font-size: var(--fs-2xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.5rem; }
    html[lang="ar"] .stat-number { letter-spacing: 0; }
    .stat-label { font-size: var(--fs-sm); color: rgba(255,255,255,.65); }

    /* ── CONTACT ──────────────────────────────────────────── */
    #contact { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .contact-header { text-align: center; margin-bottom: var(--sp-lg); }
    .contact-or { display: flex; align-items: center; gap: var(--sp-sm); max-width: 760px; margin: var(--sp-lg) auto var(--sp-md); color: var(--muted); font-size: var(--fs-sm); }
    .contact-or::before, .contact-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .btn-whatsapp {
      display: flex; align-items: center; justify-content: center; gap: 0.65em;
      max-width: 760px; margin-inline: auto; padding: 1em 2em;
      background: #25d366; color: #fff; border-radius: var(--radius-lg);
      font-size: var(--fs-base); font-weight: 700; text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(37,211,102,0.22);
    }
    .btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
    .btn-whatsapp:active { transform: translateY(0); }
    .btn-whatsapp svg { flex-shrink: 0; }
    .form-border {
      max-width: 760px; margin-inline: auto;
      padding: 1.5px; border-radius: calc(var(--radius-lg) + 2px);
      position: relative; overflow: hidden;
    }
    .form-border::before {
      content: ''; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%;
      background: conic-gradient(from 0deg, var(--purple-deep), var(--red-deep), var(--purple), var(--red), var(--purple-deep));
      animation: rotateBorder 5s linear infinite; z-index: 0;
    }
    @keyframes rotateBorder { to { transform: rotate(360deg); } }
    .form-inner { position: relative; z-index: 1; background: var(--black-3); border-radius: var(--radius-lg); padding: var(--sp-lg); }
    @media (max-width: 600px) { .form-inner { padding: var(--sp-md); } }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
    @media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
    .form-full { grid-column: 1 / -1; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
    html[lang="ar"] .form-group label { text-transform: none; letter-spacing: 0; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; background: rgba(255,255,255,.035); border: 1px solid var(--border);
      border-radius: 8px; padding: 0.875rem 1rem; color: var(--white); font-size: var(--fs-base);
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
      -webkit-appearance: none; appearance: none; min-height: 48px;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2370708a' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
    }
    html[dir="rtl"] .form-group select { background-position: left 1rem center; padding-right: 1rem; padding-left: 2.5rem; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(112,112,138,.65); }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
    .form-group select option { background: #1a1a28; color: var(--white); }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .form-submit { margin-top: var(--sp-sm); text-align: center; }
    .form-note { margin-top: var(--sp-sm); text-align: center; font-size: var(--fs-xs); color: var(--muted); }
    .form-error-msg { display: none; margin-top: 0.6rem; text-align: center; font-size: var(--fs-xs); color: var(--red); }
    .form-error-msg.visible { display: block; }
    .form-success { display: none; text-align: center; padding: var(--sp-lg) 0; }
    .success-icon { width:68px;height:68px;margin:0 auto var(--sp-md);background:linear-gradient(135deg,var(--red-deep),var(--purple-deep));border-radius:50%;display:flex;align-items:center;justify-content:center; }
    .success-title { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 0.5rem; }
    .success-desc { color: var(--muted); }

    /* ── FOOTER ───────────────────────────────────────────── */
    #footer { padding: var(--sp-lg) 0; border-top: 1px solid var(--border); }
    .footer-inner { display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:var(--sp-sm); }
    .footer-logo { font-size: var(--fs-lg); font-weight: 700; letter-spacing: -0.02em; }
    .footer-logo .x { color: var(--red); }
    .footer-tagline { font-family: 'JetBrains Mono', 'Tajawal', monospace; font-size: var(--fs-xs); color: var(--muted); margin-top: 0.25rem; }
    .footer-copy { font-size: var(--fs-xs); color: var(--muted); }

    /* ── REDUCED MOTION ───────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      #hero-canvas { display: none; }
    }

    /* ── 3D GLOBE CANVAS ────────────────────────────────── */
    #globe-canvas {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
      width: 52%;
      height: 110%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.85;
    }
    html[dir="rtl"] #globe-canvas { right: auto; left: -4%; }
    @media (max-width: 900px) { #globe-canvas { display: none; } }

    /* ── SCROLL PROGRESS BAR ─────────────────────────────── */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--red);
      transform-origin: left center;
      transform: scaleX(0);
      z-index: 9998; pointer-events: none;
    }

    /* ── CUSTOM CURSOR ───────────────────────────────────── */
    /* styles applied inline by JS to avoid transform conflicts */

    /* ── VALUE CARD TILT + PERSPECTIVE ───────────────────── */
    .value-grid { perspective: 1200px; }
    .value-card { transform-style: preserve-3d; will-change: transform; }
    .value-card:hover { transform: none; }

    /* ── PROCESS CONNECTOR FILL LINE ─────────────────────── */
    @media (min-width: 901px) {
      .process-line-fill {
        position: absolute; top: 2.4rem;
        left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
        height: 1px;
        background: linear-gradient(90deg, var(--red), var(--purple));
        transform-origin: left center; transform: scaleX(0);
        z-index: 1; pointer-events: none;
      }
      html[dir="rtl"] .process-line-fill {
        transform-origin: right center;
        background: linear-gradient(270deg, var(--red), var(--purple));
      }
    }

    /* ── STATS SCAN LINE ──────────────────────────────────── */
    #stats { position: relative; overflow: hidden; }
    .stats-scanline {
      position: absolute; top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
      pointer-events: none; z-index: 2;
    }

    /* ── FEATURED CARD PULSING GLOW ──────────────────────── */
    @keyframes featuredGlow {
      0%,100% { box-shadow: 0 0 20px rgba(192,57,43,0.1); }
      50%      { box-shadow: 0 0 55px rgba(192,57,43,0.25), 0 0 30px rgba(124,58,237,0.15); }
    }
    .service-card--featured { animation: featuredGlow 3.5s ease-in-out infinite; }

    /* ── SERVICE CARD TILT + PERSPECTIVE ─────────────────── */
    .services-grid { perspective: 900px; }
    .service-card  { transform-style: preserve-3d; will-change: transform; }
    .service-card:hover { transform: none; }

    /* ── SUBMIT BUTTON PULSE RING ─────────────────────────── */
    #submitBtn { position: relative; }
    #submitBtn.clicked::after {
      content: ''; position: absolute; inset: -4px;
      border-radius: 10px; border: 2px solid var(--red);
      animation: pulseRing 0.6s ease-out forwards; pointer-events: none;
    }
    @keyframes pulseRing {
      0%   { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(1.18); opacity: 0; }
    }

    /* ── REVIEWS ─────────────────────────────────────────── */
    #reviews { padding: var(--sec) 0; position: relative; overflow: hidden; }
    #reviews .container { position: relative; z-index: 1; }
    .reviews-grid {
      display: flex;
      gap: var(--sp-md);
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      cursor: grab;
      margin-bottom: var(--sp-md);
      padding-bottom: 4px;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
    .review-card {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: linear-gradient(145deg, rgba(124,58,237,0.05) 0%, var(--surface) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.6rem;
      display: flex; flex-direction: column;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    @media (max-width: 560px) { .review-card { flex: 0 0 85vw; } }
    .review-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
    .review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
    .review-stars .star-empty { color: rgba(255,255,255,0.22); }
    .review-text {
      color: rgba(240,244,255,0.85);
      font-size: var(--fs-sm); line-height: 1.75;
      margin-bottom: 1.25rem;
      flex: 1;
    }
    .review-footer { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1rem; }
    .review-author { display: flex; align-items: center; gap: 0.7rem; }
    .review-avatar {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--red), var(--purple));
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; font-weight: 700; color: #fff;
    }
    .review-author-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
    .review-name { font-size: var(--fs-xs); font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .review-date { font-size: 0.68rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
    .reviews-empty, .reviews-loading {
      min-width: 100%; text-align: center;
      color: var(--muted); font-size: var(--fs-sm); padding: var(--sp-lg) 0;
    }
    .reviews-nav {
      display: flex; justify-content: center; align-items: center;
      gap: var(--sp-sm); margin-bottom: var(--sp-xl);
    }
    .rev-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid var(--border); background: var(--surface);
      color: var(--white); font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }
    .rev-nav-btn:hover { border-color: rgba(124,58,237,0.45); background: rgba(124,58,237,0.14); }
    .review-form-wrap {
      max-width: 620px; margin-inline: auto;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: var(--sp-lg);
    }
    .review-form-heading {
      font-size: var(--fs-lg); font-weight: 600;
      margin-bottom: var(--sp-md); text-align: center;
    }
    .review-form { display: flex; flex-direction: column; gap: var(--sp-sm); }
    .review-form-row { display: flex; gap: var(--sp-sm); align-items: center; flex-wrap: wrap; }
    .review-form-row .form-input { flex: 1; min-width: 160px; }
    .star-picker { display: flex; gap: 0.15rem; flex-shrink: 0; }
    .star-picker span {
      font-size: 2rem; color: rgba(255,255,255,0.15);
      cursor: pointer; line-height: 1; user-select: none;
      transition: color 0.1s, transform 0.1s;
    }
    .star-picker span.lit { color: #f59e0b; }
    .star-picker span:hover { transform: scale(1.2); }

    /* ── FREE CONSULTATION SECTION ───────────────────────── */
    #consult { padding: var(--sec) 0; position: relative; overflow: hidden; }
    .consult-header { text-align: center; margin-bottom: var(--sp-lg); }

    .consult-form-border {
      max-width: 640px; margin-inline: auto;
      padding: 1.5px; border-radius: calc(var(--radius-lg) + 2px);
      position: relative; overflow: hidden;
    }
    .consult-form-border::before {
      content: ''; position: absolute; width: 200%; height: 200%;
      top: -50%; left: -50%;
      background: conic-gradient(from 0deg, var(--purple-deep), var(--purple), #a855f7, var(--purple), var(--purple-deep));
      animation: rotateBorder 5s linear infinite; z-index: 0;
    }
    .consult-form-inner {
      position: relative; z-index: 1;
      background: var(--black-3); border-radius: var(--radius-lg);
      padding: var(--sp-lg);
    }
    @media (max-width: 600px) { .consult-form-inner { padding: var(--sp-md); } }
    .consult-form-inner .form-group input:focus,
    .consult-form-inner .form-group textarea:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
    }
    .btn-consult {
      background: var(--purple); color: var(--white);
      box-shadow: 0 4px 20px rgba(124,58,237,0.35);
    }
    .btn-consult:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 35px rgba(124,58,237,0.5);
    }
    #consultBtn { position: relative; }
    #consultBtn.clicked::after {
      content: ''; position: absolute; inset: -4px;
      border-radius: 10px; border: 2px solid var(--purple);
      animation: pulseRing 0.6s ease-out forwards; pointer-events: none;
    }

    /* ── SPACE BACKGROUND ────────────────────────────────── */
    #space-bg {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 90% 65% at 8%  18%, rgba(109,40,217,0.22)  0%, transparent 60%),
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(14,116,144,0.16)  0%, transparent 58%),
        radial-gradient(ellipse 80% 65% at 50% 85%, rgba(124,58,237,0.20)  0%, transparent 62%),
        radial-gradient(ellipse 55% 45% at 15% 72%, rgba(190,24,93,0.13)   0%, transparent 52%),
        radial-gradient(ellipse 65% 50% at 78% 52%, rgba(37,99,235,0.15)   0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 42% 38%, rgba(5,150,105,0.10)   0%, transparent 50%),
        radial-gradient(ellipse 60% 55% at 92% 78%, rgba(109,40,217,0.14)  0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 28% 45%, rgba(239,68,68,0.08)   0%, transparent 48%);
      animation: nebulaPulse 25s ease-in-out infinite alternate;
    }
    @keyframes nebulaPulse {
      0%   { opacity: 0.65; }
      50%  { opacity: 1.00; }
      100% { opacity: 0.72; }
    }

    /* ── AMBIENT CANVAS ──────────────────────────────────── */
    #ambient-canvas {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none; opacity: 1;
      width: 100%; height: 100%;
    }
    #meteor-canvas {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
      width: 100%; height: 100%;
    }
    #site > section, #site > nav, #site > footer {
      position: relative; z-index: 1;
    }
    /* ── READABILITY LAYER ───────────────────────────────── */
    #site > section:not(#hero) {
      background: rgba(3,5,8,0.52);
    }
    .section-title {
      text-shadow: 0 2px 28px rgba(3,5,8,0.95);
    }
    .section-sub, .about-narrative p, .belief-desc,
    .process-step-desc, .service-desc, .work-label p,
    .stat-label, .footer-tagline {
      text-shadow: 0 1px 14px rgba(3,5,8,0.98);
    }
    .hero-sub {
      text-shadow: 0 1px 18px rgba(3,5,8,0.98);
    }
    /* ── HERO SERVICE LINE ───────────────────────────────── */
    .hero-services {
      font-family: 'JetBrains Mono', monospace;
      font-size: var(--fs-xs);
      color: rgba(240,244,255,0.50);
      letter-spacing: 0.04em;
      margin-bottom: var(--sp-sm);
    }
    html[lang="ar"] .hero-services {
      font-family: 'Tajawal', sans-serif;
      letter-spacing: 0;
    }

    /* ── PLANETS ─────────────────────────────────────────── */
    .planet {
      position: fixed; border-radius: 50%;
      pointer-events: none; z-index: 0;
      animation: planetFloat var(--p-dur, 20s) ease-in-out infinite alternate;
    }
    @keyframes planetFloat {
      0%   { transform: translateY(0px)  scale(1);     }
      50%  { transform: translateY(-8px) scale(1.012); }
      100% { transform: translateY(4px)  scale(0.988); }
    }
    /* Mars — polar cap + crater + dark terrain */
    .planet-mars {
      width: 36px; height: 36px; --p-dur: 19s;
      top: 16%; right: 5%;
      opacity: 0.72;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0.08) 13%, transparent 20%),
        radial-gradient(circle at 64% 60%, rgba(0,0,0,0.38) 0%, transparent 13%),
        radial-gradient(circle at 40% 74%, rgba(0,0,0,0.22) 0%, transparent 9%),
        radial-gradient(circle at 74% 32%, rgba(110,35,8,0.50) 0%, transparent 22%),
        radial-gradient(circle at 36% 32%, #f0906a 0%, #c0392b 48%, #7B1010 80%, #3a0808);
      box-shadow: 0 0 12px rgba(192,57,43,0.18), 0 0 28px rgba(192,57,43,0.06);
    }
    /* Venus — layered cloud bands */
    .planet-venus {
      width: 26px; height: 26px; --p-dur: 24s;
      bottom: 20%; left: 5%;
      opacity: 0.68;
      background:
        radial-gradient(ellipse at 32% 38%, rgba(255,255,245,0.55) 0%, transparent 28%),
        radial-gradient(ellipse at 68% 68%, rgba(170,130,15,0.32) 0%, transparent 26%),
        radial-gradient(ellipse at 52% 28%, rgba(255,248,200,0.42) 0%, transparent 24%),
        radial-gradient(circle at 38% 34%, #fff8d8 0%, #e8ce58 42%, #c09810 72%, #7a5e00);
      box-shadow: 0 0 10px rgba(232,206,88,0.14), 0 0 24px rgba(232,206,88,0.05);
    }
    /* Saturn — banded + ring */
    .planet-saturn {
      width: 28px; height: 28px; --p-dur: 28s;
      top: 60%; left: 5%;
      opacity: 0.66;
      background:
        radial-gradient(ellipse at 36% 28%, rgba(255,242,205,0.45) 0%, transparent 30%),
        radial-gradient(ellipse at 62% 62%, rgba(130,95,35,0.38) 0%, transparent 24%),
        radial-gradient(circle at 35% 30%, #f0d890 0%, #c8a840 45%, #8a6820 76%, #4a3808);
      box-shadow: 0 0 10px rgba(200,168,64,0.14), 0 0 24px rgba(200,168,64,0.05);
    }
    .planet-saturn::before {
      content: '';
      position: absolute;
      width: 240%; height: 44%;
      border-radius: 50%;
      border: 1.5px solid rgba(220,185,100,0.38);
      top: 28%; left: -70%;
      box-shadow: 0 0 0 3px rgba(200,165,80,0.13), 0 0 0 7px rgba(200,165,80,0.06);
    }

    /* ── SECTION ORBS ────────────────────────────────────── */
    .section-orb {
      position: absolute; border-radius: 50%;
      filter: blur(90px); pointer-events: none; z-index: 0;
      animation: floatOrb var(--orb-dur, 9s) ease-in-out infinite alternate;
    }
    @keyframes floatOrb {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(var(--orb-tx, 22px), var(--orb-ty, -28px)) scale(1.08); }
    }

    /* ── TRUST BAR ───────────────────────────────────────── */

    /* ── WHO WE ARE ──────────────────────────────────────── */
    #about { padding: var(--sec) 0; overflow: hidden; }
    #about .container { position: relative; z-index: 1; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-lg);
      margin-top: var(--sp-lg);
      align-items: start;
    }
    @media (max-width: 860px) {
      .about-grid { grid-template-columns: 1fr; }
    }
    .about-narrative p {
      font-size: var(--fs-lg); line-height: 1.75;
      color: var(--muted); margin-bottom: var(--sp-md);
    }
    .about-narrative p:last-child { margin-bottom: 0; }
    .about-narrative p strong { color: var(--white); font-weight: 600; }
    .about-beliefs { display: flex; flex-direction: column; gap: var(--sp-sm); }
    .belief-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--red);
      border-radius: var(--radius);
      padding: var(--sp-md);
      transition: border-color 0.3s, background 0.3s;
    }
    .belief-card:hover {
      border-left-color: var(--purple);
      background: rgba(124,58,237,0.08);
    }
    .belief-icon {
      font-size: 1.5rem; margin-bottom: 0.5rem;
      display: block;
    }
    .belief-title {
      font-size: var(--fs-base); font-weight: 600;
      color: var(--white); margin-bottom: 0.35rem;
    }
    .belief-desc {
      font-size: var(--fs-sm); color: var(--muted); line-height: 1.6;
    }

    /* ── OUR WORK ────────────────────────────────────────── */
    #work { padding: var(--sec) 0; overflow: hidden; }
    #work .container { position: relative; z-index: 1; }
    #work .section-title.center, #work .section-sub.center { text-align: center; }
    .work-stats { max-width: 860px; margin: var(--sp-lg) auto 0; padding-bottom: var(--sp-md); border-bottom: 1px solid var(--border); }
    .stat-star { color: #f59e0b; margin-inline-start: 0.08em; }
    .work-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-md);
      margin-top: var(--sp-lg);
    }
    @media (max-width: 700px) {
      .work-grid { grid-template-columns: 1fr; }
    }
    .work-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
      cursor: default;
    }
    .work-card--link {
      text-decoration: none; color: inherit; display: block; cursor: pointer;
    }
    .work-card:hover {
      transform: translateY(-6px) scale(1.015);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.18);
      border-color: rgba(124,58,237,0.35);
    }
    .browser-chrome {
      background: #0d1526;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 0.55rem 0.85rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .browser-dots { display: flex; gap: 5px; }
    .browser-dots span {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .browser-dots span:nth-child(1) { background: #ff5f57; }
    .browser-dots span:nth-child(2) { background: #febc2e; }
    .browser-dots span:nth-child(3) { background: #28c840; }
    .browser-bar {
      flex: 1; background: rgba(255,255,255,0.06);
      border-radius: 6px; padding: 0.25rem 0.75rem;
      font-size: 0.72rem; font-family: 'JetBrains Mono', monospace;
      color: var(--muted); overflow: hidden;
      white-space: nowrap; text-overflow: ellipsis;
    }
    .work-preview {
      position: relative; height: 200px; overflow: hidden;
    }
    .work-placeholder {
      position: absolute; inset: 0;
      animation: placeholderShift 8s ease-in-out infinite alternate;
    }
    @keyframes placeholderShift {
      0%   { filter: hue-rotate(0deg) brightness(1); }
      100% { filter: hue-rotate(30deg) brightness(1.15); }
    }
    /* E-Commerce card — clean 2-product grid */
    .wp-ecommerce {
      background: linear-gradient(155deg, #0e0118 0%, #1c0038 55%, #110015 100%);
    }
    .wp-ecommerce::before {
      content: ''; position: absolute; inset: 0;
      background:
        /* nav bar */
        linear-gradient(rgba(255,255,255,0.07),rgba(255,255,255,0.07)) 0 0/100% 22px no-repeat,
        /* left card */
        linear-gradient(rgba(255,255,255,0.07),rgba(255,255,255,0.07)) 10px 30px/calc(47% - 10px) 154px no-repeat,
        /* left image area */
        linear-gradient(135deg,rgba(124,58,237,0.28) 0%,rgba(192,57,43,0.18) 100%) 10px 30px/calc(47% - 10px) 98px no-repeat,
        /* left name line */
        linear-gradient(rgba(255,255,255,0.18),rgba(255,255,255,0.18)) 18px 138px/52px 5px no-repeat,
        /* left sub line */
        linear-gradient(rgba(255,255,255,0.08),rgba(255,255,255,0.08)) 18px 149px/34px 4px no-repeat,
        /* right card */
        linear-gradient(rgba(255,255,255,0.07),rgba(255,255,255,0.07)) calc(47% + 10px) 30px/calc(53% - 10px) 154px no-repeat,
        /* right image area */
        linear-gradient(135deg,rgba(192,57,43,0.22) 0%,rgba(124,58,237,0.16) 100%) calc(47% + 10px) 30px/calc(53% - 10px) 98px no-repeat,
        /* right name line */
        linear-gradient(rgba(255,255,255,0.18),rgba(255,255,255,0.18)) calc(47% + 18px) 138px/52px 5px no-repeat,
        /* right sub line */
        linear-gradient(rgba(255,255,255,0.08),rgba(255,255,255,0.08)) calc(47% + 18px) 149px/34px 4px no-repeat;
    }
    .wp-ecommerce::after { content: none; }
    @keyframes floatTag {
      from { transform: translateY(0) rotate(-2deg); }
      to   { transform: translateY(-8px) rotate(2deg); }
    }
    /* SaaS card */
    .wp-saas {
      background: linear-gradient(135deg, #040e24 0%, #0a1f44 60%, #0c2a5c 100%);
    }
    .wp-saas::before {
      content: ''; position: absolute; inset: 0;
      background:
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(59,130,246,0.06) 59px, rgba(59,130,246,0.06) 60px),
        repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(59,130,246,0.06) 39px, rgba(59,130,246,0.06) 40px);
    }
    .wp-saas::after {
      content: ''; position: absolute; bottom: 20px; left: 20px; right: 20px; height: 5px;
      border-radius: 3px; background: rgba(59,130,246,0.25);
      box-shadow: 0 -22px 0 0 rgba(59,130,246,0.15), 0 -44px 0 0 rgba(59,130,246,0.08);
    }
    /* Marketing card */
    .wp-marketing {
      background: linear-gradient(135deg, #070b12 0%, #111827 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .wp-marketing::before {
      content: 'BRAND'; position: absolute;
      font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em;
      color: transparent;
      background: linear-gradient(90deg, var(--red), var(--purple));
      -webkit-background-clip: text; background-clip: text;
      animation: brandPulse 4s ease-in-out infinite alternate;
    }
    @keyframes brandPulse {
      from { opacity: 0.6; letter-spacing: -0.03em; }
      to   { opacity: 1;   letter-spacing: 0.02em; }
    }
    .wp-marketing::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
    }
    /* Mobile card */
    .wp-mobile {
      background: linear-gradient(160deg, #0f0521 0%, #1a0a3a 50%, #0d1228 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .wp-mobile::before {
      content: ''; position: absolute;
      width: 60px; height: 110px;
      border: 2px solid rgba(124,58,237,0.5); border-radius: 12px;
      background: linear-gradient(180deg, rgba(124,58,237,0.2) 0%, rgba(192,57,43,0.1) 100%);
      box-shadow: 0 0 30px rgba(124,58,237,0.25);
      animation: phoneBob 3.5s ease-in-out infinite alternate;
    }
    @keyframes phoneBob {
      from { transform: translateY(0) rotate(-3deg); }
      to   { transform: translateY(-8px) rotate(3deg); }
    }
    .work-label {
      padding: var(--sp-sm) var(--sp-md);
      border-top: 1px solid var(--border);
    }
    .work-tag {
      display: inline-block;
      font-size: var(--fs-xs); font-family: 'JetBrains Mono', monospace;
      color: var(--purple); background: rgba(124,58,237,0.1);
      border: 1px solid rgba(124,58,237,0.2);
      padding: 0.15rem 0.6rem; border-radius: 20px;
      margin-bottom: 0.4rem; letter-spacing: 0.03em;
    }
    .work-label h3 {
      font-size: var(--fs-base); font-weight: 600;
      color: var(--white); margin-bottom: 0.25rem;
    }
    .work-label p {
      font-size: var(--fs-xs); color: var(--muted); line-height: 1.5;
    }
    .work-caps { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
    .work-cap {
      font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; letter-spacing: 0.02em;
      padding: 0.22rem 0.6rem; border: 1px solid var(--border); border-radius: 999px;
      color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.03); white-space: nowrap;
    }
    .work-disclaimer {
      margin-top: var(--sp-md);
      text-align: center;
      font-size: 0.72rem;
      color: var(--muted);
      opacity: 0.6;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.01em;
      line-height: 1.6;
    }
    .work-live-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      margin-top: 0.6rem;
      padding: 0.28rem 0.75rem;
      font-size: 0.7rem; font-family: 'JetBrains Mono', monospace;
      color: #c9a74a;
      border: 1px solid rgba(201,167,74,0.4);
      border-radius: 20px;
      background: rgba(201,167,74,0.08);
      letter-spacing: 0.04em;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .work-card--link:hover .work-live-badge {
      background: rgba(201,167,74,0.18);
      border-color: rgba(201,167,74,0.7);
      color: #f0d478;
    }
    .work-iframe {
      position: absolute; top: 0; left: 0;
      width: 1400px; height: 600px;
      border: none;
      transform: scale(0.4);
      transform-origin: top left;
      pointer-events: none;
      opacity: 0; transition: opacity 0.6s ease;
    }
    .work-iframe.loaded { opacity: 1; }
    .work-preview.is-loading::after {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: linear-gradient(100deg, rgba(255,255,255,0) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 75%);
      background-size: 220% 100%;
      animation: workShimmer 1.5s linear infinite;
    }
    @keyframes workShimmer { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
    /* Barbershop card — premium gold-on-black */
    .wp-barber {
      background: #07060300;
      background: linear-gradient(150deg, #09070100 0%, #100d0500 55%, #080601 100%);
      background: #0a0802;
    }
    .wp-barber::before {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(rgba(201,167,74,0.13),rgba(201,167,74,0.13)) 0 0/100% 22px no-repeat,
        linear-gradient(90deg,#c9a74a,#f0d478) 14px 7px/48px 3px no-repeat,
        linear-gradient(90deg,transparent,rgba(201,167,74,0.45),transparent) 0 28px/100% 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.88),rgba(255,255,255,0.88)) 20px 48px/155px 9px no-repeat,
        linear-gradient(rgba(255,255,255,0.88),rgba(255,255,255,0.88)) 20px 63px/105px 9px no-repeat,
        linear-gradient(90deg,#c9a74a,transparent) 20px 82px/55px 1.5px no-repeat,
        linear-gradient(rgba(201,167,74,0.55),rgba(201,167,74,0.55)) 20px 93px/88px 3px no-repeat,
        linear-gradient(rgba(201,167,74,0.3),rgba(201,167,74,0.3)) 20px 102px/62px 3px no-repeat,
        linear-gradient(rgba(201,167,74,0.18),rgba(201,167,74,0.18)) 20px 116px/78px 17px no-repeat,
        linear-gradient(rgba(201,167,74,0.07),rgba(201,167,74,0.07)) 0 196px/100% 1px no-repeat;
    }
    .wp-barber::after {
      content: ''; position: absolute;
      right: 8%; top: 5%; width: 38%; height: 90%;
      background: linear-gradient(135deg,rgba(201,167,74,0.07) 0%,rgba(240,212,120,0.03) 60%,transparent 100%);
      border-left: 1px solid rgba(201,167,74,0.14);
    }
