    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #A82F2F;
      --surface: #111111;
      --card: #1a1a1a;
      --accent: #ffffff;
      --text: #ffffff;
      --muted: #cccccc;
      --border: rgba(255,255,255,0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
    }

    body.ar { font-family: 'Cairo', sans-serif; direction: rtl; }

    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: 0.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6%;
      background: rgba(168,47,47,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem; letter-spacing: 4px;
      color: var(--accent);
      text-shadow: 0 0 30px rgba(255,255,255,0.4);
    }
    .logo span { color: rgba(255,255,255,0.5); }

    nav ul { display: flex; gap: 30px; list-style: none; }
    nav ul a {
      color: var(--muted); text-decoration: none;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      transition: color 0.2s;
    }
    body.ar nav ul a { letter-spacing: 0; font-size: 0.9rem; }
    nav ul a:hover { color: var(--accent); }

    .nav-right { display: flex; align-items: center; gap: 14px; }

    /* ── LANG TOGGLE ── */
    .lang-toggle {
      display: flex; align-items: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 30px; overflow: hidden;
    }
    .lang-btn {
      padding: 6px 14px; font-size: 0.75rem; font-weight: 700;
      color: rgba(255,255,255,0.5);
      border: none; background: transparent; cursor: pointer;
      transition: all 0.2s; letter-spacing: 1px;
    }
    .lang-btn.active { background: #fff; color: #A82F2F; border-radius: 30px; }

    .nav-btn {
      background: var(--accent); color: #000;
      font-family: inherit; font-weight: 700;
      font-size: 0.8rem; letter-spacing: 1.5px;
      text-transform: uppercase; border: none;
      padding: 10px 24px; cursor: pointer;
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
      transition: background 0.2s, transform 0.2s;
    }
    body.ar .nav-btn { letter-spacing: 0; }
    .nav-btn:hover { background: #000; color: #fff; transform: scale(1.04); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 120px 6% 80px; gap: 60px;
      position: relative; overflow: hidden;
    }

    .hero-glow {
      position: absolute; width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      top: -100px; right: -100px; pointer-events: none;
      animation: pulseGlow 6s ease-in-out infinite;
    }
    body.ar .hero-glow { right: auto; left: -100px; }

    .hero-glow2 {
      position: absolute; width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
      bottom: -100px; left: 20%; pointer-events: none;
      animation: pulseGlow 8s ease-in-out infinite reverse;
    }
    @keyframes pulseGlow {
      0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)}
    }

    .hero-content {
      max-width: 560px; position: relative; z-index: 2;
      opacity: 0; animation: fadeUp 0.9s 0.2s ease forwards;
    }

    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.35);
      color: var(--accent); font-size: 0.75rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; margin-bottom: 28px;
    }
    body.ar .badge { letter-spacing: 0; font-size: 0.85rem; }
    .badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--accent); border-radius: 50%;
      animation: blink 1.5s infinite; flex-shrink: 0;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    /* ── FIXED: Arabic h1 line-height was 0.2, now 1.25 ── */
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3.5rem,7vw,6rem); font-weight: 900;
      line-height: 0.95; text-transform: uppercase; margin-bottom: 24px;
    }
    body.ar .hero h1 {
      font-family: 'Cairo', sans-serif;
      line-height: 1.25;          /* ✅ FIXED — was 0.2, caused overlap */
      text-transform: none;
      font-size: clamp(2.5rem,5vw,4.5rem);
    }
    .hero h1 .line2 { color: var(--accent); display: block; }

    .hero p {
      font-size: 1.1rem; color: var(--muted);
      line-height: 1.7; margin-bottom: 40px; font-weight: 300;
    }
    body.ar .hero p { line-height: 1.9; }

    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent); color: #000;
      font-weight: 700; font-size: 0.9rem; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      padding: 16px 32px;
      clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
      transition: all 0.2s; opacity: 0;
      animation: fadeUp 0.9s 0.5s ease forwards;
    }
    body.ar .btn-primary { letter-spacing: 0; font-size: 1rem; }
    .btn-primary:hover { background: #000; color: #fff; transform: translateY(-2px); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: black; color: #fff;
      font-weight: 700; font-size: 0.9rem; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      padding: 16px 32px;
      border: 2px solid rgba(255,255,255,0.5);
      clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
      transition: all 0.2s; opacity: 0;
      animation: fadeUp 0.9s 0.55s ease forwards;
    }
    body.ar .btn-secondary { letter-spacing: 0; }
    .btn-secondary:hover { background: black; color: white; transform: translateY(-2px); }

    /* ── HERO VISUAL ── */
    .hero-visual {
      flex: 1; display: flex; justify-content: center; align-items: center;
      position: relative; z-index: 2;
      opacity: 0; animation: fadeLeft 0.9s 0.4s ease forwards;
    }
    body.ar .hero-visual { animation-name: fadeRight; }

    .phone-mockup {
      width: 260px; height: 520px; background: var(--card);
      border: 2px solid var(--border); border-radius: 36px;
      position: relative; overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
      transform: rotate(-4deg);
    }
    body.ar .phone-mockup { transform: rotate(4deg); }

    .phone-screen {
      position: absolute; inset: 12px; border-radius: 28px;
      background: linear-gradient(160deg,#111,#000); overflow: hidden;
    }
    .phone-notch {
      width: 80px; height: 20px; background: #000;
      border-radius: 0 0 14px 14px; margin: 0 auto 12px;
    }
    .channel-list { padding: 0 12px; display: flex; flex-direction: column; gap: 8px; }
    .channel-item {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px; padding: 10px 12px;
      animation: slideIn 0.5s ease forwards; opacity: 0;
    }
    .channel-dot {
      width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
      background: #1a1a1a; object-fit: contain; padding: 3px;
    }
    .channel-info { flex: 1; min-width: 0; }
    .channel-name { font-size: 0.72rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .channel-sub { font-size: 0.55rem; color: var(--muted); margin-top: 2px; }
    .live-dot {
      width: 6px; height: 6px; background: #00cc44;
      border-radius: 50%; animation: blink 1.2s infinite; flex-shrink: 0;
    }

    .phone-ring {
      position: absolute; width: 320px; height: 320px;
      border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      animation: ringPulse 3s ease-in-out infinite;
    }
    .phone-ring2 { width: 420px; height: 420px; animation-delay: 1s; border-color: rgba(255,255,255,0.06); }
    @keyframes ringPulse {
      0%,100%{transform:translate(-50%,-50%) scale(1);opacity:1}
      50%{transform:translate(-50%,-50%) scale(1.05);opacity:0.5}
    }

    /* ── STATS ── */
    .stats {
      display: flex;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .stat {
      flex: 1; padding: 40px 0; text-align: center;
      border-right: 1px solid var(--border); transition: background 0.3s;
    }
    body.ar .stat { border-right: none; border-left: 1px solid var(--border); }
    .stat:last-child { border: none; }
    .stat:hover { background: rgba(255,255,255,0.05); }
    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem; color: var(--accent); letter-spacing: 2px; line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem; color: var(--muted);
      font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px;
    }
    body.ar .stat-label { letter-spacing: 0; font-size: 0.85rem; text-transform: none; }

    /* ── FEATURES ── */
    .features { padding: 100px 6%; }
    .section-header { text-align: center; margin-bottom: 70px; }
    .section-tag {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 16px; display: block;
    }
    body.ar .section-tag { letter-spacing: 0; font-size: 0.9rem; text-transform: none; }
    .section-header h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.5rem,5vw,4rem); font-weight: 900;
      text-transform: uppercase; line-height: 1;
    }
    body.ar .section-header h2 { font-family: 'Cairo', sans-serif; text-transform: none; line-height: 1.3; }

    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap: 2px; background: var(--border); border: 1px solid var(--border);
    }
    .feature-card {
      background: var(--card); padding: 40px 32px;
      position: relative; overflow: hidden; transition: background 0.3s;
    }
    .feature-card:hover { background: #222; }
    .feature-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      height: 2px; width: 0; background: var(--accent); transition: width 0.4s;
    }
    .feature-card:hover::after { width: 100%; }
    .feature-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
    .feature-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem; font-weight: 700;
      text-transform: uppercase; margin-bottom: 12px; letter-spacing: 1px;
    }
    body.ar .feature-card h3 { font-family: 'Cairo', sans-serif; text-transform: none; letter-spacing: 0; }
    .feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
    body.ar .feature-card p { line-height: 1.9; }

    /* ── APP INFO ── */
    .app-info {
      padding: 80px 6%; display: flex; gap: 60px; align-items: stretch;
      background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .app-details { flex: 1; }
    .app-details h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 30px;
    }
    body.ar .app-details h2 { font-family: 'Cairo', sans-serif; text-transform: none; }
    .info-table { width: 100%; border-collapse: collapse; }
    .info-table tr { border-bottom: 1px solid var(--border); }
    .info-table td { padding: 14px 0; font-size: 0.9rem; }
    .info-table td:first-child {
      color: var(--muted); font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem; width: 40%;
    }
    body.ar .info-table td:first-child { letter-spacing: 0; font-size: 0.85rem; text-transform: none; }
    .info-table td:last-child { color: var(--text); }
    .rating-stars { color: #fff; font-size: 1rem; }

    .download-box {
      flex: 1;
      background: linear-gradient(135deg,rgba(255,255,255,0.08),rgba(0,0,0,0.2));
      border: 1px solid rgba(255,255,255,0.25);
      padding: 50px 40px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      gap: 20px; position: relative; overflow: hidden;
    }
    .download-box::before {
      content: '↓'; position: absolute;
      font-size: 20rem; color: rgba(255,255,255,0.03);
      font-weight: 900; top: -40px; right: -20px;
      line-height: 1; font-family: 'Bebas Neue', sans-serif;
    }
    body.ar .download-box::before { right: auto; left: -20px; }
    .download-box h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem; letter-spacing: 4px; color: var(--accent);
    }
    body.ar .download-box h3 { font-family: 'Cairo', sans-serif; letter-spacing: 0; font-size: 2.5rem; }
    .download-box p { color: var(--muted); font-size: 0.9rem; }

    .btn-download {
      display: inline-flex; align-items: center; gap: 12px;
      background: #fff; color: #000;
      font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
      font-size: 1.2rem; letter-spacing: 3px; text-transform: uppercase;
      text-decoration: none; padding: 18px 40px;
      clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
      transition: all 0.2s; position: relative; z-index: 1;
    }
    body.ar .btn-download { font-family: 'Cairo', sans-serif; letter-spacing: 0; }
    .btn-download:hover { background: #000; color: #fff; transform: translateY(-3px); }
    .file-size { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; }

    /* ── SCREENSHOTS ── */
    .screenshots { padding: 100px 6%; overflow: hidden; }
    .screens-track {
      display: flex; gap: 36px; margin-top: 60px;
      animation: scrollTrack 28s linear infinite;
      width: max-content; align-items: center;
    }
    body.ar .screens-track { animation-name: scrollTrackRTL; }
    .screens-track:hover { animation-play-state: paused; }
    @keyframes scrollTrack { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes scrollTrackRTL { 0%{transform:translateX(0)} 100%{transform:translateX(50%)} }

    .phone-frame {
      width: 200px; height: 400px; flex-shrink: 0;
      position: relative; background: #111;
      border-radius: 36px; border: 6px solid #333;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
      transition: transform 0.3s;
    }
    .phone-frame:hover { transform: translateY(-8px) scale(1.03); }
    .phone-frame::before {
      content: ''; position: absolute; right: -9px; top: 80px;
      width: 4px; height: 50px; background: #333;
      border-radius: 0 3px 3px 0; box-shadow: 0 70px 0 #333;
    }
    .phone-frame::after {
      content: ''; position: absolute; left: -9px; top: 60px;
      width: 4px; height: 36px; background: #333;
      border-radius: 3px 0 0 3px; box-shadow: 0 50px 0 #333, 0 95px 0 #333;
    }
    .phone-screen-wrap {
      position: absolute; inset: 0; border-radius: 30px; overflow: hidden; background: #000;
    }
    .phone-notch-bar {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 70px; height: 22px; background: #111;
      border-radius: 0 0 16px 16px; z-index: 10;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .notch-cam { width: 7px; height: 7px; background: #333; border-radius: 50%; }
    .notch-speaker { width: 28px; height: 4px; background: #333; border-radius: 2px; }
    .phone-home {
      position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
      width: 60px; height: 4px; background: rgba(255,255,255,0.2);
      border-radius: 2px; z-index: 10;
    }
    .phone-frame.tall { height: 440px; transform: translateY(-20px); }
    .phone-frame.tall:hover { transform: translateY(-28px) scale(1.03); }

    /* ── FOOTER ── */
    footer {
      background: var(--surface); border-top: 1px solid var(--border);
      padding: 50px 6%; display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 20px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem; letter-spacing: 4px; color: var(--accent);
    }
    .footer-logo span { color: rgba(255,255,255,0.5); }
    .footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .footer-links a {
      color: var(--muted); text-decoration: none;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s;
    }
    body.ar .footer-links a { letter-spacing: 0; font-size: 0.9rem; text-transform: none; }
    .footer-links a:hover { color: var(--accent); }
    .footer-copy { color: var(--muted); font-size: 0.78rem; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeLeft { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
    @keyframes fadeRight { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
    @keyframes slideIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }

    .reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
    .reveal.visible { opacity:1; transform:none; }

    /* ── RESPONSIVE ── */
    @media(max-width:768px){
      .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem; letter-spacing: 4px;
      color: var(--accent);
      text-shadow: 0 0 30px rgba(255,255,255,0.4);
    }
    .nav-btn {
      background: var(--accent); color: #000;
      font-family: inherit; font-weight: 700;
      font-size: 0.8rem; letter-spacing: 1.5px;
      text-transform: uppercase; border: none;
      padding: 10px 24px; cursor: pointer;
      clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
      transition: background 0.2s, transform 0.2s;
    }
      nav ul { display: none; }
      .hero { flex-direction:column; padding-top:100px; gap:20px; text-align:center; }
      body.ar .hero { text-align: center; }
      .hero-btns { justify-content:center; }
      .hero-visual { order:-1; }
      .phone-ring,.phone-ring2 { display:none; }
      .stats { flex-wrap:wrap; }
      .stat { min-width:50%; border-right:none; border-bottom:1px solid var(--border); }
      .app-info { flex-direction:column; }
      footer { flex-direction:column; align-items:flex-start; }
    }