/* =============================================================
   Mariundang.site - SaaS Landing Page Styling
   Modern Enterprise Dark Obsidian & Indigo Gold Theme
   ============================================================= */

:root {
  --land-bg: #07090E;
  --land-bg-card: #0F172A;
  --land-bg-darker: #04060A;
  --land-border: #1E293B;
  --land-accent: #6366F1;
  --land-accent-hover: #4F46E5;
  --land-gold: #C49F4D;
  --land-gold-bright: #F5D77F;
  --land-text: #F8FAFC;
  --land-text-muted: #94A3B8;
  --land-font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --land-font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--land-bg);
  color: var(--land-text);
  font-family: var(--land-font-sans);
  line-height: 1.6;
}

/* NAVBAR */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--land-border);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
}

.logo-bolt {
  color: #6366F1;
}

.logo-accent {
  color: #818CF8;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  color: var(--land-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-auth-btns {
  display: flex;
  gap: 12px;
}

/* BUTTONS */
.btn-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--land-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-landing-primary {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-landing-secondary {
  background: #1E293B;
  color: #FFFFFF;
  border-color: #334155;
}

.btn-landing-secondary:hover {
  background: #334155;
}

.btn-landing-outline {
  background: transparent;
  color: var(--land-text);
  border-color: var(--land-border);
}

.btn-landing-outline:hover {
  border-color: #6366F1;
  color: #818CF8;
}

.btn-landing-lg {
  padding: 14px 26px;
  font-size: 0.95rem;
  border-radius: 10px;
}

.btn-landing-sm {
  padding: 8px 14px;
  font-size: 0.8rem;
}

.w-100 {
  width: 100%;
}

/* HERO SECTION */
.hero-section {
  padding: 90px 20px 70px;
  text-align: center;
  background: radial-gradient(circle at center top, rgba(99, 102, 241, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818CF8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #818CF8 0%, #C49F4D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--land-text-muted);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: var(--land-bg-card);
  border: 1px solid var(--land-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--land-gold-bright);
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--land-text-muted);
}

/* SECTIONS COMMON */
.section-padding {
  padding: 80px 20px;
}

.bg-darker {
  background-color: var(--land-bg-darker);
}

.landing-container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.section-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6366F1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--land-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--land-bg-card);
  border: 1px solid var(--land-border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #6366F1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.86rem;
  color: var(--land-text-muted);

}

/* CATALOG GRID */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.catalog-card {
  background: var(--land-bg-card);
  border: 1px solid var(--land-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.catalog-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-thumb img {
  transform: scale(1.05);
}

.catalog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(99, 102, 241, 0.9);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 2;
}

.catalog-info {
  padding: 20px;
}

.catalog-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.catalog-info p {
  font-size: 0.82rem;
  color: var(--land-text-muted);
  margin-bottom: 16px;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--land-bg-card);
  border: 1px solid var(--land-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card-featured {
  border-color: #6366F1;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(15, 23, 42, 1) 100%);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.25);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366F1;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.price-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.price-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--land-gold-bright);
  margin-bottom: 8px;
}

.price-val span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--land-text-muted);
}

.price-desc {
  font-size: 0.82rem;
  color: var(--land-text-muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  font-size: 0.84rem;
  color: #E2E8F0;
  margin-bottom: 10px;
}

/* FOOTER */
.landing-footer {
  background: #020408;
  border-top: 1px solid var(--land-border);
  padding: 50px 20px 24px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--land-text-muted);
  margin-top: 6px;
  max-width: 400px;
}

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

.footer-links a {
  color: var(--land-text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--land-text-muted);
  text-align: center;
}