/* ═══════════════════════════════════════════
   pink builder — Premium Design System
   ═══════════════════════════════════════════ */

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(167,139,250,0.2); }
  50% { box-shadow: 0 0 40px rgba(167,139,250,0.4); }
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  font-family: 'Segoe UI', Tahoma, 'Traditional Arabic', sans-serif;
  background: #080a14;
  color: #e8e8f0;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── ANIMATED BACKGROUND ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(79,70,229,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(167,139,250,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: gradientFlow 15s ease infinite;
  background-size: 200% 200%;
}

.container { max-width: 820px; margin: auto; padding: 0 20px; position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; }

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 100px 0 60px;
  position: relative;
  animation: fadeIn 0.8s ease;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(167,139,250,0.3);
  color: #a78bfa;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  animation: fadeInUp 0.6s ease 0.4s both;
  line-height: 1.3;
}
.hero h1 span {
  background: linear-gradient(135deg, #a78bfa, #f472b6, #7c3aed);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.hero p {
  color: #888;
  max-width: 500px;
  margin: 14px auto 0;
  font-size: 1.08rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

/* ─── SECTION TITLES ─── */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #e8e8f0, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.6s ease both;
}

/* ─── TRUST BAR ─── */
.trust-bar { padding: 40px 0; }
.trust-item {
  text-align: center;
  animation: fadeInUp 0.6s ease both;
}
.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }
.trust-item .num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.trust-item .label { font-size: .82rem; color: #777; }

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.how-step {
  text-align: center;
  padding: 24px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}
.how-step:nth-child(1) { animation-delay: 0.1s; }
.how-step:nth-child(2) { animation-delay: 0.2s; }
.how-step:nth-child(3) { animation-delay: 0.3s; }
.how-step:nth-child(4) { animation-delay: 0.4s; }
.how-step:hover {
  transform: translateY(-5px);
  border-color: rgba(167,139,250,0.3);
  background: rgba(167,139,250,0.05);
  box-shadow: 0 10px 30px rgba(167,139,250,0.1);
}
.how-step .icon { font-size: 2.2rem; margin-bottom: 10px; }
.how-step h4 { font-size: .92rem; margin-bottom: 5px; color: #e8e8f0; }
.how-step p { font-size: .76rem; color: #777; line-height: 1.5; }

/* ─── OFFER BANNER ─── */
.offer-banner {
  background: linear-gradient(135deg, #7c3aed, #a78bfa, #f472b6);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite, fadeInUp 0.6s ease 0.3s both;
  text-align: center;
  padding: 28px 24px;
  border-radius: 18px;
  margin: 35px 0;
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s linear infinite;
}
.offer-banner h3 { margin: 0 0 6px; font-size: 1.2rem; position: relative; z-index: 1; }
.offer-banner p { margin: 0; font-size: .88rem; opacity: .95; position: relative; z-index: 1; line-height: 1.6; }

/* ─── PRICING ─── */
.form-section { padding: 70px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.price-option {
  background: rgba(17,19,42,0.8);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease both;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.price-option::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.price-option:hover {
  border-color: rgba(167,139,250,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(167,139,250,0.15);
}
.price-option:hover::before { opacity: 1; }
.price-option.selected {
  border-color: #a78bfa;
  background: rgba(167,139,250,0.08);
  box-shadow: 0 0 30px rgba(167,139,250,0.15);
}
.price-option.selected::before { opacity: 1; }
.price-option h4 { font-size: .92rem; margin-bottom: 5px; }
.price-option .po-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #a78bfa;
  margin: 4px 0;
}
.price-option .po-desc { font-size: .76rem; color: #777; margin-top: 4px; }
.popular-badge {
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  color: #fff;
  font-size: .7rem;
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}
input[type=radio] { display: none; }

/* ─── CURRENCY TOGGLE ─── */
.currency-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}
.currency-toggle button {
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #888;
  font-family: inherit;
  cursor: pointer;
  font-size: .85rem;
  transition: all 0.3s;
}
.currency-toggle button:hover { border-color: rgba(167,139,250,0.3); color: #ccc; }
.currency-toggle button.active {
  border-color: #a78bfa;
  color: #a78bfa;
  background: rgba(167,139,250,0.1);
  box-shadow: 0 0 15px rgba(167,139,250,0.15);
}

/* ─── FORM ─── */
.order-form {
  max-width: 620px;
  margin: auto;
  background: linear-gradient(145deg, rgba(17,19,42,0.9), rgba(13,15,33,0.9));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 42px 32px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.6s ease 0.5s both;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8e8f0;
  font-family: inherit;
  font-size: .93rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(167,139,250,0.5);
  background: rgba(167,139,250,0.04);
  box-shadow: 0 0 20px rgba(167,139,250,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group select { cursor: pointer; }
.form-group select option { background: #11132a; color: #e8e8f0; }
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-submit {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #a78bfa);
  background-size: 200% auto;
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(124,58,237,0.35);
  margin-top: 5px;
  animation: glow 3s ease-in-out infinite;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.5);
  animation: shimmer 2s linear infinite;
}
.btn-submit:active { transform: translateY(0); }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.testi-card {
  background: rgba(17,19,42,0.7);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  animation: fadeInUp 0.5s ease both;
  backdrop-filter: blur(10px);
}
.testi-card:nth-child(1) { animation-delay: 0.1s; }
.testi-card:nth-child(2) { animation-delay: 0.2s; }
.testi-card:nth-child(3) { animation-delay: 0.3s; }
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.testi-card .stars { color: #fbbf24; font-size: .9rem; letter-spacing: 2px; }
.testi-card p { font-size: .85rem; color: #aaa; margin: 10px 0; line-height: 1.6; }
.testi-card .author { font-size: .8rem; color: #a78bfa; font-weight: 600; }

/* ─── REFERRAL ─── */
.refer-card {
  background: linear-gradient(145deg, rgba(17,19,42,0.9), rgba(26,29,62,0.8));
  border: 2px solid rgba(167,139,250,0.2);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  margin: 35px 0;
  animation: fadeInUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.refer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.05), transparent);
  pointer-events: none;
}
.refer-card h3 { color: #a78bfa; margin-bottom: 5px; position: relative; }
.refer-card p { font-size: .9rem; color: #aaa; position: relative; }
.refer-card .code {
  background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(244,114,182,0.05));
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  margin: 12px 0;
  font-family: monospace;
  font-size: 1.1rem;
  color: #a78bfa;
  border: 1px dashed rgba(167,139,250,0.3);
  position: relative;
  animation: glow 3s ease-in-out infinite;
}

/* ─── FAQ ─── */
.faq-section p {
  margin-bottom: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}
.faq-section strong { color: #e8e8f0; }

/* ─── GUARANTEE ─── */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #888;
  font-size: .85rem;
  margin-top: 15px;
  animation: fadeIn 0.6s ease 1s both;
}

/* ─── FOOTER ─── */
.footer {
  text-align: center;
  padding: 50px 20px 30px;
  color: #444;
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: right;
  margin-bottom: 30px;
}
.footer-col h4 { color: #a78bfa; font-size: .9rem; margin-bottom: 10px; }
.footer-col a { display: block; color: #888; font-size: .85rem; margin-bottom: 6px; transition: color 0.3s; }
.footer-col a:hover { color: #a78bfa; }
.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: #444; }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 380px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── LANG TOGGLE ─── */
.lang-toggle {
  display: inline-flex;
  gap: 6px;
  background: rgba(17,19,42,0.8);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.lang-toggle button {
  padding: 6px 16px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-family: inherit;
  font-size: .85rem;
  transition: all 0.3s;
}

/* ═══ PAYMENT PAGE ═══ */
.payment-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  position: relative;
}
.payment-card {
  max-width: 500px;
  width: 100%;
  background: linear-gradient(145deg, rgba(17,19,42,0.95), rgba(13,15,33,0.95));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.6s ease;
}
.payment-card h2 { margin: 10px 0 20px; font-size: 1.5rem; }
.payment-header .badge {
  animation: fadeIn 0.6s ease;
}
.order-summary { text-align: right; margin-bottom: 25px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #ccc;
  transition: background 0.2s;
}
.summary-row:hover { background: rgba(255,255,255,0.02); }
.summary-row.total {
  font-weight: 700;
  color: #a78bfa;
  font-size: 1.1rem;
  border-bottom: none;
}
.payment-methods h3 { margin-bottom: 15px; color: #a78bfa; }
.pay-option {
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.pay-option:hover {
  border-color: rgba(167,139,250,0.2);
  background: rgba(167,139,250,0.04);
}
.pay-option-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.pay-name { font-weight: 700; }
.pay-desc { color: #888; font-size: .85rem; }
.btn-pay {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(124,58,237,0.3);
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(124,58,237,0.4); }
.btn-whatsapp { background: #25d366; text-decoration: none; display: block; }

/* ─── CARD OPTIONS (Payment) ─── */
.card-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0;
}
.card-option {
  background: rgba(17,19,42,0.8);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.card-option:hover { border-color: rgba(167,139,250,0.3); transform: translateY(-2px); }
.card-option.selected {
  border-color: #a78bfa;
  background: rgba(167,139,250,0.08);
  box-shadow: 0 0 20px rgba(167,139,250,0.15);
}
.card-option .card-icon { font-size: 2rem; margin-bottom: 6px; }
.card-option .card-name { font-size: .85rem; color: #ccc; }
.card-option .card-desc { font-size: .7rem; color: #666; margin-top: 3px; }

.method-info {
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  margin: 15px 0;
  animation: fadeIn 0.3s ease;
}
.method-info .acct-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #a78bfa;
  letter-spacing: 2px;
  direction: ltr;
  display: block;
  margin: 10px 0 5px;
  user-select: all;
}
.method-info .acct-label { font-size: .85rem; color: #888; }
.method-info .amount-big { font-size: 2.2rem; font-weight: 900; color: #fcd34d; }
.method-info .bank-name { font-size: .9rem; color: #ccc; margin-bottom: 5px; }
.btn-copy {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(167,139,250,0.3);
  background: transparent;
  color: #a78bfa;
  font-family: inherit;
  cursor: pointer;
  font-size: .85rem;
  margin-top: 10px;
  transition: all 0.3s;
}
.btn-copy:hover { background: rgba(167,139,250,0.1); }
.btn-copy.copied { border-color: #6ee7b7; color: #6ee7b7; }
.pay-steps {
  text-align: right;
  margin: 15px 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}
.pay-steps li { margin-bottom: 8px; color: #ccc; font-size: .9rem; }
.pay-note {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 15px 0;
  text-align: center;
  font-size: .85rem;
}
.pay-note a { color: #fbbf24; }

/* ─── SUCCESS PAGE ─── */
.success-card { text-align: center; }
.success-icon { font-size: 3.5rem; margin-bottom: 10px; animation: float 3s ease-in-out infinite; }
.success-sub { color: #999; margin-bottom: 20px; }
.success-ready { color: #6ee7b7; font-size: 1.1rem; margin-bottom: 15px; }
.btn-download {
  display: inline-block;
  width: auto;
  padding: 16px 40px;
  text-decoration: none;
}
.success-note { margin-top: 12px; color: #666; font-size: .85rem; }

/* ─── SPINNER ─── */
.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(167,139,250,0.2);
  border-top-color: #a78bfa;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-pricing { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 70px 0 40px; }
  .section-title { font-size: 1.4rem; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form, .payment-card { padding: 28px 18px; border-radius: 18px; }
  .testi-grid { grid-template-columns: 1fr; }
  .card-options { grid-template-columns: 1fr; }
  .trust-item .num { font-size: 1.5rem; }
  .mini-pricing { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
  .top-offer-bar { font-size: .75rem; }
  .top-offer-seats { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .refer-calc { font-size: .8rem; }
}
@media (max-width: 380px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}

/* ═══ TOP OFFER BAR ═══ */
.top-offer-bar {
  background: linear-gradient(90deg, #be185d, #ec4899, #f472b6);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 100;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.top-offer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.offer-timer-icon { font-size: 1.1rem; }
.offer-countdown {
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-family: monospace;
  direction: ltr;
}
.offer-seats {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .8rem;
}
.offer-seats strong { color: #fcd34d; }

/* ═══ FLOATING WHATSAPP ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #333;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ═══ HERO CTA BUTTONS ═══ */
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  animation: fadeInUp 0.6s ease 0.8s both;
  flex-wrap: wrap;
}
.btn-hero-primary {
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(236,72,153,0.35);
  transition: all 0.3s;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(236,72,153,0.5);
}
.btn-hero-secondary {
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #e8e8f0;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-hero-secondary:hover {
  border-color: rgba(167,139,250,0.4);
  background: rgba(167,139,250,0.08);
}

/* ═══ MINI PRICING ═══ */
.mini-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 25px 0 10px;
}
.mini-price-card {
  background: rgba(17,19,42,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  backdrop-filter: blur(10px);
}
.mini-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.3);
  box-shadow: 0 10px 30px rgba(167,139,250,0.12);
}
.mini-price-card.featured {
  border-color: #a78bfa;
  background: rgba(167,139,250,0.08);
  box-shadow: 0 0 25px rgba(167,139,250,0.15);
}
.mp-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  color: #fff;
  font-size: .7rem;
  padding: 3px 14px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}
.mp-icon { font-size: 1.8rem; margin-bottom: 6px; }
.mp-name { font-size: .95rem; font-weight: 700; color: #e8e8f0; margin-bottom: 4px; }
.mp-price { font-size: 1.3rem; font-weight: 900; color: #a78bfa; }
.mp-price span { font-size: .85rem; font-weight: 400; }
.mp-orig { font-size: .8rem; color: #666; text-decoration: line-through; margin: 2px 0; }
.mp-desc { font-size: .78rem; color: #777; margin-top: 4px; }

/* ═══ IMPROVED TESTIMONIALS ═══ */
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.testi-name { font-size: .9rem; font-weight: 700; color: #e8e8f0; }
.testi-role { font-size: .75rem; color: #777; }
.testi-date { font-size: .7rem; color: #555; margin-top: 8px; }

/* ═══ IMPROVED REFERRAL ═══ */
.refer-gift {
  font-size: 2.5rem;
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}
.refer-calc {
  background: rgba(252,211,77,0.08);
  border: 1px solid rgba(252,211,77,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin: 16px 0;
  text-align: center;
}
.refer-calc-title { font-size: .85rem; color: #fcd34d; font-weight: 700; margin-bottom: 6px; }
.refer-calc-row { font-size: .9rem; color: #ccc; }
.refer-calc-result { color: #6ee7b7; font-weight: 700; }
.btn-copy-ref {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(167,139,250,0.3);
  background: transparent;
  color: #a78bfa;
  font-family: inherit;
  cursor: pointer;
  font-size: .85rem;
  margin-top: 8px;
  transition: all 0.3s;
}
.btn-copy-ref:hover { background: rgba(167,139,250,0.1); }
.btn-copy-ref.copied { border-color: #6ee7b7; color: #6ee7b7; }

/* ═══ FAQ ACCORDION ═══ */
.faq-list { max-width: 650px; margin: auto; }
.faq-item {
  background: rgba(17,19,42,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(167,139,250,0.2); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #e8e8f0;
  font-size: .92rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '▶';
  font-size: .7rem;
  color: #a78bfa;
  transition: transform 0.3s;
}
.faq-item[open] summary::before { transform: rotate(90deg); }
.faq-item p {
  padding: 0 20px 16px 40px;
  color: #aaa;
  font-size: .88rem;
  line-height: 1.7;
}
