/* =========================================================================
   FB Lister — Landing Page CSS
   Premium, professional landing page with dark green-blue theme
   ========================================================================= */

:root {
  --bg: #060e1a;
  --bg-elevated: #0a1628;
  --bg-card: #0f1f3a;
  --bg-card-hover: #162a4a;
  --border: rgba(45, 212, 160, 0.15);
  --border-strong: rgba(45, 212, 160, 0.3);
  --text-primary: #e8f0f8;
  --text-secondary: #90a4c2;
  --text-muted: #5a7a9a;
  --accent: #2dd4a0;
  --accent-hover: #57f287;
  --accent-glow: rgba(45, 212, 160, 0.12);
  --green: #57f287;
  --blue: #4da3ff;
  --purple: #a78bfa;
  --orange: #fb923c;
  --red: #fb7185;
  --teal: #2dd4a0;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a2d4a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #243a5e; }

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 12px rgba(45, 212, 160, 0.4));
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #57f287, #2dd4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 2px 10px rgba(45, 212, 160, 0.3) !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 20px rgba(45, 212, 160, 0.4) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════════════
   HERO — Full Screen
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1280px;
  width: 100%;
}

/* Glow effects */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(45, 212, 160, 0.15);
  top: -250px;
  left: -150px;
  animation: heroGlow1 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 600px;
  height: 600px;
  background: rgba(77, 163, 255, 0.1);
  bottom: -200px;
  right: -150px;
  animation: heroGlow2 10s ease-in-out infinite;
}

@keyframes heroGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes heroGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -20px) scale(1.15); }
}

/* Subtle grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 160, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 160, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 70%);
}

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(45, 212, 160, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45, 212, 160, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(45, 212, 160, 0); }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-gradient {
  background: linear-gradient(135deg, #57f287 0%, #2dd4a0 50%, #4da3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(45, 212, 160, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary-lg:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(45, 212, 160, 0.45);
  transform: translateY(-2px);
}

.btn-primary-lg:active { transform: translateY(0); }

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  background: transparent;
}

.btn-outline-lg:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat { display: flex; flex-direction: column; gap: 2px; }

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero visual - mocked dashboard */
.hero-visual {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-dashboard-mock {
  background: linear-gradient(145deg, #0f1f3a, #0a1628);
  border: 1px solid rgba(45, 212, 160, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(45, 212, 160, 0.1);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-dashboard-mock:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #fb7185; }
.mock-dots span:nth-child(2) { background: #fbbf24; }
.mock-dots span:nth-child(3) { background: #57f287; }

.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-body {
  display: flex;
  height: 280px;
}

.mock-sidebar {
  width: 140px;
  background: rgba(0,0,0,0.2);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-nav-item {
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-muted);
  border-radius: 6px;
  font-weight: 500;
  cursor: default;
}

.mock-nav-item.active {
  background: rgba(45, 212, 160, 0.15);
  color: var(--accent);
}

.mock-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-card-row {
  display: flex;
  gap: 10px;
}

.mock-card {
  flex: 1;
  background: rgba(15, 31, 58, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.mock-card:hover {
  border-color: var(--accent);
  background: rgba(15, 31, 58, 1);
}

.mock-card-img {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mock-card-info { flex: 1; min-width: 0; }

.mock-card-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-card-price {
  font-size: 10px;
  color: var(--text-muted);
}

.mock-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(45, 212, 160, 0.2);
  color: var(--green);
  letter-spacing: 0.3px;
}

.mock-badge.published {
  background: rgba(87, 242, 135, 0.2);
  color: #57f287;
}

.mock-badge.sold {
  background: rgba(251, 113, 133, 0.2);
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════════ */
.features {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(45, 212, 160, 0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  position: relative;
}

.feature-icon-wrapper.green { background: rgba(45, 212, 160, 0.12); }
.feature-icon-wrapper.blue { background: rgba(77, 163, 255, 0.12); }
.feature-icon-wrapper.purple { background: rgba(167, 139, 250, 0.12); }
.feature-icon-wrapper.orange { background: rgba(251, 146, 60, 0.12); }
.feature-icon-wrapper.teal { background: rgba(45, 212, 160, 0.12); }
.feature-icon-wrapper.red { background: rgba(251, 113, 133, 0.12); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(45, 212, 160, 0.15), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: -20px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 212, 160, 0.15), rgba(45, 212, 160, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 30px;
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  flex-shrink: 0;
}

.connector-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-strong), var(--accent));
  border-radius: 1px;
}

.connector-arrow {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  margin-left: -4px;
}

/* ═══════════════════════════════════════════════════════════════════
   SHOWCASE (alternating text + code)
   ═══════════════════════════════════════════════════════════════════ */
.showcase {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

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

.showcase-row.reverse { flex-direction: row-reverse; }

.showcase-text {
  flex: 1;
  max-width: 520px;
}

.showcase-text .section-tag { margin-bottom: 20px; }

.showcase-text h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.showcase-text > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.showcase-code {
  flex: 1;
  max-width: 520px;
}

.code-block {
  background: #0a1628;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dot.red { background: #fb7185; }
.code-dot.yellow { background: #fbbf24; }
.code-dot.green-dot { background: #57f287; }

.code-filename {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.code-block pre {
  padding: 20px;
  overflow-x: auto;
}

.code-block code {
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.code-comment { color: #5a7a9a; }
.code-key { color: #a78bfa; }
.code-val { color: #4da3ff; }
.code-mapped { color: #57f287; }
.code-desc { color: #e8f0f8; }

/* ═══════════════════════════════════════════════════════════════════
   STATS BANNER
   ═══════════════════════════════════════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, rgba(45, 212, 160, 0.06), rgba(77, 163, 255, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 400px;
  width: 100%;
  flex: 1 1 300px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(45, 212, 160, 0.1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4), 0 0 60px rgba(45, 212, 160, 0.1);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(45, 212, 160, 0.5);
  background: linear-gradient(165deg, #123024, var(--bg-card) 55%, var(--bg));
  box-shadow: 0 16px 60px rgba(45, 212, 160, 0.15), 0 0 0 1px rgba(45, 212, 160, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 70px rgba(45, 212, 160, 0.22), 0 0 70px rgba(45, 212, 160, 0.15);
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(45, 212, 160, 0.25);
  margin-bottom: 24px;
}

.pricing-badge.featured-badge {
  background: linear-gradient(135deg, #2dd4a0, #57f287);
  color: #052e1d;
  border-color: transparent;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 28px;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 58px;
  font-weight: 900;
  background: linear-gradient(135deg, #57f287, #2dd4a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.pricing-card.featured .price-amount {
  font-size: 64px;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(45, 212, 160, 0.1), transparent);
  filter: blur(80px);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo-icon {
  font-size: 24px;
}

.footer-brand .logo-text {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.15s; }
.feature-card:nth-child(4) { transition-delay: 0.2s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .showcase-row,
  .showcase-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .showcase-text,
  .showcase-code { max-width: 100%; }

  .steps-container { flex-direction: column; align-items: center; gap: 40px; }
  .step-connector { transform: rotate(90deg); padding-top: 0; }
  .step { max-width: 400px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .section-header h2 { font-size: 30px; }
  .cta-section h2 { font-size: 30px; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 20px;
    z-index: 99;
  }

  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

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

  .pricing-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr; }

  .showcase-text h2 { font-size: 26px; }
}
