/* ================================================
   U4X Pro — Landing Page Styles (RTL / Arabic)
   Standalone version — works locally & on any host
   ================================================ */

:root{
  --black:        #0A0E1A;
  --black-2:      #0F1320;
  --black-deep:   #060912;
  --white:        #FFFFFF;
  --green:        #10B981;
  --green-2:      #059669;
  --green-light:  #34D399;
  --red:          #EF4444;
  --red-2:        #DC2626;
  --gray-d:       #1F2937;
  --gray-d-2:     #111827;
  --gray-l:       #F9FAFB;
  --gray-text:    #9CA3AF;
  --gray-border:  #E5E7EB;
  --dark-blue:    #0F172A;

  --radius-card: 16px;
  --radius-btn:  12px;
  --container:   1200px;
  --shadow-sm:   0 4px 14px rgba(0,0,0,.06);
  --shadow-md:   0 10px 30px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 50px rgba(16,185,129,.15);
  --grad-brand:  linear-gradient(135deg,#10B981 0%, #34D399 30%, #F59E0B 65%, #EF4444 100%);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Tajawal',sans-serif;
  background:var(--white);
  color:#1F2937;
  line-height:1.7;
  font-size:16px;
  direction:rtl;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;display:block}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
  position:relative;
  z-index:2;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 24px;
  border-radius:var(--radius-btn);
  font-weight:700;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
  font-family:inherit;
}
.btn-lg{padding:16px 32px;font-size:16px}
.btn-block{display:flex;width:100%;margin-top:18px}
.btn-block-sm{display:flex;width:100%;margin-top:14px;padding:10px 16px;font-size:14px}

.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 6px 18px rgba(16,185,129,.30);
}
.btn-primary:hover{background:var(--green-2);transform:translateY(-2px);box-shadow:0 10px 24px rgba(16,185,129,.45)}

.btn-red{
  background:var(--red);
  color:#fff;
  box-shadow:0 6px 18px rgba(239,68,68,.30);
}
.btn-red:hover{background:var(--red-2);transform:translateY(-2px)}

.btn-dark{
  background:#0A0E1A;
  color:#fff;
  border:1.5px solid #0A0E1A;
  box-shadow:0 6px 16px rgba(10,14,26,.20);
}
.btn-dark:hover{
  background:#1F2937;
  border-color:#1F2937;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(10,14,26,.30);
}

.btn-outline{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,.4);
}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff}

.btn-outline-green{
  background:transparent;
  color:var(--green);
  border:2px solid var(--green);
}
.btn-outline-green:hover{background:var(--green);color:#fff}

.btn-ghost{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.25);
  padding:10px 18px;
  font-size:14px;
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.btn-arrow{display:inline-block;transition:transform .2s}
.btn:hover .btn-arrow{transform:translateX(-4px)}

/* ===== Decorative grid background ===== */
.grid-bg{
  position:absolute;
  inset:0;
  z-index:1;
  background-image:
    linear-gradient(rgba(16,185,129,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(16,185,129,.05) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at center,#000 30%,transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse at center,#000 30%,transparent 80%);
  pointer-events:none;
}
.grid-bg.subtle{opacity:.5}

/* ===== Decorative line under titles ===== */
.deco-line{
  display:block;
  width:60px;
  height:4px;
  background:var(--green);
  border-radius:4px;
  margin:18px 0;
}
.deco-line.deco-red{background:var(--red)}
.center-deco{margin:18px auto 0}

/* ===== Section headers ===== */
.section-head{margin-bottom:48px}
.section-head.center{text-align:center}
.section-title{
  font-family:'Tajawal',sans-serif;
  font-size:34px;
  font-weight:900;
  color:#0F172A;
  line-height:1.3;
  letter-spacing:-.5px;
}
.section-title.light{color:#fff}
.section-title.dark-blue{color:#0F172A;font-size:36px}
.section-sub{
  color:#6B7280;
  font-size:17px;
  margin-top:12px;
  max-width:640px;
}
.center .section-sub{margin-left:auto;margin-right:auto}
.section-sub.muted{color:#9CA3AF}

/* ============================================
   1) NAVBAR
   ============================================ */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,14,26,.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  gap:24px;
}
/* ===== Brand Logo (U + 4 + X + Pro + tagline) ===== */
.logo{
  font-family:'Tajawal',sans-serif;
  display:inline-flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1;
  text-decoration:none;
  gap:3px;
}
.lg-row{
  display:inline-flex;
  align-items:baseline;
  font-size:30px;
  font-weight:900;
  letter-spacing:-1px;
  line-height:1;
  direction:ltr;
  unicode-bidi:isolate;
}
.lg-tagline{direction:ltr;unicode-bidi:isolate}
.lg-u{color:#fff}
.lg-4{
  color:var(--red);
  font-style:italic;
  margin:0 1px;
  text-shadow:0 2px 12px rgba(239,68,68,.45);
}
.lg-x{
  color:var(--green);
  position:relative;
  padding-bottom:3px;
  text-shadow:0 2px 12px rgba(16,185,129,.45);
}
.lg-x::after{
  content:'';
  position:absolute;
  inset:auto 0 -1px 0;
  height:3px;
  border-radius:1px;
  background:linear-gradient(90deg,var(--red) 0 33.3%,#fff 33.3% 66.6%,var(--green) 66.6% 100%);
}
.lg-pro{
  font-size:11px;
  color:#fff;
  font-weight:800;
  letter-spacing:2px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:3px 8px;
  border-radius:5px;
  margin-right:8px;
  transform:translateY(-3px);
  text-transform:uppercase;
}
.lg-tagline{
  font-size:8px;
  letter-spacing:3px;
  color:#6B7280;
  font-weight:700;
  text-transform:uppercase;
  direction:ltr;
  unicode-bidi:isolate;
}

.nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}
.nav-links a{
  color:#D1D5DB;
  font-weight:500;
  font-size:15px;
  position:relative;
  transition:color .2s;
}
.nav-links a:hover{color:#fff}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  right:0;
  width:0;
  height:2px;
  background:var(--green);
  transition:width .2s;
}
.nav-links a:hover::after{width:100%}

.nav-cta{display:flex;gap:10px;align-items:center}

.nav-burger{
  display:none;
  background:transparent;
  border:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.nav-burger span{
  width:24px;
  height:2px;
  background:#fff;
  border-radius:2px;
}

/* ============================================
   2) HERO
   ============================================ */
.hero{
  position:relative;
  background:linear-gradient(180deg,#0A0E1A 0%,#0F1626 100%);
  color:#fff;
  padding:80px 0 100px;
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  top:-20%;
  left:-10%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(16,185,129,.18) 0%,transparent 60%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-30%;
  right:-15%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(239,68,68,.10) 0%,transparent 60%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  margin-bottom:20px;
}
.badge-red{
  background:rgba(239,68,68,.15);
  color:#FCA5A5;
  border:1px solid rgba(239,68,68,.35);
}

.hero-title{
  font-family:'Tajawal',sans-serif;
  font-size:44px;
  font-weight:900;
  line-height:1.25;
  letter-spacing:-1px;
  color:#fff;
}
.hero-sub{
  color:#CBD5E1;
  font-size:18px;
  line-height:1.85;
  max-width:560px;
  margin-bottom:32px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:38px;
}

.trust-bar{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.08);
}
.trust-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#E5E7EB;
  font-size:14px;
  font-weight:600;
}
.trust-ico{font-size:16px}
.trust-dot{
  width:4px;
  height:4px;
  background:#4B5563;
  border-radius:50%;
}

/* glass card */
.glass-card{
  background:rgba(31,41,55,.45);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:32px;
  box-shadow:0 25px 60px rgba(0,0,0,.45);
  position:relative;
}
.glass-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background:linear-gradient(135deg,rgba(16,185,129,.35),transparent 50%,rgba(239,68,68,.25));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.glass-title{
  font-size:22px;
  font-weight:800;
  color:#fff;
}
.feat-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:24px 0;
}
.feat-list li{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  font-size:15px;
  font-weight:500;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.06);
}
.feat-list li:last-child{border-bottom:none}
.feat-list .num{
  flex-shrink:0;
  width:36px;
  height:36px;
  border-radius:10px;
  background:rgba(255,255,255,.04);
  color:var(--green);
  border:1.5px solid rgba(16,185,129,.40);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:13px;
  letter-spacing:.5px;
}

/* ============================================
   3) STATS
   ============================================ */
.stats-section{
  background:#060912;
  padding:50px 0;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}
.stat-num{
  font-family:'Tajawal',sans-serif;
  font-size:42px;
  font-weight:900;
  color:#fff;
  line-height:1;
  letter-spacing:-1px;
}
.stats-grid .stat:nth-child(1) .stat-num{color:var(--green)}
.stats-grid .stat:nth-child(2) .stat-num{color:var(--red)}
.stats-grid .stat:nth-child(3) .stat-num{color:var(--green)}
.stats-grid .stat:nth-child(4) .stat-num{color:#fff}
.stat-label{
  color:#fff;
  font-size:15px;
  margin-top:10px;
  font-weight:500;
}

/* ============================================
   4) SIGNALS
   ============================================ */
.signals-section{
  position:relative;
  background:#0A0E1A;
  color:#fff;
  padding:100px 0;
  overflow:hidden;
}
.signals-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.check-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:30px 0 36px;
}
.check-list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#E5E7EB;
  font-size:17px;
}
.check{
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(16,185,129,.15);
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
  flex-shrink:0;
}

.signals-visual{
  position:relative;
}
.device-frame{
  position:relative;
  border-radius:20px;
  padding:14px;
  background:linear-gradient(145deg,#1F2937,#0F172A);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.5),0 0 60px rgba(16,185,129,.15);
}
.chart-svg{
  width:100%;
  height:auto;
  border-radius:12px;
  display:block;
}
.device-glow{
  position:absolute;
  inset:-40px;
  background:radial-gradient(circle,rgba(16,185,129,.15) 0%,transparent 70%);
  z-index:-1;
  filter:blur(40px);
}
.float-badge{
  position:absolute;
  background:#fff;
  color:#0F172A;
  border-radius:12px;
  padding:10px 16px;
  font-weight:700;
  font-size:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  display:flex;
  align-items:center;
  gap:8px;
}
.fb-1{top:20px;right:-20px;animation:float 3.5s ease-in-out infinite}
.fb-2{bottom:30px;left:-20px;background:#10B981;color:#fff;animation:float 3.5s ease-in-out infinite reverse}
.fb-2 .muted{font-weight:500;opacity:.8;font-size:12px}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.dot{width:8px;height:8px;border-radius:50%}
.dot-green{background:#10B981;box-shadow:0 0 0 4px rgba(16,185,129,.2)}

/* ============================================
   5) PRODUCTS
   ============================================ */
.products-section{
  background:var(--white);
  padding:100px 0;
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.product-card{
  background:var(--gray-l);
  border:none;
  border-radius:var(--radius-card);
  padding:36px 24px 26px;
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
  box-shadow:0 8px 24px rgba(15,23,42,.08),
             0 2px 6px rgba(15,23,42,.04);
}
.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 28px 56px rgba(15,23,42,.18),
             0 4px 12px rgba(15,23,42,.08);
}
.product-name{
  font-size:20px;
  font-weight:800;
  color:#0F172A;
  margin-top:34px;
}
.product-desc{
  color:#6B7280;
  font-size:14px;
  margin-top:10px;
  min-height:42px;
}

/* 3D BOX */
.product-box{
  position:relative;
  width:140px;
  height:170px;
  margin:0 auto;
  transform-style:preserve-3d;
  transform:rotateX(-10deg) rotateY(20deg);
  transition:transform .5s ease;
}
.product-card:hover .product-box{
  transform:rotateX(-15deg) rotateY(15deg) translateY(-6px);
}
.box-face{
  position:absolute;
  border-radius:8px;
}
.box-front{
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:14px;
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.1);
}
.box-top{
  height:14px;
  width:100%;
  top:-14px;
  right:0;
  transform-origin:bottom;
  transform:skewX(45deg);
  margin-right:7px;
}
.box-side{
  width:14px;
  top:0;
  bottom:0;
  left:-14px;
  transform-origin:right;
  transform:skewY(45deg);
  margin-bottom:7px;
}
.box-tag{
  display:inline-block;
  background:rgba(255,255,255,.18);
  color:#fff;
  padding:3px 10px;
  border-radius:20px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}
.tag-red{background:rgba(239,68,68,.85)}
.box-name{
  font-family:'Tajawal',sans-serif;
  font-size:20px;
  font-weight:900;
  letter-spacing:.5px;
  line-height:1.1;
}
.box-sub{
  font-size:12px;
  opacity:.9;
  margin-top:4px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.box-version{
  margin-top:14px;
  font-size:11px;
  opacity:.65;
  letter-spacing:1px;
}

.box-green   .box-front{background:linear-gradient(145deg,#065F46,#10B981)}
.box-green   .box-top  {background:linear-gradient(90deg,#10B981,#34D399)}
.box-green   .box-side {background:linear-gradient(180deg,#064E3B,#065F46)}

.box-green-d .box-front{background:linear-gradient(145deg,#022C22,#065F46)}
.box-green-d .box-top  {background:linear-gradient(90deg,#065F46,#10B981)}
.box-green-d .box-side {background:linear-gradient(180deg,#011510,#022C22)}

.box-red   .box-front{background:linear-gradient(145deg,#991B1B,#EF4444)}
.box-red   .box-top  {background:linear-gradient(90deg,#EF4444,#F87171)}
.box-red   .box-side {background:linear-gradient(180deg,#7F1D1D,#991B1B)}

.box-red-d .box-front{background:linear-gradient(145deg,#450A0A,#991B1B)}
.box-red-d .box-top  {background:linear-gradient(90deg,#991B1B,#EF4444)}
.box-red-d .box-side {background:linear-gradient(180deg,#250505,#450A0A)}

.box-blue   .box-front{background:linear-gradient(145deg,#1E3A8A,#3B82F6)}
.box-blue   .box-top  {background:linear-gradient(90deg,#3B82F6,#60A5FA)}
.box-blue   .box-side {background:linear-gradient(180deg,#172554,#1E3A8A)}

.box-blue-d .box-front{background:linear-gradient(145deg,#0F172A,#334155)}
.box-blue-d .box-top  {background:linear-gradient(90deg,#334155,#475569)}
.box-blue-d .box-side {background:linear-gradient(180deg,#020617,#0F172A)}

/* ============================================
   6) SPONSORS
   ============================================ */
.sponsors-section{
  background:var(--white);
  padding:80px 0 100px;
  border-top:1px solid #F3F4F6;
}
.sponsors-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:48px;
}
.sponsor-card{
  background:transparent;
  border:none;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:16/9;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(15,23,42,.10),
             0 2px 6px rgba(15,23,42,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.sponsor-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(15,23,42,.18),
             0 4px 10px rgba(15,23,42,.08);
}
.sponsor-dark{
  box-shadow:0 10px 28px rgba(0,0,0,.30),
             0 2px 6px rgba(0,0,0,.20);
}
.sponsor-dark:hover{
  box-shadow:0 22px 44px rgba(0,0,0,.45),
             0 4px 10px rgba(0,0,0,.20);
}
.sp-logo{width:100%;height:100%;display:block;border-radius:14px}
.sp-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:14px;
  transition:transform .4s ease;
}
.sponsor-card:hover .sp-img{transform:scale(1.04)}
.sponsors-cta{text-align:center}

/* ============================================
   7) PRICING
   ============================================ */
.pricing-section{
  position:relative;
  background:#0A0E1A;
  color:#fff;
  padding:100px 0;
  overflow:hidden;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:start;
  direction:rtl;
}
.price-card{
  background:var(--gray-d);
  border:none;
  border-radius:20px;
  padding:36px 28px;
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
  box-shadow:0 16px 40px rgba(0,0,0,.35),
             0 2px 8px rgba(0,0,0,.20);
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 50px rgba(0,0,0,.50),
             0 4px 12px rgba(0,0,0,.25);
}
.price-bordered{
  box-shadow:
    0 16px 40px rgba(0,0,0,.40),
    0 2px 8px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(16,185,129,.15);
}

.price-featured{
  background:#fff;
  color:#0F172A;
  border:none;
  transform:translateY(-30px);
  box-shadow:
    0 30px 70px rgba(15,23,42,.30),
    0 10px 24px rgba(15,23,42,.18),
    0 0 0 1px rgba(16,185,129,.20);
  z-index:2;
}
.price-featured:hover{
  transform:translateY(-36px);
  box-shadow:
    0 40px 90px rgba(15,23,42,.40),
    0 14px 28px rgba(15,23,42,.20),
    0 0 0 1px rgba(16,185,129,.30);
}

.price-ribbon{
  position:absolute;
  top:-18px;
  left:50%;
  transform:translateX(-50%);
  background:var(--red);
  color:#fff;
  padding:8px 22px;
  border-radius:30px;
  font-weight:800;
  font-size:14px;
  box-shadow:0 8px 20px rgba(239,68,68,.40);
  white-space:nowrap;
}

.price-head h3{
  font-family:'Tajawal',sans-serif;
  font-size:24px;
  font-weight:800;
  margin-bottom:6px;
}
.price-tag{
  font-size:14px;
  opacity:.7;
  margin-bottom:24px;
}

.price-amount{
  display:flex;
  align-items:baseline;
  gap:4px;
  margin-bottom:8px;
  flex-wrap:wrap;
}
.price-amount .cur{
  font-size:24px;
  font-weight:700;
  color:var(--green);
}
.price-featured .price-amount .cur{color:var(--green-2)}
.price-amount .big{
  font-family:'Tajawal',sans-serif;
  font-size:56px;
  font-weight:900;
  line-height:1;
}
.price-amount .per{
  font-size:15px;
  opacity:.6;
  margin-right:4px;
}

.price-save{
  display:inline-block;
  background:rgba(16,185,129,.15);
  color:var(--green-2);
  padding:6px 12px;
  border-radius:6px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}
.price-dark .price-save{background:rgba(16,185,129,.15);color:var(--green-light)}

.price-feats{
  margin:24px 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.price-feats li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  opacity:.95;
}
.price-featured .price-feats li{color:#374151}
.price-dark .price-feats li{color:#D1D5DB}
.price-dark .check{background:rgba(16,185,129,.18);color:var(--green)}
.price-featured .check{background:rgba(16,185,129,.18);color:var(--green-2)}

/* ============================================
   8) TESTIMONIALS
   ============================================ */
.testi-section{
  background:#fff;
  padding:100px 0;
  border-top:1px solid #F3F4F6;
}
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testi-card{
  background:var(--gray-l);
  border:none;
  border-radius:18px;
  padding:30px;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 28px rgba(15,23,42,.08),
             0 2px 6px rgba(15,23,42,.04);
}
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(15,23,42,.14);
}
.stars{
  color:var(--green);
  font-size:20px;
  letter-spacing:3px;
  margin-bottom:16px;
}
.testi-text{
  color:#374151;
  line-height:1.85;
  font-size:15px;
  margin-bottom:22px;
}
.testi-user{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px dashed #E5E7EB;
}
.avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  font-size:14px;
  font-family:'Tajawal',sans-serif;
}
.avatar-1{background:linear-gradient(135deg,#10B981,#059669)}
.avatar-2{background:linear-gradient(135deg,#3B82F6,#1E40AF)}
.avatar-3{background:linear-gradient(135deg,#EF4444,#B91C1C)}
.testi-name{
  font-weight:800;
  color:#0F172A;
  font-size:15px;
}
.testi-loc{
  font-size:13px;
  color:#9CA3AF;
}

/* ============================================
   9) FAQ
   ============================================ */
.faq-section{
  background:#fff;
  padding:100px 0;
}
.faq-list{
  max-width:840px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  background:var(--gray-l);
  border:none;
  border-radius:14px;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 4px 14px rgba(15,23,42,.05);
}
.faq-item[open]{
  background:#fff;
  box-shadow:0 16px 36px rgba(15,23,42,.10);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:700;
  font-size:17px;
  color:#0F172A;
  gap:14px;
}
.faq-item summary::-webkit-details-marker{display:none}
.plus{
  flex-shrink:0;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(16,185,129,.12);
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:22px;
  transition:transform .25s,background .25s;
}
.faq-item[open] .plus{
  transform:rotate(45deg);
  background:var(--green);
  color:#fff;
}
.faq-body{
  padding:0 24px 22px 24px;
  color:#4B5563;
  line-height:1.9;
  font-size:15px;
}

/* ============================================
   10) FINAL CTA
   ============================================ */
.cta-section{
  position:relative;
  background:#0A0E1A;
  color:#fff;
  padding:100px 0;
  overflow:hidden;
}
.cta-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%,rgba(16,185,129,.20),transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%,rgba(239,68,68,.18),transparent 60%);
  z-index:1;
  pointer-events:none;
}
.cta-inner{text-align:center;position:relative;z-index:3}
.cta-title{
  font-family:'Tajawal',sans-serif;
  font-size:40px;
  font-weight:900;
  margin-bottom:18px;
  letter-spacing:-1px;
  line-height:1.3;
}
.cta-sub{
  color:#CBD5E1;
  font-size:18px;
  max-width:640px;
  margin:0 auto 36px;
}
.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ============================================
   11) FOOTER
   ============================================ */
.footer{
  background:#060912;
  color:#9CA3AF;
  padding:70px 0 0;
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.3fr;
  gap:40px;
  padding-bottom:50px;
}
.logo-foot{margin-bottom:14px}
.foot-desc{
  font-size:14px;
  line-height:1.85;
  margin-bottom:22px;
  color:#9CA3AF;
}
.foot-title{
  color:#fff;
  font-size:16px;
  font-weight:800;
  margin-bottom:18px;
}
.foot-col ul li{margin-bottom:10px}
.foot-col ul li a{
  color:#9CA3AF;
  font-size:14px;
  transition:color .2s;
}
.foot-col ul li a:hover{color:var(--green)}
.contact-list li{
  font-size:14px;
  color:#D1D5DB;
  margin-bottom:10px;
}
.contact-list a{
  color:#D1D5DB;
  transition:color .2s;
}
.contact-list a:hover{color:var(--green)}
.copy-link{
  color:var(--green);
  font-weight:700;
  transition:color .2s;
}
.copy-link:hover{color:var(--green-light)}

.socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.soc{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(16,185,129,.10);
  color:var(--green);
  transition:all .25s ease;
}
.soc svg{width:18px;height:18px}
.soc:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-3px);
}

.footer-bottom{
  background:#030610;
  border-top:1px solid rgba(255,255,255,.05);
  padding:20px 0;
}
.fb-grid{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:30px;
  align-items:center;
  font-size:13px;
  color:#6B7280;
}
.risk{line-height:1.7}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width:1024px){
  .nav-links{display:none}
  .nav-burger{display:flex}
  .nav-cta .btn-ghost{display:none}

  .hero-title{font-size:36px}
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero{padding:60px 0 80px}

  .signals-grid{grid-template-columns:1fr;gap:40px}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:30px}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .sponsors-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .price-featured{transform:none}
  .price-featured:hover{transform:translateY(-6px)}
  .testi-grid{grid-template-columns:1fr;max-width:560px;margin:0 auto}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .fb-grid{grid-template-columns:1fr;text-align:right}

  .section-title{font-size:28px}
  .cta-title{font-size:32px}
  .stat-num{font-size:34px}
  .lg-row{font-size:26px}
  .lg-pro{font-size:10px}
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width:600px){
  .container{padding:0 18px}
  .hero{padding:50px 0 60px}
  .hero-title{font-size:28px}
  .hero-sub{font-size:16px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .trust-bar{gap:10px;justify-content:center}
  .trust-dot{display:none}

  .glass-card{padding:24px 20px}
  .stats-grid{grid-template-columns:1fr 1fr;gap:20px}
  .stat-num{font-size:32px}

  .section-title{font-size:24px}
  .section-title.dark-blue{font-size:26px}
  .section-head{margin-bottom:30px}

  .products-grid{grid-template-columns:1fr;max-width:360px;margin:0 auto}
  .sponsors-grid{grid-template-columns:1fr 1fr;gap:14px}
  .sponsor-card{padding:20px 14px;min-height:90px}

  .price-card{padding:28px 22px}
  .price-amount .big{font-size:46px}

  .cta-title{font-size:26px}
  .cta-sub{font-size:15px}
  .cta-actions{flex-direction:column;width:100%}
  .cta-actions .btn{width:100%}

  .footer-grid{grid-template-columns:1fr;text-align:right}
  .footer{padding-top:50px}

  .faq-item summary{font-size:15px;padding:16px 18px;gap:10px}
  .plus{width:28px;height:28px;font-size:18px}
}

/* Mobile drawer */
.nav-links.open{
  display:flex !important;
  position:absolute;
  top:100%;
  right:0;
  left:0;
  background:#0A0E1A;
  flex-direction:column;
  padding:20px 24px;
  border-bottom:1px solid rgba(255,255,255,.08);
  gap:0;
}
.nav-links.open a{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
  width:100%;
}
