/* Enterprise Social Media — Culture Pulse */
:root {
  --ep-ink: #0a1628;
  --ep-navy: #13233f;
  --ep-azure: #1d4ed8;
  --ep-azure-soft: #3b82f6;
  --ep-coral: #e85d4c;
  --ep-coral-soft: #fb7185;
  --ep-mint: #0d9488;
  --ep-paper: #f4f7fb;
  --ep-card: #ffffff;
  --ep-muted: #5b6b82;
  --ep-border: rgba(19, 35, 63, 0.1);
  --ep-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  --ep-radius: 18px;
  --ep-font: 'Manrope', system-ui, sans-serif;
  --ep-display: 'Fraunces', Georgia, serif;
}

.enterprise-social-page {
  font-family: var(--ep-font);
  color: var(--ep-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(29, 78, 216, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 93, 76, 0.07), transparent 50%),
    linear-gradient(180deg, #eef3f9 0%, var(--ep-paper) 40%, #e8eef6 100%);
  overflow-x: hidden;
}

.enterprise-social-page h1,
.enterprise-social-page h2,
.enterprise-social-page h3,
.enterprise-social-page .ep-display {
  font-family: var(--ep-display);
  color: var(--ep-ink);
  letter-spacing: -0.02em;
}

.enterprise-social-page .header {
  background: rgba(244, 247, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ep-border);
}

.enterprise-social-page .header .logo img,
.enterprise-social-page .mobile-logo img { filter: none; }

.enterprise-social-page .navmenu a { color: var(--ep-navy) !important; }
.enterprise-social-page .navmenu a:hover,
.enterprise-social-page .navmenu a.active { color: var(--ep-azure) !important; }
.enterprise-social-page .btn-getstarted {
  background: var(--ep-ink) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

/* Mobile nav */
.enterprise-social-page .mobile-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10020;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--ep-border);
  backdrop-filter: blur(12px);
}
.enterprise-social-page .mobile-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  gap: 0.75rem;
}
.enterprise-social-page .mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.enterprise-social-page .mobile-nav-cta {
  background: var(--ep-azure);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.enterprise-social-page .mobile-menu-toggle {
  width: 42px; height: 42px;
  border: 1px solid var(--ep-border);
  border-radius: 12px;
  background: #fff;
  color: var(--ep-ink);
}
.enterprise-social-page .mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.45);
  z-index: 10030;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  border: 0;
}
.enterprise-social-page.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1; pointer-events: auto;
}
.enterprise-social-page .mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  z-index: 10040;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  padding: 1.25rem;
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.enterprise-social-page .mobile-menu.active { transform: translateX(0); }
.enterprise-social-page .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.enterprise-social-page .mobile-menu-header span {
  display: block;
  font-family: var(--ep-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.enterprise-social-page .mobile-menu-header small { color: var(--ep-muted); }
.enterprise-social-page .mobile-menu-close {
  border: 0; background: var(--ep-paper);
  width: 36px; height: 36px; border-radius: 10px;
}
.enterprise-social-page .mobile-menu ul {
  list-style: none; padding: 0; margin: 0;
}
.enterprise-social-page .mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--ep-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ep-border);
}

@media (max-width: 1199px) {
  .enterprise-social-page #header { display: none !important; }
}

/* Buttons */
.ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ep-btn:hover { transform: translateY(-1px); }
.ep-btn--primary {
  background: linear-gradient(135deg, var(--ep-azure), #1e40af);
  color: #fff;
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.35);
}
.ep-btn--coral {
  background: linear-gradient(135deg, var(--ep-coral), #c2410c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 93, 76, 0.3);
}
.ep-btn--ghost {
  background: transparent;
  color: var(--ep-ink);
  border: 1.5px solid var(--ep-border);
}
.ep-btn--outline {
  background: #fff;
  color: var(--ep-azure);
  border: 1.5px solid rgba(29, 78, 216, 0.25);
}

.ep-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--ep-azure);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ep-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.ep-section--panel {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--ep-border);
}
.ep-head { margin-bottom: 2rem; max-width: 640px; }
.ep-head--center { text-align: center; margin-inline: auto; }
.ep-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin: 0.75rem 0 0.75rem;
  line-height: 1.15;
}
.ep-head h2 em {
  font-style: italic;
  color: var(--ep-azure);
}
.ep-head p { color: var(--ep-muted); margin: 0; line-height: 1.7; }

/* Hero */
.ep-hero {
  position: relative;
  padding: clamp(110px, 14vw, 150px) 0 4rem;
  overflow: hidden;
}
.ep-hero__glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ep-hero__glow--1 {
  top: 10%; right: -5%;
  background: rgba(29, 78, 216, 0.2);
  animation: ep-float 8s ease-in-out infinite;
}
.ep-hero__glow--2 {
  bottom: 0; left: -8%;
  background: rgba(232, 93, 76, 0.15);
  animation: ep-float 10s ease-in-out infinite reverse;
}
@keyframes ep-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.ep-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.ep-hero__brand {
  font-family: var(--ep-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--ep-coral);
  margin: 0 0 0.75rem;
}
.ep-hero__copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 700;
}
.ep-hero__copy h1 span {
  display: block;
  color: var(--ep-azure);
  font-style: italic;
}
.ep-hero__lead {
  color: var(--ep-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 1.5rem;
}
.ep-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ep-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ep-hero__stat {
  min-width: 110px;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.05);
}
.ep-hero__stat strong {
  display: block;
  font-family: var(--ep-display);
  font-size: 1.35rem;
  color: var(--ep-ink);
}
.ep-hero__stat span {
  font-size: 0.75rem;
  color: var(--ep-muted);
  font-weight: 600;
}

.ep-hero__visual {
  position: relative;
}
.ep-hero__frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--ep-border);
  background: #fff;
  box-shadow: var(--ep-shadow);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.ep-hero__frame:hover { transform: rotate(0deg) scale(1.01); }
.ep-hero__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}
.ep-hero__badge {
  position: absolute;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  animation: ep-float 6s ease-in-out infinite;
}
.ep-hero__badge strong {
  display: block;
  font-family: var(--ep-display);
  color: var(--ep-azure);
  font-size: 1rem;
}
.ep-hero__badge--1 { bottom: -12px; left: -8px; }
.ep-hero__badge--2 { top: 18px; right: -10px; animation-delay: -2s; }

/* Live Pulse Studio */
.ep-studio {
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  gap: 1rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--ep-shadow);
}

.ep-studio__side {
  background: var(--ep-paper);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid var(--ep-border);
}
.ep-studio__side h3 {
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
}
.ep-studio__live {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ep-coral);
  margin-bottom: 0.85rem;
}
.ep-studio__live i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ep-coral);
  display: inline-block;
  animation: ep-pulse 1.4s ease infinite;
}
@keyframes ep-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.ep-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--ep-border);
  font-size: 0.85rem;
}
.ep-metric:last-child { border-bottom: 0; }
.ep-metric span { color: var(--ep-muted); }
.ep-metric strong {
  font-family: var(--ep-display);
  font-size: 1.15rem;
  color: var(--ep-ink);
}

.ep-studio__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.ep-tab {
  border: 1px solid var(--ep-border);
  background: #fff;
  color: var(--ep-muted);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s;
}
.ep-tab.is-active {
  background: var(--ep-ink);
  color: #fff;
  border-color: var(--ep-ink);
}

/* Phone shell */
.ep-phone-wrap {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
.ep-phone {
  width: min(100%, 340px);
  background: var(--ep-ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.35);
  position: relative;
}
.ep-phone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.ep-phone__screen {
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  height: 620px;
  display: flex;
  flex-direction: column;
}
.ep-phone__top {
  padding: 2.1rem 0.9rem 0.65rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ep-phone__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}
.ep-phone__top-row strong {
  font-family: var(--ep-display);
  font-size: 1.05rem;
}
.ep-phone__points {
  background: rgba(29, 78, 216, 0.1);
  color: var(--ep-azure);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}
.ep-stories {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.ep-stories::-webkit-scrollbar { display: none; }
.ep-story {
  flex: 0 0 auto;
  width: 58px;
  text-align: center;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}
.ep-story__ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--ep-azure), var(--ep-coral));
  margin: 0 auto 0.25rem;
}
.ep-story__ring span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ep-ink);
}
.ep-story small {
  display: block;
  font-size: 0.62rem;
  color: var(--ep-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ep-story.is-seen .ep-story__ring {
  background: #cbd5e1;
}

.ep-phone__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  scrollbar-width: thin;
}
.ep-panel { display: none; }
.ep-panel.is-active { display: block; animation: ep-fade 0.25s ease; }
@keyframes ep-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.ep-composer {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  padding: 0.55rem;
}
.ep-composer input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 0.82rem;
  background: transparent;
  font-family: inherit;
}
.ep-composer button {
  border: 0;
  background: var(--ep-azure);
  color: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

.ep-post {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 16px;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.ep-post__head {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.55rem;
}
.ep-post__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ep-azure), var(--ep-navy));
}
.ep-post__meta strong { display: block; font-size: 0.82rem; }
.ep-post__meta span { font-size: 0.68rem; color: var(--ep-muted); }
.ep-post__text {
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0 0 0.65rem;
  color: var(--ep-ink);
}
.ep-post__media {
  height: 110px;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  background:
    linear-gradient(135deg, rgba(29,78,216,0.15), rgba(232,93,76,0.18)),
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.5), transparent 50%);
  display: grid;
  place-items: center;
  color: var(--ep-navy);
  font-size: 0.75rem;
  font-weight: 700;
}
.ep-post__actions {
  display: flex;
  gap: 0.4rem;
}
.ep-react {
  flex: 1;
  border: 1px solid var(--ep-border);
  background: var(--ep-paper);
  border-radius: 10px;
  padding: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ep-muted);
}
.ep-react.is-on {
  background: rgba(29, 78, 216, 0.1);
  color: var(--ep-azure);
  border-color: rgba(29, 78, 216, 0.25);
}

/* Discover */
.ep-match {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 0.65rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}
.ep-match__score {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 3px solid var(--ep-azure);
  display: grid;
  place-items: center;
  font-family: var(--ep-display);
  font-weight: 700;
  color: var(--ep-azure);
  font-size: 0.85rem;
}
.ep-match button {
  grid-column: 1 / -1;
  border: 0;
  background: var(--ep-ink);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
}
.ep-match button.is-done {
  background: var(--ep-mint);
}

/* Poll */
.ep-poll {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 16px;
  padding: 1rem;
}
.ep-poll h4 {
  font-size: 0.95rem;
  margin: 0 0 0.85rem;
  font-family: var(--ep-font);
}
.ep-poll__opt {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--ep-border);
  background: var(--ep-paper);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
}
.ep-poll__bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(29, 78, 216, 0.15);
  width: 0;
  transition: width 0.45s ease;
  z-index: 0;
}
.ep-poll__opt span { position: relative; z-index: 1; }
.ep-poll__opt.is-picked {
  border-color: var(--ep-azure);
  color: var(--ep-azure);
}

/* Events */
.ep-event {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ep-event__date {
  width: 48px;
  text-align: center;
  background: var(--ep-ink);
  color: #fff;
  border-radius: 12px;
  padding: 0.4rem;
  flex-shrink: 0;
}
.ep-event__date strong { display: block; font-size: 1.1rem; font-family: var(--ep-display); }
.ep-event__date span { font-size: 0.62rem; text-transform: uppercase; }
.ep-event button {
  margin-left: auto;
  border: 0;
  background: rgba(232, 93, 76, 0.12);
  color: var(--ep-coral);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}
.ep-event button.is-on {
  background: var(--ep-mint);
  color: #fff;
}

/* Mentorship */
.ep-mentor {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: 14px;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
}
.ep-mentor p {
  font-size: 0.82rem;
  margin: 0 0 0.55rem;
  line-height: 1.5;
}
.ep-mentor__actions {
  display: flex;
  gap: 0.4rem;
}
.ep-mentor__actions button {
  flex: 1;
  border: 1px solid var(--ep-border);
  background: var(--ep-paper);
  border-radius: 10px;
  padding: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}
.ep-mentor__actions button:first-child {
  background: var(--ep-azure);
  color: #fff;
  border-color: var(--ep-azure);
}

.ep-phone__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 0.45rem 0.25rem 0.65rem;
}
.ep-phone__nav button {
  border: 0;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ep-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.ep-phone__nav button i { font-size: 1rem; }
.ep-phone__nav button.is-active { color: var(--ep-azure); }

.ep-toast {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%) translateY(12px);
  background: var(--ep-ink);
  color: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  white-space: nowrap;
  z-index: 5;
}
.ep-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ep-activity {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 280px;
  overflow: auto;
}
.ep-activity li {
  font-size: 0.78rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--ep-border);
  color: var(--ep-muted);
  line-height: 1.4;
}
.ep-activity li strong { color: var(--ep-ink); }
.ep-activity li em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.ep-rank {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ep-border);
  font-size: 0.8rem;
}
.ep-rank:last-child { border-bottom: 0; }
.ep-rank__n {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ep-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}
.ep-rank:nth-child(1) .ep-rank__n { background: #f59e0b; }
.ep-rank:nth-child(2) .ep-rank__n { background: #94a3b8; }
.ep-rank:nth-child(3) .ep-rank__n { background: #b45309; }

/* Feature mosaic */
.ep-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ep-card {
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  padding: 1.35rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ep-shadow);
}
.ep-card__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(29, 78, 216, 0.1);
  color: var(--ep-azure);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.ep-card:nth-child(2) .ep-card__icon,
.ep-card:nth-child(5) .ep-card__icon {
  background: rgba(232, 93, 76, 0.12);
  color: var(--ep-coral);
}
.ep-card:nth-child(3) .ep-card__icon,
.ep-card:nth-child(6) .ep-card__icon {
  background: rgba(13, 148, 136, 0.12);
  color: var(--ep-mint);
}
.ep-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
  font-family: var(--ep-font);
  font-weight: 800;
}
.ep-card p {
  margin: 0;
  color: var(--ep-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Roles */
.ep-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ep-role {
  background: var(--ep-ink);
  color: #fff;
  border-radius: 18px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}
.ep-role::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
}
.ep-role h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  position: relative;
}
.ep-role p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.55;
  position: relative;
}
.ep-role:nth-child(2) { background: linear-gradient(160deg, #1d4ed8, #0a1628); }
.ep-role:nth-child(3) { background: linear-gradient(160deg, #0d9488, #0a1628); }
.ep-role:nth-child(4) { background: linear-gradient(160deg, #e85d4c, #0a1628); }

/* Showcase */
.ep-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}
.ep-showcase__img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ep-border);
  box-shadow: var(--ep-shadow);
}
.ep-showcase__img img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top;
}
.ep-showcase__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.ep-showcase__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.ep-showcase__list i { color: var(--ep-mint); margin-top: 0.15rem; }

/* CTA */
.ep-cta {
  padding: 4rem 0 5rem;
}
.ep-cta__box {
  background: linear-gradient(135deg, var(--ep-ink), #1e3a5f 55%, #1d4ed8);
  color: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ep-cta__box::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(232, 93, 76, 0.25);
  top: -80px; right: -40px;
  filter: blur(40px);
}
.ep-cta__box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
  position: relative;
}
.ep-cta__box p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.ep-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
}

/* Bottom dock mobile */
.ep-dock {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10010;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid var(--ep-border);
  backdrop-filter: blur(12px);
  padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(5, 1fr);
  gap: 0.15rem;
}
.ep-dock a {
  text-align: center;
  text-decoration: none;
  color: var(--ep-muted);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.35rem 0.15rem;
  border-radius: 10px;
}
.ep-dock a i { display: block; font-size: 1.05rem; margin-bottom: 0.1rem; }
.ep-dock a.active,
.ep-dock a:hover { color: var(--ep-azure); background: rgba(29,78,216,0.08); }

@media (max-width: 1100px) {
  .ep-studio { grid-template-columns: 1fr 1fr; }
  .ep-studio__side--activity { grid-column: 1 / -1; }
}
@media (max-width: 991px) {
  .ep-hero__grid,
  .ep-showcase,
  .ep-mosaic,
  .ep-roles { grid-template-columns: 1fr; }
  .ep-mosaic { grid-template-columns: 1fr 1fr; }
  .ep-roles { grid-template-columns: 1fr 1fr; }
  .ep-studio { grid-template-columns: 1fr; }
  .ep-hero__badge--2 { display: none; }
}
@media (max-width: 767px) {
  .ep-dock { display: grid; }
  .enterprise-social-page { padding-bottom: 72px; }
  .ep-mosaic,
  .ep-roles { grid-template-columns: 1fr; }
  .ep-phone { width: 100%; border-radius: 28px; }
  .ep-phone__screen { height: 560px; border-radius: 22px; }
  .ep-hero__frame { transform: none; }
}
