:root {
  --enterprise-bg: #06101c;
  --enterprise-surface: rgba(13, 24, 40, 0.84);
  --enterprise-surface-strong: #0b1728;
  --enterprise-surface-soft: rgba(255, 255, 255, 0.04);
  --enterprise-border: rgba(255, 255, 255, 0.12);
  --enterprise-border-strong: rgba(0, 253, 84, 0.24);
  --enterprise-text: #f2f6fb;
  --enterprise-text-muted: #a7b3c5;
  --enterprise-accent: #00fd54;
  --enterprise-accent-strong: #5dff92;
  --enterprise-secondary: #00c748;
  --enterprise-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --enterprise-radius-xl: 32px;
  --enterprise-radius-lg: 24px;
  --enterprise-radius-md: 18px;
  --enterprise-radius-sm: 14px;
  --enterprise-container: 1340px;
  --enterprise-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body.enterprise-body {
  font-family: "Manrope", sans-serif;
  color: var(--enterprise-text);
  background:
    radial-gradient(circle at top left, rgba(0, 253, 84, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(0, 253, 84, 0.12), transparent 26%),
    linear-gradient(180deg, #07111d 0%, #08131f 50%, #050d17 100%);
  min-height: 100vh;
}

body.enterprise-body h1,
body.enterprise-body h2,
body.enterprise-body h3,
body.enterprise-body h4,
body.enterprise-body h5,
body.enterprise-body h6 {
  font-family: "Sora", sans-serif;
  color: var(--enterprise-text);
  letter-spacing: -0.03em;
  text-transform: none;
}

body.enterprise-body p,
body.enterprise-body li,
body.enterprise-body span,
body.enterprise-body label,
body.enterprise-body input,
body.enterprise-body textarea,
body.enterprise-body a {
  font-family: "Manrope", sans-serif;
}

body.enterprise-body p {
  color: var(--enterprise-text-muted);
  line-height: 1.8;
}

body.enterprise-body a {
  color: inherit;
}

body.enterprise-body a:hover {
  color: var(--enterprise-accent-strong);
}

body.enterprise-body .container {
  max-width: var(--enterprise-container);
}

.enterprise-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.enterprise-backdrop__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.8;
}

.enterprise-backdrop__orb--one {
  width: 460px;
  height: 460px;
  background: rgba(0, 253, 84, 0.22);
  top: -80px;
  left: -120px;
}

.enterprise-backdrop__orb--two {
  width: 420px;
  height: 420px;
  background: rgba(0, 253, 84, 0.16);
  top: 10%;
  right: -120px;
}

.enterprise-backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
}

.enterprise-shell {
  position: relative;
  z-index: 1;
}

.enterprise-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: transform 0.35s var(--enterprise-ease), background 0.35s var(--enterprise-ease);
}

.enterprise-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 28, 0.82), rgba(6, 16, 28, 0.42));
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s var(--enterprise-ease);
}

.enterprise-header.is-scrolled::before {
  background: linear-gradient(180deg, rgba(6, 16, 28, 0.96), rgba(6, 16, 28, 0.88));
}

.enterprise-header > * {
  position: relative;
  z-index: 1;
}

.enterprise-header__meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-header__meta-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 42px;
  color: rgba(242, 246, 251, 0.7);
  font-size: 13px;
}

.enterprise-header__meta-inner span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--enterprise-accent);
}

.enterprise-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
}

.enterprise-brand img,
.enterprise-footer__logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.enterprise-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  min-width: 0;
  flex-wrap: nowrap;
}

.enterprise-nav > a,
.enterprise-nav__trigger {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 42px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(242, 246, 251, 0.78);
  white-space: nowrap;
  flex-shrink: 0;
}

.enterprise-nav > a::after,
.enterprise-nav__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--enterprise-secondary), var(--enterprise-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--enterprise-ease);
}

.enterprise-nav > a:hover::after,
.enterprise-nav__dropdown:hover .enterprise-nav__trigger::after,
.enterprise-nav__dropdown:focus-within .enterprise-nav__trigger::after,
.enterprise-nav .is-active::after {
  transform: scaleX(1);
}

.enterprise-nav__accent {
  color: var(--enterprise-accent-strong) !important;
}

.enterprise-nav__dropdown {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.enterprise-nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 18px;
}

.enterprise-nav__trigger {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.enterprise-nav__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  max-width: 280px;
  display: grid;
  gap: 1px;
  padding: 10px;
  border: 1px solid var(--enterprise-border);
  border-radius: 16px;
  background: rgba(7, 17, 29, 0.96);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 8;
  transition: opacity 0.3s var(--enterprise-ease), transform 0.3s var(--enterprise-ease);
}

.enterprise-nav__dropdown:hover .enterprise-nav__menu,
.enterprise-nav__dropdown:focus-within .enterprise-nav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.enterprise-nav__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(242, 246, 251, 0.82);
}

.enterprise-nav__menu a:hover {
  background: rgba(0, 253, 84, 0.08);
  color: var(--enterprise-accent);
}

.enterprise-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.enterprise-header__actions .enterprise-btn {
  min-height: 44px;
  padding: 0 15px;
  font-size: 11px;
  white-space: nowrap;
}

.enterprise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--enterprise-ease),
    border-color 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease),
    color 0.3s var(--enterprise-ease),
    box-shadow 0.3s var(--enterprise-ease);
}

.enterprise-btn:hover {
  transform: translateY(-2px);
}

.enterprise-btn--primary {
  color: #06101c;
  background: var(--enterprise-accent);
  border-color: rgba(0, 253, 84, 0.42);
  box-shadow: 0 18px 45px rgba(0, 253, 84, 0.28);
}

.enterprise-btn--ghost {
  color: var(--enterprise-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.enterprise-btn--ghost:hover {
  border-color: rgba(0, 253, 84, 0.34);
  color: var(--enterprise-accent);
}

.enterprise-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease),
    box-shadow 0.3s var(--enterprise-ease),
    transform 0.3s var(--enterprise-ease);
}

.enterprise-nav-toggle:hover {
  border-color: rgba(0, 253, 84, 0.36);
  background: rgba(0, 253, 84, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 253, 84, 0.12);
}

.enterprise-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--enterprise-accent);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.3s var(--enterprise-ease),
    opacity 0.3s var(--enterprise-ease),
    width 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease);
}

.enterprise-nav-toggle span:nth-child(2) {
  width: 14px;
}

.enterprise-nav-toggle[aria-expanded="true"] {
  border-color: rgba(0, 253, 84, 0.44);
  background: rgba(0, 253, 84, 0.1);
}

.enterprise-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.enterprise-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.enterprise-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.enterprise-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  justify-content: end;
  background: rgba(2, 8, 15, 0.6);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--enterprise-ease), visibility 0.3s var(--enterprise-ease);
}

.enterprise-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.enterprise-mobile-nav__panel {
  width: min(420px, 100vw);
  height: 100%;
  padding: 26px;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.98), rgba(7, 17, 29, 0.94));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.35s var(--enterprise-ease);
  overflow-y: auto;
}

.enterprise-mobile-nav.is-open .enterprise-mobile-nav__panel {
  transform: translateX(0);
}

.enterprise-mobile-nav__header,
.enterprise-mobile-nav__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.enterprise-mobile-nav__close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--enterprise-text);
}

.enterprise-mobile-nav__links {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.enterprise-mobile-nav__links > a,
.enterprise-mobile-nav__links summary,
.enterprise-mobile-nav__submenu a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enterprise-mobile-nav__links details {
  border-radius: 16px;
}

.enterprise-mobile-nav__links summary {
  list-style: none;
  cursor: pointer;
}

.enterprise-mobile-nav__links summary::-webkit-details-marker {
  display: none;
}

.enterprise-mobile-nav__submenu {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.enterprise-mobile-nav__submenu a {
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}

.enterprise-mobile-nav__footer {
  flex-direction: column;
  align-items: flex-start;
  color: var(--enterprise-text-muted);
}

.enterprise-contact-rail {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  display: grid;
  gap: 12px;
}

.enterprise-contact-rail__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 30, 48, 0.96), rgba(8, 16, 28, 0.98)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition:
    transform 0.3s var(--enterprise-ease),
    border-color 0.3s var(--enterprise-ease),
    box-shadow 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease);
}

.enterprise-contact-rail__link:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(0, 253, 84, 0.34);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.enterprise-contact-rail__link--whatsapp {
  background:
    radial-gradient(circle at top, rgba(0, 253, 84, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(18, 30, 48, 0.96), rgba(8, 16, 28, 0.98));
}

.enterprise-contact-rail__link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .enterprise-contact-rail {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .enterprise-contact-rail__link {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .enterprise-contact-rail__link img {
    width: 26px;
    height: 26px;
  }
}

.enterprise-hero,
.enterprise-page-hero {
  position: relative;
  padding-top: 170px;
}

.enterprise-hero {
  padding-bottom: 110px;
}

.enterprise-page-hero {
  padding-bottom: 64px;
}

.enterprise-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.72fr);
  gap: 32px;
  align-items: stretch;
}

.enterprise-hero__content,
.enterprise-hero__panel,
.enterprise-page-hero .container,
.enterprise-copy-card,
.enterprise-timeline-card,
.enterprise-showcase-card,
.enterprise-form-card,
.enterprise-contact-info__card,
.enterprise-step-card,
.enterprise-capability-card,
.project-box,
.sidebar__widget,
.postbox__item,
.service-branding-main .information,
.enterprise-footer__cta-card {
  border: 1px solid var(--enterprise-border);
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.92), rgba(8, 16, 28, 0.92));
  box-shadow: var(--enterprise-shadow);
  backdrop-filter: blur(20px);
}

.enterprise-hero__content {
  padding: 54px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-kicker,
.enterprise-service-card__eyebrow,
.enterprise-panel-card__label,
.enterprise-section__heading .enterprise-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--enterprise-accent-strong);
}

.enterprise-kicker::before,
.enterprise-service-card__eyebrow::before,
.enterprise-panel-card__label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--enterprise-secondary), transparent);
}

.enterprise-hero__slider {
  position: relative;
  min-height: 260px;
  margin: 18px 0 18px;
}

.enterprise-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--enterprise-ease), transform 0.45s var(--enterprise-ease);
  pointer-events: none;
}

.enterprise-hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.enterprise-hero__slide h1,
.enterprise-page-hero h1,
.page-title {
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.98;
  margin: 0;
  max-width: 10ch;
}

.enterprise-hero__slide h1 span,
.enterprise-page-hero h1 span {
  display: block;
  color: var(--enterprise-accent-strong);
}

.enterprise-hero__text,
.enterprise-page-hero__text {
  max-width: 62ch;
  margin: 0 0 34px;
  font-size: 18px;
}

.enterprise-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.enterprise-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.enterprise-stat {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.enterprise-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--enterprise-text);
}

.enterprise-stat span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--enterprise-text-muted);
}

.enterprise-hero__panel {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-panel-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.enterprise-panel-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.enterprise-panel-card__list a,
.enterprise-panel-card--contact a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.enterprise-panel-card--contact {
  display: grid;
  gap: 12px;
}

.enterprise-panel-card__inline-link {
  color: var(--enterprise-accent-strong);
}

.enterprise-section {
  position: relative;
  padding: 34px 0 110px;
}

.enterprise-section--dark .enterprise-service-card,
.enterprise-section--dark .enterprise-process-card,
.enterprise-section--dark .enterprise-industry-card {
  background: rgba(255, 255, 255, 0.04);
}

.enterprise-section--dark {
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.72), rgba(8, 15, 26, 0.54));
}

.enterprise-section--subtle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.enterprise-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.enterprise-section__heading h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  max-width: 14ch;
}

.enterprise-section__lead {
  max-width: 72ch;
  margin: 0 0 28px;
  font-size: 18px;
}

.enterprise-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--enterprise-accent-strong);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.enterprise-service-grid,
.enterprise-industry-grid,
.enterprise-project-grid,
.enterprise-blog-grid,
.enterprise-process-grid,
.enterprise-capability-grid,
.enterprise-step-grid {
  display: grid;
  gap: 22px;
}

.enterprise-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-industry-grid,
.enterprise-blog-grid,
.enterprise-process-grid,
.enterprise-capability-grid,
.enterprise-step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enterprise-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-industry-slider {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(9, 17, 29, 0.92), rgba(7, 15, 26, 0.82));
  box-shadow: var(--enterprise-shadow);
  overflow: hidden;
}

.enterprise-industry-slider::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% 58%;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 253, 84, 0.18), transparent 66%);
  pointer-events: none;
}

.enterprise-industry-slider__toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.enterprise-industry-slider__summary {
  display: grid;
  gap: 14px;
  flex: 1;
  max-width: 240px;
}

.enterprise-industry-slider__summary span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 246, 251, 0.7);
}

.enterprise-industry-slider__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.enterprise-industry-slider__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--enterprise-secondary), var(--enterprise-accent-strong));
  transition: width 0.45s var(--enterprise-ease);
}

.enterprise-industry-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.enterprise-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--enterprise-text);
  transition:
    transform 0.3s var(--enterprise-ease),
    border-color 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease),
    color 0.3s var(--enterprise-ease);
}

.enterprise-slider-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(0, 253, 84, 0.4);
  background: rgba(0, 253, 84, 0.12);
  color: var(--enterprise-accent);
}

.enterprise-slider-arrow:disabled,
.enterprise-slider-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.enterprise-industry-swiper {
  overflow: visible;
}

.enterprise-industry-swiper .swiper-wrapper {
  align-items: stretch;
}

.enterprise-industry-swiper .swiper-slide {
  height: auto;
}

.enterprise-industry-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1728;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  opacity: 0.56;
  transform: scale(0.94) translateY(24px);
  transition:
    transform 0.6s var(--enterprise-ease),
    opacity 0.45s var(--enterprise-ease),
    box-shadow 0.45s var(--enterprise-ease),
    border-color 0.45s var(--enterprise-ease);
}

.enterprise-industry-swiper .swiper-slide-active.enterprise-industry-slide {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: rgba(0, 253, 84, 0.36);
  box-shadow: 0 36px 85px rgba(0, 0, 0, 0.42);
}

.enterprise-industry-swiper .swiper-slide-prev.enterprise-industry-slide,
.enterprise-industry-swiper .swiper-slide-next.enterprise-industry-slide {
  opacity: 0.84;
  transform: scale(0.975) translateY(10px);
}

.enterprise-industry-slide__media {
  position: relative;
  flex: 0 0 auto;
  min-height: 320px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.enterprise-industry-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--enterprise-ease);
}

.enterprise-industry-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 17, 0.08) 0%, rgba(4, 10, 17, 0.12) 48%, rgba(4, 10, 17, 0.28) 100%),
    linear-gradient(140deg, rgba(0, 253, 84, 0.14), transparent 42%),
    radial-gradient(circle at top right, rgba(0, 253, 84, 0.18), transparent 34%);
}

.enterprise-industry-slide:hover .enterprise-industry-slide__media img {
  transform: scale(1.06);
}

.enterprise-industry-slide__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  padding: 30px 30px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 20, 34, 0.96), rgba(8, 16, 28, 0.98)),
    radial-gradient(circle at top left, rgba(0, 253, 84, 0.08), transparent 34%);
}

.enterprise-industry-slide__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(242, 246, 251, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.enterprise-industry-slide__content h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 2.7vw, 40px);
  max-width: 100%;
}

.enterprise-industry-slide__content p {
  max-width: none;
  margin-bottom: 22px;
  color: rgba(242, 246, 251, 0.78);
}

.enterprise-service-card,
.enterprise-industry-card,
.enterprise-project-card,
.enterprise-blog-card,
.enterprise-process-card,
.enterprise-capability-card,
.enterprise-step-card,
.enterprise-logo-wall__item {
  height: 100%;
  padding: 26px;
  border-radius: var(--enterprise-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.enterprise-service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.enterprise-service-card__head h3,
.enterprise-industry-card__content h3,
.enterprise-project-card__body h3,
.enterprise-blog-card h3,
.enterprise-process-card__content h3,
.enterprise-capability-card h3,
.enterprise-step-card h3,
.enterprise-showcase-card__content h3 {
  margin: 10px 0 0;
  font-size: 26px;
}

.enterprise-service-card__head a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 253, 84, 0.22), rgba(0, 199, 72, 0.16));
  color: var(--enterprise-accent);
}

.enterprise-service-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.enterprise-service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--enterprise-text-muted);
}

.enterprise-service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--enterprise-secondary), var(--enterprise-accent));
}

.enterprise-industry-card,
.enterprise-process-card,
.enterprise-project-card {
  overflow: hidden;
}

.enterprise-project-card {
  display: flex;
  flex-direction: column;
}

.enterprise-project-card--home {
  padding: 0;
}

.enterprise-industry-card__media,
.enterprise-process-card__media,
.enterprise-project-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.enterprise-project-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.03);
}

.enterprise-project-card__media--home {
  aspect-ratio: 16 / 10;
  min-height: 260px;
}

.enterprise-project-card--home .enterprise-project-card__media {
  width: 100%;
  border-radius: calc(var(--enterprise-radius-lg) - 1px) calc(var(--enterprise-radius-lg) - 1px) 0 0;
}

.enterprise-industry-card__media img,
.enterprise-process-card__media img,
.enterprise-project-card__media img,
.enterprise-media-stack img,
.enterprise-showcase-card__media img,
.enterprise-logo-wall__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--enterprise-ease);
}

.enterprise-project-card__media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-position: center center;
}

.enterprise-industry-card:hover img,
.enterprise-process-card:hover img,
.enterprise-project-card:hover img,
.enterprise-showcase-card:hover img {
  transform: scale(1.05);
}

.enterprise-industry-card__content,
.enterprise-process-card__content,
.enterprise-project-card__body {
  margin-top: 20px;
}

.enterprise-project-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.enterprise-project-card--home .enterprise-project-card__body {
  margin-top: 0;
  padding: 22px 24px 24px;
}

.enterprise-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-process-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
}

.enterprise-process-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.enterprise-process-card__number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--enterprise-accent-strong);
}

.enterprise-process-card__number::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--enterprise-accent), transparent);
}

.enterprise-process-card__media {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.enterprise-process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enterprise-process-card__content {
  margin-top: 0;
}

.enterprise-process-card__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.enterprise-process-card__content p {
  margin: 0;
}

.enterprise-blog-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #07111d;
  background: linear-gradient(135deg, var(--enterprise-accent-strong), var(--enterprise-accent));
}

.enterprise-blog-card p {
  margin-bottom: 0;
}

.enterprise-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.enterprise-logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px;
}

.enterprise-logo-wall__item img {
  max-height: 54px;
  object-fit: contain;
}

.enterprise-page-hero .container {
  padding: 52px 54px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-page-hero h1 {
  max-width: 14ch;
}

.enterprise-split-grid,
.enterprise-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.enterprise-media-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.enterprise-media-stack__primary,
.enterprise-media-stack__secondary {
  overflow: hidden;
  border-radius: var(--enterprise-radius-lg);
  min-height: 280px;
}

.enterprise-copy-card,
.enterprise-form-card {
  padding: 34px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-timeline-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 40px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-timeline-card__year {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 253, 84, 0.22), rgba(0, 199, 72, 0.16));
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  color: var(--enterprise-accent);
}

.enterprise-timeline-card__content h2 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 3.6vw, 50px);
}

.enterprise-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-showcase-card__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.enterprise-showcase-card__media img {
  min-height: 220px;
  border-radius: 18px;
}

.enterprise-contact-info {
  display: grid;
  gap: 18px;
}

.enterprise-contact-info__card {
  padding: 28px;
  border-radius: var(--enterprise-radius-lg);
}

.enterprise-contact-info__card a {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.enterprise-team-hero__layout,
.enterprise-team-detail-hero__layout,
.enterprise-team-detail-card__layout {
  display: grid;
  gap: 28px;
}

.enterprise-team-hero__layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
  align-items: stretch;
}

.enterprise-team-hero__summary,
.enterprise-team-card,
.enterprise-team-empty,
.enterprise-team-detail-card,
.enterprise-team-detail-hero__visual,
.enterprise-team-detail-card__visual {
  border: 1px solid var(--enterprise-border);
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.92), rgba(8, 16, 28, 0.92));
  box-shadow: var(--enterprise-shadow);
  backdrop-filter: blur(20px);
}

.enterprise-team-hero__summary {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 32px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-team-hero__summary p {
  margin: 0;
}

.enterprise-team-hero__metric {
  display: grid;
  gap: 12px;
}

.enterprise-team-hero__metric strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  color: var(--enterprise-accent);
}

.enterprise-team-hero__metric span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--enterprise-text-muted);
}

.enterprise-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.enterprise-team-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--enterprise-radius-lg);
}

.enterprise-team-card__media,
.enterprise-team-detail-hero__visual,
.enterprise-team-detail-card__visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.enterprise-team-card__media {
  aspect-ratio: 4 / 5;
  min-height: 340px;
}

.enterprise-team-card__media img,
.enterprise-team-detail-hero__visual img,
.enterprise-team-detail-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--enterprise-ease);
}

.enterprise-team-card:hover .enterprise-team-card__media img,
.enterprise-team-detail-hero__visual:hover img,
.enterprise-team-detail-card__visual:hover img {
  transform: scale(1.04);
}

.enterprise-team-avatar-fallback {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 253, 84, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(12, 22, 38, 0.98), rgba(8, 16, 28, 0.98));
  color: var(--enterprise-text);
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.enterprise-team-avatar-fallback--large {
  min-height: 100%;
  font-size: clamp(56px, 8vw, 108px);
}

.enterprise-team-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.enterprise-team-card__role {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 253, 84, 0.2);
  background: rgba(0, 253, 84, 0.08);
  color: var(--enterprise-accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-team-card__role--detail {
  margin-top: 4px;
}

.enterprise-team-card__body h2,
.enterprise-team-empty h2,
.enterprise-team-detail-card__content h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

.enterprise-team-card__body h2 a {
  color: inherit;
}

.enterprise-team-card__actions {
  margin-top: auto;
  padding-top: 6px;
}

.enterprise-team-empty,
.enterprise-team-detail-card {
  padding: 34px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-team-empty {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.enterprise-team-empty p {
  max-width: 58ch;
  margin: 0;
}

.enterprise-team-detail-hero__layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
}

.enterprise-team-detail-hero__content {
  max-width: 54ch;
}

.enterprise-team-detail-hero__visual,
.enterprise-team-detail-card__visual {
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-team-detail-hero__visual {
  min-height: 420px;
}

.enterprise-team-detail-card__layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.enterprise-team-detail-card__visual {
  min-height: 440px;
}

.enterprise-team-detail-card__content {
  display: grid;
  align-content: start;
  gap: 18px;
}

.enterprise-team-detail-card__content h2 {
  max-width: 11ch;
}

.enterprise-team-detail-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.enterprise-policy-card {
  padding: 38px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-policy-content {
  display: grid;
  gap: 34px;
}

.enterprise-policy-section {
  display: grid;
  gap: 14px;
}

.enterprise-policy-section + .enterprise-policy-section {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enterprise-policy-section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.enterprise-policy-section h3 {
  margin: 4px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--enterprise-text);
}

.enterprise-policy-section p {
  margin: 0;
  color: rgba(242, 246, 251, 0.78);
  line-height: 1.9;
}

.enterprise-policy-callout {
  margin-top: 6px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(0, 253, 84, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(9, 17, 30, 0.98), rgba(6, 13, 24, 0.96));
}

.enterprise-policy-callout h4 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.enterprise-form {
  display: grid;
  gap: 18px;
}

.enterprise-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.enterprise-form__field--full {
  grid-column: 1 / -1;
}

.enterprise-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 246, 251, 0.72);
}

.enterprise-form__field input,
.enterprise-form__field textarea,
.enterprise-subscribe input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--enterprise-text);
  padding: 16px 18px;
  outline: none;
}

.enterprise-form__field input:focus,
.enterprise-form__field textarea:focus,
.enterprise-subscribe input:focus {
  border-color: rgba(0, 253, 84, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 253, 84, 0.12);
}

.enterprise-form__field textarea {
  min-height: 180px;
  resize: vertical;
}

.enterprise-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--enterprise-text-muted);
}

.enterprise-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.enterprise-map-frame {
  overflow: hidden;
  border-radius: var(--enterprise-radius-xl);
  border: 1px solid var(--enterprise-border);
  box-shadow: var(--enterprise-shadow);
}

.enterprise-map-frame iframe {
  width: 100%;
  min-height: 520px;
}

.enterprise-footer {
  position: relative;
  padding: 0 0 24px;
}

.enterprise-footer__cta,
.enterprise-footer__main,
.enterprise-footer__bottom {
  position: relative;
  z-index: 1;
}

.enterprise-footer__cta {
  padding-top: 12px;
}

.enterprise-footer__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 38px 42px;
  border-radius: var(--enterprise-radius-xl);
}

.enterprise-footer__cta-card h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 5vw, 62px);
}

.enterprise-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.enterprise-footer__main {
  padding: 28px 0 0;
}

.enterprise-footer__brand,
.enterprise-footer__group {
  padding: 28px;
  border-radius: var(--enterprise-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
}

.enterprise-footer__group h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.enterprise-footer__group a {
  display: block;
  margin-bottom: 12px;
  color: var(--enterprise-text-muted);
}

.enterprise-subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 18px 0 16px;
}

.enterprise-subscribe button {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--enterprise-accent-strong), var(--enterprise-accent));
  color: #06101c;
}

.enterprise-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.enterprise-socials a {
  font-weight: 700;
  color: var(--enterprise-text);
}

.enterprise-socials__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0 !important;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s var(--enterprise-ease),
    border-color 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease);
}

.enterprise-socials__icon:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 253, 84, 0.3);
  background: rgba(0, 253, 84, 0.08);
}

.enterprise-socials__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.enterprise-socials__icon i {
  font-size: 18px;
  color: var(--enterprise-text);
  transition: color 0.3s var(--enterprise-ease);
}

.enterprise-socials__icon:hover i {
  color: #00fd54;
}

.enterprise-footer__bottom {
  padding-top: 16px;
}

.enterprise-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}

.enterprise-footer__bottom-inner p {
  margin: 0;
}

.enterprise-footer__bottom-links {
  display: flex;
  gap: 18px;
}

body.enterprise-body .page-title-area,
body.enterprise-body .project-works-area,
body.enterprise-body .postbox__area,
body.enterprise-body .service-branding-area {
  background: transparent !important;
}

body.enterprise-body .page-title-wrappper {
  padding: 48px 52px;
  border-radius: var(--enterprise-radius-xl);
  border: 1px solid var(--enterprise-border);
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.9), rgba(8, 16, 28, 0.92));
  box-shadow: var(--enterprise-shadow);
}

body.enterprise-body .page-title-paragraph {
  margin-top: 18px;
  color: var(--enterprise-text-muted);
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-area {
  position: relative;
  padding: 168px 0 64px !important;
  min-height: auto;
  overflow: hidden;
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 253, 84, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(0, 253, 84, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.38), rgba(8, 16, 28, 0));
  pointer-events: none;
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-area .container,
body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container {
  position: relative;
  z-index: 1;
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-shapes {
  pointer-events: none;
  opacity: 0.34;
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-shapes .shape-1 {
  left: auto;
  right: 18px;
  top: auto;
  bottom: -92px;
  width: min(320px, 32vw);
  transform: rotate(-14deg);
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title-wrappper {
  max-width: min(980px, 100%);
  margin: 0 auto !important;
  padding: 40px 44px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 20, 34, 0.96), rgba(8, 16, 28, 0.92));
  border-color: rgba(0, 253, 84, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  text-align: center;
}

body.enterprise-body.route-ready:not(.route-ready-index) .page-title {
  max-width: 15ch;
  margin: 0 auto !important;
  font-size: clamp(34px, 5vw, 68px) !important;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container {
  margin-top: 20px !important;
}

body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container > h5 {
  max-width: min(760px, 100%);
  margin: 0 auto 28px !important;
  padding: 16px 22px;
  border-radius: 20px;
  border: 1px solid rgba(0, 253, 84, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--enterprise-text);
  font-family: "Sora", sans-serif;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main .information {
  margin-left: 0;
}

body.enterprise-body .project-box,
body.enterprise-body .sidebar__widget,
body.enterprise-body .postbox__item,
body.enterprise-body .service-branding-main .information {
  padding: 28px;
  border-radius: var(--enterprise-radius-lg);
}

body.enterprise-body .project-box__thumb {
  overflow: hidden;
  border-radius: 18px;
}

body.enterprise-body .project-box img,
body.enterprise-body .postbox__thumb img {
  border-radius: 18px;
}

body.enterprise-body .project__title,
body.enterprise-body .postbox__title {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 40px);
}

body.enterprise-body .postbox__meta span,
body.enterprise-body .sidebar__widget-content a,
body.enterprise-body .filter a {
  color: var(--enterprise-text-muted);
}

body.enterprise-body .sidebar__widget-title {
  margin-bottom: 18px;
}

body.enterprise-body .bd-basic__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.enterprise-body .bd-basic__pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

body.enterprise-body .bd-basic__pagination a.current {
  background: linear-gradient(135deg, var(--enterprise-accent-strong), var(--enterprise-accent));
  color: #06101c;
}

body.enterprise-body .service-branding-main .information h1,
body.enterprise-body .service-branding-main .information h2,
body.enterprise-body .service-branding-main .information h4 {
  text-align: left !important;
}

body.enterprise-body .service-branding-main .information ul {
  display: grid;
  gap: 14px;
  margin: 0;
}

body.enterprise-body .service-branding-main .information li,
body.enterprise-body .service-branding-main .information span,
body.enterprise-body .service-branding-main .information strong {
  color: var(--enterprise-text-muted);
}

body.enterprise-body .service-branding-main hr {
  border-color: rgba(255, 255, 255, 0.08);
}

body.enterprise-body .section__title-inner,
body.enterprise-body .faq-area .section__title-inner,
body.enterprise-body .service-branding-main .information h1,
body.enterprise-body .service-branding-main .information h2,
body.enterprise-body .service-branding-main .information h3,
body.enterprise-body .service-branding-main .information h4,
body.enterprise-body .service-branding-main .information h5,
body.enterprise-body .service-branding-main .information h6 {
  color: var(--enterprise-text) !important;
}

body.enterprise-body .service-branding-main .information,
body.enterprise-body .service-branding-main .information p,
body.enterprise-body .service-branding-main .information li,
body.enterprise-body .service-branding-main .information span,
body.enterprise-body .service-branding-main .information strong,
body.enterprise-body .faq-area .accordion-body,
body.enterprise-body .faq-area .accordion-body p,
body.enterprise-body .faq-area .choose-accordion-content p {
  color: var(--enterprise-text-muted) !important;
}

body.enterprise-body .faq-area .accordion {
  --bs-accordion-color: var(--enterprise-text-muted);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
  --bs-accordion-btn-color: var(--enterprise-text);
  --bs-accordion-active-color: var(--enterprise-text);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300fd54' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3e%3cpath d='M2.5 5.5 8 11l5.5-5.5'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300fd54' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3e%3cpath d='M2.5 5.5 8 11l5.5-5.5'/%3e%3c/svg%3e");
}

body.enterprise-body .faq-area .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(9, 17, 30, 0.98), rgba(6, 13, 24, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

body.enterprise-body .faq-area .accordion-button {
  padding: 22px 26px;
  background: transparent !important;
  color: var(--enterprise-text) !important;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

body.enterprise-body .faq-area .accordion-button:hover,
body.enterprise-body .faq-area .accordion-button:focus,
body.enterprise-body .faq-area .accordion-button:not(.collapsed) {
  background: transparent !important;
  color: var(--enterprise-text) !important;
  box-shadow: none;
}

body.enterprise-body .faq-area .accordion-button::after {
  opacity: 0.92;
}

body.enterprise-body .faq-area .accordion-body {
  padding: 0 26px 24px;
}

body.enterprise-body .faq-area .choose-accordion-content p:last-child {
  margin-bottom: 0;
}

body.enterprise-body .contact-input span,
body.enterprise-body .enterprise-form span.field-validation-error,
body.enterprise-body .enterprise-form span[data-valmsg-for] {
  color: #ff9f95;
  font-size: 13px;
}

body.enterprise-body .project-social-wrappper,
body.enterprise-body .social-round-item {
  background: transparent;
}

body.enterprise-body.route-portfolio-index .page-title-area {
  position: relative;
  overflow: hidden;
}

body.enterprise-body.route-portfolio-index .page-title-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 253, 84, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(0, 253, 84, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.24), rgba(8, 16, 28, 0));
  pointer-events: none;
}

body.enterprise-body.route-portfolio-index .page-title-area .container {
  position: relative;
  z-index: 1;
}

body.enterprise-body.route-portfolio-index .page-title-wrappper {
  max-width: min(980px, 100%);
}

.enterprise-portfolio-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.enterprise-portfolio-sidebar {
  position: sticky;
  top: 138px;
}

.enterprise-portfolio-filter-card,
.enterprise-portfolio-highlight {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.92), rgba(8, 16, 28, 0.92));
  box-shadow: var(--enterprise-shadow);
}

.enterprise-portfolio-filter-card h3 {
  margin: 0;
  font-size: 24px;
}

.enterprise-portfolio-filter-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.enterprise-portfolio-filter-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--enterprise-text-muted);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s var(--enterprise-ease),
    border-color 0.3s var(--enterprise-ease),
    background 0.3s var(--enterprise-ease),
    color 0.3s var(--enterprise-ease);
}

.enterprise-portfolio-filter-list a:hover,
.enterprise-portfolio-filter-list a.is-active {
  color: var(--enterprise-text);
  border-color: rgba(0, 253, 84, 0.24);
  background: linear-gradient(135deg, rgba(0, 253, 84, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateX(4px);
}

.enterprise-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.enterprise-project-card--portfolio {
  padding: 20px;
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.94), rgba(8, 16, 28, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.enterprise-project-card--portfolio .enterprise-project-card__media {
  aspect-ratio: 16 / 11;
  min-height: 280px;
}

.enterprise-project-card--portfolio .enterprise-project-card__body {
  gap: 14px;
}

.enterprise-project-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 253, 84, 0.2);
  background: rgba(0, 253, 84, 0.08);
  color: var(--enterprise-accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enterprise-project-card--portfolio .enterprise-project-card__body h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
}

.enterprise-project-card--portfolio .enterprise-project-card__body h3 a {
  color: inherit;
}

.enterprise-project-card--portfolio .enterprise-project-card__body p {
  margin: 0;
}

.enterprise-project-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.enterprise-portfolio-highlight {
  text-align: center;
}

.enterprise-portfolio-highlight h2 {
  margin: 0;
  max-width: none;
}

@media (max-width: 1399px) {
  .enterprise-project-grid,
  .enterprise-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-header__main {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .enterprise-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .enterprise-brand img {
    height: 40px;
  }

  .enterprise-header__actions .enterprise-btn--ghost {
    display: none;
  }

  .enterprise-header__actions .enterprise-btn {
    min-height: 42px;
    padding: 0 13px;
  }

  .enterprise-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-portfolio-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 1199px) {
  .enterprise-header__main {
    grid-template-columns: auto 1fr auto;
  }

  .enterprise-nav {
    display: none;
  }

  .enterprise-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .enterprise-hero__layout,
  .enterprise-split-grid,
  .enterprise-contact-grid,
  .enterprise-showcase-card,
  .enterprise-timeline-card,
  .enterprise-footer__cta-card,
  .enterprise-team-hero__layout,
  .enterprise-team-detail-hero__layout,
  .enterprise-team-detail-card__layout {
    grid-template-columns: 1fr;
  }

  .enterprise-hero__panel {
    order: -1;
  }
}

@media (max-width: 991px) {
  .enterprise-header__meta {
    display: none;
  }

  .enterprise-header__main {
    min-height: 82px;
  }

  .enterprise-hero,
  .enterprise-page-hero {
    padding-top: 132px;
  }

  .enterprise-hero__content,
  .enterprise-page-hero .container,
  .enterprise-copy-card,
  .enterprise-form-card,
  .enterprise-timeline-card,
  .enterprise-showcase-card,
  .service-branding-main .information,
  .project-box,
  .postbox__item,
  .sidebar__widget,
  .enterprise-footer__cta-card {
    padding: 28px;
  }

  .enterprise-service-grid,
  .enterprise-project-grid,
  .enterprise-blog-grid,
  .enterprise-capability-grid,
  .enterprise-step-grid,
  .enterprise-logo-wall,
  .enterprise-form__grid,
  .enterprise-media-stack {
    grid-template-columns: 1fr;
  }

  .enterprise-hero__stats {
    grid-template-columns: 1fr;
  }

  .enterprise-showcase-card__media {
    grid-template-columns: 1fr;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-area {
    padding: 138px 0 48px !important;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-wrappper {
    padding: 30px 26px;
    border-radius: 24px;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title {
    max-width: 17ch;
    font-size: clamp(30px, 6.2vw, 48px) !important;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-shapes .shape-1 {
    right: -14px;
    bottom: -72px;
    width: min(250px, 42vw);
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container > h5 {
    padding: 14px 18px;
    font-size: clamp(18px, 3vw, 24px);
  }

  .enterprise-project-card {
    padding: 22px;
  }

  .enterprise-project-card--home {
    padding: 0;
  }

  .enterprise-project-card__media {
    aspect-ratio: 4 / 3;
    min-height: 220px;
    border-radius: 16px;
  }

  .enterprise-project-card__media--home {
    min-height: 240px;
  }

  .enterprise-project-card__body {
    margin-top: 16px;
  }

  .enterprise-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-team-detail-hero__visual,
  .enterprise-team-detail-card__visual {
    min-height: 380px;
  }

  .enterprise-policy-card {
    padding: 30px 26px;
  }

  .enterprise-section {
    padding-bottom: 84px;
  }

  .enterprise-industry-slider {
    padding: 24px 20px;
  }

  .enterprise-industry-slide__media {
    min-height: 240px;
  }

  .enterprise-industry-slide__content {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .enterprise-process-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-portfolio-layout {
    grid-template-columns: 1fr;
  }

  .enterprise-portfolio-sidebar {
    position: static;
  }

  .enterprise-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-portfolio-filter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .enterprise-header__actions {
    display: none !important;
  }

  .enterprise-section__heading,
  .enterprise-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .enterprise-hero__slider {
    min-height: 220px;
  }

  .enterprise-brand img,
  .enterprise-footer__logo img {
    height: 38px;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-area {
    padding: 128px 0 38px !important;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-wrappper {
    padding: 24px 18px;
    border-radius: 20px;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title {
    max-width: 100%;
    font-size: clamp(26px, 8.8vw, 38px) !important;
    line-height: 1.08;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .page-title-shapes .shape-1 {
    right: -26px;
    bottom: -66px;
    width: 190px;
    opacity: 0.24;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container {
    margin-top: 14px !important;
  }

  body.enterprise-body.route-ready:not(.route-ready-index) .service-branding-main > .container > h5 {
    margin-bottom: 20px !important;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.24;
  }

  .enterprise-project-card {
    padding: 18px;
  }

  .enterprise-project-card--home {
    padding: 0;
  }

  .enterprise-project-card__media {
    aspect-ratio: 5 / 4;
    min-height: 180px;
    border-radius: 14px;
  }

  .enterprise-project-card__media--home {
    min-height: 200px;
  }

  .enterprise-project-card__body {
    margin-top: 14px;
  }

  .enterprise-team-hero__summary,
  .enterprise-team-empty,
  .enterprise-team-detail-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .enterprise-team-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-team-card__media {
    min-height: 300px;
  }

  .enterprise-team-detail-hero__visual,
  .enterprise-team-detail-card__visual {
    min-height: 300px;
  }

  .enterprise-policy-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .enterprise-policy-content {
    gap: 28px;
  }

  .enterprise-policy-callout {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .enterprise-portfolio-filter-card,
  .enterprise-portfolio-highlight {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .enterprise-portfolio-filter-list {
    grid-template-columns: 1fr;
  }

  .enterprise-project-card--portfolio .enterprise-project-card__body h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.enterprise-service-seo {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enterprise-service-seo__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(239, 247, 255, 0.64);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-service-seo__breadcrumbs a {
  color: rgba(239, 247, 255, 0.82);
}

.enterprise-service-seo__lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(239, 247, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.enterprise-service-seo__resource-grid {
  margin-bottom: 28px;
}

.enterprise-service-seo__card h3 a,
.enterprise-service-seo__related-card h3 a {
  color: #f5fbff;
}

.enterprise-showcase-card__media {
  text-decoration: none;
}

.enterprise-showcase-card__content h3 a {
  color: inherit;
}

.enterprise-service-seo__card p,
.enterprise-service-seo__related-card p {
  color: rgba(239, 247, 255, 0.72);
}

.enterprise-service-seo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.enterprise-service-seo__related-heading {
  margin-top: 18px;
}

.enterprise-service-seo__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.enterprise-service-seo__related-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(8, 13, 24, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.enterprise-service-seo__related-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

@media (max-width: 991px) {
  .enterprise-service-seo__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .enterprise-service-seo__lead {
    font-size: 16px;
  }

  .enterprise-service-seo__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .enterprise-service-seo__related-grid {
    grid-template-columns: 1fr;
  }
}
