/* ============================================
   FN8POS — Landing Page Styles (Full Responsive)
   ============================================ */

.landing { min-height: 100vh; }

/* ── Navbar ── */
.nav-landing {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px;
  display: flex; align-items: center;
  background: rgba(6,8,8,.55); backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid transparent; transition: all .35s;
}
.nav-landing.scrolled { background: rgba(6,8,8,.92); border-bottom-color: var(--bd); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--em), #86efac);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: var(--bg);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.06); }
.logo-text { font-size: 20px; font-weight: 800; color: var(--t); letter-spacing: -.3px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--t3); transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
  background: var(--em); border-radius: 1px; transition: width .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover { color: var(--em); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 8px; }

/* Hamburger button */
.hamburger {
  display: none; width: 40px; height: 40px; border-radius: var(--r);
  background: transparent; border: 1px solid var(--bd1); color: var(--t);
  font-size: 20px; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr); flex-shrink: 0;
}
.hamburger:hover { border-color: var(--em); color: var(--em); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: rgba(6,8,8,.96);
  backdrop-filter: blur(20px); display: none; flex-direction: column;
  padding: 80px 28px 40px; animation: fadeIn .2s;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px; font-weight: 700; color: var(--t1); padding: 14px 0;
  border-bottom: 1px solid var(--bd); transition: color .2s;
}
.mobile-nav a:hover { color: var(--em); }
.mobile-nav-close {
  position: absolute; top: 14px; right: 20px; width: 44px; height: 44px;
  border-radius: var(--r); background: var(--bg3); color: var(--t);
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
}
.mobile-nav-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ── Hero ── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center; padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .3; pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--em9); top: -5%; left: -3%; animation: float 9s ease-in-out infinite; }
.hero-orb-2 { width: 350px; height: 350px; background: var(--em9); bottom: 10%; right: -3%; animation: float 11s ease-in-out infinite 3s; }
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .018;
  background-image: linear-gradient(var(--em) 1px, transparent 1px), linear-gradient(90deg, var(--em) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 2;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 99px;
  background: var(--emA); border: 1px solid var(--emB);
  color: var(--em); font-size: 13px; font-weight: 600; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--em); animation: pulse 2s ease infinite; }
.hero-h1 {
  font-size: clamp(36px, 5.8vw, 64px); font-weight: 800; color: var(--t);
  line-height: 1.04; letter-spacing: -2.5px; margin-bottom: 20px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, var(--em), #86efac);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 18px; color: var(--t2); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 52px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--em); font-family: var(--fm); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--t4); margin-top: 4px; }

/* Hero Image */
.hero-visual { position: relative; perspective: 1200px; }
.hero-mockup {
  width: 100%; border-radius: var(--r3); overflow: hidden;
  border: 1px solid var(--bd1);
  box-shadow: 0 48px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(34,197,94,.03);
  transform: rotateY(-3deg) rotateX(1deg); transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.hero-mockup:hover { transform: rotateY(0) rotateX(0); }
.hero-mockup-bar {
  height: 32px; background: var(--bg2); border-bottom: 1px solid var(--bd);
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
}
.hero-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-mockup img { width: 100%; height: 420px; object-fit: cover; }

/* Floating cards */
.float-card {
  position: absolute; padding: 12px 16px; border-radius: var(--r2);
  background: rgba(12,14,13,.88); backdrop-filter: blur(16px);
  border: 1px solid var(--bd1); box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.float-card-1 { bottom: -12px; left: -24px; animation: float 5s ease-in-out infinite; }
.float-card-2 { top: 44px; right: -20px; animation: float 6s ease-in-out infinite 1.5s; }
.float-card-3 { bottom: 80px; right: -16px; animation: float 7s ease-in-out infinite 3s; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-dark { background: var(--bg1); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
.section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--t);
  line-height: 1.1; letter-spacing: -1px; text-align: center; margin-bottom: 12px;
}
.section-title em { font-style: normal; color: var(--em); }
.section-sub { font-size: 16px; color: var(--t3); text-align: center; max-width: 520px; margin: 0 auto 48px; line-height: 1.7; padding: 0 16px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 14px;
  border-radius: 99px; background: var(--em9); border: 1px solid var(--em3);
  color: var(--em); font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-label .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--em); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Feature Grid ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card {
  padding: 28px; border-radius: var(--r2); background: var(--bg2); border: 1px solid var(--bd);
  transition: all .3s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--em), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: var(--bd2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px;
}
.feat-name { font-size: 18px; font-weight: 700; color: var(--t); margin-bottom: 8px; }
.feat-desc { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-card {
  padding: 28px; border-radius: var(--r2); background: var(--bg2); border: 1px solid var(--bd);
  transition: all .3s; position: relative;
}
.price-card:hover { border-color: var(--bd2); transform: translateY(-3px); }
.price-card.popular { border-color: var(--em3); background: linear-gradient(175deg, rgba(5,46,22,.45) 0%, var(--bg2) 30%); }
.price-card.popular::before {
  content: 'POPULER'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 99px; background: var(--em); color: var(--bg);
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
}
.price-name { font-size: 16px; font-weight: 700; color: var(--t); margin-bottom: 10px; }
.price-amount { font-size: 36px; font-weight: 800; color: var(--em); font-family: var(--fm); line-height: 1; }
.price-amount span { font-size: 14px; color: var(--t4); font-weight: 500; }
.price-period { font-size: 12px; color: var(--t4); margin: 4px 0 20px; }
.price-list { list-style: none; margin-bottom: 20px; }
.price-list li {
  display: flex; align-items: center; gap: 8px; padding: 7px 0;
  font-size: 13px; color: var(--t2); border-bottom: 1px solid rgba(28,32,30,.8);
}
.price-list li:last-child { border: none; }

/* ── CTA ── */
.cta-section { text-align: center; padding: 96px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--em9), transparent); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--bd); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-title { font-size: 13px; font-weight: 700; color: var(--t); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--t4); transition: color .2s; }
.footer-links a:hover { color: var(--em); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--bd);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: var(--t4); }

/* ════════════════════════════════════════════
   RESPONSIVE — Landing
   ════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats, .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 16px; }
  .hero-inner { padding: 0 20px; }
  .hero-h1 { letter-spacing: -1.5px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 28px; }
  .hero-stat-num { font-size: 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-amount { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-section { padding: 64px 0; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 32px; }
  .hero-chip { font-size: 11px; padding: 5px 14px; }
  .hero-stat-num { font-size: 22px; }
}
