/* =============================================
   FMP ENHANCED DESIGN v2 - enhanced.css
   ============================================= */

/* ---- FONT OVERRIDE ---- */
body {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
}

/* ---- TOPBAR ---- */
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.tb-sep {
  opacity: 0.4;
}

/* ---- NAV ENHANCEMENTS ---- */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding-top: 0;
}

#mainNav.scrolled {
  background: rgba(4, 6, 15, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-hamburger {
  display: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(4, 6, 15, 0.98);
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 14px 24px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold2);
}

.mobile-nav.open {
  display: flex;
}

@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .nav-hamburger {
    display: block !important;
  }
}

/* ---- HERO ENHANCEMENTS ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold2);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) translateX(30px);
    opacity: 0;
  }
}

.hero-headline-gradient {
  background: linear-gradient(135deg, #f5c842 0%, #d4af37 40%, #ffd700 70%, #f5c842 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-sub-headline {
  font-size: 0.8em;
  color: var(--muted);
  font-weight: 400;
}

.hero-sub-headline u {
  text-decoration-color: var(--gold2);
  color: var(--text);
}

/* Webinar Date Strip */
.webinar-date-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 10px 24px;
  margin: 20px auto 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.wds-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 4px 16px;
}

.wds-item i {
  color: var(--gold2);
}

.wds-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 28px auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 680px;
}

.hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 8px 16px;
}

.hero-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold2);
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  z-index: 3;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold2);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* Hero CTA */
.btn-hero {
  font-size: 1.15rem;
  padding: 20px 52px;
  border-radius: 12px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
}

.hero-trust i {
  color: var(--gold2);
  margin: 0 2px;
}

/* ---- TRUST BANNER ---- */
.trust-banner {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-label {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---- SPEAKER SECTION ---- */
.speaker-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.speaker-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speaker-img-bg {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
  border-radius: 50%;
}

.speaker-img-card {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(59, 130, 246, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  width: 100%;
}

.speaker-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #d4af37, #f5c842);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #0a0a0a;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  font-family: 'Outfit', sans-serif;
}

.speaker-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.speaker-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

.speaker-title {
  color: var(--gold2);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.speaker-bio {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.speaker-bio strong {
  color: var(--text);
}

.speaker-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.sp-stat {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  flex: 1;
}

.sp-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold2);
  font-family: 'Outfit', sans-serif;
}

.sp-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.speaker-socials {
  display: flex;
  gap: 12px;
}

.speaker-socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.speaker-socials a:hover {
  border-color: var(--gold2);
  color: var(--gold2);
}

@media (max-width: 800px) {
  .speaker-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .speaker-img-card {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ---- PAIN BRIDGE ---- */
.pain-bridge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(59, 130, 246, 0.07));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pain-bridge p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  max-width: 600px;
}

/* ---- OPP VISUAL ENHANCEMENT ---- */
.osc-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.opp-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.opp-highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(59, 130, 246, 0.08)) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
}

/* ---- FW-CARD ICON ---- */
.fw-icon {
  font-size: 1.8rem;
  color: var(--gold2);
  margin-bottom: 12px;
  opacity: 0.8;
}

/* ---- EVENT INFO CARD ---- */
.event-info-card {
  padding: 30px;
  margin-top: 20px;
}

.ei-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: center;
}

.ei-row:last-child {
  margin-bottom: 0;
}

.ei-row i {
  color: var(--gold2);
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.ei-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.ei-val {
  font-weight: 700;
  font-size: 0.97rem;
}

/* ---- BONUS CARDS ---- */
.bonus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.2s;
}

.bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.bonus-card i {
  color: var(--gold2);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.bonus-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Details grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

/* ---- FOOTER ---- */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 12px 0;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold2);
  color: var(--gold2);
  background: rgba(212, 175, 55, 0.1);
}

.footer-links {
  display: flex;
  gap: 40px;
}

.fl-col h5 {
  color: var(--gold2);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.fl-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.fl-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(16, 185, 129, 0.95);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- FORM LABEL ICONS ---- */
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--gold2);
  font-size: 0.85rem;
}

/* ---- ANIMATED COUNTER ---- */
@keyframes counter-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.num.counted {
  animation: counter-pop 0.4s ease;
}