html, body { background: #0B1120 !important; margin: 0; overflow-x: hidden !important; max-width: 100vw !important; }

#ent-content {
  --ent-dark: #0B1120;
  --ent-surface: #131B2E;
  --ent-border: #1E293B;
  --ent-hover: #1A2540;
  --ent-orange: #EC5A22;
  --ent-orange-hover: #D4501E;
  --ent-text: #E2E8F0;
  --ent-muted: #94A3B8;
  --ent-blue: #00A9EA;
  --ent-gold: #F5A11A;
  --ent-green: #16A34A;
  --ent-purple: #8B5CF6;
  --ent-light: #F8FAFC;
  --ent-light-surface: #FFFFFF;
  --ent-light-border: #E2E8F0;
  --ent-text-on-light: #1E293B;
  --ent-text-muted-light: #64748B;
  background: var(--ent-dark);
  color: var(--ent-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* ===== HERO ===== */
#ent-content .ent-hero {
  padding: 108px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(327deg,rgba(33,0,75,0.20) 3%,rgba(60,0,136,0) 40%),linear-gradient(246deg,rgba(236,90,34,0.08) 0%,rgba(209,25,80,0) 36%),linear-gradient(148deg,rgba(0,169,234,0.04) 0%,transparent 60%),var(--ent-dark);
}
#ent-content .ent-hero .ent-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ent-content .ent-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(236,90,34,0.3);
  font-size: 13px;
  color: rgba(226,232,240,0.6);
  margin-bottom: 32px;
  background: rgba(236,90,34,0.06);
}
#ent-content .ent-hero-label .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ent-orange);
  animation: ent-pulse 2s ease-in-out infinite;
}
@keyframes ent-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
#ent-content .ent-hero-label span {
  color: var(--ent-orange);
  font-weight: 600;
}
#ent-content .ent-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
}
#ent-content .ent-hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(226,232,240,0.5);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
#ent-content .ent-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--ent-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
}
#ent-content .ent-hero-cta:hover {
  background: var(--ent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}
#ent-content .ent-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
#ent-content .ent-hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
#ent-content .ent-hero-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--ent-green);
  fill: none;
}

#ent-content .ent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS & TITLES ===== */
#ent-content .ent-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ent-orange);
  margin-bottom: 12px;
}
#ent-content .ent-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ent-text-on-light);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
#ent-content .ent-section-title-dark {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
#ent-content .ent-section-desc {
  font-size: 17px;
  color: var(--ent-text-muted-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}
#ent-content .centered { text-align: center; }

/* ===== BENEFITS (#F8FAFC) ===== */
#ent-content .ent-benefits {
  padding: 80px 0;
  background: var(--ent-light);
}
#ent-content .ent-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#ent-content .ent-benefit-card {
  background: var(--ent-light-surface);
  border: 1px solid var(--ent-light-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
#ent-content .ent-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#ent-content .ent-benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#ent-content .ent-benefit-card:hover::after { transform: scaleX(1); }
#ent-content .ent-benefit-card:nth-child(1)::after { background: var(--ent-orange); }
#ent-content .ent-benefit-card:nth-child(2)::after { background: var(--ent-blue); }
#ent-content .ent-benefit-card:nth-child(3)::after { background: var(--ent-green); }
#ent-content .ent-benefit-card:nth-child(4)::after { background: var(--ent-gold); }
#ent-content .ent-benefit-card:nth-child(5)::after { background: var(--ent-purple); }
#ent-content .ent-benefit-card:nth-child(6)::after { background: var(--ent-orange); }
#ent-content .ent-benefit-card:nth-child(7)::after { background: var(--ent-blue); }
#ent-content .ent-benefit-card:nth-child(8)::after { background: var(--ent-green); }

#ent-content .ent-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#ent-content .ent-benefit-card:nth-child(1) .ent-benefit-icon { background: rgba(236,90,34,0.08); }
#ent-content .ent-benefit-card:nth-child(1) .ent-benefit-icon svg { color: var(--ent-orange); stroke: var(--ent-orange); }
#ent-content .ent-benefit-card:nth-child(2) .ent-benefit-icon { background: rgba(0,169,234,0.08); }
#ent-content .ent-benefit-card:nth-child(2) .ent-benefit-icon svg { color: var(--ent-blue); stroke: var(--ent-blue); }
#ent-content .ent-benefit-card:nth-child(3) .ent-benefit-icon { background: rgba(22,163,74,0.08); }
#ent-content .ent-benefit-card:nth-child(3) .ent-benefit-icon svg { color: var(--ent-green); stroke: var(--ent-green); }
#ent-content .ent-benefit-card:nth-child(4) .ent-benefit-icon { background: rgba(245,161,26,0.08); }
#ent-content .ent-benefit-card:nth-child(4) .ent-benefit-icon svg { color: var(--ent-gold); stroke: var(--ent-gold); }
#ent-content .ent-benefit-card:nth-child(5) .ent-benefit-icon { background: rgba(139,92,246,0.08); }
#ent-content .ent-benefit-card:nth-child(5) .ent-benefit-icon svg { color: var(--ent-purple); stroke: var(--ent-purple); }
#ent-content .ent-benefit-card:nth-child(6) .ent-benefit-icon { background: rgba(236,90,34,0.08); }
#ent-content .ent-benefit-card:nth-child(6) .ent-benefit-icon svg { color: var(--ent-orange); stroke: var(--ent-orange); }
#ent-content .ent-benefit-card:nth-child(7) .ent-benefit-icon { background: rgba(0,169,234,0.08); }
#ent-content .ent-benefit-card:nth-child(7) .ent-benefit-icon svg { color: var(--ent-blue); stroke: var(--ent-blue); }
#ent-content .ent-benefit-card:nth-child(8) .ent-benefit-icon { background: rgba(22,163,74,0.08); }
#ent-content .ent-benefit-card:nth-child(8) .ent-benefit-icon svg { color: var(--ent-green); stroke: var(--ent-green); }

#ent-content .ent-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}
#ent-content .ent-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ent-text-on-light);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
#ent-content .ent-benefit-card p {
  font-size: 14px;
  color: var(--ent-text-muted-light);
  line-height: 1.6;
  margin: 0 0 8px;
}
#ent-content .ent-benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
#ent-content .ent-benefit-card ul li {
  font-size: 14px;
  color: var(--ent-text-muted-light);
  line-height: 1.6;
  padding: 3px 0 3px 20px;
  position: relative;
}
#ent-content .ent-benefit-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ent-orange);
  opacity: 0.5;
}

/* SLA Table */
#ent-content .ent-sla-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}
#ent-content .ent-sla-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--ent-text-on-light);
  border-bottom: 2px solid var(--ent-light-border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#ent-content .ent-sla-table td {
  padding: 10px 12px;
  color: var(--ent-text-muted-light);
  border-bottom: 1px solid var(--ent-light-border);
}
#ent-content .ent-sla-table tr:last-child td {
  border-bottom: none;
}
#ent-content .ent-sla-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
#ent-content .ent-sla-p1 { background: rgba(236,90,34,0.1); color: var(--ent-orange); }
#ent-content .ent-sla-p2 { background: rgba(245,161,26,0.1); color: var(--ent-gold); }
#ent-content .ent-sla-p3 { background: rgba(0,169,234,0.1); color: var(--ent-blue); }
#ent-content .ent-sla-p4 { background: rgba(22,163,74,0.1); color: var(--ent-green); }

/* ===== TRUSTED (#FFFFFF) ===== */
#ent-content .ent-trusted {
  padding: 80px 0;
  background: var(--ent-light-surface);
}
#ent-content .ent-trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 16px;
}
#ent-content .ent-trusted-logos img {
  height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
#ent-content .ent-trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== MIGRATION (#F8FAFC) ===== */
#ent-content .ent-migration {
  padding: 80px 0;
  background: var(--ent-light);
}
#ent-content .ent-migration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#ent-content .ent-migration-card {
  background: var(--ent-light-surface);
  border: 1px solid var(--ent-light-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}
#ent-content .ent-migration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
#ent-content .ent-migration-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ent-text-on-light);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
#ent-content .ent-migration-card p {
  font-size: 14px;
  color: var(--ent-text-muted-light);
  line-height: 1.6;
  margin: 0;
}
#ent-content .ent-migration-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#ent-content .ent-migration-card ul li {
  font-size: 14px;
  color: var(--ent-text-muted-light);
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}
#ent-content .ent-migration-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ent-orange);
  opacity: 0.5;
}
#ent-content .ent-migration-card ul li b {
  color: var(--ent-text-on-light);
}
#ent-content .ent-migration-card.full-width {
  grid-column: 1 / -1;
  background: var(--ent-light-surface);
  border-left: 3px solid var(--ent-orange);
}

/* ===== CTA (dark) ===== */
#ent-content .ent-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#ent-content .ent-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(236,90,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}
#ent-content .ent-cta h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 16px;
  position: relative;
}
#ent-content .ent-cta p {
  font-size: 17px;
  color: var(--ent-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}
#ent-content .ent-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--ent-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
#ent-content .ent-cta-btn:hover {
  background: var(--ent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #ent-content .ent-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #ent-content .ent-hero { padding: 80px 0 40px; }
  #ent-content .ent-benefits-grid {
    grid-template-columns: 1fr;
  }
  #ent-content .ent-migration-grid {
    grid-template-columns: 1fr;
  }
  #ent-content .ent-trusted-logos {
    gap: 24px;
  }
  #ent-content .ent-trusted-logos img {
    height: 32px;
  }
}