
  :root {
    --red: #E31E24;
    --red-deep: #B0181D;
    --red-bright: #FF2A30;
    --red-glow: rgba(227, 30, 36, 0.4);
    --black: #050505;
    --carbon: #0F0F0F;
    --asphalt: #1A1A1A;
    --steel: #252525;
    --gray: #5A5A5A;
    --gray-light: #888;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --amber: #FF6B00;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --font-arabic: 'Cairo', sans-serif;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --mouse-x: 50%;
    --mouse-y: 50%;
  }

  /* ========== ACCESSIBILITY ========== */
  .skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--red);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    z-index: 99999;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: top 0.3s var(--ease);
  }
  
  .skip-to-content:focus {
    top: 20px;
    outline: 2px solid white;
    outline-offset: 2px;
  }
  
  
  /* Placeholder link feedback */
  @keyframes placeholderShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* Focus visible for keyboard navigation */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
    border-radius: 4px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; background: var(--black); }
  
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }
  
  @media (hover: none) { body { cursor: auto; } }
  ::selection { background: var(--red); color: white; }
  
  body::-webkit-scrollbar { width: 8px; }
  body::-webkit-scrollbar-track { background: var(--black); }
  body::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }
  body::-webkit-scrollbar-thumb:hover { background: var(--red); }
  
  /* ========== CURSOR ========== */
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
    mix-blend-mode: difference;
  }
  
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(227, 30, 36, 0.6);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
  }
  
  .cursor-dot.hover { width: 0; height: 0; }
  .cursor-ring.hover {
    width: 60px; height: 60px;
    border-color: var(--red);
    background: rgba(227, 30, 36, 0.1);
  }
  
  @media (hover: none) {
    .cursor-dot, .cursor-ring, .cursor-light { display: none; }
  }
  
  .cursor-light {
    position: fixed;
    top: var(--mouse-y); left: var(--mouse-x);
    width: 500px; height: 500px;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 60%);
    mix-blend-mode: screen;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
  }
  
  body.loaded .cursor-light { opacity: 1; }
  
  /* ========== PRELOADER ========== */
  .preloader {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
  }
  
  .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  
  .preloader-content {
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .preloader-logo {
    width: 280px; height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 30px rgba(227,30,36,0.4));
  }
  
  .preloader-sub {
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .preloader-progress {
    width: 240px; height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  
  .preloader-progress-bar {
    position: absolute; height: 100%;
    background: var(--red);
    left: 0; width: 0;
    animation: loadProgress 1.8s var(--ease-out) 0.5s forwards;
  }
  
  @keyframes loadProgress { to { width: 100%; } }
  
  /* ========== NAVIGATION ========== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 50px;
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0px);
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s var(--ease);
  }
  
  nav.scrolled {
    padding: 14px 50px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
    transition: transform 0.3s var(--ease);
  }
  
  .nav-logo img {
    height: 44px; width: auto;
    filter: drop-shadow(0 0 12px rgba(227,30,36,0.3));
    transition: all 0.3s var(--ease);
  }
  
  nav.scrolled .nav-logo img { height: 36px; }
  .nav-logo:hover img { filter: drop-shadow(0 0 20px rgba(227,30,36,0.6)); }
  
  .nav-links {
    display: flex; gap: 4px;
    list-style: none;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 6px;
  }
  
  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
  }
  
  .nav-links a:hover { color: white; }
  .nav-links a.active { background: var(--red); color: white; }
  
  .nav-actions { display: flex; align-items: center; gap: 16px; }
  
  .lang-toggle {
    display: flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 4px;
  }
  
  .lang-toggle button {
    background: none; border: none;
    color: rgba(255,255,255,0.6);
    padding: 6px 14px;
    cursor: none;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    font-family: inherit;
  }
  
  .lang-toggle button.active { background: var(--red); color: white; }
  
  .cart-btn {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    font-size: 16px;
  }
  
  .cart-btn:hover { border-color: var(--red); background: var(--red); }
  
  .cart-badge {
    position: absolute;
    top: -2px; right: -2px;
    background: var(--red);
    color: white;
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--black);
    font-family: var(--font-mono);
  }
  
  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    position: relative;
    padding: 140px 50px 80px;
    overflow: hidden;
    display: flex; align-items: center;
  }
  
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    background: var(--black);
    overflow: hidden;
  }
  
  .hero-bg::before {
    content: '';
    position: absolute; inset: -50%;
    background: 
      radial-gradient(ellipse at 30% 40%, rgba(227, 30, 36, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 60%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 80%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
  }
  
  @keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 30px) rotate(2deg); }
    66% { transform: translate(30px, -30px) rotate(-2deg); }
  }
  
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  }
  
  .hero-noise {
    position: absolute; inset: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  
  .particle {
    position: absolute;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 10px var(--red);
  }
  
  .particle.p1 { width: 4px; height: 4px; top: 20%; left: 15%; animation: float1 8s ease-in-out infinite; }
  .particle.p2 { width: 6px; height: 6px; top: 60%; left: 80%; animation: float2 10s ease-in-out infinite; }
  .particle.p3 { width: 3px; height: 3px; top: 80%; left: 25%; animation: float3 7s ease-in-out infinite; }
  .particle.p4 { width: 5px; height: 5px; top: 30%; left: 70%; animation: float1 9s ease-in-out infinite reverse; }
  .particle.p5 { width: 4px; height: 4px; top: 50%; left: 10%; animation: float2 6s ease-in-out infinite; }
  
  @keyframes float1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(40px, -60px); opacity: 0.9; }
  }
  @keyframes float2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(-30px, 40px); opacity: 0.8; }
  }
  @keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(50px, -40px) scale(1.5); opacity: 0.9; }
  }
  
  .light-beam {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    pointer-events: none;
    z-index: 2;
  }
  
  .light-beam.b1 { top: 30%; left: 0; width: 30%; animation: beam 6s ease-in-out infinite; }
  .light-beam.b2 { top: 65%; right: 0; width: 40%; animation: beam2 7s ease-in-out infinite 2s; }
  .light-beam.b3 { top: 85%; left: 0; width: 25%; animation: beam 5s ease-in-out infinite 4s; }
  
  @keyframes beam {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    20%, 80% { opacity: 0.8; }
    50% { transform: translateX(350%); opacity: 0.8; }
  }
  
  @keyframes beam2 {
    0%, 100% { transform: translateX(100%); opacity: 0; }
    20%, 80% { opacity: 0.8; }
    50% { transform: translateX(-350%); opacity: 0.8; }
  }
  
  .hero-container {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
  
  .hero-content {
    opacity: 0;
    transform: translateY(40px);
  }
  
  body.loaded .hero-content {
    animation: heroReveal 1.2s var(--ease-out) 0.3s forwards;
  }
  
  @keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
  
  .hero-status {
    display: inline-flex;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 4px;
    backdrop-filter: blur(10px);
  }
  
  .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border-radius: 100px;
  }
  
  .status-pill.live {
    background: rgba(227,30,36,0.15);
    color: var(--red);
  }
  
  .status-pill.live::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--red);
  }
  
  @keyframes liveDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  
  .status-divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.1);
  }
  
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 108px);
    line-height: 0.88;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .hero-headline .line { display: block; overflow: hidden; }
  
  .hero-headline .line-inner {
    display: inline-block;
    transform: translateY(110%);
  }
  
  body.loaded .hero-headline .line:nth-child(1) .line-inner { animation: lineRise 1s var(--ease-out) 0.5s forwards; }
  body.loaded .hero-headline .line:nth-child(2) .line-inner { animation: lineRise 1s var(--ease-out) 0.65s forwards; }
  body.loaded .hero-headline .line:nth-child(3) .line-inner { animation: lineRise 1s var(--ease-out) 0.8s forwards; }
  
  @keyframes lineRise { to { transform: translateY(0); } }
  
  .hero-headline .red { color: var(--red); }
  .hero-headline .outline { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
  .hero-headline .italic { font-style: italic; color: var(--off-white); }
  
  .hero-arabic {
    font-family: var(--font-arabic);
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 900;
    color: var(--off-white);
    margin-bottom: 30px;
    direction: rtl;
    text-align: left;
    opacity: 0;
  }
  
  body.loaded .hero-arabic { animation: fadeIn 0.8s var(--ease) 1.1s forwards; }
  
  .hero-arabic .accent { color: var(--red); }
  
  .hero-desc {
    font-size: 16px;
    color: var(--gray-light);
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0;
  }
  
  body.loaded .hero-desc { animation: fadeIn 0.8s var(--ease) 1.3s forwards; }
  
  .hero-actions {
    display: flex; gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    opacity: 0;
  }
  
  body.loaded .hero-actions { animation: fadeIn 0.8s var(--ease) 1.5s forwards; }
  
  @keyframes fadeIn { to { opacity: 1; } }
  
  .magnetic-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    cursor: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    will-change: transform;
  }
  
  .magnetic-btn-primary { background: var(--red); color: white; }
  
  .magnetic-btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--red-deep);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
  }
  
  .magnetic-btn-primary:hover::before { transform: translateY(0); }
  .magnetic-btn-primary span,
  .magnetic-btn-primary .arrow-icon { position: relative; z-index: 1; }
  
  .magnetic-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
  }
  
  .magnetic-btn-outline::before {
    content: '';
    position: absolute; inset: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
  }
  
  .magnetic-btn-outline:hover::before { transform: scaleX(1); }
  .magnetic-btn-outline:hover { color: var(--black); }
  .magnetic-btn-outline span,
  .magnetic-btn-outline .arrow-icon { position: relative; z-index: 1; }
  
  .arrow-icon {
    display: inline-block;
    transition: transform 0.3s var(--ease);
  }
  
  .magnetic-btn:hover .arrow-icon { transform: translateX(6px); }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
  }
  
  body.loaded .hero-stats { animation: fadeIn 0.8s var(--ease) 1.7s forwards; }
  
  .stat-item { position: relative; }
  
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.06);
  }
  
  .stat-number {
    font-family: var(--font-mono);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
  }
  
  .stat-number .plus {
    color: var(--red);
    font-size: 0.6em;
    margin-left: 2px;
  }
  
  .stat-label {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  /* ========== HERO FEED ========== */
  .hero-feed {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
  }
  
  body.loaded .hero-feed {
    animation: feedReveal 1.2s var(--ease-out) 0.6s forwards;
  }
  
  @keyframes feedReveal { to { opacity: 1; transform: translateX(0); } }
  
  .feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .feed-live { display: flex; align-items: center; gap: 12px; }
  
  .feed-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .feed-live-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
  }
  
  .feed-watching {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-light);
  }
  
  .feed-watching strong { color: white; font-weight: 700; }
  
  .feed-link {
    font-size: 11px;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
    display: flex; align-items: center; gap: 8px;
  }
  
  .feed-link:hover { color: var(--red); }
  .feed-link::after { content: '→'; transition: transform 0.3s; }
  .feed-link:hover::after { transform: translateX(4px); }
  
  .feed-stack { position: relative; height: 540px; }
  
  .feed-card {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: none;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
    will-change: transform;
  }
  
  .feed-card.fc-front {
    z-index: 3;
    transform: translate(0, 0) scale(1);
    opacity: 1;
    background: 
      radial-gradient(ellipse at 30% 40%, rgba(227, 30, 36, 0.6), transparent 60%),
      radial-gradient(ellipse at 70% 70%, rgba(255, 107, 0, 0.3), transparent 60%),
      linear-gradient(135deg, #1f0a0a 0%, #0a0505 100%);
  }
  
  .feed-card.fc-mid {
    z-index: 2;
    transform: translate(20px, 20px) scale(0.96);
    opacity: 0.5;
    background: 
      radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.5), transparent 60%),
      linear-gradient(135deg, #0a0f1f 0%, #050a14 100%);
  }
  
  .feed-card.fc-back {
    z-index: 1;
    transform: translate(40px, 40px) scale(0.92);
    opacity: 0.25;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(176, 38, 255, 0.5), transparent 60%),
      linear-gradient(135deg, #0f0a1f 0%, #0a0514 100%);
  }
  
  .feed-card-overlay {
    position: absolute; inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85) 100%);
  }
  
  .feed-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .feed-platform {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
  }
  
  .feed-play {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s var(--ease);
  }
  
  .feed-card.fc-front:hover .feed-play {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--red-glow);
  }
  
  .feed-play::before {
    content: '';
    width: 0; height: 0;
    border-left: 14px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
  }
  
  .feed-card-bottom { color: white; }
  
  .feed-views-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .feed-views-num {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    letter-spacing: -1px;
  }
  
  .feed-views-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .feed-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .feed-card-meta {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-mono);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    z-index: 5;
  }
  
  body.loaded .scroll-indicator {
    animation: fadeIn 0.8s var(--ease) 2s forwards;
  }
  
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  
  @keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); }
  }
  
  /* ========== MARQUEE ========== */
  .marquee-section {
    background: var(--red);
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--red-deep);
    border-bottom: 1px solid var(--red-deep);
    position: relative;
    z-index: 10;
  }
  
  .marquee-track {
    display: flex;
    gap: 80px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  
  .marquee-item {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 80px;
    text-transform: uppercase;
    color: var(--black);
  }
  
  .marquee-item::after {
    content: '✦';
    color: var(--white);
    font-size: 20px;
  }
  
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  /* ========== SHARED SECTION STYLES ========== */
  .section {
    padding: 140px 50px;
    position: relative;
    overflow: hidden;
  }
  
  .section-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  
  .section-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .section-eyebrow {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .section-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--red);
  }
  
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    max-width: 800px;
  }
  
  .section-title .red { color: var(--red); }
  .section-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
  .section-title .italic { font-style: italic; color: var(--off-white); }
  
  .section-desc {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
  }
  
  /* ========== CATEGORIES GRID ========== */
  .categories-section {
    background: var(--black);
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 700px;
  }
  
  .cat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: none;
    transition: all 0.6s var(--ease);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .cat-card:nth-child(1) {
    grid-row: span 2;
  }
  
  .cat-card:hover {
    border-color: var(--red);
    transform: scale(1.005);
  }
  
  .cat-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s var(--ease);
  }
  
  .cat-card:hover .cat-bg { transform: scale(1.08); }
  
  .cat-1 .cat-bg {
    background: 
      radial-gradient(ellipse at 30% 60%, rgba(227,30,36,0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(255,107,0,0.2) 0%, transparent 60%),
      linear-gradient(180deg, #1a0a0a 0%, #0a0505 100%);
  }
  
  .cat-2 .cat-bg {
    background: 
      radial-gradient(circle at 70% 30%, rgba(0,102,255,0.3) 0%, transparent 60%),
      linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
  }
  
  .cat-3 .cat-bg {
    background: 
      radial-gradient(circle at 30% 50%, rgba(255,107,0,0.3) 0%, transparent 60%),
      linear-gradient(180deg, #1a0a00 0%, #100500 100%);
  }
  
  .cat-4 .cat-bg {
    background: 
      radial-gradient(circle at 50% 50%, rgba(176,38,255,0.25) 0%, transparent 60%),
      linear-gradient(180deg, #0a001a 0%, #050010 100%);
  }
  
  .cat-5 .cat-bg {
    background: 
      radial-gradient(circle at 60% 40%, rgba(0,212,255,0.25) 0%, transparent 60%),
      linear-gradient(180deg, #001a1a 0%, #001010 100%);
  }
  
  .cat-overlay {
    position: absolute; inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
  }
  
  .cat-card:nth-child(1) .cat-overlay { padding: 50px; }
  
  .cat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .cat-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    font-weight: 600;
  }
  
  .cat-icon {
    font-size: 32px;
    opacity: 0.7;
  }
  
  .cat-info {}
  
  .cat-name-en {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }
  
  .cat-card:nth-child(1) .cat-name-en {
    font-size: 64px;
  }
  
  .cat-name-ar {
    font-family: var(--font-arabic);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-light);
    direction: rtl;
    margin-bottom: 16px;
  }
  
  .cat-card:nth-child(1) .cat-name-ar {
    font-size: 22px;
    margin-bottom: 24px;
  }
  
  .cat-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cat-count {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .cat-arrow {
    color: var(--red);
    font-size: 20px;
    transition: transform 0.3s var(--ease);
  }
  
  .cat-card:hover .cat-arrow { transform: translateX(8px); }

  /* ========== BRANDS WE CARRY ========== */
  .brands-section {
    background:
      radial-gradient(ellipse at 20% 0%, rgba(227,30,36,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 100%, rgba(255,107,0,0.04) 0%, transparent 60%),
      var(--black);
    position: relative;
  }
  .brands-stack {
    display: grid;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .brand-group {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 36px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
  }
  .brand-group::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(227,30,36,0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  .brand-group:hover {
    border-color: rgba(227,30,36,0.35);
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(227,30,36,0.04) 0%, rgba(255,255,255,0.01) 100%);
  }
  .brand-group:hover::before { opacity: 1; }
  .brand-group-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .brand-group-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227,30,36,0.08);
    border: 1px solid rgba(227,30,36,0.2);
    border-radius: 14px;
    flex-shrink: 0;
  }
  .brand-group-titles { flex: 1; }
  .brand-group-en {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.5px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
  }
  .brand-group-ar {
    font-family: var(--font-arabic);
    font-size: 16px;
    color: var(--gray-light);
    margin-top: 6px;
    direction: rtl;
  }
  .brand-group-count {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 999px;
    background: rgba(227,30,36,0.06);
    white-space: nowrap;
  }
  .brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand-chip {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--off-white);
    padding: 11px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    cursor: default;
    text-transform: uppercase;
  }
  .brand-chip:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227,30,36,0.35);
  }
  .brands-footer {
    text-align: center;
    margin-top: 50px;
  }
  .brands-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 10px 30px rgba(37,211,102,0.25);
  }
  .brands-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.4);
  }
  .brands-cta .arrow-icon { transition: transform 0.3s; }
  .brands-cta:hover .arrow-icon { transform: translateX(6px); }

  @media (max-width: 700px) {
    .brand-group { padding: 24px 20px; }
    .brand-group-head { flex-wrap: wrap; gap: 14px; }
    .brand-group-en { font-size: 22px; }
    .brand-chip { font-size: 11px; padding: 9px 14px; }
    .brands-cta { font-size: 12px; padding: 16px 24px; }
  }

  /* ========== 3D CAR SECTION ========== */
  .car-section {
    background: var(--carbon);
    position: relative;
  }
  
  .car-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(227,30,36,0.06), transparent 60%);
    pointer-events: none;
  }
  
  .car-instruction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-weight: 500;
  }
  
  .car-instruction .pulse-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--red);
  }
  
  .car-experience {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .car-stage {
    position: relative;
    aspect-ratio: 4/3;
    min-height: 600px;
    background: 
      radial-gradient(ellipse at 50% 60%, rgba(227,30,36,0.12), transparent 70%),
      radial-gradient(ellipse at 30% 30%, rgba(0,102,255,0.08), transparent 70%),
      linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  .car-stage::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }
  
  .car-svg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 90%;
    max-width: 50%;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  }
  
  .car-body { fill: #1a1a1a; stroke: rgba(255,255,255,0.15); stroke-width: 1.5; }
  .car-window { fill: rgba(227,30,36,0.08); stroke: rgba(227,30,36,0.3); stroke-width: 1; }
  .car-wheel { fill: #0a0a0a; stroke: rgba(255,255,255,0.2); stroke-width: 1.5; }
  .car-wheel-inner { fill: #2a2a2a; }
  .car-detail { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 1; }
  
  .hotspot {
    cursor: none;
    transition: all 0.3s var(--ease);
  }
  
  .hotspot-circle {
    fill: var(--red);
    opacity: 0.9;
    transition: all 0.3s var(--ease);
  }
  
  .hotspot-pulse {
    fill: var(--red);
    opacity: 0;
    transform-origin: center;
    animation: hotspotPulse 2s ease-in-out infinite;
  }
  
  @keyframes hotspotPulse {
    0% { opacity: 0.6; transform: scale(1); transform-box: fill-box; transform-origin: center; }
    100% { opacity: 0; transform: scale(3); transform-box: fill-box; transform-origin: center; }
  }
  
  .hotspot:hover .hotspot-circle {
    fill: white;
    transform: scale(1.5);
    transform-box: fill-box;
    transform-origin: center;
  }
  
  .hotspot.active .hotspot-circle {
    fill: white;
  }
  
  .hotspot-label {
    position: absolute;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--red);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity 0.3s var(--ease);
    z-index: 10;
  }
  
  .hotspot-label.visible { opacity: 1; }
  
  .hotspot-label::before {
    content: '';
    position: absolute;
    bottom: -5px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px; height: 8px;
    background: rgba(0,0,0,0.9);
    border-right: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
  }
  
  .car-spotlight {
    position: absolute;
    bottom: 10%; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 30px;
    background: radial-gradient(ellipse, rgba(227,30,36,0.3), transparent 70%);
    filter: blur(20px);
    z-index: 1;
  }
  
  .car-info { position: relative; }
  
  .car-info-step {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 700;
    transition: all 0.3s var(--ease);
  }
  
  .car-info-title {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    min-height: 60px;
    transition: all 0.4s var(--ease);
  }
  
  .car-info-title .red { color: var(--red); }
  
  .car-info-arabic {
    font-family: var(--font-arabic);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-light);
    direction: rtl;
    text-align: left;
    margin-bottom: 20px;
    min-height: 24px;
    transition: all 0.3s var(--ease);
  }
  
  .car-info-desc {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
  }
  
  .car-info-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    min-height: 200px;
  }
  
  .car-product-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: none;
    transition: all 0.3s var(--ease);
  }
  
  .car-product-card:hover {
    border-color: var(--red);
    background: rgba(227,30,36,0.05);
    transform: translateX(8px);
  }
  
  .car-product-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  
  .car-product-info { flex: 1; min-width: 0; }
  
  .car-product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
  }
  
  .car-product-meta {
    font-size: 11px;
    color: var(--gray);
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .car-product-price {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
  }
  
  .car-product-arrow {
    color: var(--gray);
    transition: all 0.3s var(--ease);
  }
  
  .car-product-card:hover .car-product-arrow {
    color: var(--red);
    transform: translateX(4px);
  }
  
  .car-info-default {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .car-info-default-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
  }
  
  /* ========== ACTIVITY SECTION ========== */
  .activity-section {
    background: var(--black);
    position: relative;
  }
  
  .activity-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
  }
  
  .activity-stats {
    position: sticky;
    top: 120px;
  }
  
  .activity-big-num {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 160px);
    line-height: 0.85;
    color: var(--red);
    letter-spacing: -3px;
    margin-bottom: 16px;
    text-shadow: 0 0 60px rgba(227,30,36,0.3);
  }
  
  .activity-big-label {
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .activity-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .activity-mini-stat { padding: 20px 0; }
  
  .activity-mini-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .activity-mini-num .accent { color: var(--red); }
  
  .activity-mini-label {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .activity-feed {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 600px;
  }
  
  .activity-feed::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    animation: feedScan 4s ease-in-out infinite;
  }
  
  @keyframes feedScan {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  
  .activity-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .activity-feed-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .activity-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(227,30,36,0.15);
    border: 1px solid var(--red);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
  }
  
  .activity-live-indicator::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
  }
  
  .activity-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
  }
  
  .activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    transition: all 0.4s var(--ease);
  }
  
  .activity-item.new {
    animation: itemSlide 0.6s var(--ease-out);
    background: rgba(227,30,36,0.08);
    border-color: rgba(227,30,36,0.3);
  }
  
  @keyframes itemSlide {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .activity-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1);
  }
  
  .activity-content { flex: 1; min-width: 0; }
  
  .activity-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
    line-height: 1.4;
  }
  
  .activity-text strong { color: white; font-weight: 700; }
  .activity-text .product { color: var(--red); font-weight: 700; }
  
  .activity-meta {
    font-size: 11px;
    color: var(--gray);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .activity-meta::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
  }
  
  .activity-badge {
    background: rgba(227,30,36,0.15);
    color: var(--red);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  
  /* ========== WORKSHOP SECTION ========== */
  .workshop-section {
    background: var(--carbon);
    position: relative;
    overflow: hidden;
  }
  
  .workshop-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(255,107,0,0.08), transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(227,30,36,0.08), transparent 60%);
    pointer-events: none;
  }
  
  .workshop-section::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  
  .workshop-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .workshop-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(227,30,36,0.1);
    border: 1px solid var(--red);
    border-radius: 100px;
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .workshop-status::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--red);
  }
  
  .workshop-counter {
    position: relative;
    margin-bottom: 50px;
  }
  
  .workshop-label-small {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .workshop-counter-display {
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 240px);
    line-height: 0.85;
    color: white;
    letter-spacing: -5px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    transition: color 0.3s var(--ease);
  }
  
  .workshop-counter-display .hash {
    color: var(--red);
    margin-right: 0.05em;
  }
  
  .workshop-progress {
    max-width: 600px;
    margin: 50px auto 0;
  }
  
  .workshop-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .workshop-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
  }
  
  .workshop-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-bright));
    border-radius: 3px;
    width: 65%;
    position: relative;
    transition: width 1s var(--ease-out);
    box-shadow: 0 0 20px var(--red-glow);
  }
  
  .workshop-progress-fill::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, white);
    opacity: 0.5;
    animation: progressShine 2s ease-in-out infinite;
  }
  
  @keyframes progressShine {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
  }
  
  .workshop-progress-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
  }
  
  .workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .workshop-stat { text-align: center; }
  
  .workshop-stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  
  .workshop-stat-num .accent { color: var(--red); }
  
  .workshop-stat-label {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .workshop-cta { margin-top: 60px; }
  
  
  /* ========== BEFORE / AFTER GALLERY ========== */
  .ba-section {
    background: var(--black);
    position: relative;
  }
  
  .ba-section::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 70% 30%, rgba(227,30,36,0.06), transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(255,107,0,0.04), transparent 60%);
    pointer-events: none;
  }
  
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .ba-card {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s var(--ease);
    user-select: none;
    -webkit-user-select: none;
  }
  
  .ba-card:hover {
    border-color: rgba(227,30,36,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  
  .ba-before, .ba-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s var(--ease);
  }
  
  /* BEFORE — slightly muted to differentiate from AFTER */
  .ba-before {
    background-color: #1a1a1a;
    filter: brightness(0.85) saturate(0.85);
  }
  
  /* AFTER — vibrant, glowing */
  .ba-after {
    clip-path: inset(0 0 0 50%);
  }
  
  /* Each card has unique "before" and "after" visuals */
  
  .ba-card-1 .ba-before {
    background-image: url(../images/v6-img-01-0d9e6db316.jpg);
    background-size: cover;
    background-position: center;
  }
  .ba-card-1 .ba-after {
    clip-path: inset(0 0 0 50%);
    background-image: url(../images/v6-img-02-2eefcf5798.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .ba-card-2 .ba-before {
    background-image: url(../images/v6-img-03-c1f10b901c.jpg);
    background-size: cover;
    background-position: center;
  }
  .ba-card-2 .ba-after {
    clip-path: inset(0 0 0 50%);
    background-image: url(../images/v6-img-04-996851fdac.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .ba-card-3 .ba-before {
    background-image: url(../images/v6-img-05-904915ed07.jpg);
    background-size: cover;
    background-position: center;
  }
  .ba-card-3 .ba-after {
    clip-path: inset(0 0 0 50%);
    background-image: url(../images/v6-img-06-d5f6727bae.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .ba-card-4 .ba-before {
    background-image: url(../images/v6-img-07-7256087445.jpg);
    background-size: cover;
    background-position: center;
  }
  .ba-card-4 .ba-after {
    clip-path: inset(0 0 0 50%);
    background-image: url(../images/v6-img-08-c468892988.jpg);
    background-size: cover;
    background-position: center;
  }
  
  /* Grid pattern overlay for visual interest */
  .ba-before::after, .ba-after::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  }
  
  /* Divider line */
  .ba-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    pointer-events: none;
    transition: left 0.3s var(--ease);
  }
  
  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(227,30,36,0.6), 0 4px 20px rgba(0,0,0,0.5);
    cursor: ew-resize;
    transition: left 0.3s var(--ease), transform 0.2s var(--ease);
    border: 3px solid white;
  }
  
  .ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .ba-handle::before {
    content: '⇆';
    color: white;
    font-size: 20px;
    font-weight: 700;
  }
  
  /* Labels */
  .ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
  }
  
  .ba-label.before {
    left: 20px;
    color: var(--gray-light);
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .ba-label.after {
    right: 20px;
    background: var(--red);
    color: white;
  }
  
  /* Bottom info */
  .ba-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
  }
  
  .ba-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
  }
  
  .ba-info-text {
    flex: 1;
  }
  
  .ba-info-type {
    display: inline-block;
    font-size: 9px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    padding: 3px 8px;
    background: rgba(227,30,36,0.15);
    border-radius: 4px;
  }
  
  .ba-info-title {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: white;
    margin-bottom: 4px;
  }
  
  .ba-info-meta {
    font-size: 11px;
    color: var(--gray-light);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
  }
  
  .ba-info-duration {
    text-align: right;
    flex-shrink: 0;
  }
  
  .ba-info-duration-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--red);
    line-height: 1;
  }
  
  .ba-info-duration-label {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }
  
  /* Hint label */
  .ba-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(60px);
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--red);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
    z-index: 4;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s var(--ease);
    animation: hintPulse 2s ease-in-out infinite;
  }
  
  @keyframes hintPulse {
    0%, 100% { transform: translate(-50%, -50%) translateY(60px); opacity: 1; }
    50% { transform: translate(-50%, -50%) translateY(65px); opacity: 0.7; }
  }
  
  .ba-card.touched .ba-hint {
    opacity: 0;
  }
  
  @media (max-width: 1024px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-info-title { font-size: 18px; }
  }

  
  /* ========== FOUNDER STORY ========== */
  .founder-section {
    background: var(--carbon);
    position: relative;
    overflow: hidden;
  }
  
  .founder-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(227,30,36,0.08), transparent 60%),
      radial-gradient(ellipse at 70% 70%, rgba(255,107,0,0.05), transparent 60%);
    pointer-events: none;
  }
  
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
  }
  
  /* LEFT: Portrait */
  .founder-portrait-wrap {
    position: relative;
  }
  
  .founder-portrait {
    aspect-ratio: 4/5;
    background: 
      radial-gradient(ellipse at 50% 30%, rgba(227,30,36,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 30% 70%, rgba(255,107,0,0.2) 0%, transparent 60%),
      linear-gradient(180deg, #1f0a0a 0%, #0a0505 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .founder-portrait::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  }
  
  .founder-initials {
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(255,255,255,0.08);
    letter-spacing: -8px;
    line-height: 1;
    z-index: 1;
  }
  .founder-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .founder-fallback.show-fallback { display: flex; }

  .founder-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    filter: saturate(0.9) contrast(1.05);
  }
  
  .founder-photo-overlay {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%),
      radial-gradient(ellipse at 50% 30%, rgba(227,30,36,0.15) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
  }
  
  .founder-name-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 24px;
    border-radius: 14px;
    z-index: 3;
  }
  
  .founder-name-badge-label {
    font-size: 10px;
    color: var(--red);
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  
  .founder-name-badge-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.5px;
    line-height: 1;
    color: white;
  }
  
  .founder-floating-stat {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--red);
    border-radius: 14px;
    padding: 16px 20px;
    z-index: 3;
    text-align: center;
  }
  
  .founder-floating-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
    color: white;
  }
  
  .founder-floating-stat-label {
    font-size: 9px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
  }
  
  /* RIGHT: Story */
  .founder-content {
    position: relative;
  }
  
  .founder-quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: var(--gray-light);
  }
  
  .founder-quote .accent {
    color: var(--red);
  }
  
  .founder-quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--red);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.6;
  }
  
  .founder-arabic {
    font-family: var(--font-arabic);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-light);
    direction: rtl;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .founder-arabic .accent {
    color: var(--red);
  }
  
  .founder-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
  }
  
  .founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .founder-stat {
    text-align: center;
  }
  
  .founder-stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }
  
  .founder-stat-num .plus { color: var(--red); }
  
  .founder-stat-label {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
  

  /* ========== AMBIENT LIGHTING GALLERY ========== */
  .ambient-section {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(176,38,255,0.06), transparent 50%),
      radial-gradient(ellipse at 100% 100%, rgba(0,212,255,0.06), transparent 50%),
      var(--black);
    position: relative;
  }
  
  .ambient-feature-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 0 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  
  .ambient-feature {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  
  .ambient-feature:last-child {
    border-right: none;
  }
  
  .ambient-feature-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 800;
  }
  
  .ambient-feature-label {
    font-size: 11px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
  }
  
  .ambient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .ambient-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    cursor: none;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s var(--ease);
    background: var(--carbon);
  }
  
  .ambient-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }
  
  .ambient-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 2;
  }
  
  .ambient-card-info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .ambient-card-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: ambient-pulse 2s ease-in-out infinite;
  }
  
  @keyframes ambient-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
  }
  
  .ambient-card-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
  }
  
  .ambient-card-name-ar {
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    direction: rtl;
  }
  
  .ambient-card:hover {
    transform: translateY(-6px);
    border-color: var(--ambient-glow, var(--red));
    box-shadow: 0 20px 60px rgba(0,0,0,0.5),
                0 0 30px var(--ambient-glow, var(--red));
  }
  
  .ambient-card:hover img {
    transform: scale(1.05);
  }
  
  .ambient-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(227,30,36,0.08), rgba(0,0,0,0.4));
    border: 1px solid rgba(227,30,36,0.2);
    border-radius: 20px;
  }
  
  .ambient-cta p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
  }
  
  .ambient-cta p strong {
    color: var(--white);
    font-weight: 700;
  }
  
  .ambient-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: none;
    transition: all 0.3s var(--ease);
  }
  
  .ambient-cta-btn:hover {
    background: var(--red-deep, #B0181D);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(227,30,36,0.4);
  }
  
  .ambient-cta-btn .arrow {
    transition: transform 0.3s var(--ease);
  }
  
  .ambient-cta-btn:hover .arrow {
    transform: translateX(6px);
  }
  
  @media (max-width: 900px) {
    .ambient-grid { grid-template-columns: repeat(2, 1fr); }
    .ambient-feature-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .ambient-feature { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .ambient-feature:nth-child(2) { border-right: none; }
  }
  
  @media (max-width: 600px) {
    .ambient-grid { grid-template-columns: 1fr; }
    .ambient-feature-bar { grid-template-columns: 1fr; }
    .ambient-feature { border-right: none; }
  }

  /* TIMELINE */
  .timeline-header {
    text-align: center;
    margin-bottom: 60px;
  }

  /* ARABIC STORY BLOCK */
  .story-arabic-block {
    margin: 100px 0 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(227,30,36,0.04), rgba(0,0,0,0.5));
    border: 1px solid rgba(227,30,36,0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }
  
  .story-arabic-block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227,30,36,0.15), transparent 70%);
    pointer-events: none;
  }
  
  .story-arabic-header {
    text-align: right;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  
  .story-arabic-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    color: var(--white);
    margin-top: 12px;
    font-weight: 800;
  }
  
  .story-arabic-title .red { color: var(--red); }
  
  .story-arabic-content {
    direction: rtl;
    text-align: right;
    font-size: 17px;
    line-height: 1.95;
    color: var(--gray-light);
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
    position: relative;
    z-index: 1;
  }
  
  .story-arabic-content p {
    margin-bottom: 22px;
  }
  
  .story-arabic-content p:last-child {
    margin-bottom: 0;
  }
  
  .story-arabic-content strong {
    color: var(--red);
    font-weight: 800;
  }
  
  .story-arabic-closing {
    border-top: 1px solid rgba(227,30,36,0.2);
    padding-top: 24px;
    margin-top: 30px !important;
    color: var(--white) !important;
    font-size: 19px !important;
    font-weight: 500;
  }
  
  /* TIMELINE ARABIC SUB-LABEL */
  .timeline-event-ar {
    direction: rtl;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
    margin-top: 8px;
    line-height: 1.5;
    opacity: 0.85;
  }
  
  /* SIX-EVENT TIMELINE VARIANT */
  .timeline-six .timeline-events {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
  }
  
  .timeline-six .timeline-event {
    display: grid !important;
    grid-template-rows: 1fr auto 1fr;
    align-items: stretch;
  }
  
  .timeline-six .timeline-event-top {
    margin: 0 !important;
    padding-bottom: 24px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }
  
  .timeline-six .timeline-event-bottom {
    margin: 0 !important;
    padding-top: 24px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  
  .timeline-six .timeline-event-bottom:empty,
  .timeline-six .timeline-event-top:empty {
    min-height: 140px;
    padding: 0;
  }
  
  .timeline-six .timeline-event:nth-child(odd) .timeline-event-bottom,
  .timeline-six .timeline-event:nth-child(odd) .timeline-event-top {
    order: unset !important;
  }
  
  .timeline-six .timeline-event-year {
    font-size: 26px;
    line-height: 1;
  }
  
  .timeline-six .timeline-event-title {
    font-size: 13px;
    margin-top: 4px;
  }
  
  .timeline-six .timeline-event-desc {
    font-size: 11px;
    line-height: 1.5;
  }
  
  @media (max-width: 1100px) {
    .story-arabic-block {
      padding: 40px 30px;
      margin: 60px 0 50px;
    }
    .story-arabic-content {
      font-size: 15px;
      line-height: 1.85;
    }
    .timeline-six .timeline-events {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
  }
  
  @media (max-width: 600px) {
    .story-arabic-block {
      padding: 30px 20px;
    }
    .story-arabic-content {
      font-size: 14px;
    }
    .timeline-six .timeline-events {
      grid-template-columns: 1fr;
    }
  }
  
  .timeline-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  
  .timeline-title .red { color: var(--red); }
  
  .timeline-sub {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255,255,255,0.1) 5%, 
      rgba(255,255,255,0.1) 95%, 
      transparent 100%);
    z-index: 1;
  }
  
  .timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
    width: 0%;
    transition: width 1.5s var(--ease-out);
    z-index: 2;
  }
  
  body.loaded .timeline-progress {
    width: 100%;
  }
  
  .timeline-events {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 3;
    gap: 16px;
  }
  
  .timeline-event {
    position: relative;
    text-align: center;
    cursor: none;
    transition: transform 0.3s var(--ease);
  }
  
  .timeline-event:hover {
    transform: translateY(-4px);
  }
  
  .timeline-event-top {
    margin-bottom: 30px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  
  .timeline-event:nth-child(odd) .timeline-event-bottom {
    order: -1;
    margin-top: 30px;
    margin-bottom: 0;
  }
  
  .timeline-event:nth-child(odd) .timeline-event-top {
    margin-bottom: 0;
    margin-top: 30px;
    order: 1;
  }
  
  .timeline-event:nth-child(odd) {
    display: flex;
    flex-direction: column;
  }
  
  .timeline-event:nth-child(even) {
    display: flex;
    flex-direction: column;
  }
  
  body.loaded .timeline-event-top,
  body.loaded .timeline-event-bottom {
    opacity: 1;
    transform: translateY(0);
  }
  
  body.loaded .timeline-event:nth-child(1) .timeline-event-top,
  body.loaded .timeline-event:nth-child(1) .timeline-event-bottom { transition-delay: 0.5s; }
  body.loaded .timeline-event:nth-child(2) .timeline-event-top,
  body.loaded .timeline-event:nth-child(2) .timeline-event-bottom { transition-delay: 0.7s; }
  body.loaded .timeline-event:nth-child(3) .timeline-event-top,
  body.loaded .timeline-event:nth-child(3) .timeline-event-bottom { transition-delay: 0.9s; }
  body.loaded .timeline-event:nth-child(4) .timeline-event-top,
  body.loaded .timeline-event:nth-child(4) .timeline-event-bottom { transition-delay: 1.1s; }
  body.loaded .timeline-event:nth-child(5) .timeline-event-top,
  body.loaded .timeline-event:nth-child(5) .timeline-event-bottom { transition-delay: 1.3s; }
  body.loaded .timeline-event:nth-child(6) .timeline-event-top,
  body.loaded .timeline-event:nth-child(6) .timeline-event-bottom { transition-delay: 1.5s; }
  
  .timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--carbon);
    border: 2px solid var(--red);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    transition: all 0.3s var(--ease);
  }
  
  .timeline-event:hover .timeline-dot {
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
    transform: scale(1.2);
  }
  
  .timeline-event-year {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  
  .timeline-event-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: white;
    line-height: 1.1;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .timeline-event-desc {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.4;
    max-width: 160px;
    margin: 0 auto;
  }
  
  .timeline-event-bottom {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  
  @media (max-width: 1024px) {
    .founder-grid { grid-template-columns: 1fr; gap: 50px; }
    .founder-portrait { max-width: 400px; margin: 0 auto; }
    .timeline-events { grid-template-columns: 1fr; gap: 30px; }
    .timeline-line, .timeline-progress { display: none; }
    .timeline-event {
      display: grid !important;
      grid-template-columns: 80px 1fr;
      gap: 20px;
      text-align: left !important;
      align-items: center;
      padding: 20px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 14px;
    }
    .timeline-event-top, .timeline-event-bottom {
      min-height: auto;
      margin: 0 !important;
      order: unset !important;
    }
    .timeline-event-top { grid-column: 1; grid-row: 1; }
    .timeline-event-bottom { grid-column: 2; grid-row: 1; }
    .timeline-dot { display: none; }
    .timeline-event-year { font-size: 32px; }
    .timeline-event-desc { max-width: none; }
  }

  
  /* ========== TESTIMONIALS ========== */
  .testimonials-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 80% 50%, rgba(227,30,36,0.08), transparent 60%);
    pointer-events: none;
  }
  
  /* Rating overview */
  .rating-overview {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
  }
  
  .rating-big {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .rating-big::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(227,30,36,0.1), transparent 70%);
    pointer-events: none;
  }
  
  .rating-big-stars {
    color: var(--red);
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(227,30,36,0.5);
  }
  
  .rating-big-num {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.9;
    color: white;
    letter-spacing: -4px;
    margin-bottom: 12px;
  }
  
  .rating-big-num .out-of {
    color: var(--gray);
    font-size: 0.4em;
  }
  
  .rating-big-label {
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .rating-big-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(227,30,36,0.1);
    border: 1px solid var(--red);
    border-radius: 100px;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .rating-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .rating-bar-row {
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    align-items: center;
    gap: 16px;
    font-size: 12px;
  }
  
  .rating-bar-label {
    color: white;
    font-family: var(--font-mono);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .rating-bar-label::after {
    content: '★';
    color: var(--red);
  }
  
  .rating-bar-track {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  
  .rating-bar-fill {
    height: 100%;
    background: var(--red);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s var(--ease-out);
    box-shadow: 0 0 12px rgba(227,30,36,0.4);
  }
  
  body.loaded .rating-bar-fill { width: var(--fill); }
  
  .rating-bar-count {
    color: var(--gray-light);
    font-family: var(--font-mono);
    font-weight: 600;
    text-align: right;
    font-size: 13px;
  }
  
  /* Reviews Grid */
  .reviews-marquee-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -50px;
    padding: 20px 0;
  }
  
  .reviews-marquee-wrap::before,
  .reviews-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
  }
  
  .reviews-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--black), transparent);
  }
  
  .reviews-marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--black), transparent);
  }
  
  .reviews-marquee {
    display: flex;
    gap: 20px;
    animation: reviewsScroll 60s linear infinite;
    width: max-content;
  }
  
  .reviews-marquee:hover {
    animation-play-state: paused;
  }
  
  .reviews-marquee.row-2 {
    animation: reviewsScrollReverse 70s linear infinite;
    margin-top: 20px;
  }
  
  @keyframes reviewsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  @keyframes reviewsScrollReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
  
  .review-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s var(--ease);
    cursor: none;
  }
  
  .review-card:hover {
    border-color: var(--red);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
  }
  
  .review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  
  .review-user {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    border: 2px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
  }
  
  .review-user-info {}
  
  .review-name {
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .review-name::after {
    content: '✓';
    background: var(--red);
    color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
  }
  
  .review-location {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
  }
  
  .review-stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  .review-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  .review-text.arabic {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
    font-weight: 500;
  }
  
  .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  .review-product {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 0.5px;
  }
  
  .review-product-icon {
    width: 28px;
    height: 28px;
    background: rgba(227,30,36,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .review-product strong {
    color: white;
    font-weight: 600;
  }
  
  .review-verified {
    font-size: 9px;
    color: var(--red);
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    background: rgba(227,30,36,0.1);
    border-radius: 4px;
  }
  
  /* Trust badges row */
  .trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .trust-badge {
    text-align: center;
  }
  
  .trust-badge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(227,30,36,0.1);
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s var(--ease);
  }
  
  .trust-badge:hover .trust-badge-icon {
    background: var(--red);
    transform: scale(1.05) rotate(-3deg);
  }
  
  .trust-badge-title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .trust-badge-desc {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
    line-height: 1.5;
  }
  
  @media (max-width: 1024px) {
    .rating-overview { grid-template-columns: 1fr; gap: 40px; }
    .rating-big-num { font-size: 88px; }
    .reviews-marquee-wrap { margin: 0 -30px; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 640px) {
    .reviews-marquee-wrap { margin: 0 -20px; }
    .review-card { width: 300px; padding: 22px; }
    .trust-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .rating-big { padding: 40px 24px; }
    .rating-big-num { font-size: 72px; }
  }

  
  /* ========== FAQ SECTION ========== */
  .faq-section {
    background: var(--carbon);
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 60%, rgba(227,30,36,0.06), transparent 60%),
      radial-gradient(ellipse at 80% 30%, rgba(255,107,0,0.04), transparent 60%);
    pointer-events: none;
  }
  
  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
  }
  
  /* LEFT: Categories */
  .faq-sidebar {
    position: sticky;
    top: 120px;
  }
  
  .faq-help-card {
    background: linear-gradient(135deg, rgba(227,30,36,0.15), rgba(227,30,36,0.05));
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  
  .faq-help-card::before {
    content: '?';
    position: absolute;
    top: -40px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(227,30,36,0.1);
    line-height: 1;
  }
  
  .faq-help-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(227,30,36,0.4);
  }
  
  .faq-help-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
  }
  
  .faq-help-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
  }
  
  .faq-help-actions {
    display: flex;
    gap: 10px;
    position: relative;
    flex-wrap: wrap;
  }
  
  .faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    cursor: none;
  }
  
  .faq-help-btn:hover {
    background: var(--black);
    color: white;
  }
  
  .faq-help-btn.wa {
    background: #25D366;
    color: white;
  }
  
  .faq-help-btn.wa:hover {
    background: white;
    color: #25D366;
  }
  
  /* Category tabs */
  .faq-categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .faq-cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    color: var(--gray-light);
    cursor: none;
    transition: all 0.3s var(--ease);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
  }
  
  .faq-cat-btn:hover {
    border-color: rgba(227,30,36,0.4);
    background: rgba(255,255,255,0.04);
    color: white;
  }
  
  .faq-cat-btn.active {
    background: rgba(227,30,36,0.1);
    border-color: var(--red);
    color: white;
  }
  
  .faq-cat-icon {
    margin-right: 10px;
    font-size: 16px;
  }
  
  .faq-cat-count {
    background: rgba(255,255,255,0.05);
    color: var(--gray);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
  }
  
  .faq-cat-btn.active .faq-cat-count {
    background: var(--red);
    color: white;
  }
  
  /* RIGHT: Questions */
  .faq-questions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
  }
  
  .faq-item:hover {
    border-color: rgba(227,30,36,0.3);
  }
  
  .faq-item.open {
    border-color: var(--red);
    background: rgba(227,30,36,0.04);
  }
  
  .faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    color: white;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s var(--ease);
  }
  
  .faq-question:hover {
    color: white;
  }
  
  .faq-question-text {
    flex: 1;
  }
  
  .faq-question-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
  }
  
  .faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    position: relative;
  }
  
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
  }
  
  .faq-icon::before {
    width: 14px;
    height: 2px;
  }
  
  .faq-icon::after {
    width: 2px;
    height: 14px;
  }
  
  .faq-item.open .faq-icon {
    background: var(--red);
    transform: rotate(90deg);
  }
  
  .faq-item.open .faq-icon::after {
    opacity: 0;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
  }
  
  .faq-item.open .faq-answer {
    max-height: 500px;
  }
  
  .faq-answer-inner {
    padding: 0 28px 28px;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.8;
  }
  
  .faq-answer-inner p { margin-bottom: 12px; }
  
  .faq-answer-inner ul {
    list-style: none;
    margin: 12px 0;
  }
  
  .faq-answer-inner li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 13px;
  }
  
  .faq-answer-inner li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
  }
  
  .faq-answer-inner strong {
    color: white;
    font-weight: 600;
  }
  
  .faq-answer-inner .arabic {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
    color: var(--gray-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
  }
  
  @media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-sidebar { position: static; }
    .faq-categories { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
    .faq-cat-btn { white-space: nowrap; flex-shrink: 0; }
  }
  
  @media (max-width: 640px) {
    .faq-question { padding: 20px 22px; font-size: 14px; }
    .faq-answer-inner { padding: 0 22px 24px; }
  }
  
  /* ========== CONTACT / CTA SECTION ========== */
  .contact-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 140px 50px;
  }
  
  .contact-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(227,30,36,0.12), transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(255,107,0,0.08), transparent 50%);
    pointer-events: none;
  }
  
  .contact-section::after {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  /* LEFT: CTA */
  .contact-cta {
    position: relative;
  }
  
  .contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(227,30,36,0.1);
    border: 1px solid var(--red);
    border-radius: 100px;
    font-size: 11px;
    color: var(--red);
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .contact-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--red);
  }
  
  .contact-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .contact-title .red { color: var(--red); }
  .contact-title .outline { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
  
  .contact-arabic {
    font-family: var(--font-arabic);
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-light);
    direction: rtl;
    text-align: left;
    margin-bottom: 24px;
  }
  
  .contact-arabic .accent { color: var(--red); }
  
  .contact-desc {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
  }
  
  .contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .contact-method {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    cursor: none;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
  }
  
  .contact-method::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227,30,36,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }
  
  .contact-method:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }
  
  .contact-method:hover::before { opacity: 1; }
  
  .contact-method.wa:hover {
    border-color: #25D366;
  }
  
  .contact-method.wa::before {
    background: linear-gradient(135deg, rgba(37,211,102,0.15), transparent);
  }
  
  .contact-method-icon {
    width: 44px; height: 44px;
    background: rgba(227,30,36,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.3s var(--ease);
  }
  
  .contact-method.wa .contact-method-icon {
    background: rgba(37,211,102,0.1);
  }
  
  .contact-method:hover .contact-method-icon {
    background: var(--red);
    transform: rotate(-5deg) scale(1.05);
  }
  
  .contact-method.wa:hover .contact-method-icon {
    background: #25D366;
  }
  
  .contact-method-label {
    font-size: 10px;
    color: var(--red);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    position: relative;
  }
  
  .contact-method.wa .contact-method-label { color: #25D366; }
  
  .contact-method-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    position: relative;
  }
  
  .contact-method-sub {
    font-size: 11px;
    color: var(--gray-light);
    font-family: var(--font-mono);
    position: relative;
  }
  
  .contact-hours {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
  }
  
  .contact-hours-icon {
    width: 40px; height: 40px;
    background: rgba(227,30,36,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .contact-hours-text {
    flex: 1;
  }
  
  .contact-hours-label {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .contact-hours-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
  }
  
  .contact-hours-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #25D366;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .contact-hours-status::before {
    content: '';
    width: 8px; height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #25D366;
  }
  
  /* RIGHT: Newsletter Form */
  .newsletter-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
  }
  
  .newsletter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 80% 20%, rgba(227,30,36,0.1), transparent 60%);
    pointer-events: none;
  }
  
  .newsletter-card::after {
    content: '✦';
    position: absolute;
    top: -30px;
    right: -10px;
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(227,30,36,0.04);
    line-height: 1;
    pointer-events: none;
  }
  
  .newsletter-header {
    margin-bottom: 30px;
    position: relative;
  }
  
  .newsletter-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--red);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .newsletter-title {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  .newsletter-title .red { color: var(--red); }
  
  .newsletter-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
  }
  
  .newsletter-form {
    position: relative;
    margin-bottom: 24px;
  }
  
  .newsletter-input {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 60px 18px 22px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s var(--ease);
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 0 4px rgba(227,30,36,0.1);
  }
  
  .newsletter-input::placeholder {
    color: var(--gray);
  }
  
  .newsletter-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    cursor: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
  }
  
  .newsletter-submit:hover {
    background: var(--red-deep);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(227,30,36,0.5);
  }
  
  .newsletter-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  
  .newsletter-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-light);
  }
  
  .newsletter-perk-check {
    width: 18px;
    height: 18px;
    background: rgba(227,30,36,0.15);
    border: 1px solid var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .newsletter-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
    font-family: var(--font-mono);
    position: relative;
  }
  
  .newsletter-avatars {
    display: flex;
  }
  
  .newsletter-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    border: 2px solid var(--carbon);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
  }
  
  .newsletter-avatar:first-child { margin-left: 0; }
  
  @media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-section { padding: 100px 30px; }
  }
  
  @media (max-width: 640px) {
    .contact-section { padding: 80px 20px; }
    .contact-methods { grid-template-columns: 1fr; }
    .newsletter-card { padding: 30px 24px; }
    .contact-hours { flex-wrap: wrap; }
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--black);
    padding: 100px 50px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(227,30,36,0.05), transparent 50%);
    pointer-events: none;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .footer-brand img {
    height: 56px;
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(227,30,36,0.3));
  }
  
  .footer-tagline {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .footer-tagline .red { color: var(--red); }
  
  .footer-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 360px;
  }
  
  .social-links {
    display: flex;
    gap: 10px;
  }
  
  .social-link {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
    cursor: none;
  }
  
  .social-link:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
  }
  
  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    cursor: none;
  }
  
  .footer-col a:hover {
    color: var(--red);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--gray);
  }
  
  .footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .footer-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.1);
  }
  
  .footer-estd {
    font-family: var(--font-mono);
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 700;
  }
  
  /* WhatsApp float */
  .wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s var(--ease);
  }
  
  .wa-float:hover {
    transform: scale(1.1) rotate(-5deg);
  }
  
  .wa-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.5;
    animation: waPulse 2s infinite;
  }
  
  @keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
  }
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    nav { padding: 20px 30px; }
    nav.scrolled { padding: 14px 30px; }
    .nav-links { display: none; }
    .hero { padding: 120px 30px 60px; }
    .hero-container { grid-template-columns: 1fr; gap: 50px; }
    .hero-feed { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
    .hero-headline { font-size: clamp(48px, 9vw, 80px); }
    .feed-stack { height: 480px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:not(:last-child)::after { display: none; }
    
    .section { padding: 100px 30px; }
    .categories-grid { 
      grid-template-columns: repeat(2, 1fr); 
      grid-template-rows: auto;
      height: auto; 
    }
    .cat-card:nth-child(1) { grid-row: span 1; }
    .cat-card:nth-child(1) .cat-name-en { font-size: 36px; }
    .cat-card { aspect-ratio: 1; }
    .car-experience { grid-template-columns: 1fr; gap: 40px; }
    .activity-grid { grid-template-columns: 1fr; gap: 40px; }
    .activity-stats { position: static; }
    .workshop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .car-info-title { font-size: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  
  @media (max-width: 640px) {
    nav { padding: 16px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-headline { letter-spacing: -1px; }
    .nav-logo img { height: 36px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .feed-stack { height: 420px; }
    .marquee-item { font-size: 24px; gap: 50px; }
    .marquee-track { gap: 50px; }
    .lang-toggle { padding: 3px; }
    .lang-toggle button { padding: 6px 10px; font-size: 11px; }
    body { cursor: auto; }
    
    .section { padding: 80px 20px; }
    .section-header { margin-bottom: 50px; }
    .categories-grid { grid-template-columns: 1fr; }
    .car-info-title { font-size: 32px; min-height: auto; }
    .activity-feed { padding: 20px; }
    .workshop-counter-display { font-size: 80px; letter-spacing: -2px; }
    .workshop-stat-num { font-size: 36px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
    footer { padding: 60px 20px 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* ================================================ */
  /* =========== RTL / ARABIC LANGUAGE =============== */
  /* ================================================ */
  html[lang="ar"] body,
  html[lang="ar"] .nav-links a,
  html[lang="ar"] .section-desc,
  html[lang="ar"] .section-title,
  html[lang="ar"] .hero-headline,
  html[lang="ar"] .hero-tagline,
  html[lang="ar"] .footer-link,
  html[lang="ar"] .faq-question,
  html[lang="ar"] .faq-answer,
  html[lang="ar"] .review-text,
  html[lang="ar"] .timeline-event-title,
  html[lang="ar"] .timeline-event-text,
  html[lang="ar"] .cat-name-en,
  html[lang="ar"] .brand-group-en,
  html[lang="ar"] .contact-method-label,
  html[lang="ar"] .contact-method-sub,
  html[lang="ar"] .newsletter-title,
  html[lang="ar"] .newsletter-sub,
  html[lang="ar"] .footer-cat,
  html[lang="ar"] .founder-quote,
  html[lang="ar"] .founder-bio,
  html[lang="ar"] .founder-name-badge-name,
  html[lang="ar"] .founder-name-badge-label,
  html[lang="ar"] .ambient-headline,
  html[lang="ar"] .ambient-sub,
  html[lang="ar"] .stat-label,
  html[lang="ar"] .feed-card-title,
  html[lang="ar"] .activity-feed-title,
  html[lang="ar"] .workshop-stat-label,
  html[lang="ar"] .workshop-progress-text,
  html[lang="ar"] .preloader-sub {
    font-family: var(--font-arabic) !important;
  }

  /* Keep numbers/codes in monospace */
  html[lang="ar"] .stat-number,
  html[lang="ar"] .feed-views-num,
  html[lang="ar"] .workshop-counter-display,
  html[lang="ar"] .activity-big-num,
  html[lang="ar"] .activity-mini-num,
  html[lang="ar"] .workshop-stat-num,
  html[lang="ar"] .brand-chip,
  html[lang="ar"] .cat-number,
  html[lang="ar"] .feed-platform,
  html[lang="ar"] .feed-views-label,
  html[lang="ar"] .section-eyebrow {
    font-family: var(--font-mono) !important;
  }

  /* Display headlines look great with Anton even in AR mode, fallback to Cairo if mixed */
  html[lang="ar"] .section-title,
  html[lang="ar"] .hero-headline,
  html[lang="ar"] .brand-group-en,
  html[lang="ar"] .cat-name-en {
    font-family: var(--font-arabic) !important;
    font-weight: 900;
    letter-spacing: -0.5px;
  }

  /* RTL flips */
  html[dir="rtl"] body { direction: rtl; }
  html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
  html[dir="rtl"] .nav-actions { flex-direction: row-reverse; }
  html[dir="rtl"] .section-header { direction: rtl; text-align: right; }
  html[dir="rtl"] .section-desc { text-align: right; }
  html[dir="rtl"] .section-title { text-align: right; }
  html[dir="rtl"] .cat-info { text-align: right; }
  html[dir="rtl"] .cat-top { direction: ltr; }
  html[dir="rtl"] .cat-bottom { direction: ltr; }
  html[dir="rtl"] .brand-group-head { direction: rtl; }
  html[dir="rtl"] .brand-group-titles { text-align: right; }
  html[dir="rtl"] .brand-group-ar { direction: rtl; text-align: right; }
  html[dir="rtl"] .brand-chips { direction: ltr; justify-content: flex-end; }
  html[dir="rtl"] .footer-top { direction: rtl; }
  html[dir="rtl"] .footer-col { text-align: right; }
  html[dir="rtl"] .footer-bottom { direction: rtl; }
  html[dir="rtl"] .contact-method { direction: rtl; text-align: right; }
  html[dir="rtl"] .contact-method-icon { margin-right: 0; margin-left: 16px; }
  html[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }
  html[dir="rtl"] .faq-answer { text-align: right; }
  html[dir="rtl"] .feed-card-title { direction: rtl; text-align: right; }
  html[dir="rtl"] .hero-headline { text-align: right; }
  html[dir="rtl"] .hero-tagline { text-align: right; }
  html[dir="rtl"] .hero-stats { direction: rtl; }
  html[dir="rtl"] .activity-list { direction: rtl; text-align: right; }
  html[dir="rtl"] .review-text { direction: rtl; text-align: right; }
  html[dir="rtl"] .review-author { direction: rtl; text-align: right; }
  html[dir="rtl"] .arrow-icon { transform: scaleX(-1); }
  html[dir="rtl"] .cat-arrow { transform: scaleX(-1); }
  html[dir="rtl"] .cat-card:hover .cat-arrow { transform: scaleX(-1) translateX(8px); }
  html[dir="rtl"] .brands-cta .arrow-icon { transform: scaleX(-1); }
  html[dir="rtl"] .brands-cta:hover .arrow-icon { transform: scaleX(-1) translateX(6px); }
  html[dir="rtl"] .feed-link::after { content: '←'; }
  html[dir="rtl"] .wa-float { left: 24px; right: auto; }
  html[dir="rtl"] .scroll-indicator { direction: ltr; }
  html[dir="rtl"] nav { direction: rtl; }

  /* Lang toggle: always visible, refined look */
  .lang-toggle button { cursor: pointer; }
  .lang-toggle button:hover { color: var(--white); }

  /* Smooth lang transition */
  body { transition: opacity 0.25s ease; }
  body.lang-switching { opacity: 0.6; }



/* ============================================================
   Mobile nav (hamburger + slide-in drawer) — merged from v7 patch
   ============================================================ */

.mobile-nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:10px;
  width:44px; height:44px;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:1002;
  transition:border-color .2s, background .2s;
}
.mobile-nav-toggle:hover{ border-color:#E31E24; background:rgba(227,30,36,0.08); }
.mobile-nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:4px auto;
  border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.mobile-nav-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:1000;
}
.mobile-nav-backdrop.open{
  opacity:1;
  pointer-events:auto;
}

/* Show toggle below 1024px; reflow nav links into drawer */
@media (max-width:1024px){
  .mobile-nav-toggle{ display:inline-flex; }

  /* The primary nav links container. We don't know v6's exact class name
     so we target by data-attribute we'll add via JS, AND by common
     fallbacks below as a safety net. */
  [data-mobile-drawer]{
    position:fixed;
    top:0;
    right:0;             /* LTR default */
    width:min(82vw, 360px);
    height:100dvh;
    padding:88px 28px 28px 28px;
    background:linear-gradient(180deg,#0a0a0a 0%,#161616 100%);
    box-shadow:-12px 0 40px rgba(0,0,0,0.5);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.2,.7,.2,1);
    z-index:1001;
    display:flex !important;
    flex-direction:column;
    gap:18px;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  [data-mobile-drawer].open{
    transform:translateX(0);
  }
  [data-mobile-drawer] > *{
    width:100%;
  }
  [data-mobile-drawer] a{
    display:block;
    padding:12px 14px;
    font-size:16px;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }

  /* RTL mirror: drawer slides in from the LEFT */
  html[dir="rtl"] [data-mobile-drawer]{
    right:auto; left:0;
    transform:translateX(-100%);
    box-shadow:12px 0 40px rgba(0,0,0,0.5);
    padding:88px 28px 28px 28px;
  }
  html[dir="rtl"] [data-mobile-drawer].open{
    transform:translateX(0);
  }
}

@media (min-width:1025px){
  [data-mobile-drawer]{
    /* Reset: on desktop the same element should look normal again */
    position:static;
    width:auto; height:auto;
    padding:0; background:none;
    transform:none; box-shadow:none;
    overflow:visible;
  }
}

/* Prevent body scroll when drawer is open */
body.nav-locked{ overflow:hidden; }

/* Safety: any image without explicit dims gets max-width */
img{ max-width:100%; height:auto; }

/* ===================================================================
   CAR BUILDER 2.0 — MY BUILD (Phase 1)  [additive, brand-consistent]
   =================================================================== */
.build-toggle{position:fixed;left:24px;bottom:24px;z-index:9000;display:flex;align-items:center;gap:8px;background:#E31E24;color:#fff;border:none;border-radius:100px;padding:12px 18px;font-family:'Inter',sans-serif;font-weight:700;font-size:14px;cursor:pointer;box-shadow:0 8px 30px rgba(227,30,36,.45);transition:transform .2s ease,box-shadow .2s ease}
.build-toggle:hover{transform:translateY(-2px);box-shadow:0 12px 36px rgba(227,30,36,.6)}
.build-toggle.bump{animation:buildBump .4s ease}
@keyframes buildBump{0%,100%{transform:scale(1)}40%{transform:scale(1.12)}}
.build-toggle-icon{font-size:18px;line-height:1}
.build-toggle-count{display:flex;align-items:center;justify-content:center;min-width:22px;height:22px;padding:0 6px;background:#0A0A0A;color:#fff;border-radius:100px;font-size:12px;font-weight:800}

.build-panel{position:fixed;left:24px;bottom:84px;z-index:9001;width:360px;max-width:calc(100vw - 48px);max-height:70vh;display:flex;flex-direction:column;background:#141414;border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:0 24px 70px rgba(0,0,0,.6);transform:translateY(20px) scale(.98);opacity:0;pointer-events:none;transition:opacity .25s ease,transform .25s ease}
.build-panel.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.build-panel-header{display:flex;align-items:center;justify-content:space-between;padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.08)}
.build-panel-title{font-family:'Anton',sans-serif;font-size:20px;letter-spacing:.5px;color:#fff;margin:0;text-transform:uppercase}
.build-close{background:none;border:none;color:#888;font-size:18px;cursor:pointer;line-height:1}
.build-close:hover{color:#fff}
.build-items{overflow-y:auto;padding:6px 12px;flex:1}
.build-item{display:flex;align-items:center;gap:10px;padding:10px 6px;border-bottom:1px solid rgba(255,255,255,.05)}
.build-item-icon{font-size:22px;flex-shrink:0}
.build-item-info{flex:1;min-width:0}
.build-item-name{color:#fff;font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.build-item-price{color:#E31E24;font-size:12px;font-weight:700;font-family:'Space Grotesk',sans-serif}
.build-qty{display:flex;align-items:center;gap:8px;flex-shrink:0}
.build-qty-btn{width:24px;height:24px;border-radius:6px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.04);color:#fff;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1}
.build-qty-btn:hover{background:#E31E24;border-color:#E31E24}
.build-qty-num{min-width:18px;text-align:center;color:#fff;font-size:13px;font-weight:700}
.build-remove{background:none;border:none;color:#666;cursor:pointer;font-size:13px;flex-shrink:0}
.build-remove:hover{color:#E31E24}
.build-empty{padding:28px 22px;color:#888;font-size:13px;line-height:1.6;text-align:center}
.build-panel-footer{padding:16px 20px;border-top:1px solid rgba(255,255,255,.08)}
.build-total-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;color:#fff;font-size:14px;font-weight:600}
.build-total-amount{font-family:'Space Grotesk',sans-serif;font-weight:700;color:#fff}
.build-total-amount #buildTotal{color:#E31E24;font-size:18px}
.build-clear{width:100%;padding:11px;border-radius:10px;border:1px solid rgba(255,255,255,.15);background:transparent;color:#fff;font-family:'Inter',sans-serif;font-weight:600;font-size:13px;cursor:pointer;transition:border-color .15s ease,color .15s ease}
.build-clear:hover{border-color:#E31E24;color:#E31E24}

/* Add-to-Build button on existing product cards */
.add-to-build-btn{flex-shrink:0;display:inline-flex;align-items:center;gap:5px;background:#E31E24;color:#fff;border:none;border-radius:100px;padding:8px 14px;font-family:'Inter',sans-serif;font-weight:700;font-size:12px;cursor:pointer;transition:transform .15s ease,background .15s ease}
.add-to-build-btn:hover{transform:scale(1.05);background:#ff2a31}
.add-to-build-btn .atb-plus{font-size:15px;line-height:1}

/* RTL mirror (Arabic) */
[dir="rtl"] .build-toggle,[dir="rtl"] .build-panel{left:auto;right:24px}

/* Mobile */
@media (max-width:640px){
  .build-toggle{left:16px;bottom:16px;padding:10px 14px;font-size:13px}
  .build-panel{left:8px;right:8px;width:auto;max-width:none;bottom:74px;max-height:78vh}
  [dir="rtl"] .build-toggle{right:16px;left:auto}
  [dir="rtl"] .build-panel{right:8px;left:8px}
}

/* ===================================================================
   PHASES 2-6 ENHANCEMENTS  [additive, brand-consistent]
   =================================================================== */

/* Vehicle selector inside My Build (Phase 6) */
.build-vehicle{padding:12px 18px;border-bottom:1px solid rgba(255,255,255,.08)}
.bv-row{display:flex;gap:6px}
.bv-select{flex:1;min-width:0;background:#0A0A0A;color:#fff;border:1px solid rgba(255,255,255,.15);border-radius:8px;padding:8px 6px;font-family:'Inter',sans-serif;font-size:12px;cursor:pointer}
.bv-select:disabled{opacity:.45;cursor:not-allowed}
.bv-status{margin-top:8px;font-size:11px;color:#4ade80;min-height:14px;line-height:1.4}

/* Footer buttons (Phase 2/3) */
.build-request{width:100%;padding:12px;border-radius:10px;border:none;background:#E31E24;color:#fff;font-family:'Inter',sans-serif;font-weight:700;font-size:13px;cursor:pointer;margin-bottom:8px;transition:background .15s ease}
.build-request:hover{background:#ff2a31}
.build-actions-row{display:flex;gap:8px}
.build-secondary{flex:1;padding:10px;border-radius:10px;border:1px solid rgba(255,255,255,.15);background:transparent;color:#fff;font-family:'Inter',sans-serif;font-weight:600;font-size:12px;cursor:pointer;transition:border-color .15s ease,color .15s ease}
.build-secondary:hover{border-color:#E31E24;color:#E31E24}
.build-share-box{margin-top:12px;padding-top:12px;border-top:1px solid rgba(255,255,255,.08)}
.build-share-link{width:100%;background:#0A0A0A;color:#aaa;border:1px solid rgba(255,255,255,.15);border-radius:8px;padding:8px;font-size:11px;margin-bottom:8px;font-family:'Space Grotesk',monospace}
.build-share-actions{display:flex;gap:8px;margin-bottom:10px}
.build-qr{display:flex;justify-content:center}
.build-qr img,.build-qr canvas{background:#fff;padding:8px;border-radius:8px}

/* Transformation Packages (Phase 4) */
.packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px}
.pkg-card{background:#141414;border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:26px 22px;display:flex;flex-direction:column;transition:transform .2s ease,border-color .2s ease}
.pkg-card:hover{transform:translateY(-4px);border-color:rgba(227,30,36,.4)}
.pkg-card.featured{border:2px solid #E31E24;position:relative}
.pkg-card.featured::before{content:'MOST POPULAR';position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:#E31E24;color:#fff;font-size:10px;font-weight:800;letter-spacing:1px;padding:4px 12px;border-radius:100px}
.pkg-tier{font-family:'Space Grotesk',sans-serif;font-size:12px;letter-spacing:2px;color:#E31E24;font-weight:700;text-transform:uppercase}
.pkg-name{font-family:'Anton',sans-serif;font-size:24px;color:#fff;margin:6px 0 14px;text-transform:uppercase}
.pkg-price{font-family:'Space Grotesk',sans-serif;font-size:30px;font-weight:700;color:#fff}
.pkg-price span{font-size:14px;color:#888}
.pkg-install{font-size:12px;color:#888;margin:6px 0 16px}
.pkg-prods{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.pkg-prod{font-size:13px;color:#ddd;background:rgba(255,255,255,.04);border-radius:8px;padding:8px 10px}
.pkg-benefits{list-style:none;padding:0;margin:0 0 20px;flex:1}
.pkg-benefits li{font-size:12px;color:#aaa;padding:4px 0 4px 20px;position:relative}
.pkg-benefits li::before{content:'✓';position:absolute;left:0;color:#E31E24;font-weight:800}
.pkg-cta{width:100%;padding:12px;border-radius:10px;border:none;background:#E31E24;color:#fff;font-family:'Inter',sans-serif;font-weight:700;font-size:13px;cursor:pointer;transition:background .15s ease}
.pkg-cta:hover{background:#ff2a31}

/* Compare control on product cards (Phase 5) */
.car-product-card{position:relative}
.cmp-btn{position:absolute;top:8px;right:8px;width:26px;height:26px;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:rgba(10,10,10,.7);color:#aaa;font-size:13px;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2}
.cmp-btn:hover{border-color:#E31E24;color:#E31E24}
.car-product-card.cmp-on .cmp-btn{background:#E31E24;color:#fff;border-color:#E31E24}
[dir="rtl"] .cmp-btn{right:auto;left:8px}
/* Fits badge when a vehicle is selected (Phase 6) */
body.has-vehicle .car-product-card .car-product-name::after{content:' ✓';color:#4ade80;font-size:11px;font-weight:700}

.compare-bar{position:fixed;left:50%;transform:translateX(-50%);bottom:24px;z-index:9100;display:flex;align-items:center;gap:10px;background:#141414;border:1px solid rgba(255,255,255,.15);border-radius:100px;padding:10px 16px;font-family:'Inter',sans-serif;font-size:13px;color:#fff;box-shadow:0 12px 40px rgba(0,0,0,.5)}
.compare-count{background:#E31E24;border-radius:100px;padding:2px 8px;font-weight:800;font-size:12px}
.compare-open{background:#E31E24;color:#fff;border:none;border-radius:100px;padding:7px 14px;font-weight:700;font-size:12px;cursor:pointer}
.compare-clear{background:none;border:none;color:#888;font-size:14px;cursor:pointer}
.compare-clear:hover{color:#fff}
.compare-drawer{position:fixed;left:0;right:0;bottom:0;z-index:9101;transform:translateY(100%);transition:transform .3s ease;pointer-events:none}
.compare-drawer.open{transform:translateY(0);pointer-events:auto}
.compare-drawer-inner{max-width:680px;margin:0 auto;background:#141414;border:1px solid rgba(255,255,255,.1);border-radius:18px 18px 0 0;padding:18px 20px 28px}
.compare-drawer-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.cmp-table{width:100%;border-collapse:collapse}
.cmp-table th,.cmp-table td{padding:10px 8px;text-align:center;font-size:13px;color:#ddd;border-bottom:1px solid rgba(255,255,255,.06)}
.cmp-table th{color:#fff;font-weight:600}
.cmp-table td:first-child,.cmp-table th:first-child{text-align:left;color:#888;font-size:12px}
.cmp-ic{font-size:22px;display:block;margin-bottom:4px}
.cmp-price{color:#E31E24;font-weight:700;font-family:'Space Grotesk',monospace}
.cmp-add{background:#E31E24;color:#fff;border:none;border-radius:100px;padding:6px 12px;font-size:12px;font-weight:700;cursor:pointer}

/* Mobile */
@media (max-width:880px){.packages-grid{grid-template-columns:1fr;gap:16px}}
@media (max-width:640px){
  .compare-bar{bottom:74px;font-size:12px;padding:8px 12px}
  .compare-drawer-inner{padding:16px 12px 24px}
  .cmp-table th,.cmp-table td{padding:8px 4px;font-size:12px}
}

/* ===================================================================
   PHASES A-I ADVANCED ENHANCEMENTS  [additive, brand-consistent]
   =================================================================== */

/* A — Compatibility badges on product cards */
.fit-badge{display:inline-block;margin-top:6px;font-size:11px;font-weight:700;padding:2px 8px;border-radius:100px}
.fit-badge.fit-fit{color:#4ade80;background:rgba(74,222,128,.12)}
.fit-badge.fit-check{color:#fbbf24;background:rgba(251,191,36,.12)}
.fit-badge.fit-no{color:#f87171;background:rgba(248,113,113,.12)}
.fit-badge.fit-none{display:none}
/* Trending pill (Phase I) */
.trend-pill{position:absolute;top:8px;left:8px;background:#E31E24;color:#fff;font-size:10px;font-weight:800;letter-spacing:.5px;padding:3px 8px;border-radius:100px;z-index:2}
[dir="rtl"] .trend-pill{left:auto;right:8px}
[dir="rtl"] .cmp-btn{left:8px;right:auto}
[dir="rtl"] .trend-pill+.cmp-btn,[dir="rtl"] .cmp-btn{left:auto;right:8px}

/* C — Build Score meter + D — install + G — savings (inside panel) */
.build-meta{margin-bottom:12px}
.build-score-head{display:flex;justify-content:space-between;font-size:11px;color:#aaa;margin-bottom:5px}
.build-score-head #buildScoreLabel{color:#E31E24;font-weight:700}
.build-score-track{height:7px;background:rgba(255,255,255,.08);border-radius:100px;overflow:hidden}
.build-score-bar{height:100%;width:0;background:linear-gradient(90deg,#E31E24,#ff6b00);border-radius:100px;transition:width .5s ease}
.build-install{margin-top:8px;font-size:12px;color:#ccc}
.build-install strong{color:#fff}
.build-savings{background:rgba(74,222,128,.06);border:1px solid rgba(74,222,128,.18);border-radius:10px;padding:8px 10px;margin-bottom:10px}
.bs-line{display:flex;justify-content:space-between;font-size:12px;color:#aaa;padding:2px 0}
.bs-line span:last-child{font-family:'Space Grotesk',monospace}
.bs-save span:last-child{color:#4ade80;font-weight:700}
.bs-bundle{border-top:1px solid rgba(255,255,255,.08);margin-top:4px;padding-top:6px;color:#fff;font-weight:700}
.bs-bundle span:last-child{color:#4ade80}

/* B — Recommendations / E — Related (inside panel) */
.build-sub-title{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#888;font-weight:700;padding:10px 16px 4px}
.build-recs{border-top:1px solid rgba(255,255,255,.06)}
.rec-item{display:flex;align-items:center;gap:10px;padding:7px 16px}
.rec-ic{font-size:20px}
.rec-info{flex:1;min-width:0}
.rec-name{color:#ddd;font-size:12px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rec-price{color:#E31E24;font-size:11px;font-weight:700;font-family:'Space Grotesk',monospace}
.rec-add{width:26px;height:26px;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.04);color:#fff;font-size:15px;cursor:pointer;flex-shrink:0}
.rec-add:hover{background:#E31E24;border-color:#E31E24}
.build-related{padding:0 16px 8px}
.related-link{display:block;color:#9ec5ff;font-size:12px;text-decoration:none;padding:3px 0}
.related-link:hover{color:#fff;text-decoration:underline}

/* F — Popular Builds section */
.popular-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px;margin-top:28px}
.pop-card{background:#141414;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:18px 16px;text-align:center;transition:transform .2s ease,border-color .2s ease}
.pop-card:hover{transform:translateY(-4px);border-color:rgba(227,30,36,.4)}
.pop-tag{font-size:30px;margin-bottom:8px}
.pop-name{font-family:'Anton',sans-serif;color:#fff;font-size:17px;text-transform:uppercase}
.pop-count{font-size:11px;color:#888;margin:2px 0 8px}
.pop-price{font-family:'Space Grotesk',monospace;color:#E31E24;font-size:18px;font-weight:700;margin-bottom:12px}
.pop-price span{font-size:11px;color:#888}
.pop-cta{width:100%;padding:9px;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:transparent;color:#fff;font-family:'Inter',sans-serif;font-weight:700;font-size:12px;cursor:pointer;transition:background .15s ease,border-color .15s ease}
.pop-cta:hover{background:#E31E24;border-color:#E31E24}

/* H — Upgrade Journey */
.journey-track{display:flex;flex-direction:column;align-items:center;gap:6px;margin-top:30px}
.journey-step{display:flex;align-items:center;gap:14px;background:#141414;border:1px solid rgba(255,255,255,.08);border-radius:100px;padding:12px 26px 12px 12px;min-width:280px;opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
.journey-step.in{opacity:1;transform:translateY(0)}
.journey-dot{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.06);color:#fff;display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk',monospace;font-weight:700;flex-shrink:0}
.journey-final .journey-dot{background:#E31E24}
.journey-final{border-color:#E31E24}
.journey-label{color:#fff;font-weight:600;font-size:15px}
.journey-arrow{color:#E31E24;font-size:20px;opacity:.6}
@media (max-width:640px){.journey-step{min-width:0;width:100%;padding:10px 16px}}

/* ===================================================================
   MAXIMUM-VALUE EXTRAS  [additive, brand-consistent]
   =================================================================== */
/* Header icon buttons */
.icon-btn{position:relative;background:none;border:none;color:#fff;font-size:18px;cursor:pointer;padding:6px;line-height:1}
.icon-btn:hover{color:#E31E24}
.fav-badge{position:absolute;top:-2px;right:-4px;min-width:16px;height:16px;background:#E31E24;color:#fff;border-radius:100px;font-size:10px;font-weight:800;display:none;align-items:center;justify-content:center;padding:0 4px}

/* Favorite heart on product cards */
.fav-btn{position:absolute;top:8px;right:40px;width:26px;height:26px;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:rgba(10,10,10,.7);color:#aaa;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2}
.fav-btn:hover,.fav-btn.on{color:#E31E24;border-color:#E31E24}
[dir="rtl"] .fav-btn{right:auto;left:40px}

/* Search / Favorites / Recently viewed overlay */
.search-overlay{position:fixed;inset:0;z-index:9300;background:rgba(0,0,0,.6);display:flex;align-items:flex-start;justify-content:center;padding:80px 16px;opacity:0;pointer-events:none;transition:opacity .2s ease}
.search-overlay.open{opacity:1;pointer-events:auto}
.search-box{width:100%;max-width:520px;max-height:75vh;display:flex;flex-direction:column;background:#141414;border:1px solid rgba(255,255,255,.1);border-radius:16px;overflow:hidden}
.search-head{display:flex;align-items:center;gap:10px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08)}
.search-input{flex:1;background:#0A0A0A;color:#fff;border:1px solid rgba(255,255,255,.15);border-radius:10px;padding:10px 12px;font-family:'Inter',sans-serif;font-size:14px}
.search-results,.search-section{overflow-y:auto;padding:6px 10px}
.sr-title{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#888;font-weight:700;padding:10px 6px 4px}
.sr-hint{color:#888;font-size:13px;padding:20px;text-align:center}
.sr-row{display:flex;align-items:center;gap:10px;padding:8px 6px;border-bottom:1px solid rgba(255,255,255,.05)}
.sr-ic{font-size:20px}
.sr-info{flex:1;min-width:0}
.sr-name{color:#fff;font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sr-price{color:#E31E24;font-size:12px;font-weight:700;font-family:'Space Grotesk',monospace}
.sr-fav{width:28px;height:28px;border-radius:8px;border:1px solid rgba(255,255,255,.15);background:transparent;color:#aaa;font-size:14px;cursor:pointer}
.sr-fav.on,.sr-fav:hover{color:#E31E24;border-color:#E31E24}
.sr-add{background:#E31E24;color:#fff;border:none;border-radius:100px;padding:7px 14px;font-size:12px;font-weight:700;cursor:pointer}
.sr-add:hover{background:#ff2a31}

/* Customer-confidence trust row (build panel) */
.build-trust{display:flex;flex-wrap:wrap;gap:6px 12px;justify-content:center;margin-top:12px;padding-top:10px;border-top:1px solid rgba(255,255,255,.08)}
.trust-item{font-size:10.5px;color:#9aa;display:inline-flex;align-items:center;gap:3px;white-space:nowrap}

/* Exit-intent WhatsApp nudge */
.exit-nudge{position:fixed;bottom:24px;left:50%;transform:translate(-50%,20px);z-index:9400;width:min(420px,calc(100vw - 32px));background:#141414;border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:20px 22px;box-shadow:0 24px 70px rgba(0,0,0,.6);opacity:0;transition:opacity .3s ease,transform .3s ease}
.exit-nudge.show{opacity:1;transform:translate(-50%,0)}
.exit-close{position:absolute;top:12px;right:14px;background:none;border:none;color:#888;font-size:16px;cursor:pointer}
[dir="rtl"] .exit-close{right:auto;left:14px}
.exit-title{font-family:'Anton',sans-serif;color:#fff;font-size:20px;text-transform:uppercase;margin-bottom:6px}
.exit-text{color:#bbb;font-size:13px;line-height:1.6;margin-bottom:14px}
.exit-cta{display:inline-block;background:#E31E24;color:#fff;text-decoration:none;border-radius:100px;padding:10px 20px;font-weight:700;font-size:13px}
.exit-cta:hover{background:#ff2a31}

@media (max-width:640px){
  .search-overlay{padding:60px 10px}
  .fav-btn{right:38px}
  [dir="rtl"] .fav-btn{left:38px;right:auto}
}

/* ===================================================================
   ASSET ACTIVATION  [additive]
   =================================================================== */
.resume-build{display:inline-flex;align-items:center;gap:6px;background:rgba(227,30,36,.12);border:1px solid #E31E24;color:#fff;border-radius:100px;padding:11px 18px;font-family:'Inter',sans-serif;font-weight:700;font-size:13px;cursor:pointer}
.resume-build:hover{background:#E31E24}
.resume-count{color:#E31E24;font-weight:800}
.resume-build:hover .resume-count{color:#fff}
.newsletter-msg{margin-top:10px;color:#4ade80;font-size:12px;font-weight:600}
.ba-build{margin-top:10px;padding-top:10px;border-top:1px solid rgba(255,255,255,.1)}
.ba-build-meta{display:flex;flex-wrap:wrap;gap:6px 10px;margin-bottom:10px}
.ba-chip{font-size:11px;color:#bbb;display:inline-flex;align-items:center;gap:4px}
.ba-chip strong{color:#fff}
.ba-chip.ba-pop{color:#E31E24}
.ba-build-btn{width:100%;padding:10px;border-radius:10px;border:none;background:#E31E24;color:#fff;font-family:'Inter',sans-serif;font-weight:700;font-size:13px;cursor:pointer;transition:background .15s ease}
.ba-build-btn:hover{background:#ff2a31}

/* ===== REAL TIKTOK VIDEO HERO (hotfix) ===== */
.feed-handle{color:#fff;font-size:13px;font-weight:700;text-decoration:none;opacity:.85}
.feed-handle:hover{color:#E31E24;opacity:1}
.hero-video-wrap{position:relative;width:100%;max-width:300px;margin:0 auto;aspect-ratio:9/16;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:#000}
.hero-video{width:100%;height:100%;object-fit:cover;display:block}
.hero-unmute{position:absolute;bottom:14px;left:14px;z-index:3;background:rgba(10,10,10,.7);color:#fff;border:1px solid rgba(255,255,255,.25);border-radius:100px;padding:7px 12px;font-size:12px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;gap:5px}
.hero-unmute:hover{background:#E31E24;border-color:#E31E24}
.hero-video-cta{position:absolute;top:14px;right:14px;z-index:3;background:#E31E24;color:#fff;text-decoration:none;border-radius:100px;padding:6px 12px;font-size:11px;font-weight:800}
[dir="rtl"] .hero-unmute{left:auto;right:14px}[dir="rtl"] .hero-video-cta{right:auto;left:14px}
/* Honest fallback card text (replaces fabricated view/like counts) */
.feed-card-watch{margin-top:6px;color:#fff;font-size:12px;font-weight:700;opacity:.9}
