/* =========================================================
   CUBEON TECHNOLOGIES
   SALESFORCE UAE PAGE
========================================================= */

.sf-page {
  --sf-navy: #07145c;
  --sf-dark: #040a32;

  --sf-blue: #0176d3;
  --sf-blue-dark: #0b5cab;
  --sf-sky: #1b96ff;
  --sf-cyan: #04b9db;

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

  --sf-white: #ffffff;
  --sf-bg: #f7f9fd;
  --sf-bg-blue: #f3f8ff;

  --sf-border: #e2e8f2;

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

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

/* =========================================================
   RESET / STICKY SUPPORT
========================================================= */

html,
body {
  margin: 0;

  overflow-x: clip !important;
}

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

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

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

  max-width: 1200px;

  margin: 0 auto;
}

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

.sf-page .sf-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(--sf-border);

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

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

  backdrop-filter: blur(18px);
}

.sf-header-inner {
  position: relative;

  min-height: 76px;

  display: flex;

  align-items: center;

  gap: 27px;
}

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

.sf-logo img {
  display: block;

  width: auto;

  height: 59px;
}

.sf-nav {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-left: auto;
}

.sf-nav a {
  position: relative;

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

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: color 0.25s ease;
}

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

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  border-radius: 20px;

  background: var(--sf-blue);

  transition: width 0.25s ease;
}

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

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

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

  padding: 0 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 8px;

  color: white !important;

  background: linear-gradient(
    135deg,
    var(--sf-blue),
    var(--sf-blue-dark)
  ) !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 22px rgba(1, 118, 211, 0.18);
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.sf-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(--sf-border);

  border-radius: 8px;

  background: white;

  cursor: pointer;
}

.sf-mobile-toggle span {
  width: 18px;
  height: 2px;

  background: var(--sf-navy);

  transition: 0.25s;
}

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

.sf-mobile-nav {
  display: none;

  position: fixed;

  top: 76px;

  left: 0;

  width: 100%;

  z-index: 999998;

  background: #ffffff;

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

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

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

  flex-direction: column;
}

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

  color: var(--sf-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
========================================================= */

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

.sf-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 17px;

  color: var(--sf-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;
}

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

  width: 24px;
  height: 2px;

  flex-shrink: 0;

  border-radius: 20px;

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

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

  margin: 0 auto 55px;

  text-align: center;
}

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

  color: var(--sf-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;
}

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

.sf-section-heading p {
  margin: 0 auto;

  max-width: 650px;

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

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

  line-height: 1.75 !important;
}

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

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

  padding: 0 22px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  border-radius: 8px;

  border: 0;

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

  font-weight: 600 !important;

  line-height: 1;

  text-decoration: none !important;

  cursor: pointer;

  transition: 0.25s ease;
}

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

  background: linear-gradient(
    135deg,
    var(--sf-blue),
    var(--sf-blue-dark)
  ) !important;

  box-shadow: 0 12px 28px rgba(1, 118, 211, 0.22);
}

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

  transform: translateY(-2px);

  box-shadow: 0 16px 35px rgba(1, 118, 211, 0.27);
}

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

  background: white !important;

  border: 1px solid #d0d5dd !important;
}

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

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

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

.sf-hero {
  min-height: 720px;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 95px 0 105px;

  background:
    radial-gradient(
      circle at 79% 35%,
      rgba(1, 118, 211, 0.13),
      transparent 30%
    ),
    radial-gradient(circle at 68% 70%, rgba(4, 185, 219, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4f9ff);
}

.sf-hero::before {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  right: -220px;
  top: -220px;

  border-radius: 50%;

  border: 1px solid rgba(1, 118, 211, 0.08);
}

.sf-hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

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

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

  color: var(--sf-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;
}

.sf-hero h1 span {
  display: inline;

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

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent !important;
}

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

  margin: 0 0 32px;

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

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

  line-height: 1.75 !important;
}

.sf-hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.sf-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 15px 24px;
}

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

  align-items: center;

  gap: 7px;

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

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

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

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

.sf-hero-visual {
  position: relative;

  min-height: 540px;
}

.sf-grid-bg {
  position: absolute;

  inset: 10px;

  opacity: 0.55;

  background-image:
    linear-gradient(rgba(1, 118, 211, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 118, 211, 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%);
}

.sf-orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px dashed #040a32;

  border-radius: 50%;

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

.sf-orbit-one {
  width: 380px;
  height: 380px;
}

.sf-orbit-two {
  width: 490px;
  height: 490px;

  border-color: #040a32;
}

/* Core */

.sf-core {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 10;

  width: 210px;
  height: 210px;

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

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: white;

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

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

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

.sf-core-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 9px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  color: #ffffff;

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

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

.sf-core small {
  color: rgba(255, 255, 255, 0.5);

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

  letter-spacing: 1.5px;
}

.sf-core strong {
  margin: 4px 0;

  color: white;

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

  letter-spacing: 0.4px;
}

.sf-core span {
  color: rgba(255, 255, 255, 0.63);

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

/* Floating cards */

.sf-float-card {
  position: absolute;

  z-index: 12;

  min-width: 180px;

  padding: 13px 15px;

  display: flex;

  align-items: center;

  gap: 11px;

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

  border-radius: 12px;

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

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

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

.sf-float-icon {
  width: 39px;
  height: 39px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--sf-blue);

  background: #eaf5ff;
}

.sf-float-card small {
  display: block;

  margin-bottom: 2px;

  color: #98a2b3;

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

  font-weight: 660;

  letter-spacing: 1px;
}

.sf-float-card strong {
  display: block;

  color: var(--sf-navy);

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

.sf-sales-card {
  left: -5px;
  top: 75px;
}

.sf-service-card {
  right: -5px;
  top: 80px;

  animation-delay: 0.7s;
}

.sf-automation-card {
  left: -15px;
  bottom: 95px;

  animation-delay: 1.3s;
}

.sf-integration-card {
  right: -10px;
  bottom: 100px;

  animation-delay: 1.9s;
}

@keyframes sfFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

.sf-status-card {
  position: absolute;

  z-index: 14;

  left: 50%;
  bottom: 15px;

  min-width: 230px;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 14px;

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

  border-radius: 12px;

  background: white;

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

.sf-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);
}

.sf-status-card div {
  flex: 1;
}

.sf-status-card small {
  display: block;

  color: #98a2b3;

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

  letter-spacing: 1px;
}

.sf-status-card strong {
  display: block;

  color: var(--sf-navy);

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

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

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

.sf-overview {
  background: #ffffff;
}

.sf-two-column {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 85px;
}

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

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

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

  line-height: 1.8 !important;
}

/* =========================================================
   SERVICES
========================================================= */

.sf-services {
  background: var(--sf-bg);
}

.sf-service-grid {
  display: grid;

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

  gap: 18px;
}

.sf-service-card-item {
  min-height: 245px;

  padding: 27px;

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

  border-radius: 14px;

  background: white;

  transition: 0.3s ease;
}

.sf-service-card-item:hover {
  transform: translateY(-5px);

  border-color: #bddcff;

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

.sf-card-icon {
  width: 49px;
  height: 49px;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--sf-blue);

  background: linear-gradient(135deg, #eaf5ff, #edfcff);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 18px;
}

.sf-service-card-item h3 {
  margin: 0 0 11px;

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

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

  font-weight: 600 !important;
}

.sf-service-card-item p {
  margin: 0;

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

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

  line-height: 1.7 !important;
}

/* =========================================================
   CUSTOMER 360
========================================================= */

.sf-customer360 {
  background: #ffffff;
}

.sf-360-box {
  min-height: 530px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  padding: 55px;

  overflow: hidden;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(27, 150, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #06104d, #082d72);

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

.sf-360-content h2 {
  margin: 0 0 20px;

  color: white !important;

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

  line-height: 1.12 !important;

  font-weight: 660 !important;
}

.sf-360-content h2 span {
  color: #67d9f2 !important;
}

.sf-360-content p {
  color: rgba(255, 255, 255, 0.64) !important;

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

  line-height: 1.75 !important;
}

.sf-360-content .sf-eyebrow {
  color: #67d9f2 !important;
}

.sf-check-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 27px;
}

.sf-check-grid > div {
  display: flex;

  align-items: center;

  gap: 9px;

  padding: 11px 12px;

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

  border-radius: 8px;

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

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

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

.sf-check-grid i {
  color: #67d9f2;
}

/* 360 Visual */

.sf-360-visual {
  position: relative;

  min-height: 390px;
}

.sf-360-visual::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 320px;
  height: 320px;

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

  border: 1px dashed rgba(255, 255, 255, 0.18);

  border-radius: 50%;
}

.sf-360-center {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 5;

  width: 150px;
  height: 150px;

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

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: white;

  background: linear-gradient(145deg, #0176d3, #1b96ff);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.sf-360-center i {
  margin-bottom: 8px;

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

.sf-360-center strong {
  color: white;

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

.sf-360-center small {
  color: rgba(255, 255, 255, 0.65);

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

.sf-360-node {
  position: absolute;

  z-index: 6;

  width: 90px;
  height: 74px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 7px;

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

  border-radius: 12px;

  color: white;

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

  backdrop-filter: blur(8px);
}

.sf-360-node i {
  color: #67d9f2;
}

.sf-360-node span {
  color: rgba(255, 255, 255, 0.75);

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

  font-weight: 600;
}

.node-lead {
  top: 15px;
  left: 50%;

  transform: translateX(-50%);
}

.node-sales {
  left: 0;
  top: 110px;
}

.node-service {
  right: 0;
  top: 110px;
}

.node-data {
  left: 55px;
  bottom: 0;
}

.node-report {
  right: 55px;
  bottom: 0;
}

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

.sf-solutions {
  background: var(--sf-bg);
}

.sf-solution-grid {
  display: grid;

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

  gap: 20px;
}

.sf-solution-card {
  position: relative;

  min-height: 245px;

  padding: 30px;

  overflow: hidden;

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

  border-radius: 14px;

  background: white;

  transition: 0.3s ease;
}

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

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

.sf-number {
  position: absolute;

  right: 17px;
  top: 10px;

  color: #e3ebf7;

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

  font-weight: 660;
}

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

  margin-bottom: 22px;

  color: var(--sf-blue);

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

.sf-solution-card h3 {
  margin: 0 0 10px;

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

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

.sf-solution-card p {
  margin: 0;

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

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

  line-height: 1.65 !important;
}

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

.sf-integrations {
  background: white;
}

.sf-integration-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 60px;

  padding: 55px;

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

  border-radius: 18px;

  background: linear-gradient(135deg, #f9fbff, #f1f8ff);
}

.sf-integration-box h2 {
  margin: 0 0 17px;

  color: var(--sf-navy);

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

  line-height: 1.13;

  font-weight: 660;
}

.sf-integration-box h2 span {
  color: var(--sf-blue);
}

.sf-integration-box p {
  color: var(--sf-muted);

  line-height: 1.7;
}

.sf-integration-tags {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 11px;
}

.sf-integration-tags span {
  min-height: 49px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 0 14px;

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

  border-radius: 8px;

  color: var(--sf-navy);

  background: white;

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

  font-weight: 600;
}

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

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

/* =========================================================
   WHY
========================================================= */

.sf-why {
  background: var(--sf-bg);
}

.sf-why-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.sf-why-item {
  display: flex;

  gap: 18px;

  padding: 27px;

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

  border-radius: 14px;

  background: white;
}

.sf-why-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 11px;

  color: var(--sf-blue);

  background: #eaf5ff;
}

.sf-why-item h3 {
  margin: 2px 0 8px;

  color: var(--sf-navy);

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

.sf-why-item p {
  margin: 0;

  color: var(--sf-muted);

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

  line-height: 1.65;
}

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

.sf-process {
  background: white;
}

.sf-process-grid {
  display: grid;

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

  gap: 20px;
}

.sf-process-step {
  position: relative;

  padding: 30px;

  text-align: center;

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

  border-radius: 14px;

  background: white;
}

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

  right: 17px;
  top: 13px;

  color: #e3ebf7;

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

  font-weight: 660;
}

.sf-process-icon {
  width: 52px;
  height: 52px;

  margin: 0 auto 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--sf-blue);

  background: #eaf5ff;
}

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

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

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

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

  line-height: 1.65;
}

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

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

.sf-uae-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 55px;

  padding: 55px;

  border-radius: 18px;

  color: white;

  background: linear-gradient(135deg, #07145c, #063e81);
}

.sf-uae-box 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;
}

.sf-uae-box h2 span {
  color: #67d9f2;
}

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

  line-height: 1.7;
}

.sf-uae-box .sf-eyebrow {
  color: #67d9f2 !important;
}

.sf-location-grid {
  display: grid;

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

  gap: 12px;
}

.sf-location-grid > div {
  min-height: 150px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 20px;

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

  border-radius: 11px;

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

.sf-location-grid i {
  margin-bottom: 14px;

  color: #67d9f2;
}

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

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

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

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

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

  line-height: 1.5;
}

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

.sf-cta {
  padding: 75px 0;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(27, 150, 255, 0.2),
      transparent 30%
    ),
    var(--sf-dark);
}

.sf-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

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

  color: white;

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

  line-height: 1.12;

  font-weight: 660;
}

.sf-cta h2 span {
  color: #67d9f2;
}

.sf-cta p {
  margin: 0;

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

.sf-cta .sf-eyebrow {
  color: #67d9f2 !important;
}

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

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

  background: white !important;
}

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

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

.sf-contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;
}

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

  color: var(--sf-navy);

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

  line-height: 1.12;

  font-weight: 660;
}

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

.sf-contact-content > p {
  color: var(--sf-muted);

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

  line-height: 1.75;
}

.sf-contact-details {
  display: flex;

  flex-direction: column;

  gap: 14px;

  margin-top: 28px;
}

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

  align-items: center;

  gap: 11px;

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

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

  text-decoration: none !important;
}

.sf-contact-details i {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 9px;

  color: var(--sf-blue);

  background: #e7f3ff;
}

/* Form */

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

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

  border-radius: 16px;

  background: white;

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

.sf-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

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

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

  margin-bottom: 7px;

  color: var(--sf-navy);

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

  font-weight: 600;
}

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

  padding: 13px 14px;

  border: 1px solid #d9dfeb;

  border-radius: 7px;

  outline: none;

  color: var(--sf-text);

  background: white;

  font-family: inherit;

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

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

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

  box-shadow: 0 0 0 3px rgba(1, 118, 211, 0.08);
}

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

  color: var(--sf-blue);

  font-size: 13px;
}

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

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

  color: white;

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

.sf-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);
}

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

  width: auto;

  height: 60px;

  margin-bottom: 18px;

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

.sf-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;
}

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

  color: white !important;

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

.sf-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;
}

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

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

  display: flex;

  align-items: center;

  justify-content: space-between;

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

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

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

.sf-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(--sf-blue), var(--sf-cyan));

  box-shadow: 0 10px 25px rgba(1, 118, 211, 0.28);

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: 0.25s ease;
}

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

  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE - 1100
========================================================= */

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

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

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

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

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

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

  .sf-hero-grid,
  .sf-two-column,
  .sf-360-box,
  .sf-integration-box,
  .sf-uae-box,
  .sf-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sf-why-grid {
    grid-template-columns: 1fr;
  }

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

    align-items: flex-start;
  }

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

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

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

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

  .sf-hero {
    min-height: auto;

    padding: 60px 0 70px;
  }

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

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

    letter-spacing: -1.8px;
  }

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

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

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

  .sf-trust {
    flex-direction: column;

    gap: 10px;
  }

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

    margin: -20px -35px;

    transform: scale(0.82);
  }

  .sf-service-grid,
  .sf-solution-grid,
  .sf-process-grid {
    grid-template-columns: 1fr;
  }

  .sf-360-box {
    padding: 30px 22px;
  }

  .sf-check-grid {
    grid-template-columns: 1fr;
  }

  .sf-360-visual {
    min-height: 390px;
  }

  .sf-integration-box,
  .sf-uae-box {
    padding: 30px 22px;
  }

  .sf-integration-tags {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

    gap: 35px 25px;
  }

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

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

    align-items: flex-start;

    gap: 10px;
  }
}
