/* marketing.css - Premium Marketing Specific Styles */
:root {
  --nav-height: 80px;
  --indigo-900: #1E1B4B;
  --indigo-800: #312E81;
  --gradient-mk: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --success-green: #10B981;
}

body.marketing-page {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #1E293B;
  line-height: 1.6;
  overflow: auto !important;
}

/* Global Navbar */
.mk-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mk-nav-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mk-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--indigo-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mk-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mk-nav-link {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.mk-nav-link:hover {
  color: var(--indigo-900);
}

.mk-auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-mk-primary {
  background-color: var(--indigo-900);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-mk-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(30, 27, 75, 0.2);
}

.btn-mk-outline {
  background-color: transparent;
  color: var(--indigo-900);
  border: 1px solid #E2E8F0;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-mk-outline:hover {
  border-color: var(--indigo-900);
  background-color: #F8FAFC;
}

/* Sections */
.mk-section {
  padding: 8rem 2rem 6rem;
  display: flex;
  justify-content: center;
}

.mk-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mk-hero {
  padding-top: calc(var(--nav-height) + 8rem);
  padding-bottom: 8rem;
  text-align: center;
  background: var(--gradient-mk);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.mk-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.mk-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

/* Marketing Cards */
.mk-card {
  background: white;
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
}

.mk-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F8FAFC;
  color: var(--indigo-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

/* Pricing Table */
.mk-pricing-card {
  border: 2px solid transparent;
}
.mk-pricing-card.featured {
  border-color: var(--indigo-900);
  transform: scale(1.05);
}
.mk-pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

/* Footer */
.mk-footer {
  background: var(--indigo-900);
  color: white;
  padding: 4rem 2rem;
}

.mk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mk-footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.mk-footer-col a {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.mk-footer-col a:hover { color: white; }

@media (max-width: 900px) {
  .mk-grid-3, .mk-grid-2, .mk-footer-grid { grid-template-columns: 1fr; }
  .mk-pricing-card.featured { transform: none; border-width: 1px; }
  .mk-hero h1 { font-size: 2.5rem; }
  .mk-nav-links { display: none; }
}
