/* ===== 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: fixed;
  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);
}

/* HERO */
.hero-gradient {
  background: white;
}

/* CARDS */
.glass-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  backdrop-filter: none;
}

/* BRAND TEXT */
.brand-text {
  color: var(--brand-primary);
}

/* ACCENT ICON BACKGROUND */
.bg-orange-100 {
  background: #eff6ff !important;
}

.bg-orange-100 svg {
  color: var(--brand-primary);
}


/* NAV BAR */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 44px;   /* Adjust between 40–55px */
  width: auto;
  display: block;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #000000;
}.logo img {
  height: 55px;
  width: auto;
  display: block;
}.enterprise-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 90px;              /* Controls navbar height */
  padding: 0 40px;
  display: flex;
  align-items: center;       /* Vertically centers everything */
  justify-content: space-between;
}.logo img {
  height: 70px;              /* Slightly smaller than header */
  width: auto;
  display: block;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.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: var(--primary);
}

.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;
}
