/* ═══════════════════════════════════════
   MOOV | موڤ — Main Stylesheet
   Brand Color: #702A80
   ═══════════════════════════════════════ */

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

:root {
  --purple: #702A80;
  --purple-light: #8E44AD;
  --purple-dark: #4A1A5E;
  --purple-soft: #EDE4F2;
  --purple-glow: #9B59B6;
  --gold: #F5C542;
  --teal: #2DD4A8;
  --coral: #FF6B6B;
  --dark: #1A1230;
  --dark2: #2D2640;
  --body-text: #4A4460;
  --muted: #8E8AA0;
  --white: #FFF;
  --off-white: #FDFBFE;
  --light-bg: #F5F2F8;
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--off-white);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.2); opacity: .2; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ TOP BAR ═══ */
.top-bar {
  background: var(--gold);
  text-align: center;
  padding: .45rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  z-index: 101;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(112,42,128,.08);
  padding: .65rem 2rem;
}
.nav-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  transition: all .3s;
}
.nav.scrolled .nav-logo { filter: none; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--dark2); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--white) !important;
  color: var(--purple) !important;
  padding: .4rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav.scrolled .nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--purple-dark), var(--purple) 50%, var(--purple-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 3rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -250px;
  left: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,66,.1), transparent 70%);
  animation: pulse 7s infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,168,.08), transparent 70%);
  animation: pulse 9s infinite 3s;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { animation: fadeUp 1s ease; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(245,197,66,.2);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #FDE68A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.8rem;
  line-height: 1.9;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.7rem;
  border-radius: 60px;
  font-family: var(--font-ar);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #FDE68A);
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(245,197,66,.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,197,66,.4);
}
.btn-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-white:hover { background: rgba(255,255,255,.2); }
.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(112,42,128,.3);
}
.btn-purple:hover { transform: translateY(-3px); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.hero-proof-pill {
  background: rgba(255,255,255,.08);
  padding: .3rem .8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-proof-pill strong { color: var(--white); }
.hero-visual { display: flex; justify-content: center; }
.hero-screen {
  width: 290px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: float 6s ease-in-out infinite;
}

/* ═══ SECTIONS COMMON ═══ */
section { padding: 4.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple);
  background: var(--purple-soft);
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .7rem;
}
.section-title em { font-style: normal; color: var(--purple); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ═══ FEATURE ROWS ═══ */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.feat-row.reverse .feat-img { order: -1; }
.feat-img { display: flex; justify-content: center; }
.feat-img img {
  width: 270px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
}
.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-bottom: .7rem;
}
.feat-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.feat-content h3 em { font-style: normal; color: var(--purple); }
.feat-content p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.feat-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.feat-tag {
  background: var(--light-bg);
  color: var(--dark2);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 50px;
  border: 1px solid rgba(112,42,128,.08);
}

/* ═══ QUIZ HOOK ═══ */
.quiz-hook {
  background: linear-gradient(145deg, #1A0E28, var(--dark));
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}
.quiz-hook::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,42,128,.12), transparent 60%);
}
.quiz-hook .section-inner { position: relative; z-index: 2; }
.quiz-hook .section-label { background: rgba(245,197,66,.12); color: var(--gold); }
.quiz-hook .section-title { color: var(--white); }
.quiz-hook .section-title em { color: var(--gold); }
.quiz-hook .section-sub { color: rgba(255,255,255,.6); }
.quiz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.quiz-cards { display: flex; flex-direction: column; gap: .8rem; }
.quiz-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all .4s;
}
.quiz-card:hover {
  background: rgba(142,68,173,.1);
  border-color: rgba(142,68,173,.3);
  transform: translateX(-6px);
}
.quiz-emoji {
  font-size: 1.8rem;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  flex-shrink: 0;
}
.quiz-card h3 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: .1rem; }
.quiz-card p { font-size: .7rem; color: rgba(255,255,255,.45); }
.quiz-arrow {
  margin-right: auto;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: all .3s;
}
.quiz-card:hover .quiz-arrow { opacity: 1; transform: translateX(-5px); }
.quiz-img { display: flex; justify-content: center; }
.quiz-img img {
  width: 270px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.quiz-trust {
  text-align: center;
  margin-top: 1.8rem;
  color: rgba(255,255,255,.3);
  font-size: .75rem;
}

/* ═══ SOCIAL PROOF ═══ */
.proof { background: var(--white); text-align: center; }
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.proof-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--purple);
}
.proof-stat-label { font-size: .85rem; color: var(--muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 1.3rem;
  text-align: right;
  border: 1px solid rgba(112,42,128,.05);
  transition: all .3s;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(112,42,128,.08);
}
.testimonial-stars { color: var(--gold); font-size: .8rem; margin-bottom: .5rem; }
.testimonial q {
  display: block;
  font-size: .88rem;
  color: var(--dark2);
  line-height: 1.8;
  margin-bottom: .7rem;
  font-style: normal;
}
.testimonial cite {
  font-size: .75rem;
  color: var(--purple);
  font-weight: 600;
  font-style: normal;
}

/* ═══ CONTACT FORM ═══ */
.contact { background: var(--light-bg); padding: 5rem 2rem; }
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(112,42,128,.06);
  border: 1px solid rgba(112,42,128,.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-ar);
  font-size: .92rem;
  padding: .75rem 1rem;
  border: 1.5px solid #E0D8E8;
  border-radius: 12px;
  background: var(--off-white);
  color: var(--dark);
  transition: all .3s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(112,42,128,.08);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8B0C8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238E8AA0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
}
.form-submit {
  width: 100%;
  padding: .9rem;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 8px 25px rgba(112,42,128,.25);
  margin-top: .5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(112,42,128,.35);
}
.form-note { text-align: center; margin-top: 1rem; font-size: .75rem; color: var(--muted); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.form-success p { font-size: .95rem; color: var(--muted); }
.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
}

/* ═══ CTA FINAL ═══ */
.cta-final {
  background: linear-gradient(145deg, var(--purple-dark), var(--purple));
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,66,.1), transparent 60%);
}
.cta-final .section-inner { position: relative; z-index: 2; }
.cta-final h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .8rem;
}
.cta-final h2 em { font-style: normal; color: var(--gold); }
.cta-final p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-share { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: 1.3rem; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.4);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: .78rem;
  line-height: 2;
}
.footer a { color: var(--purple-glow); text-decoration: none; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: .8rem; }
.footer-company {
  color: rgba(255,255,255,.25);
  margin-top: .8rem;
  font-family: var(--font-en);
  font-size: .7rem;
  direction: ltr;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero-inner, .feat-row, .quiz-layout { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feat-row.reverse .feat-img { order: 0; }
  .feat-img img, .quiz-img img, .hero-screen { width: 230px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .proof-stats { flex-direction: column; gap: 1.2rem; align-items: center; }
  .hero-text, .feat-content { text-align: center; }
  .hero-ctas, .feat-tags, .hero-proof { justify-content: center; }
  .quiz-layout > div:first-child { text-align: center; }
  .quiz-layout .section-sub { margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .feat-content h3 { font-size: 1.2rem; }
  .feat-img img, .quiz-img img, .hero-screen { width: 200px; }
  .top-bar { font-size: .75rem; }
}
