/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 23, 42, 0.45);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-white: #f8fafc;
  --text-gray: #94a3b8;
  --primary-neon: #3b82f6;
  --secondary-neon: #a855f7;
  --accent-neon: #06b6d4;
  --glow-primary: 0 0 30px rgba(59, 130, 246, 0.25);
  --glow-secondary: 0 0 30px rgba(168, 85, 247, 0.25);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

body::before {
  top: -100px;
  right: -50px;
  background: var(--primary-neon);
}

body::after {
  bottom: -100px;
  left: -50px;
  background: var(--secondary-neon);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-glass);
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

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

.nav-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero {
  padding: 90px 0 60px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--accent-neon);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--glow-primary);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary), var(--glow-secondary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Dashboard Mockup (Glassmorphism card) */
.hero-mockup {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.mockup-inner {
  background: #0b0f19;
  border-radius: 16px;
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
}

.mockup-sidebar {
  width: 180px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-nav-item {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
}
.mockup-nav-item:nth-child(1) { background: rgba(59, 130, 246, 0.3); width: 80%; }
.mockup-nav-item:nth-child(2) { width: 90%; }
.mockup-nav-item:nth-child(3) { width: 75%; }
.mockup-nav-item:nth-child(4) { width: 85%; }

.mockup-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-title {
  width: 150px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

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

.mockup-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-card-val {
  height: 24px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 4px;
}

.mockup-card-lbl {
  height: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.mockup-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.mockup-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(59, 130, 246, 0.15);
  min-height: 20px;
}

.mockup-chart-bar:nth-child(even) {
  background: rgba(168, 85, 247, 0.15);
}

.mockup-chart-bar:hover {
  background: var(--primary-neon);
}

/* Features Bento Grid Section */
.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 16px;
}

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

.bento-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bento-card.col-2 {
  grid-column: span 2;
}

.bento-card.row-2 {
  grid-row: span 2;
  justify-content: space-between;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-neon);
}

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

.bento-card p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* Pricing Section */
.pricing {
  padding: 60px 0 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.price-card.featured {
  background: rgba(15, 23, 42, 0.65);
  border-color: var(--primary-neon);
  box-shadow: var(--glow-primary);
  transform: translateY(-8px);
}

.price-card.featured::before {
  content: 'POPULER';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-neon);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 18px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 16px;
}

.price-num {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.price-num span {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
}

.price-desc {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

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

.price-features li::before {
  content: '✓';
  color: var(--accent-neon);
  font-weight: 900;
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-card.featured .price-btn {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border: none;
  box-shadow: var(--glow-primary);
}

.price-card.featured .price-btn:hover {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.price-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* CTA Footer Section */
.cta-sec {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  position: relative;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-box p {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.col-2 {
    grid-column: span 1;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .price-card.featured {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  .nav-links {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-card.row-2 {
    grid-row: span 1;
  }
}
