/* =========================================================
   CUBEON TECHNOLOGIES
   ENTERPRISE DEVELOPMENT UAE
========================================================= */

.enterprise-page {
  --enterprise-navy: #07145c;
  --enterprise-navy-2: #0c236f;
  --enterprise-dark: #040a32;

  --enterprise-blue: #2563ff;
  --enterprise-blue-dark: #1747d1;
  --enterprise-indigo: #5266e8;
  --enterprise-cyan: #1bb8d4;

  --enterprise-text: #101828;
  --enterprise-muted: #667085;

  --enterprise-white: #ffffff;
  --enterprise-bg: #f7f9fd;
  --enterprise-bg-blue: #f2f6ff;

  --enterprise-border: #e3e8f2;

  --enterprise-shadow: 0 20px 55px rgba(7, 20, 92, 0.09);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  color: var(--enterprise-text);
}

/* =========================================================
   STICKY HEADER SUPPORT
========================================================= */

html,
body {
  margin: 0;

  overflow-x: clip !important;
}

.enterprise-page {
  overflow: visible !important;
}

.enterprise-page *,
.enterprise-page *::before,
.enterprise-page *::after {
  box-sizing: border-box;
}

.enterprise-page .container {
  width: min(1200px, calc(100% - 48px));

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================================
   STICKY HEADER
========================================================= */

.enterprise-page .enterprise-header {
  position: sticky !important;

  position: -webkit-sticky !important;

  top: 0 !important;

  left: 0 !important;

  right: 0 !important;

  width: 100% !important;

  z-index: 999999 !important;

  background: rgba(255, 255, 255, 0.97) !important;

  border-bottom: 1px solid var(--enterprise-border);

  -webkit-backdrop-filter: blur(18px);

  backdrop-filter: blur(18px);

  box-shadow: 0 4px 20px rgba(7, 20, 92, 0.06);
}

.enterprise-header-inner {
  min-height: 76px;

  display: flex;

  align-items: center;

  gap: 27px;
}

.enterprise-logo {
  flex-shrink: 0;
}

.enterprise-logo img {
  display: block;

  height: 60px;

  width: auto;
}

/* =========================================================
   NAVIGATION
========================================================= */

.enterprise-nav {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-left: auto;
}

.enterprise-nav a {
  position: relative;

  color: #344054 !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: 0.25s;
}

.enterprise-nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  border-radius: 20px;

  background: var(--enterprise-blue);

  transition: width 0.25s ease;
}

.enterprise-nav a:hover {
  color: var(--enterprise-blue) !important;
}

.enterprise-nav a:hover::after {
  width: 100%;
}

/* Header CTA */

.enterprise-header-cta {
  min-height: 42px;

  padding: 0 18px;

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  color: white !important;

  background: linear-gradient(
    135deg,
    var(--enterprise-blue),
    var(--enterprise-indigo)
  ) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.18);
}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.enterprise-mobile-toggle {
  display: none;

  width: 42px;

  height: 42px;

  margin-left: auto;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 5px;

  border: 1px solid var(--enterprise-border);

  border-radius: 8px;

  background: white;

  cursor: pointer;
}

.enterprise-mobile-toggle span {
  width: 18px;

  height: 2px;

  background: var(--enterprise-navy);
}

/* =========================================================
   MOBILE NAV
========================================================= */

.enterprise-mobile-nav {
  display: none;

  position: fixed;

  top: 76px;

  left: 0;

  z-index: 999998;

  width: 100%;

  background: white;

  border-bottom: 1px solid var(--enterprise-border);

  box-shadow: 0 15px 35px rgba(7, 20, 92, 0.1);
}

.enterprise-mobile-nav.active {
  display: flex;

  flex-direction: column;
}

.enterprise-mobile-nav a {
  padding: 15px 24px;

  color: var(--enterprise-navy) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  border-bottom: 1px solid #eef1f6;
}

/* =========================================================
   COMMON
========================================================= */

.enterprise-section {
  padding: 100px 0;
}

.enterprise-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 17px;

  color: var(--enterprise-blue) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660 !important;

  letter-spacing: 1.8px;

  line-height: 1.4;

  text-transform: uppercase;
}

.enterprise-eyebrow::before {
  content: "";

  width: 24px;

  height: 2px;

  flex-shrink: 0;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    var(--enterprise-blue),
    var(--enterprise-cyan)
  );
}

.enterprise-section-heading {
  max-width: 770px;

  margin: 0 auto 55px;

  text-align: center;
}

.enterprise-section-heading h2,
.enterprise-two-column h2 {
  margin: 0 0 18px;

  color: var(--enterprise-navy) !important;

  font-size: clamp(34px, 4vw, 49px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.12 !important;

  font-weight: 660 !important;

  letter-spacing: -1.6px;
}

.enterprise-section-heading h2 span,
.enterprise-two-column h2 span {
  color: var(--enterprise-blue) !important;
}

.enterprise-section-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: var(--enterprise-muted) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.75 !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.enterprise-btn {
  min-height: 52px;

  padding: 0 22px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  border: 0;

  border-radius: 8px;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 700 !important;

  text-decoration: none !important;

  cursor: pointer;

  transition: 0.25s ease;
}

.enterprise-btn-primary {
  color: white !important;

  background: linear-gradient(
    135deg,
    var(--enterprise-blue),
    var(--enterprise-indigo)
  ) !important;

  box-shadow: 0 12px 28px rgba(37, 99, 255, 0.2);
}

.enterprise-btn-primary:hover {
  color: white !important;

  transform: translateY(-2px);

  box-shadow: 0 16px 35px rgba(37, 99, 255, 0.27);
}

.enterprise-btn-outline {
  color: var(--enterprise-navy) !important;

  background: white !important;

  border: 1px solid #d0d5dd !important;
}

.enterprise-btn-outline:hover {
  color: var(--enterprise-blue) !important;

  border-color: var(--enterprise-blue) !important;
}

/* =========================================================
   HERO
========================================================= */

.enterprise-hero {
  position: relative;

  min-height: 720px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 95px 0 105px;

  background:
    radial-gradient(
      circle at 77% 38%,
      rgba(82, 102, 232, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 68% 72%,
      rgba(27, 184, 212, 0.08),
      transparent 28%
    ),
    linear-gradient(135deg, #ffffff, #f4f7ff);
}

.enterprise-hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.enterprise-hero-content {
  max-width: 650px;
}

.enterprise-hero h1 {
  margin: 0 0 24px;

  color: var(--enterprise-navy) !important;

  font-size: clamp(47px, 5vw, 69px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.05 !important;

  letter-spacing: -3px;

  font-weight: 660 !important;
}

.enterprise-hero h1 span {
  background: linear-gradient(
    90deg,
    var(--enterprise-blue),
    var(--enterprise-indigo)
  );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent !important;
}

.enterprise-hero-content > p {
  max-width: 620px;

  margin: 0 0 32px;

  color: var(--enterprise-muted) !important;

  font-size: 17px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.75 !important;
}

.enterprise-hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.enterprise-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px 24px;
}

.enterprise-trust span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--enterprise-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-trust i {
  color: var(--enterprise-blue);
}

/* =========================================================
   HERO VISUAL
========================================================= */

.enterprise-hero-visual {
  position: relative;

  min-height: 540px;
}

.enterprise-grid-background {
  position: absolute;

  inset: 10px;

  opacity: 0.55;

  background-image:
    linear-gradient(rgba(37, 99, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.045) 1px, transparent 1px);

  background-size: 30px 30px;

  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);

  mask-image: radial-gradient(circle, black, transparent 70%);
}

/* Platform Core */

.enterprise-platform {
  position: absolute;

  left: 50%;

  top: 50%;

  z-index: 10;

  width: 220px;

  height: 220px;

  transform: translate(-50%, -50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 28px;

  color: white;

  background: linear-gradient(145deg, #07145c, #153587);

  border: 7px solid rgba(255, 255, 255, 0.85);

  box-shadow: 0 25px 70px rgba(7, 20, 92, 0.25);
}

.enterprise-platform-icon {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 10px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--enterprise-blue),
    var(--enterprise-indigo)
  );

  color: white;

  font-size: 21px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-platform small {
  color: rgba(255, 255, 255, 0.48);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;

  letter-spacing: 1.4px;
}

.enterprise-platform strong {
  margin: 5px 0;

  color: white;

  font-size: 18px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-platform span {
  color: rgba(255, 255, 255, 0.58);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* System Cards */

.enterprise-system-card {
  position: absolute;

  z-index: 12;

  min-width: 170px;

  padding: 13px 14px;

  display: flex;

  align-items: center;

  gap: 11px;

  border: 1px solid var(--enterprise-border);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 18px 42px rgba(7, 20, 92, 0.1);

  animation: enterpriseFloat 5s ease-in-out infinite;
}

.enterprise-system-icon {
  width: 39px;

  height: 39px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--enterprise-blue);

  background: #edf2ff;
}

.enterprise-system-card small {
  display: block;

  color: #98a2b3;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;

  letter-spacing: 1px;
}

.enterprise-system-card strong {
  color: var(--enterprise-navy);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.system-crm {
  top: 55px;

  left: 0;
}

.system-erp {
  top: 70px;

  right: 0;

  animation-delay: 0.7s;
}

.system-workflow {
  left: -5px;

  bottom: 95px;

  animation-delay: 1.4s;
}

.system-data {
  right: -5px;

  bottom: 105px;

  animation-delay: 2s;
}

@keyframes enterpriseFloat {
  50% {
    transform: translateY(-8px);
  }
}

/* Connector lines */

.enterprise-link {
  position: absolute;

  z-index: 4;

  height: 1px;

  width: 185px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(12, 12, 12, 0.35),
    transparent
  );
}

.enterprise-link-one {
  top: 170px;

  left: 135px;

  transform: rotate(24deg);
}

.enterprise-link-two {
  top: 180px;

  right: 125px;

  transform: rotate(-24deg);
}

.enterprise-link-three {
  bottom: 165px;

  left: 135px;

  transform: rotate(-24deg);
}

.enterprise-link-four {
  bottom: 175px;

  right: 125px;

  transform: rotate(24deg);
}

/* Status */

.enterprise-status {
  position: absolute;

  left: 50%;

  bottom: 10px;

  z-index: 15;

  min-width: 250px;

  padding: 12px 14px;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 10px;

  border: 1px solid var(--enterprise-border);

  border-radius: 12px;

  background: white;

  box-shadow: 0 16px 35px rgba(7, 20, 92, 0.1);
}

.enterprise-status-dot {
  width: 9px;

  height: 9px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #12b76a;

  box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.1);
}

.enterprise-status div {
  flex: 1;
}

.enterprise-status small {
  display: block;

  color: #98a2b3;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  letter-spacing: 1px;
}

.enterprise-status strong {
  color: var(--enterprise-navy);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-status > i {
  color: #12b76a;
}

/* =========================================================
   OVERVIEW
========================================================= */

.enterprise-overview {
  background: white;
}

.enterprise-two-column {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 85px;
}

.enterprise-overview-copy p {
  margin: 0 0 18px;

  color: var(--enterprise-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.8;
}

/* =========================================================
   CAPABILITIES
========================================================= */

.enterprise-capabilities {
  background: var(--enterprise-bg);
}

.enterprise-capability-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.enterprise-card {
  min-height: 250px;

  padding: 27px;

  border: 1px solid var(--enterprise-border);

  border-radius: 14px;

  background: white;

  transition: 0.3s;
}

.enterprise-card:hover {
  transform: translateY(-5px);

  border-color: #c5d2ff;

  box-shadow: var(--enterprise-shadow);
}

.enterprise-card-icon {
  width: 50px;

  height: 50px;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--enterprise-blue);

  background: linear-gradient(135deg, #edf2ff, #eefbff);
}

.enterprise-card h3 {
  margin: 0 0 11px;

  color: var(--enterprise-navy);

  font-size: 16px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-card p {
  margin: 0;

  color: var(--enterprise-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.7;
}

/* =========================================================
   SOLUTIONS
========================================================= */

.enterprise-solutions {
  background: white;
}

.enterprise-solution-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.enterprise-solution-card {
  position: relative;

  min-height: 245px;

  padding: 30px;

  border: 1px solid var(--enterprise-border);

  border-radius: 14px;

  background: white;

  transition: 0.3s;
}

.enterprise-solution-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--enterprise-shadow);
}

.enterprise-number {
  position: absolute;

  top: 12px;

  right: 18px;

  color: #e3e9fa;

  font-size: 35px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;
}

.enterprise-solution-card > i {
  display: block;

  margin-bottom: 22px;

  color: var(--enterprise-blue);

  font-size: 23px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-solution-card h3 {
  color: var(--enterprise-navy);

  font-size: 17px;
}

.enterprise-solution-card p {
  color: var(--enterprise-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   ARCHITECTURE
========================================================= */

.enterprise-architecture {
  background: var(--enterprise-bg);
}

.enterprise-architecture-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  padding: 55px;

  border-radius: 20px;

  color: white;

  background: linear-gradient(135deg, #07145c, #122a79);
}

.enterprise-architecture-content h2 {
  margin: 0 0 18px;

  color: white;

  font-size: clamp(32px, 4vw, 45px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.13;

  font-weight: 660;
}

.enterprise-architecture-content h2 span {
  color: #8298ff;
}

.enterprise-architecture-content p {
  color: rgba(255, 255, 255, 0.64);

  line-height: 1.7;
}

.enterprise-architecture-box .enterprise-eyebrow {
  color: #8298ff !important;
}

/* Architecture stack */

.enterprise-layer-stack {
  padding: 20px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);
}

.enterprise-layer {
  min-height: 65px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 12px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.04);
}

.enterprise-layer > span {
  width: 31px;

  height: 31px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  color: white;

  background: var(--enterprise-blue);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;
}

.enterprise-layer > i {
  width: 24px;

  color: #8298ff;
}

.enterprise-layer strong {
  display: block;

  color: white;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-layer small {
  display: block;

  margin-top: 3px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-layer-arrow {
  height: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgba(255, 255, 255, 0.24);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   INTEGRATIONS
========================================================= */

.enterprise-integrations {
  background: white;
}

.enterprise-integration-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  align-items: center;
}

.enterprise-integration-grid h2 {
  color: var(--enterprise-navy);

  font-size: clamp(32px, 4vw, 45px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;

  line-height: 1.13;
}

.enterprise-integration-grid h2 span {
  color: var(--enterprise-blue);
}

.enterprise-integration-grid p {
  color: var(--enterprise-muted);

  line-height: 1.7;
}

.enterprise-integration-tags {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 11px;
}

.enterprise-integration-tags span {
  min-height: 50px;

  padding: 0 14px;

  display: flex;

  align-items: center;

  gap: 10px;

  border: 1px solid var(--enterprise-border);

  border-radius: 9px;

  color: var(--enterprise-navy);

  background: var(--enterprise-bg);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.enterprise-integration-tags i {
  width: 20px;

  color: var(--enterprise-blue);
}

/* =========================================================
   VALUE
========================================================= */

.enterprise-value {
  background: var(--enterprise-bg);
}

.enterprise-value-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 55px;

  padding: 55px;

  border-radius: 18px;

  background: white;

  border: 1px solid var(--enterprise-border);

  box-shadow: 0 15px 40px rgba(7, 20, 92, 0.05);
}

.enterprise-value-box h2 {
  color: var(--enterprise-navy);

  font-size: clamp(32px, 4vw, 45px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;

  line-height: 1.13;
}

.enterprise-value-box h2 span {
  color: var(--enterprise-blue);
}

.enterprise-value-box p {
  color: var(--enterprise-muted);

  line-height: 1.7;
}

.enterprise-value-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  align-content: center;
}

.enterprise-value-grid > div {
  min-height: 52px;

  padding: 0 14px;

  display: flex;

  align-items: center;

  gap: 10px;

  border: 1px solid var(--enterprise-border);

  border-radius: 8px;

  color: var(--enterprise-navy);

  background: #f8faff;

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.enterprise-value-grid i {
  color: var(--enterprise-blue);
}

/* =========================================================
   PROCESS
========================================================= */

.enterprise-process {
  background: white;
}

.enterprise-process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.enterprise-process-step {
  position: relative;

  padding: 30px;

  text-align: center;

  border: 1px solid var(--enterprise-border);

  border-radius: 14px;

  background: white;
}

.enterprise-process-step > span {
  position: absolute;

  right: 17px;

  top: 13px;

  color: #e3e9fa;

  font-weight: 660;
}

.enterprise-process-icon {
  width: 52px;

  height: 52px;

  margin: 0 auto 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--enterprise-blue);

  background: #edf2ff;
}

.enterprise-process-step h3 {
  color: var(--enterprise-navy);

  font-size: 17px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-process-step p {
  color: var(--enterprise-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   UAE
========================================================= */

.enterprise-uae {
  background: var(--enterprise-bg);
}

.enterprise-uae-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 55px;

  align-items: center;

  padding: 55px;

  border-radius: 18px;

  color: white;

  background: linear-gradient(135deg, #07145c, #17337e);
}

.enterprise-uae-box h2 {
  color: white;

  font-size: clamp(32px, 4vw, 45px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;

  line-height: 1.13;
}

.enterprise-uae-box h2 span {
  color: #8298ff;
}

.enterprise-uae-box p {
  color: rgba(255, 255, 255, 0.62);

  line-height: 1.7;
}

.enterprise-uae-box .enterprise-eyebrow {
  color: #8298ff !important;
}

.enterprise-location-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;
}

.enterprise-location-grid > div {
  min-height: 145px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 11px;

  background: rgba(255, 255, 255, 0.05);
}

.enterprise-location-grid i {
  margin-bottom: 13px;

  color: #8298ff;
}

.enterprise-location-grid strong {
  color: white;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-location-grid span {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.5;
}

/* =========================================================
   CTA
========================================================= */

.enterprise-cta {
  padding: 75px 0;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(82, 102, 232, 0.22),
      transparent 30%
    ),
    var(--enterprise-dark);
}

.enterprise-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.enterprise-cta h2 {
  margin: 0 0 14px;

  color: white;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: clamp(34px, 4vw, 47px);

  line-height: 1.12;

  font-weight: 660;
}

.enterprise-cta h2 span {
  color: #8298ff;
}

.enterprise-cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);
}

.enterprise-cta .enterprise-eyebrow {
  color: #8298ff !important;
}

.enterprise-btn-white {
  flex-shrink: 0;

  color: var(--enterprise-navy) !important;

  background: white !important;
}

/* =========================================================
   CONTACT
========================================================= */

.enterprise-contact {
  background: var(--enterprise-bg);
}

.enterprise-contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;
}

.enterprise-contact-content h2 {
  margin: 0 0 20px;

  color: var(--enterprise-navy);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: clamp(34px, 4vw, 49px);

  line-height: 1.12;

  font-weight: 660;
}

.enterprise-contact-content h2 span {
  color: var(--enterprise-blue);
}

.enterprise-contact-content > p {
  color: var(--enterprise-muted);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 14px;

  line-height: 1.75;
}

.enterprise-contact-details {
  margin-top: 28px;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.enterprise-contact-details a {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--enterprise-navy) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.enterprise-contact-details i {
  width: 38px;

  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  color: var(--enterprise-blue);

  background: #eaf0ff;
}

/* Form */

.enterprise-form-wrap {
  padding: 35px;

  border: 1px solid var(--enterprise-border);

  border-radius: 16px;

  background: white;

  box-shadow: var(--enterprise-shadow);
}

.enterprise-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.enterprise-form-group {
  margin-bottom: 18px;
}

.enterprise-form-group label {
  display: block;

  margin-bottom: 7px;

  color: var(--enterprise-navy);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.enterprise-form-group input,
.enterprise-form-group select,
.enterprise-form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #d9dfeb;

  border-radius: 7px;

  outline: none;

  color: var(--enterprise-text);

  background: white;

  font-family: inherit;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-form-group textarea {
  resize: vertical;
}

.enterprise-form-group input:focus,
.enterprise-form-group select:focus,
.enterprise-form-group textarea:focus {
  border-color: var(--enterprise-blue);

  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.08);
}

.enterprise-form-message {
  margin-top: 12px;

  color: var(--enterprise-blue);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   FOOTER
========================================================= */

.enterprise-footer {
  padding: 65px 0 24px;

  color: white;

  background: var(--enterprise-dark);
}

.enterprise-footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 45px;

  padding-bottom: 45px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.enterprise-footer-logo img {
  display: block;

  width: auto;

  height: 49px;

  margin-bottom: 18px;

  filter: brightness(0) invert(1);
}

.enterprise-footer p {
  max-width: 280px;

  margin: 0;

  color: rgba(255, 255, 255, 0.54);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.7;
}

.enterprise-footer h4 {
  margin: 0 0 17px;

  color: white !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.enterprise-footer a {
  display: block;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.57) !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.enterprise-footer a:hover {
  color: white !important;
}

.enterprise-footer-bottom {
  padding-top: 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  color: rgba(255, 255, 255, 0.42);

  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   SCROLL TOP
========================================================= */

.enterprise-scroll-top {
  position: fixed;

  right: 24px;

  bottom: 24px;

  z-index: 99999;

  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 50%;

  color: white;

  background: linear-gradient(
    135deg,
    var(--enterprise-blue),
    var(--enterprise-indigo)
  );

  box-shadow: 0 10px 25px rgba(37, 99, 255, 0.28);

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: 0.25s;
}

.enterprise-scroll-top.visible {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1100px) {
  .enterprise-nav {
    gap: 14px;
  }

  .enterprise-nav a {
    font-size: 15px !important;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  }

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

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {
  .enterprise-nav,
  .enterprise-header-cta {
    display: none !important;
  }

  .enterprise-mobile-toggle {
    display: flex;
  }

  .enterprise-hero-grid,
  .enterprise-two-column,
  .enterprise-architecture-box,
  .enterprise-integration-grid,
  .enterprise-value-box,
  .enterprise-uae-box,
  .enterprise-contact-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-hero-visual {
    min-height: 540px;
  }

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

  .enterprise-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

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

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {
  .enterprise-page .container {
    width: calc(100% - 32px);
  }

  .enterprise-section {
    padding: 70px 0;
  }

  .enterprise-hero {
    min-height: auto;

    padding: 60px 0 70px;
  }

  .enterprise-hero-grid {
    gap: 40px;
  }

  .enterprise-hero h1 {
    font-size: 40px !important;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

    letter-spacing: -1.8px;
  }

  .enterprise-hero-content > p {
    font-size: 15px !important;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  }

  .enterprise-hero-actions {
    flex-direction: column;
  }

  .enterprise-hero-actions .enterprise-btn {
    width: 100%;
  }

  .enterprise-trust {
    flex-direction: column;

    gap: 10px;
  }

  .enterprise-hero-visual {
    min-height: 470px;

    margin: -20px -40px;

    transform: scale(0.82);
  }

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

  .enterprise-architecture-box,
  .enterprise-value-box,
  .enterprise-uae-box {
    padding: 30px 22px;
  }

  .enterprise-integration-tags,
  .enterprise-value-grid {
    grid-template-columns: 1fr;
  }

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

  .enterprise-location-grid > div {
    min-height: 110px;
  }

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

  .enterprise-form-wrap {
    padding: 24px;
  }

  .enterprise-contact-form .enterprise-btn {
    width: 100%;
  }

  .enterprise-footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 35px 25px;
  }

  .enterprise-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .enterprise-footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }
}
