/* ===== Base & Variables ===== */
:root {
  --bg: #05070d;
  --bg-alt: #0a0e18;
  --surface: #10151f;
  --surface-2: #161c29;
  --border: #232a3a;
  --text: #e9edf5;
  --text-dim: #9aa4b8;
  --text-faint: #64708a;
  --gold: #d4af37;
  --gold-bright: #f2cc5c;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,.45);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section { position: relative; padding: 100px 0; }
section:nth-of-type(even) { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  color: #14100a;
  box-shadow: 0 6px 24px rgba(212,175,55,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,.5); }
.btn-ghost {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-bright);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover { background: rgba(212,175,55,.1); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ===== Header ===== */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 46px;
  background: #131722;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 46px; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,7,13,.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
  font-weight: 900;
  font-size: .95rem;
}
.logo-text span { color: var(--gold-bright); }

.main-nav { display: flex; gap: 26px; }
.main-nav a { color: var(--text-dim); font-size: .93rem; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--gold-bright); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  padding: 216px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.25; margin-bottom: 20px; }
.hero-sub { color: var(--text-dim); font-size: 1.1rem; max-width: 620px; margin: 0 auto 34px; }
.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.trust-item {
  font-size: .88rem;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
}

.hero-disclaimer-note {
  margin-top: 18px;
  font-size: .78rem;
  color: var(--text-faint);
}
.hero-disclaimer-note a { color: var(--gold); text-decoration: underline; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 22px; }
.about-points li {
  position: relative;
  padding-right: 28px;
  margin-bottom: 12px;
  color: var(--text-dim);
}
.about-points li::before {
  content: "✓";
  position: absolute;
  right: 0; top: 0;
  color: var(--green);
  font-weight: 800;
}
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.about-card-title { font-size: 1.05rem; margin-bottom: 20px; }
.verify-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dim);
  font-size: .92rem;
  margin-bottom: 16px;
}
.v-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--gold-bright);
  font-weight: 800;
  font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Results ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  text-align: center;
}
.result-card.skeleton { grid-column: 1 / -1; color: var(--text-faint); padding: 40px 20px; }
.rc-label { display: block; color: var(--text-faint); font-size: .82rem; margin-bottom: 10px; }
.rc-amount { display: block; font-weight: 800; font-size: 1.5rem; margin-bottom: 6px; }
.rc-amount.positive { color: var(--green); }
.rc-amount.negative { color: var(--red); }
.rc-amount.neutral { color: var(--text-faint); font-size: 1rem; font-weight: 600; }
.rc-count { display: block; color: var(--text-dim); font-size: .8rem; }

.results-updated {
  text-align: center;
  color: var(--text-faint);
  font-size: .82rem;
  margin-top: 22px;
}
.results-note {
  text-align: center;
  color: var(--text-faint);
  font-size: .8rem;
  margin-top: 10px;
}

/* ===== Economic Calendar ===== */
.calendar-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.calendar-widget-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  overflow: hidden;
}
.calendar-guide {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.econ-cal { max-height: 560px; overflow-y: auto; padding: 8px 12px; }
.econ-loading { color: var(--text-faint); text-align: center; padding: 40px 10px; }
.econ-day {
  color: var(--gold-bright);
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 4px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.econ-event { padding: 12px 4px; border-bottom: 1px solid var(--border); }
.econ-event:last-child { border-bottom: none; }
.econ-row { display: flex; align-items: center; gap: 10px; }
.econ-impact { font-size: .7rem; }
.econ-title { font-weight: 700; font-size: .95rem; flex: 1; }
.econ-time { color: var(--text-faint); font-size: .82rem; white-space: nowrap; }
.econ-desc { color: var(--text-dim); font-size: .83rem; margin: 6px 0 0; line-height: 1.6; }
.econ-vals { display: flex; gap: 18px; margin-top: 8px; font-size: .82rem; color: var(--text-faint); flex-wrap: wrap; align-items: center; }
.econ-vals b { color: var(--text); font-weight: 700; }
.econ-vals b.econ-good, .econ-flag.econ-good { color: var(--green); }
.econ-vals b.econ-bad, .econ-flag.econ-bad { color: var(--red); }
.econ-flag {
  font-size: .74rem;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 2px 10px;
}
.calendar-guide h3 { font-size: 1.05rem; margin-bottom: 20px; }
@media (max-width: 980px) {
  .calendar-grid { grid-template-columns: 1fr; }
}

/* ===== Earnings ===== */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.earning-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.earning-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.earning-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.earning-icon { font-size: 1.6rem; }
.earning-name { flex: 1; display: flex; flex-direction: column; }
.earning-name strong { font-size: 1.05rem; }
.earning-symbol { font-size: .78rem; color: var(--text-faint); letter-spacing: .5px; }
.earning-badge {
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.earning-badge.today { background: rgba(239,68,68,.15); color: #ff6b6b; border: 1px solid rgba(239,68,68,.4); }
.earning-badge.soon  { background: rgba(212,175,55,.15); color: var(--gold-bright); border: 1px solid rgba(212,175,55,.4); }
.earning-badge.later { background: var(--surface-2); color: var(--text-dim); border: 1px solid var(--border); }
.earning-badge.past  { background: var(--surface-2); color: var(--text-faint); border: 1px solid var(--border); }
.earning-date { color: var(--text-dim); font-size: .9rem; margin-bottom: 8px; }
.earning-eps { color: var(--text-faint); font-size: .85rem; }
.earning-eps b { color: var(--gold-bright); font-weight: 700; }
.earning-last {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.earning-last-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.earning-last-head > span:first-child { color: var(--text-faint); font-size: .82rem; }
.earning-verdict { font-size: .8rem; font-weight: 700; }
.earning-last-vals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: .83rem;
  color: var(--text-faint);
}
.earning-last-vals b { color: var(--text); font-weight: 700; }
.earning-last-vals b.econ-good, .earning-verdict.econ-good, .earning-reaction.econ-good { color: var(--green); }
.earning-last-vals b.econ-bad, .earning-verdict.econ-bad, .earning-reaction.econ-bad { color: var(--red); }
.earning-reaction { font-weight: 700; margin-inline-start: auto; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--text-dim); font-size: .92rem; }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.step-num {
  width: 40px; height: 40px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
  font-weight: 900;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: .88rem; }

.how-cta { text-align: center; }
.how-cta-note {
  display: block;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-faint);
}
.how-cta-note code {
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--gold-bright);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,.08), var(--surface) 40%);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; right: 26px;
  background: var(--gold);
  color: #14100a;
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.price-duration { color: var(--text-dim); font-size: .85rem; margin-bottom: 18px; }
.price { margin-bottom: 22px; }
.price .amount { font-size: 2.4rem; font-weight: 900; color: var(--gold-bright); }
.price .currency { display: block; color: var(--text-faint); font-size: .85rem; margin-top: 4px; }
.price-features li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: .92rem;
}
.price-features li::before { content: "•"; position: absolute; right: 0; color: var(--gold); }
.price-card .btn { margin-top: 24px; }

.payment-methods {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 34px;
}
.payment-title { display: block; color: var(--text-faint); font-size: .85rem; margin-bottom: 16px; }
.payment-icons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pm {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text-dim);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial-card.skeleton { grid-column: 1 / -1; text-align: center; color: var(--text-faint); padding: 40px 20px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-dim); margin-bottom: 20px; font-size: .95rem; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold-bright);
}
.testimonial-user div strong { display: block; font-size: .9rem; }
.testimonial-user div span { font-size: .78rem; color: var(--text-faint); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  text-align: right;
  font-weight: 700;
  font-size: .98rem;
}
.faq-toggle { color: var(--gold-bright); font-size: 1.2rem; transition: transform .25s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }
.faq-a p { color: var(--text-dim); font-size: .9rem; }

/* ===== Disclaimer ===== */
.disclaimer { padding: 60px 0; }
.disclaimer-box {
  background: var(--surface);
  border: 1px solid rgba(239,68,68,.35);
  border-radius: var(--radius);
  padding: 34px 30px;
  max-width: 900px;
}
.disclaimer-box h2 { font-size: 1.3rem; margin-bottom: 14px; }
.disclaimer-box p { color: var(--text-dim); font-size: .9rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { font-size: 1.9rem; font-weight: 800; margin: 6px 0 14px; }
.contact-info p { color: var(--text-dim); margin-bottom: 26px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  transition: border-color .2s;
}
.contact-link:hover { border-color: var(--gold); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input, .contact-form textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: .92rem;
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 1.5px solid var(--gold); }
.contact-form .btn { align-self: flex-start; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 50px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 34px;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-faint); font-size: .85rem; margin-top: 10px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); font-size: .9rem; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px 0;
  color: var(--text-faint);
  font-size: .82rem;
}

/* ===== Floating Telegram button ===== */
.fab-telegram {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(212,175,55,.4);
  z-index: 90;
  transition: transform .25s ease;
}
.fab-telegram:hover { transform: scale(1.08); }

/* ===== Fade-up animation ===== */
.fade-up { opacity: 0; transform: translateY(18px); animation: fadeUp .7s ease forwards; }
.hero-inner .fade-up:nth-child(1) { animation-delay: .05s; }
.hero-inner .fade-up:nth-child(2) { animation-delay: .15s; }
.hero-inner .fade-up:nth-child(3) { animation-delay: .25s; }
.hero-inner .fade-up:nth-child(4) { animation-delay: .35s; }
.hero-inner .fade-up:nth-child(5) { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.1rem; }
  .services-grid, .testimonials-grid, .steps, .results-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 1024px) {
  .ticker-bar { height: 72px; }
  .site-header { top: 72px; }
  .hero { padding-top: 240px; }
}
