/* ═══════════════════════════════════════════════════════════════
   VAGUY CREATORLAB — STYLESHEET
   ═══════════════════════════════════════════════════════════════ */

:root {
  --vaguy-pink: #FF6B9D;
  --vaguy-purple: #C084FC;
  --vaguy-blue: #60A5FA;
  --vaguy-dark: #0F0F1A;
  --vaguy-darker: #08080F;
  --vaguy-card: #16162A;
  --vaguy-border: rgba(255,255,255,0.08);
  --gradient-main: linear-gradient(135deg, #FF6B9D 0%, #C084FC 50%, #60A5FA 100%);
  --gradient-glow: linear-gradient(135deg, rgba(255,107,157,0.3) 0%, rgba(192,132,252,0.2) 50%, rgba(96,165,250,0.3) 100%);
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html { scroll-behavior:smooth; }
body {
  font-family:'Tajawal',sans-serif;
  background:var(--vaguy-darker);
  color:#fff;
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

/* ─── PARTICLES ─── */
.particles {
  position:fixed; top:0; left:0; width:100%; height:100%;
  pointer-events:none; z-index:0; overflow:hidden;
}
.particle {
  position:absolute; border-radius:50%; opacity:0.12;
  animation:floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform:translateY(100vh) scale(0); opacity:0; }
  10% { opacity:0.18; }
  90% { opacity:0.18; }
  100% { transform:translateY(-10vh) scale(1); opacity:0; }
}

::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--vaguy-darker); }
::-webkit-scrollbar-thumb { background:var(--vaguy-pink); border-radius:3px; }

.container { max-width:480px; margin:0 auto; position:relative; z-index:1; padding:0 20px; }

/* ─── HEADER ─── */
.header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:12px 20px;
  background:rgba(8,8,15,0.88);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--vaguy-border);
}
.header-inner {
  max-width:480px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  position:relative;
}
.logo-area { display:flex; align-items:center; gap:10px; }
.logo-img {
  width:36px; height:36px; border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 20px rgba(255,107,157,0.4);
}
.header-title {
  position:absolute; left:50%;
  transform:translateX(-50%);
  font-family:'Aref Ruqaa','Tajawal',serif;
  font-size:15px; font-weight:700;
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  white-space:nowrap; letter-spacing:0.5px;
}
.header-cta {
  background:var(--gradient-main); color:#fff; border:none;
  padding:8px 18px; border-radius:50px;
  font-family:'Tajawal',sans-serif; font-weight:700; font-size:12px;
  cursor:pointer;
  box-shadow:0 4px 20px rgba(255,107,157,0.4);
  animation:pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow:0 4px 20px rgba(255,107,157,0.4); }
  50% { box-shadow:0 4px 30px rgba(255,107,157,0.7); }
}

/* ─── HERO ─── */
.hero { padding-top:100px; padding-bottom:30px; text-align:center; position:relative; }
.hero-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,107,157,0.1);
  border:1px solid rgba(255,107,157,0.3);
  padding:8px 18px; border-radius:50px;
  font-size:12px; font-weight:500; color:var(--vaguy-pink);
  margin-bottom:24px; animation:fadeInDown 0.8s ease;
}
.hero-badge .dot {
  width:8px; height:8px; background:#22C55E;
  border-radius:50%; animation:blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size:32px; font-weight:900; line-height:1.3;
  margin-bottom:16px; animation:fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .gradient-text {
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-subtitle {
  font-size:16px; color:rgba(255,255,255,0.6);
  line-height:1.8; margin-bottom:28px;
  animation:fadeInUp 0.8s ease 0.4s both;
}
.hero-visual { position:relative; margin:30px 0; animation:fadeInUp 0.8s ease 0.6s both; }
.hero-glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:280px; height:280px;
  background:var(--gradient-glow);
  border-radius:50%; filter:blur(60px); opacity:0.6;
  animation:glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100%{transform:translate(-50%,-50%) scale(1); opacity:0.6}
  50%{transform:translate(-50%,-50%) scale(1.2); opacity:0.4}
}
.hero-phone {
  position:relative; z-index:2; width:220px; height:420px;
  margin:0 auto; background:var(--vaguy-card);
  border-radius:32px; border:2px solid rgba(255,255,255,0.1);
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,157,0.15);
}
.phone-screen { padding:20px; height:100%; display:flex; flex-direction:column; gap:12px; }
.phone-header { display:flex; align-items:center; gap:10px; padding-bottom:12px; border-bottom:1px solid var(--vaguy-border); }
.phone-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--gradient-main);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:16px;
}
.phone-info h4 { font-size:13px; font-weight:700; }
.phone-info p { font-size:10px; color:rgba(255,255,255,0.5); }
.phone-stats { display:flex; gap:16px; padding:8px 0; }
.stat-box {
  flex:1; text-align:center; padding:10px 6px;
  background:rgba(255,255,255,0.03);
  border-radius:12px; border:1px solid var(--vaguy-border);
}
.stat-box .num {
  font-size:18px; font-weight:900;
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-box .lbl { font-size:9px; color:rgba(255,255,255,0.5); margin-top:2px; }
.phone-video {
  flex:1;
  background:linear-gradient(180deg, rgba(255,107,157,0.1) 0%, rgba(96,165,250,0.1) 100%);
  border-radius:16px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
  position:relative; overflow:hidden;
}
.phone-video::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--gradient-main);
  animation:progress 3s ease-in-out infinite;
}
@keyframes progress { 0%{width:0%} 100%{width:100%} }
.play-btn {
  width:50px; height:50px; border-radius:50%;
  background:var(--gradient-main);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  box-shadow:0 0 30px rgba(255,107,157,0.5);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.phone-video p { font-size:11px; color:rgba(255,255,255,0.6); }
.phone-engagement { display:flex; gap:8px; }
.eng-btn {
  flex:1; padding:8px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--vaguy-border);
  border-radius:10px; text-align:center;
  font-size:11px; color:rgba(255,255,255,0.6);
}

/* ─── CTAs ─── */
.cta-main {
  display:block; width:100%; padding:18px 24px;
  background:var(--gradient-main); color:#fff;
  border:none; border-radius:16px;
  font-family:'Tajawal',sans-serif;
  font-size:18px; font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 30px rgba(255,107,157,0.4);
  margin:24px 0 12px;
  position:relative; overflow:hidden;
  animation:fadeInUp 0.8s ease 0.8s both;
  transition:transform 0.2s ease;
}
.cta-main:active { transform:scale(0.97); }
.cta-main::after {
  content:''; position:absolute;
  top:-50%; left:-50%; width:200%; height:200%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation:shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.cta-sub {
  text-align:center; font-size:12px;
  color:rgba(255,255,255,0.4);
  animation:fadeInUp 0.8s ease 1s both;
}
.trust-badges {
  display:flex; justify-content:center; gap:16px;
  margin-top:16px; flex-wrap:wrap;
}
.trust-badge {
  display:flex; align-items:center; gap:6px;
  font-size:11px; color:rgba(255,255,255,0.4);
}
.trust-badge span { font-size:16px; }

/* ─── SOCIAL PROOF ─── */
.social-proof { padding:30px 0; animation:fadeInUp 0.8s ease 1.2s both; }
.sp-header { text-align:center; margin-bottom:20px; }
.sp-avatars {
  display:flex; justify-content:center;
  align-items:center; margin-bottom:12px;
}
.sp-avatar {
  width:44px; height:44px; border-radius:50%;
  border:3px solid var(--vaguy-darker);
  margin-right:-12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; position:relative;
  overflow:hidden;
}
.sp-avatar:first-child { margin-right:0; }
.sp-avatar:nth-child(1) { background:linear-gradient(135deg,#FF6B9D,#C084FC); }
.sp-avatar:nth-child(2) { background:linear-gradient(135deg,#C084FC,#60A5FA); }
.sp-avatar:nth-child(3) { background:linear-gradient(135deg,#60A5FA,#22C55E); }
.sp-avatar:nth-child(4) { background:linear-gradient(135deg,#F59E0B,#FF6B9D); font-size:12px; }
.sp-stars { text-align:center; font-size:18px; color:#FBBF24; margin-bottom:6px; }
.sp-header h3 { font-size:14px; font-weight:700; color:rgba(255,255,255,0.8); }
.sp-text { text-align:center; font-size:13px; color:rgba(255,255,255,0.6); }
.sp-text strong { color:#fff; }

/* ─── URGENCY ─── */
.urgency-bar {
  background:linear-gradient(90deg, rgba(255,107,157,0.15), rgba(192,132,252,0.15), rgba(96,165,250,0.15));
  border:1px solid rgba(255,107,157,0.2);
  border-radius:16px; padding:16px 20px;
  margin:20px 0; text-align:center;
  animation:fadeInUp 0.8s ease 1.4s both;
}
.urgency-bar .urg-label {
  font-size:12px; color:var(--vaguy-pink);
  font-weight:700; margin-bottom:8px;
  display:flex; align-items:center; justify-content:center; gap:6px;
}
.urgency-bar h4 { font-size:18px; font-weight:900; margin-bottom:4px; }
.urgency-bar p { font-size:13px; color:rgba(255,255,255,0.6); }
.countdown {
  display:flex; justify-content:center; gap:12px; margin-top:12px;
}
.countdown-item {
  background:rgba(255,255,255,0.05);
  border:1px solid var(--vaguy-border);
  border-radius:12px; padding:10px 14px; min-width:56px;
}
.countdown-item .cd-num {
  font-size:22px; font-weight:900;
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.countdown-item .cd-lbl { font-size:10px; color:rgba(255,255,255,0.5); }

/* ─── SECTIONS ─── */
.section { padding:40px 0; }
.section-header { text-align:center; margin-bottom:28px; }
.section-tag {
  display:inline-block; font-size:11px; font-weight:700;
  color:var(--vaguy-pink);
  background:rgba(255,107,157,0.1);
  padding:6px 14px; border-radius:50px;
  margin-bottom:12px; letter-spacing:1px;
}
.section-header h2 {
  font-size:26px; font-weight:900; line-height:1.3; margin-bottom:10px;
}
.section-header p { font-size:15px; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ─── INSTRUCTORS ─── */
.instructors-track {
  display:flex; gap:14px;
  overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:10px; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.instructors-track::-webkit-scrollbar { display:none; }
.instructor-card {
  min-width:300px;
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:24px;
  overflow:hidden;
  scroll-snap-align:start;
  position:relative;
  transition:transform 0.3s ease;
}
.instructor-card:active { transform:scale(0.97); }
.instructor-img-wrap {
  position:relative; height:200px; overflow:hidden;
}
.instructor-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s ease;
}
.instructor-card:hover .instructor-img-wrap img { transform:scale(1.05); }
.instructor-img-overlay {
  position:absolute; bottom:0; left:0; right:0;
  height:60%;
  background:linear-gradient(to top, var(--vaguy-card) 20%, transparent);
}
.instructor-badge {
  position:absolute; top:12px; right:12px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  padding:4px 12px; border-radius:50px;
  font-size:11px; font-weight:700;
  border:1px solid rgba(255,255,255,0.1);
}
.instructor-body { padding:0 20px 20px; }
.instructor-body h3 { font-size:20px; font-weight:900; margin-bottom:4px; }
.instructor-body .role {
  font-size:13px; color:var(--vaguy-pink);
  font-weight:700; margin-bottom:10px;
}
.instructor-body .bio {
  font-size:13px; color:rgba(255,255,255,0.55);
  line-height:1.7; margin-bottom:14px;
}
.instructor-stats {
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px;
}
.instructor-stats .istat {
  background:rgba(255,255,255,0.03);
  border:1px solid var(--vaguy-border);
  border-radius:10px; padding:6px 12px;
  font-size:12px; color:rgba(255,255,255,0.7);
  display:flex; align-items:center; gap:4px;
}
.instructor-stats .istat b {
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.instructor-links { display:flex; gap:8px; }
.instructor-links a {
  flex:1; text-align:center; padding:10px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--vaguy-border);
  border-radius:12px; color:#fff;
  text-decoration:none; font-size:12px; font-weight:700;
  transition:all 0.2s ease;
}
.instructor-links a:hover {
  background:var(--gradient-main); border-color:transparent;
}

/* ─── PROBLEM ─── */
.problem-cards { display:flex; flex-direction:column; gap:12px; }
.prob-card {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:16px; padding:18px 20px;
  display:flex; align-items:flex-start; gap:14px;
  transition:all 0.3s ease;
}
.prob-card:active { transform:scale(0.98); }
.prob-icon {
  width:44px; height:44px; min-width:44px;
  border-radius:12px;
  background:rgba(239,68,68,0.1);
  border:1px solid rgba(239,68,68,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
}
.prob-card h4 { font-size:15px; font-weight:700; margin-bottom:4px; }
.prob-card p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.6; }

/* ─── SOLUTION ─── */
.sol-visual {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:20px; padding:24px;
  margin-bottom:20px; position:relative; overflow:hidden;
}
.sol-visual::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; background:var(--gradient-main);
}
.sol-step {
  display:flex; align-items:flex-start; gap:14px;
  padding:16px 0; border-bottom:1px solid var(--vaguy-border);
}
.sol-step:last-child { border-bottom:none; padding-bottom:0; }
.sol-step:first-child { padding-top:0; }
.step-num {
  width:36px; height:36px; min-width:36px;
  border-radius:50%; background:var(--gradient-main);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:14px;
  box-shadow:0 0 15px rgba(255,107,157,0.3);
}
.sol-step h4 { font-size:15px; font-weight:700; margin-bottom:4px; }
.sol-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.6; }

/* ─── GALLERY ─── */
.gallery-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.gallery-item {
  position:relative; border-radius:16px; overflow:hidden;
  border:1px solid var(--vaguy-border);
  aspect-ratio:1;
}
.gallery-item.wide { grid-column:span 2; aspect-ratio:16/9; }
.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s ease;
}
.gallery-item:active img { transform:scale(1.05); }
.gallery-label {
  position:absolute; bottom:0; left:0; right:0;
  padding:12px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size:12px; font-weight:700;
}

/* ─── OUTPUTS ─── */
.outputs-grid { display:flex; flex-direction:column; gap:14px; }
.output-card {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:20px; padding:22px;
  position:relative; overflow:hidden;
}
.output-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; background:var(--gradient-main);
}
.output-card .out-icon {
  width:50px; height:50px; border-radius:14px;
  background:rgba(255,107,157,0.1);
  border:1px solid rgba(255,107,157,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:14px;
}
.output-card h4 { font-size:17px; font-weight:900; margin-bottom:6px; }
.output-card p { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.7; }
.output-card .out-tag {
  display:inline-block; margin-top:10px;
  font-size:11px; font-weight:700;
  color:#22C55E; background:rgba(34,197,94,0.1);
  padding:4px 12px; border-radius:50px;
}

/* ─── KIT ─── */
.kit-card {
  background:linear-gradient(135deg, rgba(255,107,157,0.08), rgba(192,132,252,0.08));
  border:1px solid rgba(255,107,157,0.25);
  border-radius:20px; padding:24px;
  position:relative; overflow:hidden;
}
.kit-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; background:var(--gradient-main);
}
.kit-card h3 { font-size:20px; font-weight:900; margin-bottom:4px; }
.kit-card .kit-sub { font-size:13px; color:rgba(255,255,255,0.5); margin-bottom:18px; }
.kit-item {
  display:flex; align-items:center; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--vaguy-border);
}
.kit-item:last-child { border-bottom:none; }
.kit-item .kit-icon {
  width:36px; height:36px; min-width:36px;
  border-radius:10px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--vaguy-border);
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
}
.kit-item div h5 { font-size:14px; font-weight:700; }
.kit-item div p { font-size:12px; color:rgba(255,255,255,0.5); }
.kit-gift {
  margin-top:16px; padding:14px;
  background:rgba(245,158,11,0.1);
  border:1px dashed rgba(245,158,11,0.3);
  border-radius:14px; text-align:center;
}
.kit-gift span { font-size:20px; }
.kit-gift p { font-size:13px; font-weight:700; color:#F59E0B; margin-top:4px; }

/* ─── FEATURES ─── */
.features-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.feature-card {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:16px; padding:20px 16px;
  text-align:center; transition:all 0.3s ease;
}
.feature-card:active { transform:scale(0.95); }
.feature-icon {
  width:50px; height:50px; margin:0 auto 12px;
  border-radius:14px;
  background:rgba(255,107,157,0.1);
  border:1px solid rgba(255,107,157,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
}
.feature-card:nth-child(2) .feature-icon { background:rgba(192,132,252,0.1); border-color:rgba(192,132,252,0.2); }
.feature-card:nth-child(3) .feature-icon { background:rgba(96,165,250,0.1); border-color:rgba(96,165,250,0.2); }
.feature-card:nth-child(4) .feature-icon { background:rgba(34,197,94,0.1); border-color:rgba(34,197,94,0.2); }
.feature-card:nth-child(5) .feature-icon { background:rgba(245,158,11,0.1); border-color:rgba(245,158,11,0.2); }
.feature-card:nth-child(6) .feature-icon { background:rgba(239,68,68,0.1); border-color:rgba(239,68,68,0.2); }
.feature-card h4 { font-size:13px; font-weight:800; margin-bottom:6px; }
.feature-card p { font-size:11px; color:rgba(255,255,255,0.5); line-height:1.5; }

/* ─── TESTIMONIALS ─── */
.testimonials-track {
  display:flex; gap:12px;
  overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:10px; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.testimonials-track::-webkit-scrollbar { display:none; }
.testi-card {
  min-width:300px;
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:20px; padding:24px;
  scroll-snap-align:start; position:relative;
}
.testi-card::before {
  content:'"'; position:absolute;
  top:10px; right:20px;
  font-size:60px; color:rgba(255,107,157,0.15);
  font-weight:900; line-height:1;
}
.testi-stars { color:#FBBF24; font-size:14px; margin-bottom:12px; }
.testi-text {
  font-size:14px; line-height:1.8;
  color:rgba(255,255,255,0.85); margin-bottom:16px;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--gradient-main);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:16px;
}
.testi-info h5 { font-size:14px; font-weight:700; }
.testi-info p { font-size:12px; color:rgba(255,255,255,0.5); }
.testi-badge {
  display:inline-block; margin-top:4px;
  font-size:10px;
  background:rgba(34,197,94,0.15); color:#22C55E;
  padding:3px 10px; border-radius:50px; font-weight:700;
}

/* ─── PROGRAM ─── */
.program-card {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:20px; overflow:hidden;
}
.program-header {
  background:var(--gradient-main);
  padding:24px 20px; text-align:center;
}
.program-header h3 { font-size:20px; font-weight:900; margin-bottom:4px; }
.program-header p { font-size:13px; opacity:0.9; }
.program-body { padding:20px; }
.program-item {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--vaguy-border);
}
.program-item:last-child { border-bottom:none; }
.prog-day {
  width:40px; height:40px; min-width:40px;
  border-radius:12px;
  background:rgba(255,107,157,0.1);
  border:1px solid rgba(255,107,157,0.2);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:13px; color:var(--vaguy-pink);
}
.program-item h4 { font-size:15px; font-weight:700; margin-bottom:4px; }
.program-item p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.6; }

/* ─── PRICE ─── */
.price-card {
  background:var(--vaguy-card);
  border:2px solid rgba(255,107,157,0.3);
  border-radius:24px; padding:32px 24px;
  text-align:center; position:relative; overflow:hidden;
}
.price-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:4px; background:var(--gradient-main);
}
.price-badge {
  display:inline-block;
  background:linear-gradient(135deg, #EF4444, #F59E0B);
  color:#fff; font-size:11px; font-weight:900;
  padding:6px 16px; border-radius:50px; margin-bottom:16px;
}
.price-old {
  font-size:20px; color:rgba(255,255,255,0.4);
  text-decoration:line-through;
  text-decoration-color:#EF4444; margin-bottom:4px;
}
.price-current {
  font-size:48px; font-weight:900;
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  line-height:1; margin-bottom:4px;
}
.price-currency {
  font-size:16px; font-weight:700;
  color:rgba(255,255,255,0.6); margin-bottom:20px;
}
.price-features { text-align:right; margin-bottom:24px; }
.price-features li {
  list-style:none; padding:10px 0;
  border-bottom:1px solid var(--vaguy-border);
  font-size:14px; display:flex;
  align-items:center; gap:10px;
}
.price-features li:last-child { border-bottom:none; }
.price-features li::before {
  content:'✓'; width:22px; height:22px; min-width:22px;
  border-radius:50%; background:rgba(34,197,94,0.15);
  color:#22C55E; display:flex;
  align-items:center; justify-content:center;
  font-size:12px; font-weight:900;
}

/* ─── FAQ ─── */
.faq-item {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:16px; margin-bottom:10px;
  overflow:hidden; transition:all 0.3s ease;
}
.faq-question {
  padding:18px 20px;
  display:flex; align-items:center;
  justify-content:space-between; cursor:pointer;
  font-size:14px; font-weight:700;
}
.faq-icon {
  width:28px; height:28px; min-width:28px;
  border-radius:50%; background:rgba(255,255,255,0.05);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; transition:transform 0.3s ease;
  margin-right:10px;
}
.faq-item.active .faq-icon { transform:rotate(180deg); }
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height:400px; padding:0 20px 18px;
}
.faq-answer p { font-size:13px; color:rgba(255,255,255,0.6); line-height:1.8; }

/* ─── FINAL CTA ─── */
.final-cta {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:24px; padding:32px 24px;
  text-align:center; margin-bottom:40px;
}
.final-cta h3 { font-size:22px; font-weight:900; margin-bottom:12px; }
.final-cta p { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.7; margin-bottom:24px; }
.guarantee {
  display:flex; align-items:center;
  justify-content:center; gap:10px;
  margin-top:16px; font-size:12px;
  color:rgba(255,255,255,0.5);
}
.guarantee span { font-size:20px; }

/* ─── FOOTER ─── */
.footer {
  text-align:center; padding:30px 20px 100px;
  border-top:1px solid var(--vaguy-border);
}
.footer-logo {
  font-size:20px; font-weight:900;
  background:var(--gradient-main);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  margin-bottom:8px;
}
.footer p { font-size:12px; color:rgba(255,255,255,0.3); line-height:1.8; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0; transform:translateY(40px);
  transition:all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── FLOATING BAR ─── */
.float-bar {
  position:fixed; bottom:0; left:0; right:0;
  background:rgba(8,8,15,0.95);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-top:1px solid var(--vaguy-border);
  padding:12px 20px 24px; z-index:1000;
  transform:translateY(100%);
  transition:transform 0.4s ease;
}
.float-bar.show { transform:translateY(0); }
.float-bar-inner {
  max-width:480px; margin:0 auto;
  display:flex; align-items:center; gap:12px;
}
.float-bar .fb-btn {
  background:var(--gradient-main); color:#fff;
  border:none; padding:16px;
  border-radius:14px; font-family:'Tajawal',sans-serif;
  font-size:16px; font-weight:900; cursor:pointer;
  box-shadow:0 4px 20px rgba(255,107,157,0.4);
  white-space:nowrap; width:100%;
}

/* ─── WHATSAPP STICKY ─── */
.whatsapp-sticky {
  position:fixed;
  bottom:80px; right:16px;
  z-index:999;
  width:52px; height:52px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  font-size:26px;
  box-shadow:0 4px 15px rgba(37,211,102,0.4);
  cursor:pointer;
  transition:transform 0.2s ease;
  text-decoration:none;
}
.whatsapp-sticky:active { transform:scale(0.9); }

/* ─── MODAL ─── */
.modal-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px); z-index:2000;
  display:none; align-items:flex-end; justify-content:center;
  opacity:0; transition:opacity 0.3s ease;
}
.modal-overlay.active { display:flex; opacity:1; }
.modal-content {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:24px 24px 0 0; width:100%;
  max-width:480px; max-height:85vh;
  overflow-y:auto; padding:28px 24px 40px;
  transform:translateY(100%);
  transition:transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.active .modal-content { transform:translateY(0); }
.modal-close {
  position:absolute; top:16px; left:16px;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--vaguy-border);
  color:#fff; display:flex;
  align-items:center; justify-content:center;
  font-size:20px; cursor:pointer;
}
.modal-content h3 {
  font-size:20px; font-weight:900;
  text-align:center; margin-bottom:4px;
}
.modal-content .modal-sub {
  text-align:center; font-size:13px;
  color:rgba(255,255,255,0.5); margin-bottom:24px;
}
.form-group { margin-bottom:16px; }
.form-group label {
  display:block; font-size:13px; font-weight:700;
  margin-bottom:6px; color:rgba(255,255,255,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:14px 16px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--vaguy-border);
  border-radius:12px; color:#fff;
  font-family:'Tajawal',sans-serif;
  font-size:15px; outline:none;
  transition:border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--vaguy-pink); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,0.3); }
.form-group select option { background:var(--vaguy-dark); color:#fff; }
.form-submit {
  width:100%; padding:18px;
  background:var(--gradient-main); color:#fff;
  border:none; border-radius:16px;
  font-family:'Tajawal',sans-serif;
  font-size:17px; font-weight:900; cursor:pointer;
  margin-top:8px;
  box-shadow:0 8px 30px rgba(255,107,157,0.4);
}
.form-note {
  text-align:center; font-size:12px;
  color:rgba(255,255,255,0.4); margin-top:16px;
}

/* ─── THANK YOU POPUP ─── */
.thankyou-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(15px); z-index:3000;
  display:none; align-items:center; justify-content:center;
  opacity:0; transition:opacity 0.4s ease;
}
.thankyou-overlay.active { display:flex; opacity:1; }
.thankyou-box {
  background:var(--vaguy-card);
  border:1px solid var(--vaguy-border);
  border-radius:24px; padding:40px 32px;
  text-align:center; max-width:340px; width:90%;
  transform:scale(0.8) translateY(20px);
  transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
  position:relative;
}
.thankyou-overlay.active .thankyou-box { transform:scale(1) translateY(0); }
.ty-check {
  width:70px; height:70px; margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg, #22C55E, #16A34A);
  display:flex; align-items:center; justify-content:center;
  font-size:32px;
  box-shadow:0 0 30px rgba(34,197,94,0.4);
  animation:tyPop 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes tyPop {
  0% { transform:scale(0); }
  60% { transform:scale(1.2); }
  100% { transform:scale(1); }
}
.thankyou-box h3 { font-size:22px; font-weight:900; margin-bottom:10px; }
.thankyou-box p { font-size:15px; color:rgba(255,255,255,0.6); line-height:1.7; margin-bottom:24px; }
.ty-btn {
  background:var(--gradient-main); color:#fff;
  border:none; padding:14px 32px;
  border-radius:14px; font-family:'Tajawal',sans-serif;
  font-size:15px; font-weight:900; cursor:pointer;
  box-shadow:0 4px 20px rgba(255,107,157,0.4);
}
.ty-close {
  position:absolute; top:12px; left:12px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--vaguy-border);
  color:#fff; display:flex;
  align-items:center; justify-content:center;
  font-size:18px; cursor:pointer;
}

/* ─── SWIPE HINT ─── */
.swipe-hint {
  text-align:center; font-size:12px;
  color:rgba(255,255,255,0.35);
  margin-top:10px;
  display:flex; align-items:center;
  justify-content:center; gap:6px;
}
.swipe-hint span { font-size:16px; }
