/* ============================================================
   Enterprise Hub — Gorgeous Business Design System
   Primary: #0f6cbd (site blue)  Accent: #c8693c  Teal: #2b7f93
   ============================================================ */

/* ── Reset & Vars ── */
.ent {
  --ent-blue: #0f6cbd;
  --ent-blue-glow: rgba(15, 108, 189, 0.5);
  --ent-teal: #2b7f93;
  --ent-amber: #c8693c;
  
  --ent-bg-main: #030712;
  --ent-bg-card: rgba(255, 255, 255, 0.03);
  --ent-bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --ent-text-main: #f8fafc;
  --ent-text-muted: #94a3b8;
  --ent-text-light: #cbd5e1;
  
  --ent-border: rgba(255, 255, 255, 0.08);
  --ent-border-glow: rgba(15, 108, 189, 0.3);
  
  --ent-radius: 16px;
  --ent-radius-lg: 24px;
  
  --ent-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --ent-shadow-glow: 0 0 30px rgba(15, 108, 189, 0.15);
  
  --ent-font: "Inter", system-ui, -apple-system, sans-serif;

  font-family: var(--ent-font);
  color: var(--ent-text-main);
  background: var(--ent-bg-main);
  position: relative;
  box-sizing: border-box;
}

.ent *, .ent *::before, .ent *::after {
  box-sizing: inherit;
}

/* Base background glow */
.ent::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 800px;
  background: radial-gradient(ellipse at 50% -20%, rgba(15,108,189,0.15) 0%, rgba(3,7,18,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero ── */
.ent-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px 40px; 
  z-index: 1;
}
.ent-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ent-hero__text {
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.ent-hero__title {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 24px 0 0; 
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .ent-hero__title { font-size: 48px; }
}
.ent-hero__title-accent {
  background: linear-gradient(135deg, #4da3ff 0%, var(--ent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Badge ── */
.ent-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  background: linear-gradient(90deg, var(--ent-blue) 0%, var(--ent-teal) 100%);
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--ent-blue-glow);
}

/* ── Section ── */
.ent-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 36px;
  position: relative;
  z-index: 1;
}
.ent-section--alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--ent-border);
  border-bottom: 1px solid var(--ent-border);
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.2);
}
.ent-section__head {
  text-align: center;
  margin-bottom: 60px;
}
.ent-section__head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 20px 0 16px;
  letter-spacing: -0.5px;
}
.ent-section__head > p {
  font-size: 18px;
  color: var(--ent-text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Buttons ── */
.ent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ent-font);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.ent-btn--primary {
  background: linear-gradient(135deg, var(--ent-blue) 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 10px 20px -5px var(--ent-blue-glow);
  border: 1px solid rgba(255,255,255,0.1);
}
.ent-btn--primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, var(--ent-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px var(--ent-blue-glow);
}
.ent-btn--outline {
  background: transparent;
  color: var(--ent-text-main);
  border: 1px solid var(--ent-border);
  padding: 12px 28px;
  font-size: 15px;
}
.ent-btn--outline:hover {
  border-color: var(--ent-blue);
  background: rgba(15, 108, 189, 0.05);
  color: #fff;
}
.ent-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ent-text-light);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 12px 24px;
  font-size: 15px;
}
.ent-btn--ghost:hover {
  background: rgba(15, 108, 189, 0.09);
  border-color: rgba(77, 163, 255, 0.5);
  color: #fff;
}
.ent-btn__arrow { transition: transform 0.3s; }
.ent-btn:hover .ent-btn__arrow { transform: translateX(4px); }
.ent-btn--lg { padding: 18px 44px; font-size: 18px; }

/* ── Platforms / Scenarios ── */
.ent-platforms {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ent-platform {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Reduced image size: ~40% image, 60% text */
  background: var(--ent-bg-card);
  border: 1px solid var(--ent-border);
  border-radius: var(--ent-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--ent-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ent-platform:hover {
  transform: translateY(-5px);
  box-shadow: var(--ent-shadow-glow);
  border-color: var(--ent-border-glow);
}
.ent-platform__media {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px; /* Reduced minimum height */
  border-right: 1px solid var(--ent-border);
}
.ent-platform__overlay {
  display: none;
}
.ent-platform__info {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ent-platform__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ent-platform__tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ent-tag--teal { color: var(--ent-teal); }
.ent-tag--teal::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ent-teal); box-shadow: 0 0 10px var(--ent-teal); }
.ent-tag--blue { color: #4da3ff; }
.ent-tag--blue::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4da3ff; box-shadow: 0 0 10px #4da3ff; }
.ent-tag--amber { color: var(--ent-amber); }
.ent-tag--amber::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ent-amber); box-shadow: 0 0 10px var(--ent-amber); }

.ent-platform h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.ent-platform p {
  font-size: 15px;
  color: var(--ent-text-light);
  line-height: 1.7;
  margin: 0 0 24px;
}
.ent-platform__points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ent-platform__points li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: var(--ent-text-main);
  line-height: 1.5;
}
.ent-platform__points li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--ent-blue);
  font-weight: 900;
  font-size: 14px;
  background: rgba(15, 108, 189, 0.15);
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
@media (max-width: 1000px) {
  .ent-platform { grid-template-columns: 1fr; }
  .ent-platform__media { border-right: none; border-bottom: 1px solid var(--ent-border); min-height: 240px; }
  .ent-platform__info { padding: 30px; }
  .ent-platform__actions {
    width: 100%;
  }
  .ent-platform__actions .ent-btn {
    width: 100%;
  }
}

/* ── FAQ ── */
.ent-faq-chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ent-blue);
  border: 1px solid rgba(15, 108, 189, 0.25);
  border-radius: 20px;
  padding: 2px 14px;
  margin-left: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.ent-faq-chip:hover {
  background: rgba(15, 108, 189, 0.12);
  border-color: var(--ent-blue);
  color: #fff;
}
.ent-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .ent-faq { grid-template-columns: 1fr; }
}
.ent-faq__item {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--ent-border);
  padding: 36px 30px;
  border-radius: var(--ent-radius);
  transition: all 0.3s;
}
.ent-faq__item:hover {
  background: var(--ent-bg-card-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.ent-faq__item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.ent-faq__item h4::before {
  content: "Q.";
  color: var(--ent-blue);
  font-weight: 900;
  flex-shrink: 0;
}
.ent-faq__item h4::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--ent-text-muted);
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}
.ent-faq__item.is-open h4::after {
  content: "−";
  color: var(--ent-blue);
}
.ent-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}
.ent-faq__item.is-open .ent-faq__answer {
  max-height: 600px;
  margin-top: 14px;
}
.ent-faq__answer p {
  font-size: 15px;
  color: var(--ent-text-muted);
  line-height: 1.6;
  margin: 0 0 0 30px;
}
.ent-faq__answer p:not(:last-child) {
  margin-bottom: 4px;
}

/* ── CTA ── */
.ent-cta {
  padding: 100px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ent-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(15,108,189,0.08) 0%, rgba(3,7,18,0) 60%);
  pointer-events: none;
  z-index: -1;
}
.ent-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ent-border);
  border-radius: var(--ent-radius-lg);
  padding: 60px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.ent-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.ent-cta p {
  font-size: 18px;
  color: var(--ent-text-light);
  line-height: 1.6;
  margin: 0 0 40px;
}
