:root{
  --blue:#2D80FF;
  --purple:#A944FF;
  --gradient: linear-gradient(135deg, var(--blue), var(--purple));
  --text:#1a1a2e;
  --text-light:#5b5b6e;
  --bg-soft: #f6f7fd;
  --radius: 16px;
}

*{box-sizing:border-box;margin:0;padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:'Heebo', sans-serif;
  color:var(--text);
  background:#fff;
  direction:rtl;
  overflow-x:hidden;
  line-height:1.55;
}

.container{
  max-width:760px;
  margin:0 auto;
  padding:0 20px;
}

img{max-width:100%;display:block;}

/* ---------- Gradient text ---------- */
.gradient-text{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  white-space:nowrap;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  font-weight:700;
  font-size:1.05rem;
  padding:16px 36px;
  border-radius:12px;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
  border:none;
}
.btn-primary{
  background:var(--gradient);
  color:#fff;
  box-shadow:0 8px 24px rgba(45,128,255,.28);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(45,128,255,.36);
}
.btn-primary:active{
  transform:scale(.97);
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:64px 0 56px;
  text-align:center;
  background:linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.35;
  z-index:0;
  pointer-events:none;
}
.hero-glow-1{
  width:340px;height:340px;
  background:var(--blue);
  top:-140px; right:-100px;
}
.hero-glow-2{
  width:300px;height:300px;
  background:var(--purple);
  bottom:-140px; left:-100px;
}
.hero .container{position:relative;z-index:1;}

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
}
.logo-img{
  height:34px;
  width:auto;
}

.stat-badge{
  display:inline-block;
  font-size:.9rem;
  font-weight:600;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(45,128,255,.08);
  border:1px solid rgba(45,128,255,.25);
  color:var(--blue);
  margin-bottom:22px;
}
.stat-badge-hot{
  background:var(--gradient);
  color:#fff;
  border:none;
  font-size:.95rem;
  padding:8px 20px;
  box-shadow:0 4px 16px rgba(45,128,255,.3);
}

.hero h1{
  font-size:2.4rem;
  font-weight:800;
  line-height:1.25;
  margin-bottom:18px;
}

.hero-subtitle{
  font-size:1.1rem;
  color:var(--text-light);
  max-width:520px;
  margin:0 auto 30px;
}

.hero-photo{
  position:relative;
  display:flex;
  justify-content:center;
  margin-bottom:26px;
}
.hero-photo::before{
  content:"";
  position:absolute;
  top:10%;
  width:220px;height:220px;
  border-radius:50%;
  background:var(--gradient);
  opacity:.18;
  filter:blur(30px);
  z-index:0;
}
.hero-photo-img{
  position:relative;
  z-index:1;
  height:240px;
  width:auto;
  object-fit:contain;
}

.hero-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.cta-note{
  font-size:.85rem;
  color:var(--text-light);
}

/* ---------- Section shared ---------- */
.section-title{
  font-size:1.7rem;
  font-weight:800;
  text-align:center;
  margin-bottom:10px;
}
.section-subtitle{
  text-align:center;
  color:var(--text-light);
  font-size:1rem;
  max-width:480px;
  margin:0 auto 32px;
}

/* ---------- Value props ---------- */
.value-props{padding:56px 0 24px;}
.value-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:32px;
}
.value-card{
  background:var(--bg-soft);
  border-radius:var(--radius);
  padding:26px 20px;
  text-align:center;
}
.value-icon{font-size:1.8rem;margin-bottom:12px;}
.value-card h3{
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:8px;
}
.value-card p{
  font-size:.92rem;
  color:var(--text-light);
}

/* ---------- Founder line ---------- */
.founder-line{
  padding:32px 0;
  text-align:center;
}
.founder-line p{
  font-size:1.05rem;
  max-width:560px;
  margin:0 auto;
}

/* ---------- Testimonials ---------- */
.testimonials{
  padding:40px 0 56px;
  background:var(--bg-soft);
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
  margin-top:32px;
}
.testimonial-card{
  background:#fff;
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 4px 20px rgba(20,20,40,.06);
}
.testimonial-card p{
  font-size:.98rem;
  margin-bottom:14px;
}
.testimonial-author{
  font-size:.85rem;
  color:var(--text-light);
  font-weight:600;
}
.testimonial-card-img{
  padding:12px 12px 20px;
}
.testimonial-card-img img{
  width:100%;
  border-radius:10px;
  margin-bottom:14px;
  display:block;
}
.testimonial-card-img .testimonial-author{
  display:block;
  padding:0 8px;
}

/* ---------- Registration ---------- */
.registration{
  padding:56px 0;
}

/* ---------- Final CTA ---------- */
.final-cta{
  padding:56px 0 64px;
  text-align:center;
  background:linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.final-cta h2{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:24px;
}
.closing-line{
  margin-top:22px;
  font-size:1rem;
  color:var(--text-light);
  line-height:1.7;
}

/* ---------- Footer ---------- */
.site-footer{
  padding:32px 0 40px;
  text-align:center;
}
.footer-privacy{
  display:block;
  font-size:.85rem;
  color:var(--text-light);
  text-decoration:underline;
  margin-bottom:18px;
}
.site-footer-social{
  display:flex;
  justify-content:center;
  gap:14px;
}
.site-footer-social a{
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid #e2e2ec;
  display:flex;align-items:center;justify-content:center;
  color:var(--text);
  transition:transform .18s ease, color .18s ease, border-color .18s ease;
}
.site-footer-social a:hover{
  transform:translateY(-3px);
  border-color:transparent;
}
.site-footer-social a:nth-child(1):hover{color:#E1306C;}
.site-footer-social a:nth-child(2):hover{color:#0A66C2;}

/* ---------- Animations ---------- */
.fade-up{
  opacity:0;
  transform:translateY(16px);
  animation:fadeUp .6s ease forwards;
}
@keyframes fadeUp{
  to{opacity:1; transform:translateY(0);}
}
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .fade-up, .reveal{
    animation:none !important;
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}

/* ---------- Mobile ---------- */
@media (max-width:640px){
  .hero{padding:48px 0 40px;}
  .hero h1{font-size:1.85rem;}
  .hero-subtitle{font-size:1rem;}
  .logo-img{height:28px;}
  .hero-photo-img{height:180px;}
  .hero-photo::before{width:170px;height:170px;}
  .value-grid{grid-template-columns:1fr;}
  .testimonial-grid{grid-template-columns:1fr;}
  .section-title{font-size:1.4rem;}
  .final-cta h2{font-size:1.5rem;}
  .btn{width:100%;text-align:center;padding:16px 20px;}
  .wk-picker-wrap{flex-direction:column;align-items:center;}
  .wk-date-card{width:100%;max-width:320px;}
  /* larger tap target for the modal close button on mobile
     (extra class needed to out-specificity the pasted widget style block,
     which is a same-specificity rule that appears later in the document) */
  .wk-overlay .wk-modal-close{width:44px;height:44px;line-height:44px;font-size:1.1rem;}
}
