    /* =============================================
       DESIGN TOKENS — Edit colors & spacing here
       ============================================= */
    :root {
      /* Background layers — translucent so the fixed .site-bg video
         shows through everywhere, not just the hero */
      --bg-0: rgba(7,7,7,0.82);
      --bg-1: rgba(15,15,15,0.82);
      --bg-2: rgba(20,20,20,0.8);
      --bg-3: rgba(26,26,26,0.78);

      /* Borders */
      --border:       rgba(255, 255, 255, 0.06);
      --border-hover: rgba(147, 51, 234, 0.40);

      /* Text */
      --txt-hi:  #ffffff;
      --txt-mid: #8c8c8c;
      --txt-lo:  #484848;

      /* === ACCENT — current: electric purple. swap to #0099ff (blue) or #b8a06a (gold) === */
      --accent:     #9333ea;
      --accent-dim: rgba(147, 51, 234, 0.10);
      --accent-glow:rgba(147, 51, 234, 0.25);

      /* Shapes */
      --radius:    16px;
      --radius-sm: 10px;

      /* Motion */
      --ease: cubic-bezier(0.4, 0, 0.2, 1);

      /* Layout */
      --max-w: 1180px;
      --pad-x: clamp(20px, 5vw, 40px);
      --sec-y: clamp(80px, 10vw, 130px);
    }

    /* =============================================
       RESET
       ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Heebo', sans-serif;
      background: var(--bg-0);
      color: var(--txt-hi);
      direction: rtl;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img  { max-width: 100%; height: auto; display: block; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }

    /* =============================================
       LAYOUT HELPERS
       ============================================= */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-x);
    }
    .sec {
      padding: var(--sec-y) 0;
    }
    .sec--alt { background: var(--bg-1); }

    /* Labels, titles, subtitles */
    .kicker {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .h2 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .lead {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--txt-mid);
      line-height: 1.85;
      max-width: 620px;
    }
    .accent-txt { color: var(--accent); }

    /* =============================================
       SCROLL ANIMATION
       ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(36px) scale(0.97);
      transition: opacity 0.75s var(--ease), transform 0.95s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; }
    .d5 { transition-delay: 0.40s; }
    .d6 { transition-delay: 0.48s; }
    .d7 { transition-delay: 0.56s; }

    /* =============================================
       HERO ENTRANCE ANIMATIONS (load-based)
       ============================================= */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroLineSweep {
      from { transform: translateY(110%); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    /* These all start paused — the intro splash holds them at their
       pre-animation state until body.hero-ready is added (see below),
       so the entrance choreography plays once the intro reveals the
       hero, not invisibly underneath it. */
    .hero-badge    { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.95s both; }
    .hero-line     { display: block; overflow: hidden; }
    .hero-line > span { display: block; animation: heroLineSweep 1s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-line:nth-child(1) > span { animation-delay: 1.2s; }
    .hero-line:nth-child(2) > span { animation-delay: 1.48s; }
    .hero-sub      { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.85s both; }
    .btn-row       { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 2.05s both; }
    .hero-tagline  { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 2.25s both; }

    /* =============================================
       HERO — SOCIAL PROOF LAYOUT
       Two columns: copy (right, RTL-first) + video proof mosaic (left).
       Tiles are visible immediately on load (no scroll-gating) so the
       first impression is video/client proof, not just text.
       ============================================= */
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .proof-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .proof-tile {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 3 / 4;
      background: var(--bg-2);
      border: 1.5px solid rgba(147,51,234,0.65);
      box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 22px rgba(147,51,234,0.45), inset 0 0 14px rgba(147,51,234,0.12);
      cursor: pointer;
      opacity: 0;
      transform: translateY(26px);
      animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards, proofNeonPulse 3.6s ease-in-out 2.4s infinite;
     
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    @keyframes proofNeonPulse {
      0%, 100% { box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 22px rgba(147,51,234,0.45), inset 0 0 14px rgba(147,51,234,0.12); }
      50%      { box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 34px rgba(147,51,234,0.75), inset 0 0 20px rgba(147,51,234,0.22); }
    }
    .proof-tile:hover {
      border-color: rgba(147,51,234,0.95);
      animation-play-state: paused;
      box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 40px rgba(147,51,234,0.85), inset 0 0 18px rgba(147,51,234,0.25);
    }
    .proof-tile:nth-child(1) { animation-delay: 1.45s; }
    .proof-tile:nth-child(2) { animation-delay: 1.60s; margin-top: 34px; }
    .proof-tile:nth-child(3) { animation-delay: 1.75s; margin-top: -34px; }
    .proof-tile:nth-child(4) { animation-delay: 1.90s; }
    /* 5th tile — continues the left column (visible, not a banner tucked below) */
    .proof-tile:nth-child(5) {
      grid-column: 2;
      animation-delay: 2.05s;
    }
    /* Ambient muted autoplay loop — the "TV wall" effect */
    .proof-tile img, .proof-tile video {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s var(--ease);
    }
    .proof-tile:hover img, .proof-tile:hover video { transform: scale(1.06); }
    .proof-play {
      position: absolute; inset: 0; margin: auto;
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(147,51,234,0.85);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem; padding-right: 3px;
      opacity: 0; transform: scale(0.8);
      transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), background 0.3s;
    }
    .proof-tile:hover .proof-play { opacity: 1; transform: scale(1.14); background: var(--accent); }

    /* Trusted-by logo row under the CTA buttons */
    .hero-trust {
      margin-top: 52px;
      padding: 28px 26px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--bg-2) 0%, rgba(147,51,234,0.05) 100%);
      display: flex;
      flex-direction: column;
      gap: 22px;
      opacity: 0;
      animation: heroFadeUp 0.8s var(--ease) 2.45s both;
     
    }
    .hero-trust-label {
      font-size: 0.95rem; font-weight: 800; letter-spacing: 2px;
      color: var(--txt-hi); text-transform: uppercase;
    }
    .hero-trust-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
    }
    .trust-chip {
      width: 128px; height: 84px;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      padding: 14px;
      transition: all 0.25s var(--ease);
    }
    .trust-chip:hover {
      border-color: var(--border-hover);
      transform: translateY(-5px);
      box-shadow: 0 18px 36px rgba(0,0,0,0.45), 0 0 24px rgba(147,51,234,0.2);
    }
    .trust-chip img {
      max-width: 100%; max-height: 100%; object-fit: contain;
      filter: grayscale(1) brightness(1.7) contrast(0.85);
      opacity: 0.85;
      transition: filter 0.25s, opacity 0.25s;
    }
    .trust-chip:hover img { filter: none; opacity: 1; }

    @media (max-width: 960px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .proof-mosaic { max-width: 420px; margin: 0 auto; }
    }
    @media (max-width: 560px) {
      .proof-mosaic { grid-template-columns: 1fr 1fr; }
      .hero-trust { padding: 22px 18px; gap: 16px; }
      .trust-chip { width: 100px; height: 68px; padding: 10px; }
    }

    /* =============================================
       HERO SCROLL INDICATOR
       ============================================= */
    .hero-scroll {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      z-index: 2;
      cursor: pointer;
      animation: heroFadeUp 0.8s ease 2.6s both, scrollPulse 2.8s ease-in-out 3.6s infinite;
     
      opacity: 0.4;
    }
    .hero-scroll:hover { opacity: 0.7; transition: opacity 0.3s; }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    }
    .hero-scroll-dot {
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
    }
    @keyframes scrollPulse {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* =============================================
       HERO INTRO LOGO MARK
       ============================================= */
    .hero-mark {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .hero-mark-icon {
      flex-shrink: 0;
      animation: iconBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
     
    }
    @keyframes iconBounce {
      0%  { opacity: 0; transform: translateY(-55px) scale(0.35) rotate(-20deg); filter: drop-shadow(0 0 0 rgba(147,51,234,0)); }
      55% { filter: drop-shadow(0 0 50px rgba(147,51,234,1)); }
      100%{ opacity: 1; transform: none; filter: drop-shadow(0 0 20px rgba(147,51,234,0.45)); }
    }
    .hero-mark-icon circle {
      stroke-dasharray: 182;
      stroke-dashoffset: 182;
      animation: traceRing 0.9s ease-out 0.85s forwards;
     
    }
    .hero-mark-icon .play-tri {
      opacity: 0;
      transform-origin: center;
      transform: scale(0.2);
      animation: popPlay 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.65s forwards;
     
    }
    @keyframes traceRing { to { stroke-dashoffset: 0; } }
    @keyframes popPlay   { to { opacity: 1; transform: scale(1); } }

    .hero-mark-k {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      color: transparent;
      -webkit-text-stroke: 1.5px var(--accent);
      letter-spacing: 6px;
      line-height: 1;
      animation: kEnter 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
     
    }
    @keyframes kEnter {
      0%  { opacity: 0; transform: translateY(-40px) scale(0.45); filter: drop-shadow(0 0 0 rgba(147,51,234,0)); }
      55% { filter: drop-shadow(0 0 55px rgba(147,51,234,1)); }
      100%{ opacity: 1; transform: none; filter: drop-shadow(0 0 16px rgba(147,51,234,0.4)); }
    }

    /* =============================================
       HERO LIGHT BEAM SWEEP
       ============================================= */
    .hero-beam {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 6;
      overflow: hidden;
    }
    .hero-beam::after {
      content: '';
      position: absolute;
      top: -60%; left: -40%;
      width: 32%; height: 220%;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.11) 50%, transparent 70%);
      animation: beamSweep 1.3s cubic-bezier(0.4, 0, 0.2, 1) 1.7s both;
     
    }
    @keyframes beamSweep {
      from { transform: rotate(12deg) translateX(0); }
      to   { transform: rotate(12deg) translateX(390%); }
    }

    /* =============================================
       H1 TEXT SHINE
       ============================================= */
    .hero-h1 { position: relative; overflow: hidden; }
    .hero-h1::before {
      content: '';
      position: absolute;
      inset: -8% -5%;
      background: linear-gradient(92deg, transparent 22%, rgba(255,255,255,0.28) 50%, transparent 78%);
      pointer-events: none;
      z-index: 1;
      animation: h1Shine 0.9s ease-out 2.4s both;
     
    }
    @keyframes h1Shine {
      from { transform: translateX(-125%) skewX(-10deg); }
      to   { transform: translateX(260%)  skewX(-10deg); }
    }

    /* =============================================
       SPARKLE STARS
       ============================================= */
    .hero-sparks { position: absolute; inset: 0; pointer-events: none; z-index: 4; overflow: hidden; }
    .spark {
      position: absolute;
      color: #fff;
      animation: sparkPop 2.2s ease-out both;
     
      filter: drop-shadow(0 0 5px rgba(147,51,234,0.9));
      line-height: 1;
    }
    @keyframes sparkPop {
      0%  { opacity: 0; transform: scale(0) rotate(-25deg); }
      22% { opacity: 1; transform: scale(1.6) rotate(12deg); }
      60% { opacity: 0.75; transform: scale(1) rotate(6deg); }
      100%{ opacity: 0; transform: scale(0.1) rotate(35deg) translateY(-18px); }
    }
    .spark.s1 { top:28%; right:30%; font-size:15px; animation-delay:2.1s; }
    .spark.s2 { top:16%; right:40%; font-size:20px; animation-delay:2.3s; }
    .spark.s3 { top:42%; right:22%; font-size:10px; animation-delay:2.5s; }
    .spark.s4 { top:22%; right:50%; font-size: 9px; animation-delay:2.2s; }
    .spark.s5 { top:54%; right:34%; font-size:12px; animation-delay:2.7s; }
    .spark.s6 { top:12%; right:44%; font-size:17px; animation-delay:2.4s; }
    .spark.s7 { top:35%; right:18%; font-size: 8px; animation-delay:2.6s; }
    .spark.s8 { top:62%; right:28%; font-size:13px; animation-delay:2.9s; }
    .spark.s9 { top:20%; right:58%; font-size:11px; animation-delay:3.1s; }

    @media (max-width: 900px) { .hero-sparks, .hero-beam { display: none; } }

    /* Accent headline glow pulse */
    @keyframes accentPulse {
      0%,100% { text-shadow: none; }
      50%      { text-shadow: 0 0 28px rgba(147,51,234,0.55), 0 0 55px rgba(147,51,234,0.22); }
    }
    .hero-h1 .hi { animation: accentPulse 4.5s ease-in-out 2.8s infinite; }

    /* =============================================
       BUTTONS
       ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      border-radius: 50px;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.25s var(--ease);
      white-space: nowrap;
    }
    .btn-p {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 28px var(--accent-glow);
    }
    .btn-p:hover {
      background: #7e22ce;
      box-shadow: 0 0 48px var(--accent-glow);
      transform: translateY(-2px);
    }
    .btn-s {
      background: transparent;
      color: var(--txt-hi);
      border: 1px solid rgba(255,255,255,0.14);
    }
    .btn-s:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    /* =============================================
       HEADER
       ============================================= */
    .hdr {
      position: fixed;
      inset: 0 0 auto;
      z-index: 900;
      padding: 22px 0;
      transition: padding 0.3s var(--ease), background 0.3s var(--ease);
    }
    .hdr.stuck {
      background: rgba(7,7,7,0.90);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .hdr-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* === LOGO — Edit text/color here === */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 900;
      letter-spacing: 5px;
      color: var(--txt-hi);
      flex-shrink: 0;
    }
    .logo-mark {
      height: 32px; width: auto;
      border-radius: 6px;
      object-fit: contain;
      border: 1.5px solid var(--border-hover);
      flex-shrink: 0;
    }
    /* =============================================
       BEBAS NEUE — display numbers & kickers
       ============================================= */
    .kicker       { font-family: 'Bebas Neue', 'Heebo', sans-serif; font-size: 13px; letter-spacing: 5px; }
    .srv-num      { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 3px; }
    .proc-num     { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }
    .ai-badge     { font-family: 'Bebas Neue', sans-serif; letter-spacing: 4px; font-size: 0.8rem; }

    /* =============================================
       VIDEO MODAL
       ============================================= */
    .vid-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: #000;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .vid-modal.open { display: flex; }

    /* Close button — floats above the video, always visible */
    .vid-modal-close {
      position: fixed;
      top: 16px;
      left: 16px;
      z-index: 2100;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      padding: 8px 18px;
      transition: background 0.2s;
    }
    .vid-modal-close:hover { background: rgba(255,255,255,0.22); }

    /* Desktop inner container */
    .vid-modal-inner {
      position: relative;
      width: min(100%, 860px);
    }
    .vid-modal-inner.vert { max-width: 420px; }

    /* Desktop frame */
    .vid-modal-frame {
      aspect-ratio: 16 / 9;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: #000;
      box-shadow: 0 0 80px rgba(147,51,234,0.25);
    }
    .vid-modal-frame.vert { aspect-ratio: 9 / 16; }

    .vid-modal-frame iframe,
    .vid-modal-frame video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      background: #000;
    }

    /* Mobile — true fullscreen */
    @media (max-width: 768px) {
      .vid-modal { padding: 0; }
      .vid-modal-inner,
      .vid-modal-inner.vert {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .vid-modal-frame,
      .vid-modal-frame.vert {
        width: 100%;
        height: 100dvh;
        aspect-ratio: unset;
        border-radius: 0;
        box-shadow: none;
      }
    }

    /* =============================================
       FLOATING WHATSAPP BUTTON
       ============================================= */
    .float-wa {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 850;
      width: 62px;
      height: 62px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
      animation: wa-breathe 3s ease-in-out infinite;
    }
    .float-wa:hover {
      transform: scale(1.12);
      box-shadow: 0 6px 32px rgba(37,211,102,0.65);
      animation: none;
    }
    @keyframes wa-breathe {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%     { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
    }
    .float-wa-label {
      position: absolute;
      left: 72px;
      background: #25d366;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }
    .float-wa:hover .float-wa-label { opacity: 1; }

    /* =============================================
       THUMBNAIL SHOWCASE SECTION
       ============================================= */
    .thumb-sec { background: var(--bg-0); }
    .thumb-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 56px;
    }
    .thumb-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .thumb-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.28s var(--ease);
      aspect-ratio: 9 / 16;
      position: relative;
      background: var(--bg-2);
    }
    .thumb-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-6px);
      box-shadow: 0 28px 56px rgba(0,0,0,0.55), 0 0 30px rgba(147,51,234,0.15);
    }
    .thumb-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s var(--ease);
    }
    .thumb-card:hover img { transform: scale(1.03); }
    .thumb-ph {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, #1a1a2e, #16213e, #0f3460);
      font-size: 2rem;
      color: rgba(255,255,255,0.2);
    }

    /* =============================================
       CONTACT SECTION — enhanced
       ============================================= */
    .contact-availability {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #4ade80;
      letter-spacing: 1.5px;
      margin-bottom: 32px;
    }
    .avail-dot {
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      animation: blink 2s infinite;
      flex-shrink: 0;
    }
    .contact-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 52px;
    }
    .btn-wa {
      background: #25d366;
      color: #fff;
      box-shadow: 0 0 28px rgba(37,211,102,0.3);
    }
    .btn-wa:hover {
      background: #1da851;
      box-shadow: 0 0 48px rgba(37,211,102,0.5);
      transform: translateY(-2px);
    }
    .btn-ig {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color: #fff;
      box-shadow: 0 0 28px rgba(131,58,180,0.3);
    }
    .btn-ig:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      box-shadow: 0 0 48px rgba(131,58,180,0.5);
    }

    @media (max-width: 768px) {
      .thumb-intro { grid-template-columns: 1fr; gap: 40px; }
      .thumb-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       CONTACT FORM
       ============================================= */
    .form-sec { background: var(--bg-1); }
    .form-header { text-align: center; margin-bottom: 40px; }
    .form-header .h2 { margin-bottom: 12px; }
    .form-header .lead { margin: 0 auto; text-align: center; }

    .form-card {
      max-width: 580px;
      margin: 0 auto;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 48px);
    }
    .form-group { margin-bottom: 22px; }
    .form-label {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--txt-mid);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }
    .form-input,
    .form-textarea {
      width: 100%;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      font-family: 'Heebo', sans-serif;
      font-size: 0.95rem;
      color: var(--txt-hi);
      direction: rtl;
      transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-dim);
    }
    .form-input::placeholder,
    .form-textarea::placeholder { color: var(--txt-lo); }
    .form-textarea {
      min-height: 130px;
      resize: vertical;
      line-height: 1.65;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-submit {
      width: 100%;
      padding: 16px;
      font-size: 1rem;
      font-weight: 800;
      border-radius: var(--radius-sm);
      margin-top: 8px;
      letter-spacing: 0.5px;
    }
    .form-note {
      text-align: center;
      font-size: 0.75rem;
      color: var(--txt-lo);
      margin-top: 14px;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 32px;
    }
    .form-success-icon { font-size: 2.5rem; margin-bottom: 14px; }
    .form-success h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
    .form-success p  { font-size: 0.9rem; color: var(--txt-mid); }

    @media (max-width: 540px) {
      .form-row { grid-template-columns: 1fr; }
    }

    /* AI visual pair — real images instead of a text comparison table */
    .ai-visual-pair {
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .ai-visual {
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-3);
      transition: border-color 0.25s var(--ease), transform 0.3s var(--ease);
    }
    .ai-visual:hover { border-color: var(--border-hover); transform: translateY(-4px); }
    .ai-visual img {
      width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
      display: block;
    }
    .ai-visual figcaption {
      padding: 10px 12px;
      font-size: 0.76rem; font-weight: 600; color: var(--txt-mid);
      line-height: 1.4; text-align: center;
    }
    @media (max-width: 480px) {
      .ai-visual-pair { grid-template-columns: 1fr; }
    }


    /* Problem section video embed */
    .prob-video-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .prob-video-frame {
      width: min(100%, 340px);
      aspect-ratio: 9 / 16; /* vertical / reel format — change to 16/9 if the video is horizontal */
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-hover);
      box-shadow: 0 0 60px rgba(147, 51, 234, 0.18), 0 24px 48px rgba(0,0,0,0.5);
      position: relative;
      background: var(--bg-2);
    }
    .prob-video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    .prob-video-caption {
      margin-top: 14px;
      font-size: 0.75rem;
      color: var(--txt-lo);
      letter-spacing: 1.5px;
      text-align: center;
      text-transform: uppercase;
    }

    .logo em { color: var(--accent); font-style: normal; }

    .hdr-nav { display: flex; align-items: center; gap: 32px; }
    .hdr-nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--txt-mid);
      transition: color 0.2s;
    }
    .hdr-nav a:hover { color: var(--txt-hi); }

    /* Hamburger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--txt-hi);
      border-radius: 2px;
      transition: all 0.3s var(--ease);
    }

    /* Mobile drawer */
    .drawer {
      display: none;
      position: fixed;
      inset: 0;
      background: #070707;
      z-index: 800;
      flex-direction: column;
      padding: 110px 40px 40px;
      gap: 28px;
    }
    .drawer.open { display: flex; }
    .drawer a {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--txt-hi);
      transition: color 0.2s;
    }
    .drawer a:hover { color: var(--accent); }
    .drawer-close {
      position: absolute;
      top: 22px;
      left: 24px;
      font-size: 1.4rem;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--txt-mid);
      line-height: 1;
    }

    /* =============================================
       SITE-WIDE AMBIENT VIDEO BACKGROUND
       Fixed behind the whole page, very low opacity. Section surface
       colors (--bg-0..3) are translucent so this shows through
       everywhere, not just the hero.
       ============================================= */
    .site-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      overflow: hidden;
      background: #050505;
    }
    .site-bg-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.24;
      filter: grayscale(0.35) brightness(0.85) contrast(1.05);
    }
    /* Driving clip: bias the crop away from his face, toward the
       dashboard/editing screen (source is a vertical 9:16 clip). */
    .site-bg-video.is-driving { object-position: center 40%; }
    .site-bg-video.is-launch  { object-position: center center; }
    @media (max-width: 640px) {
      /* Mobile crops the sides instead of top/bottom (portrait clip on
         a portrait screen) — bias toward his face + the wheel/screen. */
      .site-bg-video.is-driving { object-position: 25% center; }
    }

    /* =============================================
       HERO
       ============================================= */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      padding: 128px 0 56px;
      position: relative;
      overflow: hidden;
    }

    /* Grid texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
    }
    /* Glow blob */
    .hero::after {
      content: '';
      position: absolute;
      top: 38%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse, rgba(147,51,234,0.08) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 1; }

    /* Live badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-dim);
      border: 1px solid rgba(147,51,234,0.25);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 2s infinite;
      flex-shrink: 0;
    }
    @keyframes blink {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(1.5); }
    }

    /* Main headline — sized for the narrower copy column (shares
       the hero with the video mosaic), not full page width. */
    .hero-h1 {
      font-size: clamp(1.9rem, 2.6vw, 2.9rem);
      font-weight: 900;
      line-height: 1.22;
      margin-bottom: 18px;
      max-width: 100%;
    }
    .hero-h1 .hi { color: var(--accent); }

    /* Sub */
    .hero-sub {
      font-size: clamp(1rem, 1.9vw, 1.2rem);
      color: var(--txt-mid);
      line-height: 1.8;
      max-width: 580px;
      margin-bottom: 26px;
    }

    /* =============================================
       PROBLEM
       ============================================= */
    .prob-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .prob-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .prob-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 22px;
      transition: border-color 0.25s;
    }
    .prob-card:hover { border-color: var(--border-hover); }
    .prob-num {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
    }
    .prob-lbl {
      font-size: 0.82rem;
      color: var(--txt-mid);
      line-height: 1.5;
    }

    /* =============================================
       SOLUTION
       ============================================= */
    .sol-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 56px;
    }
    .sol-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 26px;
      transition: all 0.28s var(--ease);
    }
    .sol-card:hover {
      border-color: var(--border-hover);
      background: var(--bg-3);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.32);
    }
    .sol-icon {
      width: 46px; height: 46px;
      background: var(--accent-dim);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 18px;
    }
    .sol-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
    .sol-card p  { font-size: 0.875rem; color: var(--txt-mid); line-height: 1.72; }

    /* =============================================
       SERVICES
       ============================================= */
    .srv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 56px;
    }
    .srv-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 28px;
      position: relative;
      overflow: hidden;
      transition: all 0.28s var(--ease);
    }
    /* Top accent bar on hover */
    .srv-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0; left: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .srv-card:hover {
      border-color: var(--border-hover);
      background: var(--bg-3);
      transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.38);
    }
    .srv-card:hover::before { opacity: 1; }
    .srv-num {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--accent);
      opacity: 0.6;
      margin-bottom: 14px;
    }
    .srv-icon { font-size: 2rem; margin-bottom: 14px; }
    .srv-title {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .srv-desc { font-size: 0.865rem; color: var(--txt-mid); line-height: 1.78; }

    /* =============================================
       AI ADVANTAGE
       ============================================= */
    .ai-wrap {
      position: relative;
      overflow: hidden;
    }
    .ai-wrap::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 55%; height: 100%;
      background: radial-gradient(ellipse at bottom left, rgba(147,51,234,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .ai-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .ai-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
    .ai-feat {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      transition: all 0.25s var(--ease);
    }
    .ai-feat:hover { border-color: var(--border-hover); background: var(--bg-3); }
    .ai-fi { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
    .ai-ft h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
    .ai-ft p  { font-size: 0.83rem; color: var(--txt-mid); line-height: 1.62; }

    /* AI pull-quote card */
    .ai-quote-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 44px 38px;
      position: relative;
      overflow: hidden;
    }
    .ai-quote-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 55%);
      pointer-events: none;
    }
    .ai-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--accent-dim);
      border: 1px solid rgba(147,51,234,0.28);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 26px;
    }
    .ai-q {
      font-size: clamp(1.35rem, 2.5vw, 1.8rem);
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 18px;
    }
    .ai-qs { font-size: 0.88rem; color: var(--txt-mid); line-height: 1.75; }

    /* =============================================
       EXPERIENCE
       ============================================= */
    .exp-body {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      margin-top: 56px;
    }
    .exp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }
    .tag {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--txt-mid);
      transition: all 0.22s;
      cursor: default;
    }
    .tag:hover, .tag.on {
      border-color: rgba(0,153,255,0.35);
      color: var(--accent);
      background: var(--accent-dim);
    }
    .exp-txt p {
      font-size: 1rem;
      color: var(--txt-mid);
      line-height: 1.88;
      margin-bottom: 18px;
    }
    .exp-txt strong { color: var(--txt-hi); }

    /* =============================================
       PROCESS
       ============================================= */
    .proc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 56px;
      position: relative;
    }
    /* Connector line */
    .proc-grid::before {
      content: '';
      position: absolute;
      top: 35px;
      right: calc(12.5% + 4px);
      left: calc(12.5% + 4px);
      height: 1px;
      background: var(--border);
      z-index: 0;
    }
    .proc-step { position: relative; z-index: 1; text-align: center; }
    .proc-num {
      width: 70px; height: 70px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--accent);
      margin: 0 auto 22px;
      transition: all 0.3s var(--ease);
    }
    .proc-step:hover .proc-num {
      background: var(--accent-dim);
      border-color: rgba(147,51,234,0.45);
      box-shadow: 0 0 30px var(--accent-glow);
    }
    .proc-t { font-size: 0.95rem; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
    .proc-d { font-size: 0.83rem; color: var(--txt-mid); line-height: 1.68; }


    /* =============================================
       WHY KAHANA
       ============================================= */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 56px;
    }
    .why-card {
      padding: 30px 26px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: all 0.25s var(--ease);
    }
    .why-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-5px);
    }
    .why-icon { font-size: 1.7rem; margin-bottom: 14px; }
    .why-t { font-size: 0.98rem; font-weight: 800; margin-bottom: 10px; }
    .why-d { font-size: 0.865rem; color: var(--txt-mid); line-height: 1.72; }

    /* =============================================
       FINAL CTA
       ============================================= */
    .cta-sec {
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-sec::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 650px; height: 550px;
      background: radial-gradient(ellipse, rgba(147,51,234,0.10) 0%, transparent 68%);
      pointer-events: none;
    }
    .cta-sec .wrap { position: relative; z-index: 1; }
    .cta-h {
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1.25;
      max-width: 720px;
      margin: 0 auto 42px;
    }
    .cta-sec .btn-row { justify-content: center; margin-bottom: 52px; }

    /* Contact pills */
    .contact-row {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .c-pill {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 13px 22px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--txt-mid);
      transition: all 0.25s var(--ease);
    }
    .c-pill:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-dim);
    }
    .c-ico { font-size: 1.1rem; }

    /* =============================================
       FOOTER
       ============================================= */
    .footer {
      background: var(--bg-1);
      border-top: 1px solid var(--border);
      padding: 44px 0 28px;
    }
    .foot-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }
    .foot-nav { display: flex; gap: 26px; flex-wrap: wrap; }
    .foot-nav a { font-size: 0.82rem; color: var(--txt-lo); transition: color 0.2s; }
    .foot-nav a:hover { color: var(--txt-hi); }
    .foot-socials { display: flex; gap: 14px; }
    .foot-socials a { font-size: 1.1rem; color: var(--txt-lo); transition: color 0.2s; }
    .foot-socials a:hover { color: var(--accent); }
    .foot-copy {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      text-align: center;
      font-size: 0.75rem;
      color: var(--txt-lo);
    }
    .foot-access-link {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.72rem;
      color: var(--txt-lo);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }
    .foot-access-link:hover { color: var(--txt-hi); }

    /* =============================================
       SELECTED CLIENTS — NEON ACCENT
       A restrained, classic neon touch: a pulsing kicker, a glowing
       underline that draws in once, and a soft ambient backdrop glow.
       Nothing here moves continuously — just a one-time reveal flourish.
       ============================================= */
    .client-grid-sec { position: relative; overflow: hidden; }
    .clients-glow {
      position: absolute;
      top: -10%; right: 50%;
      transform: translateX(50%);
      width: 900px; height: 500px;
      background: radial-gradient(ellipse, rgba(147,51,234,0.14) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .client-grid-sec .wrap { position: relative; z-index: 1; }

    #clients .kicker {
      text-shadow: 0 0 10px rgba(147,51,234,0.6);
      animation: clientsKickerPulse 3.2s ease-in-out infinite;
    }
    @keyframes clientsKickerPulse {
      0%, 100% { text-shadow: 0 0 8px rgba(147,51,234,0.7), 0 0 20px rgba(147,51,234,0.3); }
      50%      { text-shadow: 0 0 16px rgba(147,51,234,1), 0 0 42px rgba(147,51,234,0.55); }
    }

    .clients-neon-line {
      display: block;
      width: 0;
      height: 2px;
      margin: 14px 0 0;
      background: linear-gradient(to left, transparent, var(--accent) 20%, #fff 50%, var(--accent) 80%, transparent);
      box-shadow: 0 0 12px rgba(147,51,234,0.7), 0 0 24px rgba(147,51,234,0.35);
      transition: width 1.1s cubic-bezier(0.16,1,0.3,1) 0.15s;
    }
    .clients-neon-line.in { width: 160px; }

    .client-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-flow: dense;
      gap: 20px;
      margin-top: 48px;
    }

    .client-card {
      position: relative;
      display: block;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--bg-2);
      border: 1px solid var(--border);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
    }
    .client-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 30px rgba(147,51,234,0.18);
    }
    .client-card.featured { grid-column: span 2; }

    /* Dynamic staggered entrance — a quick pop-in cascade, not a
       continuous scroll/slide (kept still once revealed). */
    .client-card.reveal.in {
      animation: clientCardIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes clientCardIn {
      from { opacity: 0; transform: translateY(28px) scale(0.92) rotate(-1.2deg); }
      60%  { transform: translateY(-4px) scale(1.015) rotate(0.4deg); }
      to   { opacity: 1; transform: none; }
    }
    .client-card:nth-child(1).in { animation-delay: 0.02s; }
    .client-card:nth-child(2).in { animation-delay: 0.08s; }
    .client-card:nth-child(3).in { animation-delay: 0.14s; }
    .client-card:nth-child(4).in { animation-delay: 0.20s; }
    .client-card:nth-child(5).in { animation-delay: 0.26s; }
    .client-card:nth-child(6).in { animation-delay: 0.32s; }
    .client-card:nth-child(7).in { animation-delay: 0.38s; }

    /* Diagonal light sweep on hover — a small "cool" flourish */
    .client-card::before {
      content: '';
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.14) 50%, transparent 60%);
      transform: translateX(-130%);
      transition: transform 0.65s ease;
    }
    .client-card:hover::before { transform: translateX(130%); }

    .card-media {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: var(--bg-3);
    }
    .client-card.featured .card-media { aspect-ratio: 16 / 9; }
    .card-media img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s var(--ease);
    }
    .client-card:hover .card-media img { transform: scale(1.06); }
    .card-play {
      position: absolute; inset: 0; margin: auto;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(147,51,234,0.85);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem; padding-right: 2px;
      opacity: 0; transform: scale(0.8);
      transition: opacity 0.25s, transform 0.3s var(--ease), background 0.25s;
    }
    .client-card:hover .card-play { opacity: 1; transform: scale(1); background: var(--accent); }
    .card-body { padding: 16px 18px 20px; }
    .card-tag {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.72rem; letter-spacing: 3px;
      color: var(--accent); margin-bottom: 6px;
    }
    .card-name { font-size: 1rem; font-weight: 800; color: #fff; }
    .client-card.featured .card-name { font-size: 1.2rem; }

    @media (max-width: 1024px) {
      .client-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 700px) {
      .client-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .client-card.featured { grid-column: span 2; }
      .client-card.featured .card-media { aspect-ratio: 16 / 10; }
    }
    @media (max-width: 420px) {
      .client-grid { grid-template-columns: 1fr; }
      .client-card.featured { grid-column: span 1; }
    }

    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 1024px) {
      .srv-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-grid::before { display: none; }
      .ai-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 768px) {
      :root { --sec-y: 72px; }
      .hdr-nav { display: none; }
      .hdr .btn { display: none; }
      .burger { display: flex; }
      .srv-grid, .why-grid { grid-template-columns: 1fr; }
      .proc-grid { grid-template-columns: 1fr; }
      .foot-top { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .btn-row { flex-direction: column; }
      .btn { justify-content: center; }
      .prob-cards { grid-template-columns: 1fr; }
      .contact-row { flex-direction: column; align-items: center; }
    }

    @media (max-width: 640px) {
      /* The bilingual wordmark ("OR KAHANA | אור כהנא") is too wide for a
         phone header on one line - stack it into two short lines instead
         (OR KAHANA on top, אור כהנא below) so it never clips. */
      .logo { gap: 8px; }
      .logo-mark { height: 30px; }
      .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        line-height: 1.15;
      }
      .logo-sep { display: none; }
      .logo-en {
        font-size: 0.6rem;
        letter-spacing: 2px;
        opacity: 0.7;
      }
      .logo-he { font-size: 0.95rem; letter-spacing: 1px; }
    }

    /* =============================================
       CLIENT DETAIL PAGE (client.html)
       ============================================= */
    .cd-hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
    .cd-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
    }
    .cd-hero::after {
      content: '';
      position: absolute; top: 30%; left: 50%;
      transform: translate(-50%, -50%);
      width: 900px; height: 700px;
      background: radial-gradient(ellipse, rgba(147,51,234,0.08) 0%, transparent 68%);
      pointer-events: none;
    }
    .cd-hero .wrap { position: relative; z-index: 1; }

    .cd-back {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.85rem; font-weight: 600; color: var(--txt-mid);
      margin-bottom: 32px; transition: color 0.2s;
    }
    .cd-back:hover { color: var(--accent); }

    .cd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

    .cd-tag {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem; letter-spacing: 4px;
      color: var(--accent); margin-bottom: 14px;
    }
    .cd-logo-badge {
      width: 76px; height: 76px; border-radius: 14px; overflow: hidden;
      background: #fff; margin-bottom: 24px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
      display: flex; align-items: center; justify-content: center;
    }
    .cd-logo-badge img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
    .cd-name { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 4px; line-height: 1.1; }
    .cd-desc { font-size: 1rem; color: var(--txt-mid); line-height: 1.9; margin: 22px 0 34px; max-width: 480px; }
    .cd-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

    .cd-brands { margin-bottom: 26px; }
    .cd-brands-label {
      display: block;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      color: var(--txt-lo); text-transform: uppercase; margin-bottom: 12px;
    }
    .cd-brands-row { display: flex; flex-wrap: wrap; gap: 12px; }
    .cd-brand-chip {
      width: 76px; height: 52px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      padding: 8px;
      transition: transform 0.22s var(--ease), border-color 0.22s;
    }
    .cd-brand-chip:hover { transform: translateY(-3px); border-color: var(--border-hover); }
    .cd-brand-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .cd-links a {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.82rem; font-weight: 600; color: var(--txt-mid);
      background: var(--bg-2); border: 1px solid var(--border);
      border-radius: 50px; padding: 8px 16px;
      transition: all 0.22s var(--ease);
    }
    .cd-links a:hover { color: var(--accent); border-color: var(--border-hover); background: var(--accent-dim); }
    .cd-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

    .cd-media {}
    .cd-video-frame {
      position: relative;
      aspect-ratio: 9 / 16; max-width: 380px; margin: 0 auto;
      border-radius: var(--radius); overflow: hidden; background: #000;
      border: 1px solid var(--border-hover);
      box-shadow: 0 0 80px rgba(147,51,234,0.22), 0 30px 60px rgba(0,0,0,0.5);
    }
    .cd-video-frame.wide { aspect-ratio: 16 / 9; max-width: 100%; }
    .cd-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .cd-video-frame--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

    .cd-logo-hero {
      aspect-ratio: 4 / 5; max-width: 380px; margin: 0 auto;
      border-radius: var(--radius); overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--border); background: var(--bg-2);
    }
    .cd-logo-hero img { max-width: 68%; max-height: 58%; object-fit: contain; }

    .cd-thumbs { display: flex; gap: 12px; margin-top: 18px; justify-content: center; flex-wrap: wrap; }
    .cd-thumb {
      position: relative;
      width: 70px; height: 88px; border-radius: 10px; overflow: hidden; cursor: pointer;
      border: 1px solid var(--border); opacity: 0.65;
      transition: all 0.25s var(--ease);
    }
    .cd-thumb:hover, .cd-thumb.active { opacity: 1; border-color: var(--border-hover); transform: translateY(-3px); }
    .cd-thumb-tag {
      position: absolute; bottom: 3px; left: 3px; right: 3px;
      font-size: 0.55rem; font-weight: 700; text-align: center;
      color: #fff; background: rgba(147,51,234,0.85);
      border-radius: 4px; padding: 1px 0;
    }
    .cd-thumb img { width: 100%; height: 100%; object-fit: cover; }

    .cd-notfound { text-align: center; padding: 60px 0; }

    @media (max-width: 900px) {
      .cd-grid { grid-template-columns: 1fr; gap: 40px; }
      .cd-media { order: -1; }
    }
