/* ─── EA Bot Pro — Landing Page Styles ───────────────────────────────────── */

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.nav-main {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,15,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo .logo-box {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #000;
}
.nav-logo span { font-weight: 800; font-size: 1.1rem; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,.08) 0%, transparent 70%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,170,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 1200px; margin: auto; padding: 4rem 1.5rem; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,.25);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .value { font-size: 1.75rem; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: .8rem; color: var(--text-muted); }

/* ─── Section common ─────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-inner { max-width: 1200px; margin: auto; padding: 0 1.5rem; }
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,212,170,.2);
  border-radius: 20px;
  padding: .25rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.section-heading h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; }
.section-heading p  { color: var(--text-muted); max-width: 520px; margin: .75rem auto 0; }

/* ─── How it works ────────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.step-num {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 2px solid rgba(0,212,170,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.step-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

/* ─── Packages / Pricing ──────────────────────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.package-card.featured {
  border-color: rgba(0,212,170,.4);
  background: linear-gradient(145deg, #16161f, #1a2520);
}
.package-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 20px;
  padding: .2rem .85rem;
  white-space: nowrap;
}
.package-badge.vip { background: #8b5cf6; color: #fff; }
.package-badge.best { background: #f59e0b; color: #000; }
.package-name { font-size: 1.15rem; font-weight: 800; margin-bottom: .35rem; }
.package-risk { display: inline-block; border-radius: 20px; padding: .2rem .65rem; font-size: .72rem; font-weight: 700; margin-bottom: 1rem; }
.package-return { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: .25rem; }
.package-return-label { font-size: .75rem; color: var(--text-muted); margin-bottom: 1rem; }
.package-min-invest { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.package-min-invest strong { color: var(--text-primary); }
.package-features { list-style: none; margin-bottom: 1.25rem; flex: 1; }
.package-features li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .3rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.package-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Period tabs */
.period-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.period-tab {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .3rem .6rem;
  font-size: .72rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}
.period-tab.active, .period-tab:hover { background: var(--accent-dim); border-color: rgba(0,212,170,.3); color: var(--accent); }
.package-price { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.package-price span { font-size: .85rem; color: var(--text-muted); font-weight: 400; }

/* ─── Stats banner ───────────────────────────────────────────────────────── */
.stats-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats-banner .stat-value { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stats-banner .stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
}
.faq-q .arrow { transition: transform .3s; color: var(--accent); }
.faq-a { padding: 0 1.25rem 1.1rem; color: var(--text-muted); font-size: .9rem; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner { max-width: 1200px; margin: auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { color: var(--text-muted); font-size: .88rem; margin-top: .75rem; line-height: 1.6; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: .5rem; }

/* ─── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .5s ease forwards; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stats-banner { grid-template-columns: 1fr 1fr; }
}
