:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-surface);
  color: var(--text-dark);
}

/* HEADER */
.site-header {
  width: 100%;
  background: white;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.demo-btn {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.demo-btn:hover {
  background: var(--primary-dark);
}

/* PAGE */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: 0.2s ease;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.card.popular {
  border: 2px solid var(--primary);
}

.badge {
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.price {
  font-size: 38px;
  font-weight: 800;
  margin: 20px 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}
 /* ===== ENTERPRISE COLOR SYSTEM ===== */
:root {
  --brand-primary: #2563eb;
  --brand-primary-dark: #1d4ed8;
  --brand-accent: #0f172a;
  --brand-muted: #64748b;
  --brand-light: #f8fafc;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
}

.enterprise-header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.enterprise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.enterprise-logo {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.enterprise-logo span {
  color: #2563eb;
}

/* Nav Center */
.enterprise-nav {
  display: flex;
  gap: 32px;
}

.enterprise-nav a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.enterprise-nav a:hover {
  color: #2563eb;
}

/* Auth Right */
.enterprise-auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.login-link:hover {
  color: #2563eb;
}

.signup-btn {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.signup-btn:hover {
  background: #1d4ed8;
}


.logo span {
  color: var(--brand-primary);
}

.nav-links a {
  color: #475569;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-primary);
}

/* PRIMARY BUTTON */
.demo-btn,
.brand-bg {
  background: var(--brand-primary);
  color: white;
  transition: 0.2s ease;
}

.demo-btn:hover,
.brand-bg:hover {
  background: var(--brand-primary-dark);
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 120px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: #2563eb;
}

.footer-brand p {
  margin-top: 15px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-columns {
  display: flex;
  gap: 60px;
}

.footer-columns h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: white;
}

.footer-columns a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-columns a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}