:root{
  --bg:#070a14;
  --bg2:#0b1224;
  --card:rgba(255,255,255,.07);
  --card2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.96);
  --muted:rgba(255,255,255,.74);

  --accent:#22d3ee;
  --accent2:#8b5cf6;
  --accent3:#f97316;
  --radius:18px;
  --shadow:0 18px 70px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(980px 620px at 12% -6%, rgba(139,92,246,.32), transparent 62%),
    radial-gradient(980px 620px at 92% 6%, rgba(34,211,238,.26), transparent 62%),
    radial-gradient(820px 520px at 52% 18%, rgba(249,115,22,.14), transparent 64%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,20,.58);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex; align-items:center; gap:16px;
  padding:14px 0;
}
.brand__logo{height:34px; width:auto; display:block}
.nav{
  display:flex; gap:12px; margin-left:auto; flex-wrap:wrap;
}
.nav a{
  padding:10px 12px; border-radius:12px;
  color:rgba(255,255,255,.88);
}
.nav a:hover{background:rgba(255,255,255,.08)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg,var(--accent2),var(--accent),var(--accent3));
  box-shadow:0 14px 40px rgba(0,0,0,.28), 0 0 0 rgba(34,211,238,0);
  transition: transform .15s ease, filter .2s ease;
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.02); box-shadow:0 16px 50px rgba(0,0,0,.35), 0 0 26px rgba(34,211,238,.22)}
.btn--ghost{background:transparent; box-shadow:none}
.btn--soft{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none
}
.btn--full{width:100%}

/* Hero */
.hero{padding:44px 0 26px; position:relative}
.hero::before{
  content:"";
  position:absolute; inset:-60px -20px auto -20px;
  height:520px;
  background: radial-gradient(700px 360px at 25% 30%, rgba(34,211,238,.18), transparent 60%),
              radial-gradient(760px 380px at 70% 10%, rgba(139,92,246,.24), transparent 60%),
              radial-gradient(680px 360px at 55% 85%, rgba(249,115,22,.12), transparent 62%);
  pointer-events:none;
  filter: blur(0px);
}
.hero__grid{position:relative; z-index:1}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px; align-items:center;
}
.kicker{color:var(--muted); font-weight:700}
h1{
  margin:10px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.03;
  letter-spacing:-.4px;
  text-shadow: 0 0 34px rgba(139,92,246,.28), 0 0 22px rgba(34,211,238,.18);
}
.lead{color:var(--muted); line-height:1.8; margin:0 0 18px}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}

.hero__media{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
.hero__img{width:100%; height:auto; display:block; border-radius:14px}

.trust{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.trust__item{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,.9);
}

/* Sections */
.section{padding:40px 0}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:14px}
.h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:-.3px;
}
.center{text-align:center}
.sub{margin:0 0 18px; color:var(--muted)}
.muted{color:var(--muted)}
.note{margin-top:14px; color:var(--muted)}

/* Chips */
.chips{display:flex; gap:10px; flex-wrap:wrap; justify-content:center}
.chip{
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.86);
  font-weight:700;
}


/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.plan{
  position:relative;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
.plan__top{padding:10px}
.plan__top h3{margin:0 0 6px}
.price{font-size:38px; font-weight:900; letter-spacing:-.3px}
.list{margin:10px 0 14px; padding:0 10px; list-style:none}
.list li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
}
.list li:last-child{border-bottom:none}
.badge{
  position:absolute; top:12px; right:12px;
  background: linear-gradient(135deg,var(--accent2),var(--accent),var(--accent3));
  color:#08101a;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
}
.plan--popular{
  border-color: rgba(34,211,238,.45);
  transform: translateY(-3px);
}

/* Video */
.video{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card2);
}
.video iframe{width:100%; height:520px; border:0; display:block}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.step{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:12px;
  color:rgba(255,255,255,.88);
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tcard{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:16px;
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
}
.tname{font-weight:900; margin-bottom:8px}
.ttext{color:var(--muted); line-height:1.7}

/* FAQ */
.faq{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:rgba(255,255,255,.94);
}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.7}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.fbrand{font-weight:900}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{color:rgba(255,255,255,.82)}
.footer__links a:hover{text-decoration:underline}

/* WhatsApp */
.wa{
  position:fixed; right:16px; bottom:16px; z-index:9999;
  padding:12px 14px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow:0 18px 60px rgba(0,0,0,.30);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr 1fr}
  .testimonials{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .video iframe{height:360px}
}
@media (max-width: 520px){
  .pricing{grid-template-columns: 1fr}
  .nav{display:none}
}




/* ===== FIXED 4-ITEM AUTO SLIDER ===== */
.slider{
  width:100%;
  overflow:hidden;          /* هذا هو الـ viewport */
  position:relative;
}

.slider-track{
  display:flex;
  gap:18px;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.slide{
  flex:0 0 calc((100% - (18px * 3)) / 4);  /* 4 عناصر باينين */
  box-sizing:border-box;
}

.slide img{
  width:100%;
  aspect-ratio: 2 / 3;      /* نسبة بوستر احترافية */
  object-fit: cover;        /* يعمر الكادر بدون فراغ */
  border-radius:14px;
  display:block;
}

/* Mobile: 2 visible */
@media (max-width:768px){
  .slide{
    flex:0 0 calc((100% - 18px) / 2);
  }
  .slide img{
    height:200px;
  }
}

/* Channels logos slider: keep logos centered (no cropping) */
#channels .slide img{
  height: 120px;
  object-fit: contain;
  background: transparent;
}



/* ===== Center slider titles ===== */

.section__head{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__head .h2{
  margin-bottom: 10px;
}

.section__head .sub{
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ===== Features Cards ===== */
/* ===== Ultra Premium Features ===== */

.features-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* CARD */
.feature-card{
  position:relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  overflow:hidden;
}

/* Top gradient bar */
.feature-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background: linear-gradient(90deg,#7c3aed,#06b6d4,#f97316);
}

/* Hover Effect */
.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ICON */
.feature-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom: 16px;
  background: linear-gradient(135deg,#7c3aed,#06b6d4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* TITLE */
.feature-card h3{
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight:600;
  letter-spacing:0.3px;
}

/* TEXT */
.feature-card p{
  margin: 0;
  opacity: 0.75;
  line-height: 1.6;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 992px){
  .features-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 576px){
  .features-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card{
    padding: 22px;
  }
}
/* Extra life */
.trust__item:hover{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 0 22px rgba(34,211,238,.14);
}
.chip:hover{
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 0 20px rgba(139,92,246,.14);
}
.plan:hover{
  transform: translateY(-6px);
  border-color: rgba(34,211,238,.26);
}

.nav a:focus{
  outline:2px solid rgba(34,211,238,.35);
  outline-offset:2px;
}
