/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/marketing.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
/* --- MARKETING NAV --- */
.marketing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--sidebar-bg);
  z-index: 2000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.marketing-nav a {
  color: white;
  text-decoration: none;
}

/* --- HERO --- */
.marketing-hero {
  padding: 160px 5% 80px;
  text-align: center;
  background: radial-gradient(circle at 70% 30%, #fffbeb 0%, #ffffff 70%);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* --- SECTIONS --- */
.marketing-section {
  padding: 100px 5%;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
}

.m-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.m-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  text-align: center;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .marketing-nav { height: 64px; padding: 0 1rem; }
  .marketing-hero { padding-top: 120px; }
  .hero-cta { flex-direction: column; padding: 0 1rem; }
  .hero-cta .btn { width: 100%; }
  
  .m-grid-2 { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .marketing-section { padding: 60px 1rem; }
}

