:root {
  --primary: #b9a6ff;
  /* --primary: #1143F8; */
  --primary-dark: #3c56ff;
  /* --primary-dark: #0D089E; */
  --primary-light: #3a67fa;
  --primary-pale: #EEF2FF;
  --primary-ultra: #f5f7ff;
  --accent: #00D4FF;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --gray-50: #f9fafb;
  --gray-100: #f0f2fb;
  --gray-200: #dde3f8;
  --gray-400: #9aa3c2;
  --gray-600: #4b5572;
  --gray-800: #1a1d2e;
  --text: #0d1022;
  --text-muted: #5b6480;
  --border: #e4e8f8;
  --shadow-sm: 0 2px 12px rgba(17, 67, 248, 0.07);
  --shadow: 0 6px 28px rgba(17, 67, 248, 0.11);
  --shadow-lg: 0 20px 60px rgba(17, 67, 248, 0.14);
  --shadow-xl: 0 32px 80px rgba(17, 67, 248, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-h: 'Creato Display', 'Poppins', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 84px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

p {
  line-height: 1.72;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  transition: var(--trans);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.sc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-family: var(--font-h);
}

.sc-label .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.sc-title {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  font-family: var(--font-h);
  letter-spacing: -0.02em;
}

.sc-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.72;
}

.sc-subtitle.left {
  margin: 0;
}

.gradient-text {
  background: linear-gradient(-150deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-sc-primary {
  background: var(--primary);
  color: var(--white);
  /* border: 2px solid var(--primary); */
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sc-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: var(--primary-dark); */
  background: linear-gradient(-150deg, var(--primary), var(--primary-dark));
  /* opacity: 0; */
  transition: var(--trans);
}

.btn-sc-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(17, 67, 248, .35);
}

.btn-sc-primary:hover::after {
  opacity: 1;
}

.btn-sc-primary>* {
  position: relative;
  z-index: 1;
}

.btn-sc-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sc-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sc-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid rgba(255, 255, 255, .3);
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sc-white:hover {
  background: var(--primary-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}

.btn-sc-ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .3);
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-sc-ghost:hover {
  background: rgba(255, 255, 255, .22);
  color: var(--white);
  transform: translateY(-2px);
}

.sc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--trans);
  padding: 0;
  min-height: 84px;
}

.sc-navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(17, 67, 248, .08);
  background: rgba(255, 255, 255, .98);
}

.sc-navbar .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand-sc {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand-sc img{
  width: 100px;
}
.brand-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(17, 67, 248, .3);
}

.brand-wordmark {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 3rem;
  color: var(--text);
  line-height: 1.1;
}

.brand-wordmark small {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .06em;
  /* text-transform: uppercase; */
}

.nav-link-sc {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: .88rem;
  color: var(--gray-600) !important;
  padding: 8px 13px !important;
  border-radius: 8px;
  transition: var(--trans);
}

.nav-link-sc:hover,
.nav-link-sc.active {
  color: var(--primary) !important;
  background: var(--primary-pale);
}

.sc-navbar .navbar-toggler {
  border: none !important;
  padding: 6px !important;
  background: var(--primary-pale) !important;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.sc-navbar .navbar-toggler:focus {
  box-shadow: none !important;
}

.toggler-bar {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans);
}

.sc-navbar .navbar-collapse {
  flex-grow: 0;
}

.sc-navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.sc-navbar .dropdown-item {
  font-family: var(--font-h);
  font-size: .86rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 10px;
  padding: 10px 14px;
}

.sc-navbar .dropdown-item:hover,
.sc-navbar .dropdown-item:focus {
  background: var(--primary-pale);
  color: var(--primary);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: -10px;
  left: calc(100% + 8px);
  margin-top: 0;
  display: none;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>.dropdown-toggle::after {
  float: right;
  margin-top: 8px;
  transform: rotate(-90deg);
}

.hero {
  min-height: calc(100vh - 84px);
  padding: 20px 0 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f7ff 0%, #fff 55%, #eef2ff 100%);
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .35;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(17, 67, 248, .07) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hero-bg-glow2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 8, 158, .05) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
  animation: slideDown .6s var(--ease) both;
}

.hero-badge .hb-dot {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .65rem;
}

.hero-badge span {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  animation: slideUp .7s var(--ease) .1s both;
  max-width: 690px;
}

.hero-title .hl {
  background: linear-gradient(-150deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 580px;
  margin-bottom: 34px;
  animation: slideUp .7s var(--ease) .2s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: slideUp .7s var(--ease) .3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  animation: fadeInAnim .8s var(--ease) .5s both;
}

.trust-avatars {
  display: flex;
}

.trust-av {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .62rem;
  font-weight: 700;
  margin-right: -10px;
  flex-shrink: 0;
  font-family: var(--font-h);
}

.hero-trust p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.hero-trust strong {
  color: var(--text);
  font-weight: 600;
}

.dash-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.dash-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-head-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.05rem;
}

.dash-head-txt {
  color: white;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
}

.dash-head-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
}

.dash-body {
  padding: 18px 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-chip {
  background: var(--primary-ultra);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
}

.stat-chip .sv {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-chip .sl {
  font-size: .67rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ch-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.ch-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: white;
  flex-shrink: 0;
}

.ch-icon.bot {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.ch-icon.wa {
  background: #25D366;
}

.ch-icon.rcs {
  background: #00BCD4;
}

.ch-icon.ivr {
  background: #FF6B35;
}

.ch-icon.email {
  background: #8B5CF6;
}

.ch-name {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .78rem;
  flex: 1;
  color: var(--text);
}

.ch-bar {
  flex: 1;
  height: 5px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.ch-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0;
  transition: width 1.2s ease;
}

.ch-pct {
  font-size: .7rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 30px;
  text-align: right;
  font-family: var(--font-h);
}

.float-notif {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 9px 13px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatAnim 3s ease-in-out infinite alternate;
  white-space: nowrap;
}

.fn1 {
  top: -18px;
  right: -60px;
}

.fn2 {
  bottom: -30px;
  left: -90px;
  animation-delay: 1s;
}

.fn-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: white;
}

.fn-txt {
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-h);
  color: var(--text);
}

.fn-sub {
  font-size: .62rem;
  color: var(--text-muted);
}

.page-hero {
  padding: 88px 0 66px;
  background: linear-gradient(160deg, var(--primary-ultra), var(--white));
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17, 67, 248, .06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.ph-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  max-width: 760px;
}

.ph-sub {
  font-size: 1.02rem;
  max-width: 650px;
  color: var(--text-muted);
}

.breadcrumb-sc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .82rem;
  margin-bottom: 16px;
}

.breadcrumb-sc a {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-sc span {
  color: var(--gray-400);
}

.trusted {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trusted-lbl {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.logos-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-slider {
  display: flex;
  gap: 32px;
  animation: scrollLogos 22s linear infinite;
  width: max-content;
}

.logos-slider:hover {
  animation-play-state: paused;
}

.logo-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--trans);
  min-height: 48px;
}

.logo-chip:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
}

.logo-chip i {
  color: var(--primary);
  font-size: 1.1rem;
}

.logo-chip span {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-600);
}

.stats-band {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  top: -250px;
  right: -150px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.s-val {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.s-lbl {
  font-size: .86rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.section-pad,
.services,
.why,
.how,
.testimonials,
.contact-wrap,
.about-wrap {
  padding: 96px 0;
  scroll-margin-top: 110px;
}

.services {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(17, 67, 248, .04) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-pale), transparent);
  opacity: 0;
  transition: var(--trans);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 67, 248, .2);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card-inner {
  position: relative;
  z-index: 1;
}

.svc-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-pale);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--trans);
}

.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 22px rgba(17, 67, 248, .3);
}

.svc-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 11px;
  font-family: var(--font-h);
}

.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 9px;
  font-family: var(--font-h);
  min-height: 48px;
}

.svc-card p {
  font-size: .86rem;
  line-height: 1.65;
  margin-bottom: 16px;
  min-height: 88px;
}

.svc-link {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.svc-card:hover .svc-link {
  gap: 10px;
}

.why {
  background: var(--white);
}

.why-main {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.why-main::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.why-main::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.why-main-inner {
  position: relative;
  z-index: 1;
}

.why-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
}

.why-pill i {
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
}

.why-pill span {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: .83rem;
  color: white;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usp-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--trans);
  background: var(--white);
}

.usp-item:hover {
  border-color: rgba(17, 67, 248, .2);
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.usp-ic {
  width: 46px;
  height: 46px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
}

.usp-txt h4 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-h);
}

.usp-txt p {
  font-size: .84rem;
  margin: 0;
  line-height: 1.6;
}

.how {
  background: linear-gradient(180deg, var(--primary-ultra) 0%, var(--white) 100%);
}

.step-card {
  text-align: center;
  padding: 0 12px;
  height: 100%;
}

.step-num-wrap {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  transition: var(--trans);
}

.step-num-wrap .sn {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-200);
  transition: var(--trans);
}

.step-num-wrap .si {
  display: none;
  font-size: 1.5rem;
  color: white;
}

.step-card:hover .step-num-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(17, 67, 248, .3);
  transform: scale(1.05);
}

.step-card:hover .sn {
  display: none;
}

.step-card:hover .si {
  display: block;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 9px;
  font-family: var(--font-h);
}

.step-card p {
  font-size: .86rem;
  line-height: 1.65;
}

.step-card ul li {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.6;
  text-align: left;
}

.step-card ul i {
  color: var(--primary);
}

.feature-card,
.info-card,
.blog-card,
.contact-card,
.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: var(--trans);
}

.feature-card:hover,
.info-card:hover,
.blog-card:hover,
.contact-card:hover,
.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 67, 248, .18);
}

.feature-icon,
.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-card h3,
.info-card h3,
.contact-card h3,
.timeline-card h3,
.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-card p,
.info-card p,
.blog-card p,
.contact-card p,
.timeline-card p {
  font-size: .88rem;
  margin-bottom: 0;
}

.blog-card .blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-card a {
  color: var(--primary);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .84rem;
}

.testimonials {
  background: var(--white);
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  height: 100%;
  position: relative;
  transition: var(--trans);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 67, 248, .15);
}

.testi-card::before {
  content: '\201C';
  font-size: 4.5rem;
  color: var(--primary-pale);
  font-family: Georgia, serif;
  position: absolute;
  top: 8px;
  right: 18px;
  line-height: 1;
}

.testi-stars {
  color: #FBBF24;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: .88rem;
  line-height: 1.72;
  margin-bottom: 20px;
  color: var(--gray-600);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-h);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 2px;
}

.testi-role {
  font-size: .76rem;
  color: var(--text-muted);
}

.testi-company {
  color: var(--primary);
  font-weight: 600;
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  box-shadow: none;
}

.accordion-button {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  padding: 20px 22px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-ultra);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  padding: 0 22px 22px;
}

.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #2563EB 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -350px;
  right: -200px;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .07);
  bottom: -200px;
  left: -100px;
}

.cta-grid {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(-150deg, var(--primary), var(--primary-dark)); */
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-sc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  color: white;
  line-height: 1.17;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.02rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 500;
}

.cta-perk i {
  color: var(--accent);
  font-size: .9rem;
}

.about-highlight {
  background: linear-gradient(135deg, var(--primary-pale), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px;
}

.about-visual-box {
  min-height: 420px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(17, 67, 248, .08), rgba(0, 212, 255, .09));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-visual-box::before,
.about-visual-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(17, 67, 248, .08);
}

.about-visual-box::before {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -40px;
}

.about-visual-box::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -30px;
}

.about-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}

.about-badge.top {
  top: 26px;
  left: 26px;
}

.about-badge.bottom {
  bottom: 26px;
  right: 26px;
}

.about-badge strong {
  display: block;
  font-family: var(--font-h);
  color: var(--primary);
  font-size: 1.2rem;
}

.about-badge span {
  font-size: .8rem;
  color: var(--text-muted);
}

.hero-orb-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  box-shadow: var(--shadow-xl);
}

.contact-wrap {
  background: linear-gradient(180deg, var(--primary-ultra), #fff);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 38px;
  height: 100%;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.ci-inner {
  position: relative;
  z-index: 1;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .14);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: white;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .2);
}

.ci-label {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ci-val {
  color: white;
  font-weight: 600;
  font-size: .9rem;
}

.form-group-sc {
  margin-bottom: 20px;
}

.form-label-sc {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
  display: block;
}

.form-control-sc,
.form-select-sc {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-family: var(--font-b);
  font-size: .9rem;
  color: var(--text);
  transition: var(--trans);
  background: var(--white);
  outline: none;
}

.form-control-sc:focus,
.form-select-sc:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(17, 67, 248, .08);
}

.sc-footer {
  background: var(--gray-800);
}

.footer-top {
  padding: 68px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.f-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.f-brand .brand-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.sc-footer .brand-wordmark {
  color: #fff;
}

.sc-footer .brand-wordmark small {
  color: rgba(255, 255, 255, .45);
}

.f-desc {
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.72;
  max-width: 280px;
}

.f-socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.f-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
  transition: var(--trans);
}

.f-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.f-heading {
  color: white;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.f-links a {
  color: rgba(255, 255, 255, .47);
  font-size: .86rem;
  transition: var(--trans);
}

.f-links a:hover {
  color: white;
  padding-left: 4px;
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .48);
  font-size: .84rem;
  margin-bottom: 9px;
}

.f-contact-item i {
  color: var(--primary);
  width: 14px;
}

.footer-bottom-bar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-bar p {
  color: rgba(255, 255, 255, .32);
  font-size: .8rem;
  margin: 0;
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  transition: var(--trans);
}

.footer-bottom-bar a:hover {
  color: white;
}

.f-bottom-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInAnim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 74px;
  }

  .sc-navbar {
    min-height: 74px;
  }

  .sc-navbar .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    margin-top: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .dropdown-submenu>.dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    display: none;
    border: none;
    box-shadow: none;
    padding-left: 12px;
    margin-top: 6px;
  }

  .dropdown-submenu>.dropdown-toggle::after {
    transform: none;
  }

  .hero {
    padding: 108px 0 60px;
    min-height: auto;
  }

  .hero-visual {
    margin-top: 44px;
  }

  .fn1,
  .fn2 {
    display: none;
  }

  .svc-card h3,
  .svc-card p {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .hero-ctas,
  .cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .f-bottom-links {
    justify-content: center;
  }

  .hero-trust {
    align-items: flex-start;
  }

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

  .contact-form-box {
    padding: 24px;
  }

  .contact-info-box {
    padding: 26px;
  }
}

@media (max-width: 575.98px) {
  .sc-title {
    font-size: 1.65rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-ctas .btn-sc-primary,
  .hero-ctas .btn-sc-outline,
  .cta-btns .btn-sc-white,
  .cta-btns .btn-sc-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* Expanded content blocks */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--trans);
}

.content-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.content-block h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.content-block p {
  font-size: .9rem;
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.check-list i {
  color: var(--primary);
  margin-top: 3px;
}

.metric-card {
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  height: 100%;
}

.metric-card strong {
  display: block;
  font-family: var(--font-h);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--text-muted);
  font-size: .9rem;
}

.dual-panel {
  background: linear-gradient(180deg, var(--white), var(--primary-ultra));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.mini-faq {
  display: grid;
  gap: 16px;
}

.mini-faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: var(--white);
}

.mini-faq-item h4 {
  font-size: .96rem;
  margin-bottom: 8px;
}


/* Service detail page enhancements */
.service-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-stat {
  background: linear-gradient(135deg, var(--primary-pale), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
}

.service-stat strong {
  display: block;
  font-family: var(--font-h);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1;
}

.service-stat span {
  color: var(--text-muted);
  font-size: .9rem;
}

.long-copy {
  font-size: .95rem;
  line-height: 1.85;
}

.icon-list {
  display: grid;
  gap: 14px;
}

.icon-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.icon-list i {
  color: var(--primary);
  margin-top: 4px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: 100%;
  position: relative;
}

.process-no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  margin-bottom: 14px;
}

.comparison-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.comparison-card h3 {
  margin-bottom: 14px;
}


/* Blog single page fixes */
.blog-article-wrap {
  padding-top: 24px;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-h);
}

.blog-inline-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.28;
}

@media (min-width: 992px) {
  .sc-navbar .navbar-toggler {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .sc-navbar .navbar-toggler {
    display: flex !important;
  }

  .blog-sidebar {
    position: static;
    top: auto;
  }
}