.enterprise-page {
  padding-bottom: 20px;
  background: #fff;
}

.enterprise-hero {
  position: relative;
  height: 246px;
  overflow: hidden;
  background: var(--brand-deep);
  color: #fff;
}

.enterprise-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 32 28 / 0.08) 18%, rgb(10 32 28 / 0.9) 100%);
}

.enterprise-hero.image-failed .enterprise-hero-overlay {
  background: linear-gradient(180deg, rgb(19 82 74 / 0.16), rgb(10 32 28 / 0.92));
}

.enterprise-hero-fallback {
  color: var(--brand-deep);
}

.enterprise-hero-copy {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 22px;
  right: 22px;
}

.enterprise-hero-copy h2 {
  max-width: 330px;
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.34;
}

.enterprise-hero-copy > p {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.enterprise-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-default);
  background: #fff;
}

.enterprise-hero-actions button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  background: #fff;
  color: var(--brand-primary);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.enterprise-hero-actions button:first-child {
  background: var(--brand-primary);
  color: #fff;
}

.enterprise-hero-actions button svg {
  width: 17px;
  height: 17px;
}

.enterprise-capability-section,
.enterprise-case-section {
  padding: 42px 20px;
}

.enterprise-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.enterprise-section-heading > p {
  margin: 9px 0 0;
  color: var(--ink-secondary);
  font-size: 10px;
  line-height: 1.7;
}

.enterprise-capability-section > ol {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.enterprise-capability-section > ol > li {
  border-top: 1px solid var(--line-default);
}

.enterprise-capability-section > ol > li:last-child {
  border-bottom: 1px solid var(--line-default);
}

.enterprise-capability-heading {
  display: grid;
  width: 100%;
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: start;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--ink-primary);
  text-align: left;
  cursor: pointer;
}

.enterprise-capability-heading > span:first-child {
  display: grid;
  width: 28px;
  height: 24px;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-family: var(--numeric);
  font-size: 11px;
  font-weight: 700;
}

.enterprise-capability-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.enterprise-capability-copy strong {
  margin-top: -3px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

.enterprise-capability-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-secondary);
  font-size: 10px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.enterprise-capability-copy em {
  color: var(--brand-primary);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.enterprise-capability-chevron {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink-secondary);
  transition: transform 180ms ease;
}

.enterprise-capability-chevron svg {
  width: 16px;
  height: 16px;
}

.enterprise-capability.expanded .enterprise-capability-chevron {
  transform: rotate(180deg);
}

.enterprise-capability-panel {
  padding: 0 0 18px;
}

.enterprise-capability-cases {
  min-width: 0;
}

.enterprise-case-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.enterprise-case-heading strong {
  font-family: var(--serif);
  font-size: 13px;
}

.enterprise-case-heading > span {
  color: var(--ink-secondary);
  font-size: 9px;
}

.enterprise-case-carousel {
  position: relative;
}

.enterprise-case-track {
  position: relative;
  height: 246px;
  overflow: hidden;
  perspective: 900px;
  touch-action: pan-y;
}

.enterprise-case-track::-webkit-scrollbar {
  display: none;
}

.enterprise-case-track img { pointer-events: none; }

.enterprise-capability-cases[data-single="true"] .enterprise-case-heading > span,
.enterprise-capability-cases[data-single="true"] .enterprise-case-nav,
.enterprise-capability-cases[data-single="true"] .enterprise-case-pagination { display: none; }
.enterprise-capability-cases[data-single="true"] .enterprise-case-track { height: auto; overflow: visible; }
.enterprise-capability-cases[data-single="true"] .enterprise-case {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transition: none;
  box-shadow: none;
}

.enterprise-case-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(19 82 74 / 0.28);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  color: var(--brand-primary);
  cursor: pointer;
  transform: translateY(-50%);
}

.enterprise-case-nav::before {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  content: "";
}

.enterprise-case-nav.previous {
  left: 0;
}

.enterprise-case-nav.next {
  right: 0;
}

.enterprise-case-nav.previous svg {
  transform: rotate(180deg);
}

.enterprise-case-nav svg {
  width: 14px;
  height: 14px;
}

.enterprise-case-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.enterprise-case-pagination {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
}

.enterprise-case-pagination > span:first-child {
  color: var(--ink-secondary);
  font-family: var(--numeric);
  font-size: 8px;
}

.enterprise-case-pagination > span:last-child {
  display: flex;
  gap: 4px;
}

.enterprise-case-pagination i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8d0cd;
}

.enterprise-case-pagination i.active {
  width: 14px;
  border-radius: 999px;
  background: var(--brand-primary);
}

.enterprise-capability-cases .enterprise-case {
  display: block;
  position: absolute;
  top: 12px;
  left: 15%;
  width: 70%;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-default);
  border-radius: 6px;
  background: var(--surface-muted);
  box-shadow: 0 6px 18px rgb(23 61 55 / 0.12);
  backface-visibility: hidden;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 520ms ease;
}

.enterprise-case[data-position="center"] { z-index: 2; opacity: 1; transform: translateX(0) scale(1) rotateY(0); }
.enterprise-case[data-position="left"] { z-index: 1; opacity: 0.65; transform: translateX(-70%) scale(0.76) rotateY(24deg); }
.enterprise-case[data-position="right"] { z-index: 1; opacity: 0.65; transform: translateX(70%) scale(0.76) rotateY(-24deg); }
.enterprise-case[data-position="hidden"] { z-index: 0; opacity: 0; pointer-events: none; transform: translateX(0) translateZ(-240px) scale(0.6) rotateY(0); }
@media (prefers-reduced-motion: reduce) {
  .enterprise-capability-cases .enterprise-case { transition: none; }
}

.enterprise-capability-cases .enterprise-case-media {
  display: block;
  height: 118px;
}

.enterprise-capability-cases .enterprise-case-copy {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.enterprise-capability-cases .enterprise-case-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.enterprise-capability-cases .enterprise-case-copy small {
  display: -webkit-box;
  overflow: hidden;
  min-height: 30px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.enterprise-capability-cases .enterprise-case-copy em {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-primary);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.enterprise-capability-cases .enterprise-case-copy em svg {
  width: 13px;
  height: 13px;
}

.enterprise-capability-case-empty {
  padding: 13px;
  background: var(--surface-muted);
  color: var(--ink-secondary);
  font-size: 10px;
}

.enterprise-case-section {
  padding-bottom: 48px;
}

.enterprise-case {
  display: grid;
  width: 100%;
  grid-template-columns: 112px minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.enterprise-case-media {
  position: relative;
  height: 104px;
  overflow: hidden;
  background: var(--brand-soft);
}

.enterprise-case-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-case-media > span:last-child {
  position: absolute;
  z-index: 2;
  bottom: 7px;
  left: 7px;
  padding: 4px 7px;
  background: rgb(255 255 255 / 0.92);
  color: var(--brand-deep);
  font-size: 8px;
  font-weight: 700;
}

.enterprise-case-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.enterprise-case-copy strong {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
}

.enterprise-case-copy small {
  color: var(--ink-secondary);
  font-size: 9px;
  line-height: 1.65;
}

.enterprise-contact-section {
  padding: 42px 20px;
  background: var(--brand-deep);
  color: #fff;
}

.enterprise-section-heading.inverse > span,
.enterprise-section-heading.inverse > p {
  color: rgb(255 255 255 / 0.68);
}

.enterprise-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.enterprise-contact-tags span {
  padding: 7px 9px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.82);
  font-size: 9px;
}

.enterprise-contact-primary {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.enterprise-contact-primary svg {
  width: 16px;
  height: 16px;
}

.enterprise-contact-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.5);
  font-size: 8px;
}

.enterprise-contact-divider::before,
.enterprise-contact-divider::after {
  height: 1px;
  flex: 1;
  background: rgb(255 255 255 / 0.16);
  content: "";
}

.enterprise-contact-actions {
  margin-top: 4px;
}

.enterprise-contact-actions button {
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.enterprise-contact-actions button > svg {
  width: 22px;
  height: 22px;
}

.enterprise-contact-actions button > svg:last-child {
  width: 17px;
  height: 17px;
  color: rgb(255 255 255 / 0.52);
}

.enterprise-contact-actions button span {
  display: grid;
  gap: 4px;
}

.enterprise-contact-actions strong {
  font-size: 12px;
}

.enterprise-contact-actions small {
  color: rgb(255 255 255 / 0.58);
  font-size: 9px;
}

.enterprise-empty-state {
  margin-top: 22px;
  padding: 24px 18px;
  background: var(--surface-muted);
  text-align: center;
}

.enterprise-empty-state strong {
  font-family: var(--serif);
  font-size: 15px;
}

.enterprise-empty-state p {
  margin: 7px 0 0;
  color: var(--ink-secondary);
  font-size: 10px;
  line-height: 1.65;
}

.enterprise-wechat-sheet {
  width: min(390px, 100vw);
  padding: 22px 20px calc(20px + env(safe-area-inset-bottom));
  border-radius: 18px 18px 0 0;
  background: #fff;
  text-align: center;
  animation: sheet-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enterprise-wechat-sheet .sheet-header {
  text-align: left;
}

.enterprise-wechat-sheet .sheet-header span {
  color: var(--brand-primary);
  font-size: 9px;
  font-weight: 700;
}

.enterprise-wechat-sheet .sheet-header h2 {
  margin-top: 4px;
  font-size: 17px;
}

.enterprise-qr-placeholder {
  display: grid;
  width: 210px;
  height: 210px;
  place-content: center;
  justify-items: center;
  gap: 8px;
  margin: 18px auto;
  border: 1px dashed #9aa7a3;
  background: var(--surface-muted);
  color: var(--ink-secondary);
}

.enterprise-qr-placeholder > svg {
  width: 32px;
  height: 32px;
  color: var(--brand-primary);
}

.enterprise-qr-placeholder strong {
  font-family: var(--serif);
  font-size: 15px;
}

.enterprise-qr-placeholder small {
  font-size: 9px;
}

.enterprise-wechat-sheet > p {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 10px;
  line-height: 1.7;
}

.enterprise-wechat-done {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 3px;
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 359px) {
  .enterprise-hero-copy {
    right: 14px;
    left: 14px;
  }

  .enterprise-hero-copy h2 {
    font-size: 23px;
  }

  .enterprise-capability-section,
  .enterprise-case-section,
  .enterprise-scenarios,
  .enterprise-contact-section {
    padding-inline: 14px;
  }

  .enterprise-case {
    grid-template-columns: 94px minmax(0, 1fr) 32px;
    gap: 9px;
  }

  .enterprise-case-media {
    height: 96px;
  }
}
