/* =========================
   GLOBAL
========================= */
:root {
  --brand: #0f172a;
  --accent: #2563eb;
  --soft: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER / NAV
========================= */
.topbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.navrow {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.nav a {
  margin-left: 20px;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero-enterprise {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 90px 24px;
}

.hero-content {
  max-width: 1000px;
  margin: auto;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-enterprise h1 {
  font-size: 3rem;
  margin: 10px 0;
}

.hero-enterprise .accent {
  display: block;
  font-size: 1.2rem;
  color: #93c5fd;
}

.subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  color: #cbd5f5;
}

.hero-actions {
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-right: 14px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  color: #e0e7ff;
}

/* =========================
   FEATURES
========================= */
.enterprise-features {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature p {
  color: var(--muted);
}

/* =========================
   TRUST
========================= */
.enterprise-trust {
  background: var(--soft);
  padding: 80px 24px;
}

.enterprise-trust h2 {
  text-align: center;
  margin-bottom: 50px;
}

.trust-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-grid div {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   CTA
========================= */
.enterprise-cta {
  text-align: center;
  padding: 90px 24px;
}

.enterprise-cta .large {
  font-size: 1.1rem;
  padding: 16px 36px;
}

