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

:root {
  --dark: #0D0500;
  --dark2: #1A0A00;
  --dark3: #2A1200;
  --gold: #C8860A;
  --gold2: #E8A020;
  --gold3: #F5D78E;
  --cream: #FFF8EE;
  --text: #F0E6D0;
  --text-muted: #A08060;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Cairo', sans-serif; background: var(--dark); color: var(--text); direction: rtl; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold2); }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; position: relative; z-index: 10; }
.nav__logo { font-size: 1.4rem; font-weight: 700; color: var(--gold3); display: flex; align-items: center; gap: 8px; }
.nav__cta { background: var(--gold); color: var(--dark); padding: 10px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: all 0.3s; }
.nav__cta:hover { background: var(--gold2); transform: translateY(-2px); }

.hero { min-height: 100vh; background: radial-gradient(ellipse at 30% 50%, #3A1800 0%, #1A0800 40%, #0D0500 100%); position: relative; display: flex; flex-direction: column; overflow: hidden; }
.hero__bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(200,134,10,0.08) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero__glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,134,10,0.15) 0%, transparent 70%); top: 50%; left: 20%; transform: translate(-50%, -50%); pointer-events: none; }
.hero__content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 60px 40px 40px; max-width: 620px; position: relative; z-index: 2; animation: fadeInUp 0.8s ease both; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,134,10,0.15); border: 1px solid rgba(200,134,10,0.4); color: var(--gold3); padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; width: fit-content; }
.hero__title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.15; color: var(--cream); margin-bottom: 20px; }
.hero__title--gold { color: var(--gold2); display: block; }
.hero__subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.hero__stats { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold2); line-height: 1; }
.stat__label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat__divider { width: 1px; height: 40px; background: rgba(200,134,10,0.3); }
.hero__btn { display: inline-flex; align-items: center; gap: 10px; font-size: 1.1rem; padding: 16px 36px; margin-bottom: 16px; width: fit-content; }
.hero__guarantee { font-size: 0.9rem; color: var(--text-muted); }

.hero__jar { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); z-index: 1; animation: float 4s ease-in-out infinite; }
.jar-wrapper { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.jar-glow { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(200,134,10,0.3) 0%, transparent 70%); border-radius: 50%; animation: pulse 3s ease-in-out infinite; }
.jar-emoji { font-size: 160px; filter: drop-shadow(0 0 40px rgba(200,134,10,0.5)); position: relative; z-index: 1; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer; border: none; transition: all 0.3s ease; }
.btn--primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); color: var(--dark); box-shadow: 0 8px 30px rgba(200,134,10,0.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,134,10,0.6); }
.btn--outline { background: transparent; color: var(--gold2); border: 2px solid var(--gold); }
.btn--outline:hover { background: rgba(200,134,10,0.1); transform: translateY(-2px); }
.btn--full { width: 100%; font-size: 1.1rem; padding: 18px; }

.trust-bar { background: linear-gradient(90deg, var(--dark2), var(--dark3), var(--dark2)); border-top: 1px solid rgba(200,134,10,0.2); border-bottom: 1px solid rgba(200,134,10,0.2); padding: 20px 0; }
.trust-bar__inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; padding: 0 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }
.trust-icon { font-size: 1.2rem; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; background: rgba(200,134,10,0.15); border: 1px solid rgba(200,134,10,0.3); color: var(--gold2); padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); line-height: 1.3; }

.benefits { padding: 100px 0; background: var(--dark); }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.benefit-card { background: linear-gradient(135deg, rgba(42,18,0,0.8), rgba(26,10,0,0.9)); border: 1px solid rgba(200,134,10,0.15); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s ease; }
.benefit-card:hover { border-color: rgba(200,134,10,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.benefit-card--featured { background: linear-gradient(135deg, rgba(200,134,10,0.15), rgba(42,18,0,0.9)); border-color: rgba(200,134,10,0.4); }
.benefit-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--gold3); margin-bottom: 10px; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.how-it-works { padding: 100px 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.steps { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { background: rgba(42,18,0,0.8); border: 1px solid rgba(200,134,10,0.2); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; flex: 1; min-width: 200px; max-width: 260px; transition: all 0.3s; }
.step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step__num { width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 900; margin: 0 auto 16px; }
.step__content h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold3); margin-bottom: 8px; }
.step__content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.step__arrow { font-size: 2rem; color: var(--gold); opacity: 0.5; }

.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: rgba(26,10,0,0.9); border: 1px solid rgba(200,134,10,0.15); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(200,134,10,0.4); transform: translateY(-4px); }
.testimonial-card--featured { border-color: rgba(200,134,10,0.5); background: linear-gradient(135deg, rgba(200,134,10,0.1), rgba(26,10,0,0.95)); }
.testimonial-card__stars { font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card__text { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.testimonial-card__author strong { display: block; color: var(--gold3); font-size: 0.95rem; }
.testimonial-card__author span { font-size: 0.8rem; color: var(--text-muted); }

.pricing { padding: 100px 0; background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%); }
.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 800px; margin: 0 auto 60px; }
.pricing-card { background: rgba(26,10,0,0.9); border: 1px solid rgba(200,134,10,0.2); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--best { border-color: var(--gold); background: linear-gradient(135deg, rgba(200,134,10,0.12), rgba(26,10,0,0.95)); box-shadow: 0 0 40px rgba(200,134,10,0.2); transform: scale(1.03); }
.pricing-card--best:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; white-space: nowrap; }
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.pricing-card__header h3 { font-size: 1.4rem; font-weight: 700; color: var(--gold3); margin-bottom: 6px; }
.pricing-card__desc { font-size: 0.9rem; color: var(--text-muted); }
.pricing-card__price { margin-bottom: 8px; display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--gold2); line-height: 1; }
.price-currency { font-size: 1rem; color: var(--text-muted); }
.pricing-card__saving { background: rgba(200,134,10,0.15); color: var(--gold2); padding: 6px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.pricing-card__features { list-style: none; margin-bottom: 28px; text-align: right; }
.pricing-card__features li { padding: 8px 0; font-size: 0.95rem; color: var(--text); border-bottom: 1px solid rgba(200,134,10,0.08); }
.pricing-card__features li:last-child { border-bottom: none; }

.order-form { background: rgba(26,10,0,0.95); border: 1px solid rgba(200,134,10,0.3); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 700px; margin: 0 auto; }
.order-form__header { text-align: center; margin-bottom: 36px; }
.order-form__header h3 { font-size: 1.6rem; font-weight: 700; color: var(--gold3); margin-bottom: 8px; }
.order-form__header p { color: var(--text-muted); font-size: 0.95rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--gold3); margin-bottom: 8px; }
.form__group input, .form__group select, .form__group textarea { width: 100%; background: rgba(42,18,0,0.8); border: 1px solid rgba(200,134,10,0.25); border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: 'Cairo', sans-serif; font-size: 0.95rem; transition: border-color 0.3s; direction: rtl; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,134,10,0.15); }
.form__group select option { background: var(--dark2); }
.form__group textarea { height: 100px; resize: vertical; }
.form__note { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }
.form__success { text-align: center; padding: 40px; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form__success h3 { font-size: 1.5rem; color: var(--gold3); margin-bottom: 8px; }
.form__success p { color: var(--text-muted); }

.faq { padding: 100px 0; background: var(--dark); }
.faq__list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200,134,10,0.15); overflow: hidden; }
.faq-item__q { width: 100%; background: none; border: none; color: var(--text); font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 600; padding: 20px 0; text-align: right; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.3s; }
.faq-item__q:hover { color: var(--gold2); }
.faq-icon { font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-item__a { max-height: 200px; padding-bottom: 20px; }

.footer { background: var(--dark2); border-top: 1px solid rgba(200,134,10,0.2); padding: 60px 0 40px; text-align: center; }
.footer__logo { font-size: 1.6rem; font-weight: 700; color: var(--gold3); margin-bottom: 12px; }
.footer__tagline { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.footer__contact { background: rgba(200,134,10,0.1); border: 1px solid rgba(200,134,10,0.2); border-radius: 12px; padding: 14px 24px; display: inline-block; color: var(--gold3); font-size: 0.95rem; margin-bottom: 24px; }
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(-50%) translateY(0); } 50% { transform: translateY(-50%) translateY(-20px); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero__content { padding: 40px 20px 200px; max-width: 100%; }
  .hero__jar { position: absolute; bottom: 20px; left: 50%; top: auto; transform: translateX(-50%); }
  .jar-wrapper { width: 180px; height: 180px; }
  .jar-emoji { font-size: 100px; }
  .hero__title { font-size: 2.4rem; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .form__row { grid-template-columns: 1fr; }
  .order-form { padding: 32px 20px; }
  .trust-bar__inner { gap: 20px; }
  .pricing-card--best { transform: scale(1); }
}
