/* Start custom CSS for html, class: .elementor-element-2f0f5ac */:root{
  --bg: #0b0b0b;
  --card: #101010;
  --text: #ffffff;
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.12);
  --yellow: #ffd400;
  --yellow2: #ffea61;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(255,212,0,.12), transparent 60%),
    radial-gradient(900px 500px at 80% 25%, rgba(255,212,0,.08), transparent 60%),
    var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1100px, 92vw); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,.72);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; }
.brand-mark{
  width:14px; height:14px; border-radius:50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,212,0,.10);
}
.brand-name{ letter-spacing:.3px; }

.nav{ display:flex; align-items:center; gap:16px; }
.nav a{ color: var(--muted); font-weight:700; }
.nav a:hover{ color:#fff; }
.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.35);
  color:#111 !important;
  background: var(--yellow);
}

.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  padding:26px 0 10px;
}

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,212,0,.25);
  border-radius:999px;
  background: rgba(255,212,0,.08);
  color: rgba(255,255,255,.92);
  font-weight:700;
}
.kicker i{ color: var(--yellow); font-size:18px; }

.hero-title{
  margin:14px 0 10px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: .2px;
}
.hl{ color: var(--yellow); }

.hero-sub{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 16px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size: 13px;
}
.badge i{ color: var(--yellow); }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 14px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--yellow);
  color: #111;
  border-color: rgba(255,212,0,.35);
  box-shadow: 0 10px 26px rgba(255,212,0,.12);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  color:#fff;
  border-color: var(--line);
}
.btn-full{ width:100%; }

.meta{
  display:flex; flex-wrap:wrap;
  gap:12px;
  margin-top: 10px;
}
.meta-item{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.88);
  font-weight:700;
  font-size: 13px;
}
.meta-item i{ color: var(--yellow); font-size:18px; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-head{
  padding:16px 16px 12px;
  border-bottom: 1px solid var(--line);
}
.card-title{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.card-title i{ color: var(--yellow); font-size:20px; }
.card-note{ color: var(--muted); font-size: 13px; margin-top:6px; }

.video-wrap{ padding: 12px 16px 16px; }
video{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}

.form-card{ margin-top:14px; }
.status{
  display:none;
  padding: 12px 16px;
  border-bottom:1px solid var(--line);
  font-weight:700;
}
.status.show{ display:block; }
.status.ok{ background: rgba(0,255,130,.08); color: rgba(255,255,255,.92); }
.status.err{ background: rgba(255,70,70,.10); color: rgba(255,255,255,.92); }

.lead-form{ padding: 14px 16px 18px; }
.field{ margin-bottom: 12px; }
label{
  display:block;
  margin-bottom: 6px;
  font-weight:800;
  color: rgba(255,255,255,.92);
}
.req{ color: var(--yellow2); }

.input{
  position:relative;
  display:flex; align-items:center;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  border-radius: 14px;
  padding: 0 12px;
}
.input i{
  color: rgba(255,255,255,.70);
  font-size: 18px;
  margin-left: 8px; /* RTL */
}
input, select{
  width:100%;
  padding: 12px 10px;
  border:0;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
select option{ color:#111; }
.hint{
  display:block;
  color: rgba(255,255,255,.62);
  margin-top:6px;
  font-size: 12px;
}

.fineprint{
  margin: 12px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  display:flex; align-items:center; gap:8px;
}
.fineprint i{ color: var(--yellow); }

.strip{ padding: 26px 0; }
.section-title{
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing:.2px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini, .list-card{
  border:1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.mini i{
  color: var(--yellow);
  font-size: 22px;
}
.mini h3{ margin: 10px 0 8px; font-size: 16px; }
.mini p{ margin:0; color: var(--muted); line-height: 1.8; font-size: 14px; }

.list-card h3{
  margin:0 0 10px;
  display:flex; align-items:center; gap:10px;
}
.list-card i{ color: var(--yellow); font-size: 20px; }
.list-card ul{ margin:0; padding:0 18px; color: var(--muted); line-height: 2; }

.center-cta{ display:flex; justify-content:center; margin-top:16px; }

.faq details{
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  display:flex; align-items:center; gap:10px;
}
.faq summary i{ color: var(--yellow); font-size: 18px; }
.faq p{ margin: 10px 0 0; color: var(--muted); line-height: 1.8; }

.footer{
  border-top:1px solid var(--line);
  padding: 18px 0 26px;
  margin-top: 18px;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  color: rgba(255,255,255,.75);
}
.foot-right{ display:flex; gap:14px; }
.foot-right a{ color: rgba(255,255,255,.75); }
.foot-right a:hover{ color:#fff; }
.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 34px; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}/* End custom CSS */