/* =========================================================
   STYLE SYSTEM — BOT SCM LANDING PAGE
   Aesthetic: Ultra-luxurious Dark Mode + Gold & Emerald Accents
   ========================================================= */

:root {
  --bg-main: #070a12;
  --bg-card: #0e1526;
  --bg-card-hover: #141f36;
  --bg-input: #121a2d;
  
  --gold: #daa54e;
  --gold-light: #fbe2a7;
  --gold-dark: #a17228;
  --gold-gradient: linear-gradient(135deg, #fbe2a7 0%, #daa54e 50%, #b8812e 100%);
  --gold-glow: 0 0 30px rgba(218, 165, 78, 0.25);
  
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: 0 0 25px rgba(16, 185, 129, 0.25);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(218, 165, 78, 0.3);
  --border-hover: rgba(218, 165, 78, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients & Glows */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(218, 165, 78, 0.08) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-emerald { color: var(--emerald-light); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--gold-light);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #070a12;
  box-shadow: 0 4px 20px rgba(218, 165, 78, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(218, 165, 78, 0.5);
  filter: brightness(1.08);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
}

/* ---- HERO SECTION ---- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(218, 165, 78, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(218, 165, 78, 0.15); }
  50% { box-shadow: 0 0 25px rgba(218, 165, 78, 0.35); }
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Showcase Card */
.hero-mockup {
  margin-top: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), 0 0 80px rgba(218, 165, 78, 0.1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mockup-item {
  background: var(--bg-input);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}
.mockup-item-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.mockup-item-val { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* ---- STATS ROW ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 60px 0;
}

.stat-box {
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(218, 165, 78, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---- PRICING SECTION & SPLIT CARD ---- */
section[id] {
  scroll-margin-top: 85px;
}

.pricing-split-card {
  max-width: 980px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, rgba(22, 30, 46, 0.95) 0%, rgba(13, 18, 28, 0.98) 100%);
  border: 1px solid rgba(218, 165, 78, 0.35);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(218, 165, 78, 0.12);
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  overflow: hidden;
  position: relative;
}

@media (max-width: 860px) {
  .pricing-split-card {
    grid-template-columns: 1fr;
  }
}

.pricing-split-left {
  padding: 40px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .pricing-split-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
  }
}

.pricing-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(218, 165, 78, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.pricing-split-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-split-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

@media (max-width: 600px) {
  .pricing-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pricing-feature-item span {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* SISI KANAN / PRICING BOX */
.pricing-split-right {
  padding: 40px 32px;
  background: rgba(9, 13, 21, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 860px) {
  .pricing-split-right {
    padding: 36px 24px;
  }
}

.discount-pill {
  background: var(--gold-gradient);
  color: #070a12;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(218, 165, 78, 0.3);
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-strikethrough {
  font-size: 15px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-amount-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 4px 0 6px;
}

.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.price-value {
  font-size: 46px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-subtext {
  font-size: 12px;
  color: var(--emerald-light);
  font-weight: 600;
  margin-bottom: 24px;
}

.btn-order-wa {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--gold-glow);
  margin-bottom: 20px;
  cursor: pointer;
}

.pricing-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.guarantee-item {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.guarantee-item span {
  font-size: 14px;
}

/* ---- FAQ ACCORDION ---- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto 80px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}

.faq-question:hover { color: var(--gold-light); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s; font-size: 12px; }

/* ---- MODAL CHECK LICENSE ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
}

.check-result {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: none;
}

/* =========================================================
   KATALOG BOT & MULTI-BOT ECOSYSTEM STYLES
   ========================================================= */

/* Filter Tabs */
.catalog-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.catalog-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-tab-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.catalog-tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(218, 165, 78, 0.35);
  font-weight: 700;
}

/* Bot Catalog Grid */
.bot-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.bot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: all 0.35s ease;
}

.bot-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(218, 165, 78, 0.15);
}

.bot-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, #111a2f 0%, #0e1526 100%);
}

.bot-card.featured::before {
  background: var(--gold-gradient);
}

.bot-card.featured:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 35px rgba(218, 165, 78, 0.25);
}

.bot-card.card-coming-soon {
  border: 1px dashed rgba(165, 180, 252, 0.4);
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, rgba(14, 21, 38, 0.6) 100%);
}

.bot-card.card-coming-soon::before {
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.bot-card.card-coming-soon:hover {
  border-color: #818cf8;
  border-style: solid;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(99, 102, 241, 0.2);
}

/* Badges */
.bot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
}

.bot-badge.badge-ready {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.bot-badge.badge-soon {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.bot-badge.badge-custom {
  background: rgba(218, 165, 78, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.bot-header-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.bot-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bot-card:hover .bot-icon-wrap {
  transform: scale(1.1);
}

.bot-title-group h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.bot-platform {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bot-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bot-bullets {
  list-style: none;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.bot-bullets li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bot-bullets li strong {
  color: var(--text-primary);
}

.bot-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bot-price-box {
  display: flex;
  flex-direction: column;
}

.bot-price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.bot-price-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-light);
}

/* Custom Bot Banner */
.custom-bot-banner {
  background: radial-gradient(circle at right top, rgba(218, 165, 78, 0.15) 0%, rgba(14, 21, 38, 0.95) 70%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.custom-bot-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.custom-bot-content p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .custom-bot-banner {
    flex-direction: column;
    text-align: center;
  }
  .custom-bot-content p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .nav-links { display: none; }
  .mockup-body-grid { grid-template-columns: 1fr; }
  .bot-catalog-grid { grid-template-columns: 1fr; }
  .bot-card-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .bot-price-box { text-align: center; }
}
