/* ============================================
   Ziplofy Enterprise - Corporate SaaS Styling
   Primary: #1E3A8A (Deep Blue)
   Accent: #2A6AFF (Electric Blue)
   ============================================ */

:root {
  --ent-primary: #1E3A8A;
  --ent-accent: #2A6AFF;
  --ent-primary-rgb: 30, 58, 138;
  --ent-accent-rgb: 42, 106, 255;
  --ent-text: #0f172a;
  --ent-text-muted: #475569;
  --ent-bg: #ffffff;
  --ent-bg-alt: #f8fafc;
  --ent-border: rgba(15, 23, 42, 0.08);
  --ent-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --ent-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Header CTA */
.ent-cta-btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ent-primary);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--ent-primary);
  transition: all 0.2s ease;
}

.ent-cta-btn:hover {
  background: rgba(var(--ent-primary-rgb), 0.06);
}

/* -------------------- 1) HERO -------------------- */
.ent-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.ent-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.8;
}

.ent-hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.12) 0%, rgba(147, 197, 253, 0.05) 35%, transparent 65%);
  top: -300px;
  right: -200px;
  animation: ent-glow-pulse 8s ease-in-out infinite;
}

@keyframes ent-glow-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.ent-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Desktop layout refinements for hero */
@media (min-width: 1024px) {
  .ent-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    column-gap: 72px;
  }
  .ent-hero-left {
    max-width: 520px;
  }
  .ent-hero-right {
    display: flex;
    justify-content: flex-end;
  }
  .ent-hero-mockup {
    max-width: 560px;
    width: 100%;
  }
}

.ent-hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 24px;
}

.ent-hero-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
}

.ent-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 40px;
}

.ent-trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.ent-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}

.ent-btn-primary {
  background: linear-gradient(135deg, #570099 0%, #020241 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.ent-btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.ent-btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: #334155;
  border-color: rgba(148, 163, 184, 0.5);
}

.ent-btn-outline:hover {
  background: #fff;
  border-color: #64748b;
  color: #0f172a;
}

.ent-btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.ent-hero-mockup {
  position: relative;
}

.ent-mockup-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(148, 163, 184, 0.2);
  animation: ent-mockup-float 6s ease-in-out infinite;
}

@keyframes ent-mockup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ent-mockup-activity {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ent-activity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: ent-dot-pulse 2s ease-in-out infinite;
}

.ent-activity-dot:nth-child(2) { animation-delay: 0.2s; }
.ent-activity-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ent-dot-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

.ent-activity-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.ent-mockup-roles {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.ent-role-tag {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ent-mockup-frame {
  background: #fff;
  overflow: hidden;
}

.ent-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------- 2) TRUST METRICS STRIP -------------------- */
.ent-metrics {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ent-metrics-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.ent-metric {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 32px;
}

.ent-metric:first-child {
  padding-left: 0;
}

.ent-metric-value {
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ent-metric-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.ent-metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* -------------------- 3) WHY ZIPLOFY ENTERPRISE -------------------- */
.ent-why {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-why-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(30, 58, 138, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(76, 60, 247, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.ent-why-noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ent-why .container {
  position: relative;
  z-index: 1;
}

.ent-why-title {
  text-align: center;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin-bottom: 16px;
}

.ent-why-sub {
  text-align: center;
  font-size: 1.1875rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 64px;
}

.ent-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ent-why-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.ent-why-card.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-why-card:nth-child(1) { transition-delay: 0s; }
.ent-why-card:nth-child(2) { transition-delay: 0.08s; }
.ent-why-card:nth-child(3) { transition-delay: 0.16s; }
.ent-why-card:nth-child(4) { transition-delay: 0.24s; }

.ent-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(30, 58, 138, 0.12), 0 0 0 1px rgba(30, 58, 138, 0.08);
  border-color: rgba(30, 58, 138, 0.1);
}

.ent-why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ent-why-card:hover .ent-why-icon {
  transform: scale(1.05);
}

.ent-why-icon svg {
  width: 24px;
  height: 24px;
  color: #93c5fd;
}

.ent-why-card-title {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 12px;
}

.ent-why-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.ent-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ent-text);
  margin-bottom: 56px;
}

/* -------------------- 4) INFRASTRUCTURE SECTION (Premium) -------------------- */
.ent-infra {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-infra-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-infra-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.ent-infra-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(37, 99, 235, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.ent-infra-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ent-infra .container {
  position: relative;
  z-index: 1;
}

.ent-infra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ent-infra-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ent-infra-visual {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ent-infra-glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ent-infra-nodes {
  position: relative;
  width: 280px;
  height: 280px;
}

.ent-infra-node {
  position: absolute;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ent-infra-node::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(37, 99, 235, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.ent-infra-node-1 { top: 0; left: 50%; transform: translateX(-50%); animation: ent-node-float-1 5s ease-in-out infinite; }
.ent-infra-node-2 { top: 50%; right: 0; transform: translateY(-50%); animation: ent-node-float-2 5s ease-in-out infinite 0.3s; }
.ent-infra-node-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation: ent-node-float-1 5s ease-in-out infinite 0.6s; }
.ent-infra-node-4 { top: 50%; left: 0; transform: translateY(-50%); animation: ent-node-float-2 5s ease-in-out infinite 0.9s; }

@keyframes ent-node-float-1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes ent-node-float-2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-4px); }
}

.ent-infra-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ent-infra-content.ent-reveal-visible,
.ent-infra-visual.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-infra-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ent-infra-visual {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ent-infra-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
}

.ent-infra-para {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
}

.ent-infra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.ent-infra-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 24px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0f172a;
  opacity: 0.9;
}

.ent-infra-list li:last-child {
  margin-bottom: 0;
}

.ent-infra-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.ent-infra-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.ent-infra-cta:hover {
  gap: 12px;
  color: #2563eb;
}

.ent-infra-cta span {
  transition: transform 0.25s ease;
}

.ent-infra-cta:hover span {
  transform: translateX(4px);
}

/* -------------------- 5, 7, 8) OTHER DETAIL SECTIONS -------------------- */
.ent-section-alt {
  background: var(--ent-bg-alt);
}


/* -------------------- 7) SECURITY & COMPLIANCE (Premium SaaS) -------------------- */
.ent-security {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background-color: #f8fafc;
}

.ent-security-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-security-gradient {
  position: absolute;
  inset: 0;
  background: #f8fafc;
}

.ent-security-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 400px;
  height: 400px;
  transform: translate(30%, -50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
}

.ent-security-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-security .container {
  max-width: 1470px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ent-security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ent-security-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ent-security-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 6px;
}

.ent-security-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ent-security-sub {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.ent-security-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ent-security-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ent-security-row:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ent-security-row-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ent-security-row-icon svg {
  width: 22px;
  height: 22px;
}

.ent-security-row-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.35;
}

.ent-security-row-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.ent-security-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}

.ent-security-image-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.ent-security-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to right,
    #f8fafc 0%,
    rgba(248, 250, 252, 0.95) 15%,
    rgba(248, 250, 252, 0.85) 30%,
    rgba(248, 250, 252, 0.6) 45%,
    rgba(248, 250, 252, 0.2) 60%,
    rgba(248, 250, 252, 0) 75%
  ); */
  pointer-events: none;
  z-index: 1;
}

.ent-security-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.ent-security-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ent-security-badges {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  z-index: 2;
}

.ent-security-badge-item {
  padding: 10px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ent-security-badge-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

@media (max-width: 991px) {
  .ent-security {
    padding: 60px 0;
  }

  .ent-security-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ent-security-content {
    order: 1;
  }

  .ent-security-visual {
    order: 2;
  }

  .ent-security-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  .ent-security-content {
    text-align: center;
  }

  .ent-security-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ent-security-features {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .ent-security {
    padding: 60px 0;
  }

  .ent-security-inner {
    gap: 40px;
  }

  .ent-security-image-wrap {
    min-height: 320px;
  }
}

/* -------------------- 5) MULTI-SITE SECTION (Premium) -------------------- */
.ent-multisite {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-multisite-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-multisite-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #eef7ff 0%, #cdeaff 50%, #dbedff 100%);
}

.ent-multisite-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  right: 10%;
  transform: translate(30%, -50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(37, 99, 235, 0.03) 50%, transparent 70%);
}

.ent-multisite-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ent-multisite-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ent-multisite-shapes::before,
.ent-multisite-shapes::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.ent-multisite-shapes::before {
  top: -100px;
  right: -100px;
  background: rgba(79, 70, 229, 0.08);
}

.ent-multisite-shapes::after {
  bottom: -80px;
  left: -80px;
  background: rgba(37, 99, 235, 0.06);
}

.ent-multisite .container {
  position: relative;
  z-index: 1;
}

.ent-multisite-inner {
  align-items: center;
}

.ent-multisite-content.ent-reveal-visible,
.ent-multisite-mockup.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-multisite-content,
.ent-multisite-mockup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ent-multisite-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
}

.ent-multisite-para {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
}

.ent-multisite-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ent-multisite-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ent-multisite-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ent-multisite-feature:hover .ent-multisite-feature-icon {
  transform: scale(1.05);
}

.ent-multisite-feature-icon svg {
  width: 22px;
  height: 22px;
}

.ent-multisite-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ent-multisite-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.ent-multisite-feature-desc {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #64748b;
  opacity: 0.85;
}

.ent-multisite-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ent-multisite-mockup {
  width: 100%;
  max-width: 700px;
  /* background: rgba(255, 255, 255, 0.7); */
  /* backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px; */
  padding: 0;
  overflow: hidden;
  /* box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8); */
  position: relative;
}

.ent-multisite-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  /* border-radius: 20px; */
  padding: 1px;
  /* background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(37, 99, 235, 0.08), transparent, rgba(79, 70, 229, 0.06)); */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ent-multisite-tabs {
  display: flex;
  gap: 0;
  padding: 20px 20px 0;
  background: rgba(248, 250, 252, 0.5);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ent-multisite-tab {
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.ent-multisite-tab:hover {
  color: #0f172a;
}

.ent-multisite-tab.active {
  color: #4f46e5;
  border-bottom-color: #4f46e5;
  background: linear-gradient(to bottom, rgba(79, 70, 229, 0.06), transparent);
}

.ent-multisite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
}

.ent-multisite-card {
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ent-multisite-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.ent-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ent-detail-reverse .ent-detail-visual {
  order: 2;
}

.ent-detail-reverse .ent-detail-content {
  order: 1;
}

.ent-detail-title {
  font-size: clamp(1.625rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ent-text);
  margin-bottom: 28px;
}

.ent-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.ent-detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ent-text-muted);
}

.ent-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ent-accent);
}

.ent-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ent-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ent-link-cta:hover {
  gap: 12px;
}

.ent-link-cta span {
  transition: transform 0.2s ease;
}

.ent-link-cta:hover span {
  transform: translateX(4px);
}

/* Shield visual */
.ent-shield-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ent-shield-icon {
  width: 160px;
  height: 160px;
  color: var(--ent-primary);
  opacity: 0.9;
}

.ent-shield-icon svg {
  width: 100%;
  height: 100%;
}

/* -------------------- 8) CUSTOMIZATION & API (Premium) -------------------- */
.ent-api {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.ent-api-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-api-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e7f2ff 0%, rgba(239, 247, 255, 0.9) 35%, rgba(248, 250, 252, 0.98) 100%);
}

.ent-api-glow {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 550px;
  height: 550px;
  transform: translate(-30%, -50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 60%);
}

.ent-api-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-api-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.ent-api-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ent-api-inner .ent-api-content {
  order: 1;
}

.ent-api-inner .ent-api-visual {
  order: 2;
}

.ent-api-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f46e5;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(79, 70, 229, 0.08);
  border-radius: 6px;
}

.ent-api-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0b1220;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ent-api-sub {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.ent-api-features {
  position: relative;
  padding-left: 24px;
  margin-bottom: 32px;
}

.ent-api-features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4f46e5, #2563eb);
  border-radius: 2px;
}

.ent-api-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: background 0.2s ease;
}

.ent-api-row:last-child {
  border-bottom: none;
}

.ent-api-row:hover {
  background: rgba(255, 255, 255, 0.6);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.ent-api-row-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ent-api-row-icon svg {
  width: 22px;
  height: 22px;
}

.ent-api-row-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0b1220;
  margin-bottom: 4px;
  line-height: 1.35;
}

.ent-api-row-desc {
  font-size: 0.9375rem;
  color: #64748b;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.ent-api-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ent-api-cta:hover {
  gap: 12px;
}

.ent-api-cta span {
  transition: transform 0.2s ease;
}

.ent-api-cta:hover span {
  transform: translateX(4px);
}

/* API section image */
.ent-api-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.ent-api-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Code editor mockup */
.ent-api-editor-wrap {
  position: relative;
}

.ent-api-editor-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(37, 99, 235, 0.08));
  filter: blur(12px);
  opacity: 0.6;
}

.ent-api-editor {
  position: relative;
  background: #0b1220;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow:
    0 24px 48px rgba(11, 18, 32, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ent-api-editor-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.6);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.ent-api-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.4);
}

.ent-api-dot:nth-child(1) { background: #ef4444; }
.ent-api-dot:nth-child(2) { background: #eab308; }
.ent-api-dot:nth-child(3) { background: #22c55e; }

.ent-api-editor-title {
  margin-left: 12px;
  font-size: 0.8125rem;
  color: #94a3b8;
  font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
}

.ent-api-editor-body {
  position: relative;
  overflow: hidden;
  padding: 24px;
  font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
}

.ent-api-code-line {
  color: #94a3b8;
}

.ent-api-method {
  color: #4f46e5;
  font-weight: 600;
}

.ent-api-key {
  color: #64748b;
}

.ent-api-string {
  color: #22c55e;
}

.ent-api-code-json {
  color: #cbd5e1;
}

.ent-api-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #94a3b8;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: ent-api-blink 1s step-end infinite;
}

@keyframes ent-api-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Shimmer overlay */
.ent-api-editor-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  animation: ent-api-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ent-api-shimmer {
  0% { left: -60%; }
  60%, 100% { left: 100%; }
}

@media (max-width: 991px) {
  .ent-api-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ent-api-inner .ent-api-content {
    order: 1;
    text-align: center;
  }

  .ent-api-inner .ent-api-visual {
    order: 2;
  }

  .ent-api-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ent-api-features {
    padding-left: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .ent-api {
    padding: 80px 0;
  }

  .ent-api-row:hover {
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .ent-api-editor-body {
    padding: 18px;
    font-size: 0.8125rem;
  }
}

/* -------------------- 6) ENTERPRISE COMMERCE -------------------- */
.ent-commerce {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-commerce-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-commerce-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ent-commerce-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 900px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ent-commerce-noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-commerce-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ent-commerce-shapes::before,
.ent-commerce-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ent-commerce-shapes::before {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), transparent);
}

.ent-commerce-shapes::after {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -60px;
  background: linear-gradient(315deg, rgba(37, 99, 235, 0.15), transparent);
}

.ent-commerce-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

.ent-commerce-sub {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.ent-commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ent-commerce-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.ent-commerce-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  background-size: 200% 100%;
  animation: ent-commerce-border 4s ease-in-out infinite;
}

@keyframes ent-commerce-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ent-commerce-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.2);
}

.ent-commerce-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ent-commerce-card:hover .ent-commerce-icon {
  transform: scale(1.05);
}

.ent-commerce-icon svg {
  width: 24px;
  height: 24px;
  color: #a5b4fc;
}

.ent-commerce-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.ent-commerce-card-desc {
  font-size: 0.9375rem;
  color: #64748b;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 16px;
}

.ent-commerce-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.ent-commerce-link span {
  transition: transform 0.3s ease;
}

.ent-commerce-card:hover .ent-commerce-link span {
  transform: translateX(4px);
}

.ent-commerce-link:hover {
  color: #4338ca;
  gap: 8px;
}

/* Stagger reveal */
.ent-commerce-card.ent-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ent-commerce-card.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-commerce-card:nth-child(1).ent-reveal-visible { transition-delay: 0.05s; }
.ent-commerce-card:nth-child(2).ent-reveal-visible { transition-delay: 0.1s; }
.ent-commerce-card:nth-child(3).ent-reveal-visible { transition-delay: 0.15s; }
.ent-commerce-card:nth-child(4).ent-reveal-visible { transition-delay: 0.2s; }
.ent-commerce-card:nth-child(5).ent-reveal-visible { transition-delay: 0.25s; }
.ent-commerce-card:nth-child(6).ent-reveal-visible { transition-delay: 0.3s; }

@media (max-width: 991px) {
  .ent-commerce-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ent-commerce {
    padding: 80px 0;
  }

  .ent-commerce-grid {
    grid-template-columns: 1fr;
  }

  .ent-commerce-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ent-commerce-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .ent-commerce-card-title,
  .ent-commerce-card-desc {
    text-align: center;
  }

  .ent-commerce-link {
    justify-content: center;
  }

  .ent-commerce-sub {
    margin-bottom: 36px;
  }
}

/* -------------------- 9) CASE STUDIES (Premium) -------------------- */
.ent-cases {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.ent-cases-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-cases-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ent-cases-glow {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 65%);
}

.ent-cases-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-cases-shape {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), transparent);
  border-radius: 50%;
  filter: blur(70px);
}

.ent-cases-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ent-cases-sub {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ent-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.ent-case-card {
  background: #fff;
  padding: 40px 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ent-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(148, 163, 184, 0.25);
}

.ent-case-featured {
  position: relative;
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.ent-case-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #2563eb);
  border-radius: 20px 20px 0 0;
}

.ent-case-featured:hover {
  border-color: rgba(79, 70, 229, 0.25);
}

.ent-case-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.ent-case-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: -0.02em;
}

.ent-case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ent-case-company {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.ent-case-industry {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #64748b;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 6px;
}

.ent-case-body {
  margin-bottom: 28px;
}

.ent-case-block {
  margin-bottom: 20px;
}

.ent-case-block:last-child {
  margin-bottom: 0;
}

.ent-case-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.ent-case-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.ent-case-metrics {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.ent-case-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ent-case-metric-value {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.1;
}

.ent-case-metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
}

.ent-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  position: relative;
}

.ent-case-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4f46e5;
  transition: width 0.3s ease;
}

.ent-case-cta:hover {
  color: #4338ca;
  gap: 10px;
}

.ent-case-cta:hover::after {
  width: 100%;
}

.ent-case-cta span {
  transition: transform 0.2s ease;
}

.ent-case-cta:hover span {
  transform: translateX(4px);
}

/* Stagger reveal */
.ent-case-card.ent-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ent-case-card.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-case-card.ent-reveal-visible:hover {
  transform: translateY(-8px);
}

.ent-case-card:nth-child(1).ent-reveal-visible { transition-delay: 0.05s; }
.ent-case-card:nth-child(2).ent-reveal-visible { transition-delay: 0.15s; }

@media (max-width: 991px) {
  .ent-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .ent-cases {
    padding: 80px 0;
  }

  .ent-case-card {
    padding: 32px 24px 28px;
  }

  .ent-case-metrics {
    gap: 32px;
  }
}

/* -------------------- 10) COMPARISON (Premium) -------------------- */
.ent-compare {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.ent-compare-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-compare-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.ent-compare-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
}

.ent-compare-trust {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ent-compare-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ent-compare-sub {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ent-compare-wrapper {
  max-width: 960px;
  margin: 0 auto 40px;
  overflow-x: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  position: relative;
  z-index: 1;
}

.ent-compare-wrapper.ent-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ent-compare-wrapper.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ent-compare-table th,
.ent-compare-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  vertical-align: middle;
}

.ent-compare-table thead th {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: rgba(248, 250, 252, 0.8);
  padding: 24px 28px;
}

.ent-compare-feature-col {
  border-radius: 20px 0 0 0;
}

.ent-compare-highlight-col {
  background: rgba(79, 70, 229, 0.05) !important;
  position: relative;
  font-weight: 600;
  color: #0f172a;
}

.ent-compare-badge {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f46e5;
  margin-bottom: 4px;
}

.ent-compare-table tbody tr {
  transition: background 0.2s ease;
}

.ent-compare-table tbody tr:hover {
  background: rgba(248, 250, 252, 0.6);
}

.ent-compare-table tbody tr:hover .ent-compare-highlight-col {
  background: rgba(79, 70, 229, 0.07) !important;
}

.ent-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.ent-compare-feature-cell {
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
}

.ent-compare-table td {
  font-size: 1rem;
  color: #64748b;
}

.ent-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.ent-compare-check svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  animation: ent-compare-check-in 0.4s ease-out;
}

@keyframes ent-compare-check-in {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.ent-compare-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #94a3b8;
}

.ent-compare-minus svg {
  width: 16px;
  height: 16px;
}

.ent-compare-text {
  font-size: 0.9375rem;
  color: #64748b;
}

.ent-compare-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ent-compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.ent-compare-btn-primary {
  background: #0f172a;
  color: #fff;
  border: 2px solid #0f172a;
}

.ent-compare-btn-primary:hover {
  background: #1e293b;
  border-color: #1e293b;
}

.ent-compare-btn-ghost {
  background: transparent;
  color: #0f172a;
  border: 2px solid #e5e7eb;
}

.ent-compare-btn-ghost:hover {
  border-color: #94a3b8;
  background: rgba(248, 250, 252, 0.8);
}

@media (max-width: 575px) {
  .ent-compare {
    padding: 80px 0;
  }

  .ent-compare-table th,
  .ent-compare-table td {
    padding: 16px 20px;
  }

  .ent-compare-cta {
    flex-direction: column;
  }

  .ent-compare-btn {
    width: 100%;
  }
}

/* -------------------- 11) ENTERPRISE FORM (Premium) -------------------- */
.ent-form-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-form-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-form-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.95) 50%, rgba(241, 245, 249, 0.9) 100%);
}

.ent-form-glow {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 500px;
  height: 500px;
  transform: translate(30%, -50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 65%);
}

.ent-form-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ent-form-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ent-form-sub {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

.ent-form-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.ent-form-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
}

.ent-form-benefits li:last-child {
  margin-bottom: 0;
}

.ent-form-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #a5b4fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ent-form-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.ent-form-trust {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.ent-form-trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 12px;
}

.ent-form-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ent-form-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 6px;
}

/* Form card */
.ent-form-card-wrap {
  position: relative;
}

.ent-form-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ent-form-card:hover {
  box-shadow:
    0 16px 48px rgba(15, 23, 42, 0.1),
    0 4px 16px rgba(15, 23, 42, 0.06);
}

.ent-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ent-form-field {
  position: relative;
}

.ent-form-field-full {
  margin-bottom: 28px;
}

.ent-form-field input,
.ent-form-field textarea {
  width: 100%;
  padding: 16px 18px 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ent-form-field input::placeholder,
.ent-form-field textarea::placeholder {
  color: transparent;
}

.ent-form-field input:focus,
.ent-form-field textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
  background: #fff;
}

.ent-form-field label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
  pointer-events: none;
  transition: all 0.2s ease;
}

.ent-form-field textarea + label {
  top: 24px;
  transform: none;
}

.ent-form-field input:focus ~ label,
.ent-form-field input:not(:placeholder-shown) ~ label,
.ent-form-field textarea:focus ~ label,
.ent-form-field textarea:not(:placeholder-shown) ~ label {
  top: 12px;
  transform: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4f46e5;
  letter-spacing: 0.02em;
}

.ent-form-field textarea:focus ~ label,
.ent-form-field textarea:not(:placeholder-shown) ~ label {
  top: 10px;
}

.ent-form-field textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 24px;
}

.ent-form-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #0f172a;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.ent-form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.ent-form-submit:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.ent-form-submit:hover::before {
  left: 100%;
}

.ent-form-submit:active {
  transform: translateY(0);
}

/* Stagger reveal */
.ent-form-content.ent-reveal,
.ent-form-card-wrap.ent-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ent-form-content.ent-reveal-visible,
.ent-form-card-wrap.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-form-card-wrap.ent-reveal-visible {
  transition-delay: 0.1s;
}

@media (max-width: 991px) {
  .ent-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ent-form-content {
    text-align: center;
  }

  .ent-form-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ent-form-benefits {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .ent-form-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .ent-form-section {
    padding: 80px 0;
  }

  .ent-form-card {
    padding: 28px 24px;
  }

  .ent-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .ent-form-field {
    margin-bottom: 20px;
  }

  .ent-form-field-full {
    margin-bottom: 24px;
  }
}

/* -------------------- 12) FINAL CTA (Premium) -------------------- */
.ent-final-cta {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.ent-final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ent-final-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0f172a 0%, #0b1220 40%, #0f172a 100%);
  animation: ent-final-cta-shift 12s ease-in-out infinite;
}

@keyframes ent-final-cta-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

.ent-final-cta-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ent-final-cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ent-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.ent-final-cta-inner.ent-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ent-final-cta-inner.ent-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ent-final-cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ent-final-cta-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 48px;
}

.ent-final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ent-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.ent-final-cta-btn-primary {
  background: #0f172a;
  color: #fff;
  border: 2px solid #1e293b;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ent-final-cta-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ent-final-cta-btn-primary:hover {
  background: #1e293b;
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(79, 70, 229, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ent-final-cta-btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.ent-final-cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.6);
}

.ent-final-cta-trust {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 16px;
}

.ent-final-cta-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ent-final-cta-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #94a3b8;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
}

/* -------------------- 13) FOOTER -------------------- */
.ent-footer {
  padding: 80px 0 48px;
  background: var(--ent-text);
  color: #94a3b8;
}

.ent-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.ent-footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.ent-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ent-footer-links li {
  margin-bottom: 12px;
}

.ent-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.ent-footer-links a:hover {
  color: #fff;
}

.ent-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 24px;
}

.ent-footer-social {
  display: flex;
  gap: 16px;
}

.ent-footer-social-icon {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.ent-footer-social-icon:hover {
  color: #fff;
}

.ent-newsletter-form {
  display: flex;
  gap: 8px;
}

.ent-newsletter-input {
  padding: 10px 16px;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  min-width: 220px;
  font-family: inherit;
}

.ent-newsletter-input::placeholder {
  color: #64748b;
}

.ent-newsletter-input:focus {
  outline: none;
  border-color: var(--ent-accent);
}

.ent-newsletter-btn {
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--ent-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.ent-newsletter-btn:hover {
  background: #2563eb;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .ent-hero-inner,
  .ent-detail-inner {
    grid-template-columns: 1fr;
  }

  .ent-detail-reverse .ent-detail-visual,
  .ent-detail-reverse .ent-detail-content {
    order: unset;
  }

  .ent-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ent-commerce-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ent-cases-grid {
    grid-template-columns: 1fr;
  }

  .ent-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ent-hero {
    padding: 60px 0 80px;
  }

  .ent-hero-cta {
    flex-direction: column;
  }

  .ent-hero-cta .ent-btn {
    width: 100%;
  }

  .ent-metrics {
    padding: 32px 0;
  }

  .ent-metrics-inner {
    flex-direction: column;
    gap: 24px;
  }

  .ent-metric {
    padding: 0;
    min-width: 0;
  }

  .ent-metric-divider {
    width: 48px;
    height: 1px;
  }

  .ent-why {
    padding: 80px 0;
  }

  .ent-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ent-why-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ent-why-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .ent-why-card-title,
  .ent-why-card-desc {
    text-align: center;
  }

  .ent-why-sub {
    margin-bottom: 48px;
  }

  .ent-why,
  .ent-infra {
    padding: 40px 0;
  }

  .ent-infra-visual {
    height: 300px;
  }

  .ent-infra-nodes {
    width: 240px;
    height: 240px;
  }

  .ent-infra-node {
    width: 48px;
    height: 48px;
  }
  .ent-multisite {
    padding: 40px 0;
  }

  .ent-multisite-features {
    gap: 24px;
  }

  .ent-multisite-mockup {
    max-width: 100%;
  }
  .ent-commerce,
  .ent-security,
  .ent-api,
  .ent-cases,
  .ent-compare,
  .ent-form-section,
  .ent-final-cta {
    padding: 40px 0;
  }

  .ent-form-row {
    grid-template-columns: 1fr;
  }

  .ent-final-cta {
    padding: 40px 0;
  }

  .ent-final-cta-btns {
    flex-direction: column;
  }

  .ent-final-cta-btn {
    width: 100%;
  }

  .ent-commerce-grid {
    grid-template-columns: 1fr;
  }

  .ent-footer-grid {
    grid-template-columns: 1fr;
  }

  .ent-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .ent-newsletter-form {
    flex-direction: column;
  }

  .ent-newsletter-input {
    min-width: 0;
  }
}
