    :root{
      --bg:#1e1e1e;
      --text:#f3f5f7;
      --muted:#9aa4af;
      --gold:#c9a227;

      --r:18px;
      --r2:26px;

      --max:1240px;
      --app:430px;

      --line:rgba(255,255,255,.10);
      --soft:rgba(255,255,255,.06);
      --soft2:rgba(255,255,255,.03);

      --shadow: 0 18px 60px rgba(0,0,0,.55);
      --shadow2: 0 10px 34px rgba(0,0,0,.42);
      --shadow3: 0 8px 24px rgba(0,0,0,.36);
    }

    /* Croogla 4F (ضع ملفك هنا إن موجود) */
    @font-face{
      font-family:"Croogla 4F";
      src:url("Croogla4F.woff2") format("woff2");
      font-weight:100 900;
      font-style:normal;
      font-display:swap;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      background:var(--bg);
      color:var(--text);
      font-family:"Croogla 4F", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button{font-family:inherit}
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px;
      overflow:hidden; clip:rect(0,0,0,0); border:0;
    }

    /* Subtle noise overlay for luxury-tech */
    .noise{
      pointer-events:none;
      position:fixed; inset:0;
      opacity:.10;
      mix-blend-mode:overlay;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
      background-size:180px 180px;
      z-index:2;
    }

    /* Layout container */
    .wrap{
      width:min(100%, var(--max));
      margin:0 auto;
      padding:0 18px;
    }

    /* Mobile App frame (Flutter vibe) */
    .appFrame{
      min-height:100%;
      position:relative;
      isolation:isolate;
    }
    @media (max-width: 900px){
      body{background:#141414;}
      .appFrame{
        width:min(100%, var(--app));
        margin:0 auto;
        background:var(--bg);
        box-shadow: var(--shadow);
        border-left:1px solid rgba(255,255,255,.08);
        border-right:1px solid rgba(255,255,255,.08);
      }
      .wrap{padding:0 14px;}
    }

    /* ===== Header ===== */
    .header{
      position:sticky; top:0;
      z-index:50;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(30,30,30,.88), rgba(30,30,30,.38));
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .headerRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
    }

    .leftHead{
      display:flex; align-items:center; gap:12px;
      min-width: 210px;
    }

    /* Animated menu icon */
    .menuBtn{
      width:44px; height:44px;
      display:grid; place-items:center;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: 0 10px 26px rgba(0,0,0,.40);
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .menuBtn:hover{ transform: translateY(-1px); border-color: rgba(201,162,39,.35); }
    .menuIcon{ position:relative; width:18px; height:14px; }
    .menuIcon span{
      position:absolute; left:0; right:0;
      height:2px;
      background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(154,164,175,.85));
      border-radius:999px;
      transform-origin:center;
      transition: transform .28s ease, top .28s ease, opacity .2s ease, background .25s ease;
      box-shadow: 0 0 18px rgba(201,162,39,.12);
    }
    .menuIcon span:nth-child(1){ top:0; }
    .menuIcon span:nth-child(2){ top:6px; }
    .menuIcon span:nth-child(3){ top:12px; }
    .menuBtn.isOpen .menuIcon span{ background: linear-gradient(90deg, rgba(201,162,39,.95), rgba(255,255,255,.90)); }
    .menuBtn.isOpen .menuIcon span:nth-child(1){ top:6px; transform: rotate(45deg); }
    .menuBtn.isOpen .menuIcon span:nth-child(2){ opacity:0; }
    .menuBtn.isOpen .menuIcon span:nth-child(3){ top:6px; transform: rotate(-45deg); }

    /* Logo slot 130x31 (✅ ثابت زي ما طلبت) */
    .brand{ display:flex; align-items:center; gap:10px; }
    .brandMark{
      width:130px; height:31px;
      display:block;
      object-fit:contain;
      filter: drop-shadow(0 12px 20px rgba(0,0,0,.55));
    }

    .rightHead{
      display:flex; align-items:center; gap:10px;
      min-width: 210px;
      justify-content:flex-end;
    }
    .iconBtn{
      width:44px; height:44px;
      display:grid; place-items:center;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: 0 10px 26px rgba(0,0,0,.40);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .iconBtn:hover{ transform: translateY(-1px); border-color: rgba(201,162,39,.35); }
    .iconBtn .lucide{ width:18px; height:18px; color: rgba(243,245,247,.95); }

    /* ===== Overlay Menu ===== */
    .menuOverlay{
      position:fixed; inset:0;
      z-index:60;
      display:none;
      background: rgba(0,0,0,.58);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .menuOverlay.show{ display:block; }

    .menuPanel{
      position:absolute;
      top:78px;
      left:50%;
      transform:translateX(-50%);
      width:min(980px, calc(100% - 28px));
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(1200px 500px at 20% 0%, rgba(201,162,39,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .menuGrid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:0; }
    .menuLeft{ padding:18px; border-right:1px solid rgba(255,255,255,.08); }
    .menuRight{ padding:18px; }
    .menuTitle{
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.12em;
      font-size:18px;
      color: rgba(243,245,247,.92);
      margin:2px 0 10px;
      text-transform:uppercase;
    }
    .menuLinks{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:10px; }
    .menuLink{
      border-radius:18px;
      padding:12px 12px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(0,0,0,.12);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .menuLink:hover{
      transform: translateY(-2px);
      border-color: rgba(201,162,39,.30);
      background: rgba(0,0,0,.18);
    }
    .menuLink .k{
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size:15px;
      color: rgba(243,245,247,.94);
      display:flex; align-items:center; gap:8px;
      margin-bottom:4px;
    }
    .menuLink .d{ color: rgba(154,164,175,.92); font-size:13px; line-height:1.35; }
    .menuMeta{
      border-radius:18px;
      padding:14px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(0,0,0,.14);
    }
    .menuMeta .slogan{
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.08em;
      text-transform:uppercase;
      color: rgba(243,245,247,.95);
      font-size:16px;
      margin-bottom:8px;
    }
    .menuMeta p{ margin:0; color: rgba(154,164,175,.92); font-size:13px; line-height:1.45; }

    @media (max-width: 900px){
      .menuPanel{ top:auto; bottom:14px; border-radius: 22px; }
      .menuGrid{ grid-template-columns:1fr; }
      .menuLeft{ border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
      .menuLinks{ grid-template-columns:1fr; }
    }

    /* ===== Page basics ===== */
    section{ padding:18px 0; }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:12px; margin:4px 0 12px;
    }
    .sectionTitle{
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:22px;
      margin:0;
    }
    .sectionTitle span{ color: var(--muted); }
    .sectionNote{
      color: rgba(154,164,175,.92);
      font-size:13px;
      line-height:1.4;
      margin:0;
      max-width: 66ch;
    }

    /* ===== Universal cards (animated) ===== */
    .revealUp{
      transform: translateY(10px);
      opacity:0;
      transition: transform .65s cubic-bezier(.2,.8,.2,1), opacity .65s ease;
    }
    .revealUp.revealed{ transform: translateY(0); opacity:1; }

    .panel{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.09);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow3);
      padding:16px;
      overflow:hidden;
    }

    .btn{
      display:inline-flex; align-items:center; gap:10px;
      border-radius: 16px;
      padding:12px 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
      color: rgba(243,245,247,.95);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      box-shadow: 0 10px 26px rgba(0,0,0,.35);
      user-select:none;
    }
    .btn:hover{ transform: translateY(-1px); border-color: rgba(201,162,39,.32); background: rgba(0,0,0,.20); }
    .btn.primary{
      background: linear-gradient(180deg, rgba(201,162,39,.18), rgba(201,162,39,.06));
      border-color: rgba(201,162,39,.35);
    }
    .btn.ghost{
      background: rgba(0,0,0,.12);
      border-color: rgba(255,255,255,.10);
      opacity:.95;
    }
    .btn .lucide{ width:18px; height:18px; color: rgba(243,245,247,.95); }

    /* =========================================
       ✅ TECHMART HERO (مختلف عن الهيرو الأساسي)
       Title + Product Image (NO VIDEO)
    ========================================= */
    .tmHero{
      padding:20px 0 10px;
      position:relative;
      isolation:isolate;
    }
    .tmHero::before{
      content:"";
      position:absolute; inset:-40px -40px 0 -40px;
      z-index:-1;
      background:
        radial-gradient(900px 520px at 18% 10%, rgba(201,162,39,.16), transparent 60%),
        radial-gradient(900px 520px at 78% 18%, rgba(154,164,175,.14), transparent 55%),
        linear-gradient(180deg, rgba(30,30,30,.98), rgba(30,30,30,.92));
      pointer-events:none;
    }

    .tmHeroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:stretch;
    }

    .tmHeroLeft{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(1200px 500px at 16% 0%, rgba(201,162,39,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
    }
    .tmHeroLeft::after{
      content:"";
      position:absolute; inset:0;
      background: radial-gradient(800px 340px at 85% 5%, rgba(201,162,39,.10), transparent 62%);
      pointer-events:none;
      opacity:.9;
    }

    .tmHeroPad{ padding:18px 18px 16px; position:relative; z-index:1; }

    .tmPills{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-bottom:12px;
    }
    .tmPill{
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.14);
      color: rgba(243,245,247,.92);
      font-size:12px;
      letter-spacing:.10em;
      text-transform:uppercase;
      display:inline-flex; align-items:center; gap:8px;
    }
    .tmPill .dot{
      width:7px; height:7px; border-radius:999px;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(201,162,39,.10);
    }
    .tmH1{
      margin:0;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.02em;
      text-transform:uppercase;
      font-size: clamp(40px, 5vw, 72px);
      line-height:.95;
    }
    .tmH1 span{ color: var(--gold); }
    .tmSub{
      margin:12px 0 0;
      color: rgba(154,164,175,.92);
      font-size: 15px;
      line-height:1.55;
      max-width: 70ch;
    }
    .tmCtaRow{
      margin-top:14px;
      display:flex; flex-wrap:wrap;
      gap:10px; align-items:center;
    }
    .tmMiniLine{
      margin-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      color: rgba(154,164,175,.92);
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .tmMiniLine b{
      color: rgba(243,245,247,.92);
      letter-spacing:.10em;
    }

    /* Right: Product image card */
    .tmHeroRight{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      display:flex;
      flex-direction:column;
    }
    .tmMedia{
      position:relative;
      aspect-ratio: 4 / 3;
      background: rgba(0,0,0,.14);
      overflow:hidden;
    }
    .tmMedia img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.02);
      opacity:.95;
      filter: saturate(1.05) contrast(1.05);
      transition: transform .35s ease, opacity .35s ease;
    }
    .tmHeroRight:hover .tmMedia img{ transform: scale(1.06); opacity:1; }
    .tmShade{
      position:absolute; inset:0;
      background:
        radial-gradient(900px 420px at 18% 0%, rgba(201,162,39,.10), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
      pointer-events:none;
    }
    .tmCaption{
      padding:14px 14px 16px;
    }
    .tmCapTop{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; margin-bottom:8px;
      color: rgba(154,164,175,.92);
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .tmCapTitle{
      margin:0 0 8px;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size:20px;
      line-height:1.05;
    }
    .tmCapText{
      margin:0;
      color: rgba(154,164,175,.92);
      font-size:13px;
      line-height:1.55;
    }

    @media (max-width: 900px){
      .tmHeroGrid{ grid-template-columns:1fr; }
      .tmSub{ font-size:14px; }
      .tmHeroPad{ padding:16px 14px 14px; }
      .tmCaption{ padding:12px 12px 14px; }
    }

    /* ===== Pillars ===== */
    .pillarsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    @media (max-width: 900px){
      .pillarsGrid{ grid-template-columns:1fr; }
    }
    .pillCard{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.14);
      padding:14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .pillCard:hover{
      transform: translateY(-2px);
      border-color: rgba(201,162,39,.22);
      background: rgba(0,0,0,.16);
    }
    .pillHead{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px; margin-bottom:8px;
    }
    .pillHead h3{
      margin:0;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size:18px;
      line-height:1.05;
      display:flex; align-items:center; gap:10px;
    }
    .pillHead .lucide{ width:18px; height:18px; color: rgba(201,162,39,.92); }
    .pillCard p{
      margin:0;
      color: rgba(154,164,175,.92);
      font-size:13px;
      line-height:1.55;
    }

    /* ===== Features ===== */
    .featureGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    @media (max-width: 900px){
      .featureGrid{ grid-template-columns:1fr; }
    }
    .featList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .featItem{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.14);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .featItem:hover{
      transform: translateY(-2px);
      border-color: rgba(201,162,39,.22);
    }
    .featTop{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:12px;
      margin-bottom:6px;
    }
    .featName{
      margin:0;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size:17px;
      line-height:1.05;
      color: rgba(243,245,247,.95);
    }
    .featIcon{
      width:38px; height:38px;
      display:grid; place-items:center;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
      flex:0 0 auto;
    }
    .featIcon .lucide{ width:18px; height:18px; color: rgba(243,245,247,.92); }
    .featDesc{
      margin:0;
      color: rgba(154,164,175,.92);
      font-size:13px;
      line-height:1.55;
    }

    /* ===== Gallery (4 images) ===== */
    .galleryGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:stretch;
    }
    @media (max-width: 900px){
      .galleryGrid{ grid-template-columns:1fr; }
    }
    .shotBig, .shot{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.14);
      overflow:hidden;
      position:relative;
      box-shadow: var(--shadow3);
    }
    .shotBig{ min-height: 320px; }
    .shotBig img, .shot img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.02);
      opacity:.95;
      transition: transform .35s ease, opacity .35s ease;
      filter: saturate(1.05) contrast(1.05);
    }
    .shotBig:hover img, .shot:hover img{ transform: scale(1.06); opacity:1; }
    .shotGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      height:100%;
    }
    @media (max-width: 900px){
      .shotBig{ min-height: 240px; }
    }
    .shot::after, .shotBig::after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 420px at 18% 0%, rgba(201,162,39,.10), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
      pointer-events:none;
    }
    .shotTag{
      position:absolute;
      left:12px; bottom:12px;
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.20);
      color: rgba(243,245,247,.92);
      font-size:12px;
      letter-spacing:.10em;
      text-transform:uppercase;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index:1;
    }
    .shotTag .dot{
      width:7px; height:7px; border-radius:999px;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(201,162,39,.10);
    }

    /* ===== Delivery (Parent + Child) ===== */
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    @media (max-width: 900px){
      .split{ grid-template-columns:1fr; }
    }
    .bullet{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.09);
      background: rgba(0,0,0,.14);
    }
    .bullet .ic{
      width:36px; height:36px;
      border-radius:14px;
      display:grid; place-items:center;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
      flex:0 0 auto;
    }
    .bullet .ic .lucide{ width:18px; height:18px; color: rgba(201,162,39,.92); }
    .bullet b{
      display:block;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-weight:400;
      color: rgba(243,245,247,.95);
      margin-bottom:4px;
    }
    .bullet p{ margin:0; color: rgba(154,164,175,.92); font-size:13px; line-height:1.55; }

    /* ===== CTA Box ===== */
    .ctaSimple{ padding: 18px 0 10px; }
    .ctaBox{
      border-radius: var(--r2);
      border:1px solid rgba(255,255,255,.09);
      background:
        radial-gradient(1000px 420px at 18% 0%, rgba(201,162,39,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow3);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      overflow:hidden;
    }
    .ctaText h3{
      margin:0 0 6px;
      font-family:"Bebas Neue", sans-serif;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size:18px;
      line-height:1.1;
    }
    .ctaText p{
      margin:0;
      color: rgba(154,164,175,.92);
      font-size:13px;
      line-height:1.55;
      max-width: 78ch;
    }
    .ctaBtn{ white-space:nowrap; }

    @media (max-width: 900px){
      .ctaBox{ flex-direction:column; align-items:stretch; }
      .ctaBtn{ width:100%; justify-content:center; }
    }

    /* ===== Footer (simple but premium) ===== */
    footer{
      margin-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      background:
        radial-gradient(900px 360px at 18% 0%, rgba(201,162,39,.06), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
    }
    .footBottom{
      padding:14px 0 18px;
      color: rgba(154,164,175,.90);
      font-size:12px;
      letter-spacing:.06em;
      text-transform:uppercase;
    }
    .footBottomRow{
      display:flex; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }

    /* ✅ Mobile header fix */
    @media (max-width: 520px){
      .headerRow{ gap:10px; padding:12px 0; }
      .leftHead, .rightHead{ min-width:0; flex:0 1 auto; }
      .brand{ min-width:0; flex:1 1 auto; justify-content:center; }
      .brandMark{ width:130px; height:31px; } /* ✅ ثابت */
      .menuBtn, .iconBtn{ width:40px; height:40px; border-radius:12px; }
      .iconBtn .lucide{ width:17px; height:17px; }
    }

/* ===== FAQ (TechMart) ===== */
.faqSec{ padding:18px 0; }

.faqGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media (max-width: 900px){
  .faqGrid{ grid-template-columns:1fr; }
}

.faqItem{
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(900px 360px at 18% 0%, rgba(201,162,39,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow3);
  overflow:hidden;
}

.faqQ{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  background: transparent;
  border:0;
  color: rgba(243,245,247,.95);
  cursor:pointer;
}

.faqQText{
  font-family:"Bebas Neue", sans-serif;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:18px;
  line-height:1.1;
}

.faqIcon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  flex:0 0 auto;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.faqIcon .lucide{
  width:18px; height:18px;
  color: rgba(201,162,39,.92);
  transition: transform .22s ease;
}

.faqItem:hover .faqIcon{
  transform: translateY(-1px);
  border-color: rgba(201,162,39,.22);
  background: rgba(0,0,0,.16);
}

.faqA{
  padding: 0 14px 14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.faqA p{
  margin:12px 0 0;
  color: rgba(154,164,175,.92);
  font-size:13px;
  line-height:1.65;
  max-width: 85ch;
}

/* Open state */
.faqItem.isOpen .faqIcon .lucide{
  transform: rotate(45deg);
}


    /* ✅ HARD STOP: No Horizontal Scroll */
    html, body{ width:100%; max-width:100%; overflow-x:hidden; }
    *, *::before, *::after{ box-sizing:border-box; max-width:100%; }
    img, svg, video, canvas{ max-width:100%; height:auto; display:block; }
    .headerRow, .wrap, .appFrame, .menuPanel, .menuGrid, .leftHead, .rightHead, .brand{ min-width:0; }
    a, p, h1, h2, h3, h4, h5, h6, span, div{ overflow-wrap:anywhere; word-break:break-word; }
    .noise, .menuOverlay{ width:100%; }
    @media (max-width: 900px){
      .appFrame{ width:min(100%, var(--app)); max-width:100%; overflow-x:hidden; }
    }
    
    /* ===== Compatibility Proof ===== */
.compatSec{ padding:18px 0; }

.compatGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:12px;
  align-items:stretch;
}

@media (max-width: 900px){
  .compatGrid{ grid-template-columns:1fr; }
}

.compatTitle{
  margin:0 0 8px;
  font-family:"Bebas Neue", sans-serif;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:20px;
  line-height:1.05;
}

.compatText{
  margin:0 0 12px;
  color: rgba(154,164,175,.92);
  font-size:13px;
  line-height:1.65;
  max-width: 80ch;
}

.compatBadges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.compatMini{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.compatLine{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(154,164,175,.92);
  font-size:13px;
}

.compatLine .dot{
  width:7px; height:7px; border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,39,.10);
  flex:0 0 auto;
}

/* Screenshot card */
.compatShot{
  position:relative;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  overflow:hidden;
  box-shadow: var(--shadow3);
  padding:0;
  cursor:pointer;
  display:block;
}

.compatShot img{
  width:100%;
  height:auto;
  display:block;
  opacity:.92;
  transform: scale(1.01);
  transition: transform .35s ease, opacity .35s ease;
}

.compatShot:hover img{ transform: scale(1.04); opacity:1; }

.compatShade{
  position:absolute; inset:0;
  background: radial-gradient(900px 420px at 20% 0%, rgba(201,162,39,.10), transparent 55%);
  pointer-events:none;
}

.compatHint{
  position:absolute;
  left:14px; bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(243,245,247,.94);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.compatHint .lucide{ width:16px; height:16px; color: rgba(201,162,39,.92); }

/* Lightbox */
.imgModal{
  position:fixed; inset:0;
  display:none;
  z-index:80;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding:18px;
}

.imgModal.show{ display:flex; align-items:center; justify-content:center; }

.imgModalImg{
  width:min(1100px, 100%);
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.25);
}

.imgModalClose{
  position:fixed;
  top:14px; right:14px;
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  cursor:pointer;
  z-index:81;
}

.imgModalClose .lucide{ width:18px; height:18px; color: rgba(243,245,247,.95); }