/* ---------------
   Brand theme (RTL)
   --------------- */

:root{
  --bg0:#04071b;
  --bg1:#07145a;
  --bg2:#0b2a9b;

  --text:#ffffff;
  --muted:rgba(255,255,255,.74);
  --muted2:rgba(255,255,255,.56);

  --card:rgba(255,255,255,.08);
  --card2:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.14);

  --yellow:#F7C948;
  --yellow2:#ffd87a;

  --shadow: 0 16px 48px rgba(0,0,0,.25);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Cairo", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 85% 15%, rgba(44,105,255,.40), transparent 60%),
              radial-gradient(800px 500px at 15% 85%, rgba(247,201,72,.20), transparent 55%),
              linear-gradient(135deg, var(--bg2), var(--bg0));
  /* Keep the backdrop visually consistent on long pages (avoid a "repeated" gradient feel) */
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x:hidden;
}

/* Decorative background */
.bg-orb{
  position:fixed;
  width:520px;
  height:520px;
  border-radius:50%;
  filter: blur(70px);
  opacity:.55;
  z-index:-3;
}
.bg-orb--1{ right:-240px; top:-220px; background: rgba(247,201,72,.35); }
.bg-orb--2{ left:-260px; bottom:-240px; background: rgba(40,108,255,.32); }

.dots{
  position:fixed;
  inset:0;
  z-index:-2;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity:.15;
  mask-image: radial-gradient(circle at 80% 20%, rgba(0,0,0,1), rgba(0,0,0,0) 62%);
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin-inline:auto;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  backdrop-filter: blur(12px);
  background: rgba(3, 7, 24, .45);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index:10;
}
.topbar__inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}
.brand__icon{ width:44px; height:44px; }
.brand__name{ font-weight:800; letter-spacing:.2px; }
.brand__sub{ font-size:12px; color:var(--muted2); margin-top:-2px; }

.nav{
  display:none;
  gap:18px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  border-bottom:1px solid transparent;
  padding:8px 2px;
}
.nav a:hover{ color:var(--text); border-color: rgba(247,201,72,.55); }

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

.btn{
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--yellow);
  color:#08123b;
  box-shadow: 0 10px 24px rgba(247,201,72,.20);
}
.btn--primary:hover{
  background: var(--yellow2);
  box-shadow: 0 14px 34px rgba(247,201,72,.22);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color:var(--text);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
}

.btn--shine{
  position:relative;
  overflow:hidden;
}
.btn--shine::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: shine 4.8s ease-in-out infinite;
}
@keyframes shine{
  0%, 58% { transform: translateX(-120%); opacity:0; }
  62% { opacity: .9; }
  78% { transform: translateX(120%); opacity:0; }
  100% { transform: translateX(120%); opacity:0; }
}

/* Hero */
.hero{
  padding: 46px 0 28px;
}
.hero__grid{
  display:grid;
  gap:22px;
  grid-template-columns: 1fr;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size:13px;
  width:fit-content;
}
.hero h1{
  margin:14px 0 10px;
  line-height:1.2;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing:.2px;
}
.lead{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
  max-width: 56ch;
}
.cta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.cta--small{ margin-top:14px; }

.chips{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  border-radius:999px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  color: rgba(255,255,255,.85);
  font-weight:700;
  cursor:pointer;
  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}
.chip:hover{ border-color: rgba(247,201,72,.45); transform: translateY(-1px); }
.chip--active{
  background: rgba(247,201,72,.18);
  border-color: rgba(247,201,72,.55);
  color: #fff;
}

.note{
  margin-top:16px;
  padding:12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  line-height:1.6;
  font-size: 13px;
}

.hero__media{
  display:flex;
  justify-content:center;
}
.media-card{
  width: min(460px, 100%);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
  transform: translateZ(0);
}
.poster{
  width:100%;
  height:auto;
  display:block;
}
.media-badge{
  position:absolute;
  inset:auto 14px 14px 14px;
  padding:10px 12px;
  border-radius: 999px;
  display:flex;
  gap:10px;
  align-items:center;
  background: rgba(3, 7, 24, .65);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  color: rgba(255,255,255,.88);
}
.media-badge .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(247,201,72,.14);
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__title{
  margin:0 0 10px;
  font-size: 26px;
}
.section__subtitle{
  margin:0 0 26px;
  color: var(--muted);
  max-width: 70ch;
  line-height:1.7;
}

.cards{
  display:grid;
  gap:14px;
  grid-template-columns: 1fr;
}
.card{
  background: var(--card2);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.card__icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(247,201,72,.18);
  border:1px solid rgba(247,201,72,.35);
  margin-bottom:12px;
  font-weight:900;
}
.card h3{ margin: 0 0 6px; font-size: 18px; }
.card p{ margin:0; color: var(--muted); line-height:1.75; font-size:14px; }

.video-grid{
  display:grid;
  gap:18px;
  grid-template-columns: 1fr;
  align-items:center;
}
.video-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.video{
  width:100%;
  height:auto;
  display:block;
}

.bullets{
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
  line-height:1.9;
}
.bullets li{ margin: 6px 0; }

.faq{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height:1.85;
}

/* Final CTA */
.final-cta{
  padding: 30px 0 56px;
}
.final-cta__inner{
  border-radius: calc(var(--radius) + 8px);
  padding: 22px 16px;
  background: linear-gradient(135deg, rgba(247,201,72,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(247,201,72,.26);
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:flex-start;
}
.final-cta h2{
  margin:0 0 6px;
  font-size: 22px;
}
.final-cta p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}
.final-cta__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 7, 24, .55);
  padding: 20px 0;
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__logo{ width: 160px; height:auto; }
.footer__text small{ color: var(--muted2); }
.footer__meta{ color: var(--muted); }
.footer__meta small{ color: var(--muted2); }

/* Responsive */
@media (min-width: 900px){
  .nav{ display:flex; }
  .hero{ padding: 58px 0 38px; }
  .hero__grid{ grid-template-columns: 1.1fr .9fr; gap:22px; }
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .video-grid{ grid-template-columns: 1fr 1fr; }
  .final-cta__inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding: 24px 22px;
  }
  .footer__inner{
    flex-direction:row;
    align-items:center;
  }
}
