:root {
  --blue: #245BFF;
  --blue-h: #1a4ce0;
  --accent: #4F9FFF;
  --bg: #050816;
  --bg2: #080d20;
  --bg3: #0f152d;
  --border: rgba(255, 255, 255, 0.07);
  --text1: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --radius: 14px;
}

/* Custom Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--text3) var(--bg);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--bg3);
  border-radius: 10px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text1);
  overflow-x: hidden;
}

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

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: .75rem;
}

.section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-head {
  margin-bottom: 3rem;
}

.section-sub {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: .5rem auto 0;
}

.link-blue {
  color: var(--blue);
}

.btn-primary,
.btn-outline,
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, .4);
}

.btn-outline {
  background: transparent;
  color: var(--text1);
  border: 1px solid rgba(255, 255, 255, .15);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0 1rem 0;
  transition: all .3s;
}

.navbar.scrolled {
  background: rgba(8, 12, 20, .92);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.site-logo-img {
  height: 42px;
  width: auto;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 12px;
}

.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text1);
  display: block;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-tag {
  font-size: .65rem;
  color: var(--text2);
  display: block;
  letter-spacing: 0px;
  margin-top: 4px;
}

.mobile-menu-footer {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.btn-nav-cta {
  background: var(--blue);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-size: .95rem;
  margin-left: auto;
}

.btn-nav-cta:hover {
  background: var(--blue-h);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-close-btn {
  display: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text1);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-globe {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 65%;
  height: auto;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: pulseGlobe 5s ease-in-out infinite;
}

@keyframes pulseGlobe {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, .18);
  top: -100px;
  right: -100px;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(79, 159, 255, .1);
  bottom: 0;
  left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  align-items: center;
  flex: 1;
  padding: 2rem 0 1rem 0;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text1);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--blue);
  font-size: 1.1rem;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  padding: 0 10px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  position: relative;
  z-index: 1;
}

.trust-avatars img:first-child {
  margin-left: 0;
  z-index: 4;
}

.trust-avatars img:nth-child(2) {
  z-index: 3;
}

.trust-avatars img:nth-child(3) {
  z-index: 2;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.trust-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.trust-text {
  font-size: .85rem;
  color: var(--text3);
}

.laptop-wrap {
  position: relative;
  width: 140%;
  max-width: 1300px;
  margin-left: -25%;
}

.laptop-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(-20px 40px 60px rgba(0, 0, 0, 0.8));
  transform: scale(1.2);
}

/* FLOAT CARDS */
.float-card {
  position: absolute;
  background: linear-gradient(45deg, #000000, #00000057);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 5;
}

.float-card--horizontal {
  flex-direction: row;
  align-items: center;
  padding: 0.5rem 1.6rem;
  min-width: 240px;
  gap: 1.2rem;
}

.float-card--vertical {
  padding: 1.6rem 1.4rem;
  min-width: 160px;
  gap: 0.6rem;
}

.fc-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.float-card--tr {
  top: -2%;
  right: 15%;
  rotate: -1deg !important;
  animation: floatY 3s ease-in-out infinite;
}

.float-card--ml {
  top: 32%;
  left: 23%;
  animation: floatY 3.5s ease-in-out infinite reverse;
  rotate: 6.0deg !important;
}

.float-card--br {
  bottom: 23%;
  right: -6%;
  animation: floatY 4s ease-in-out infinite;
  rotate: 4deg !important;
}

@keyframes floatY {

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

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

.fc-top {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: #fff;
}

.fc-icon--blue {
  background: var(--blue);
  box-shadow: 0 0 20px rgba(36, 91, 255, .4);
}

.fc-icon--green {
  background: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, .4);
}

.fc-icon--yellow {
  background: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, .4);
}

.fc-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.fc-label {
  font-size: 1rem;
  color: var(--text2);
  margin-top: .1rem;
}

.fc-sparkline {
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30'%3E%3Cpolyline points='0,25 20,20 40,22 60,10 80,15 100,5' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left center/contain;
  margin-top: 6px;
}

/* HERO BOTTOM (CLIENTS & STATS) */
.hero-bottom-wrap {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-label {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--text3);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.clients-static-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  width: 100%;
}

.client-logo-rich {
  display: flex;
  align-items: center;
  gap: .6rem;
  opacity: .5;
  transition: all .3s;
}

.client-logo-rich:hover {
  opacity: 1;
}

.client-logo-rich i {
  font-size: 1.8rem;
  color: var(--text2);
}

.cl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.cl-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text2);
  letter-spacing: .5px;
}

.cl-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text3);
  font-weight: 600;
}

/* HERO STATS BOX */
.hero-stats-box {
  background: rgba(255, 255, 255, .015);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 1.5rem 1.5rem;
  width: 100%;
  backdrop-filter: blur(10px);
}

.hero-stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.stat-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  align-items: center;
  column-gap: 1rem;
  flex: 1;
  position: relative;
  padding-right: 1rem;
}

.stat-feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: rgba(255, 255, 255, .06);
}

.sf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.6rem;
  flex-shrink: 0;
  grid-area: icon;
}

.sf-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text1);
  margin-bottom: .15rem;
  grid-area: title;
  align-self: end;
}

.sf-desc {
  font-size: .72rem;
  color: var(--text3);
  line-height: 1.3;
  grid-area: desc;
  align-self: start;
}


/* INDUSTRIES COLLAGE */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.industry-wrapper {
  position: relative;
  height: 100%;
}

.industry-card {
  position: relative;
  height: 100%;
  background-color: var(--bg3);
  background-size: cover;
  background-position: center;
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: floatBox 6s ease-in-out infinite;
}

/* Bento Box Sizes */
.industry-wrapper:nth-child(1) {
  grid-area: 1 / 1 / 3 / 3;
}

.industry-wrapper:nth-child(1) .industry-card {
  animation-delay: 0s;
}

.industry-wrapper:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}

.industry-wrapper:nth-child(2) .industry-card {
  animation-delay: -1s;
}

.industry-wrapper:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}

.industry-wrapper:nth-child(3) .industry-card {
  animation-delay: -2s;
}

.industry-wrapper:nth-child(4) {
  grid-area: 2 / 3 / 4 / 4;
}

.industry-wrapper:nth-child(4) .industry-card {
  animation-delay: -3s;
}

.industry-wrapper:nth-child(5) {
  grid-area: 3 / 1 / 4 / 3;
}

.industry-wrapper:nth-child(5) .industry-card {
  animation-delay: -4s;
}

.industry-wrapper:nth-child(6) {
  grid-area: 2 / 4 / 4 / 5;
}

.industry-wrapper:nth-child(6) .industry-card {
  animation-delay: -5s;
}

@keyframes floatBox {

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

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

.industry-card:hover {
  border-color: rgba(37, 99, 235, .6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
  z-index: 10;
  transform: scale(1.02) translateY(-10px) !important;
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0) 0%, rgba(5, 8, 22, 0.95) 100%);
  z-index: 1;
}

.industry-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s;
}

.industry-card:hover .industry-icon {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(37, 99, 235, .5);
}

.industry-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* RESULTS */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.result-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 240px;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0) 0%, rgba(5, 8, 22, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.result-card:hover {
  border-color: rgba(37, 99, 235, .3);
  transform: translateY(-4px);
}

.result-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

.result-icon--blue {
  background: rgba(37, 99, 235, .1);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(37, 99, 235, .15);
}

.result-icon--green {
  background: rgba(16, 185, 129, .1);
  color: #6ee7b7;
  box-shadow: 0 0 20px rgba(16, 185, 129, .15);
}

.result-icon--yellow {
  background: rgba(245, 158, 11, .1);
  color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, .15);
}

.result-icon--purple {
  background: rgba(139, 92, 246, .1);
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(139, 92, 246, .15);
}

.rc-text {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.rc-text h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: #f8fafc;
}

.rc-text p {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: #94a3b8;
  line-height: 1.5;
}

.rc-chart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 0;
}

.rc-chart--blue {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cdefs%3E%3ClinearGradient id='bgBlue' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='rgba(37,99,235,0.7)'/%3E%3Cstop offset='100%25' stop-color='rgba(37,99,235,0)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='10' y='32' width='8' height='8' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='22' y='27' width='8' height='13' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='34' y='30' width='8' height='10' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='46' y='20' width='8' height='20' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='58' y='24' width='8' height='16' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='70' y='8' width='8' height='32' fill='url(%23bgBlue)' rx='2'/%3E%3Crect x='82' y='14' width='8' height='26' fill='url(%23bgBlue)' rx='2'/%3E%3Cpolyline points='14,32 26,27 38,30 50,20 62,24 74,8 86,14' fill='none' stroke='%234F9FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolygon points='74,4 75,6.5 78,6.5 75.5,8.5 76.5,11.5 74,9.5 71.5,11.5 72.5,8.5 70,6.5 73,6.5' fill='%234F9FFF'/%3E%3C/svg%3E");
}

.rc-chart--green {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cdefs%3E%3ClinearGradient id='bgGreen' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='rgba(16,185,129,0.7)'/%3E%3Cstop offset='100%25' stop-color='rgba(16,185,129,0)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='10' y='34' width='8' height='6' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='22' y='30' width='8' height='10' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='34' y='26' width='8' height='14' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='46' y='30' width='8' height='10' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='58' y='22' width='8' height='18' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='70' y='26' width='8' height='14' fill='url(%23bgGreen)' rx='2'/%3E%3Crect x='82' y='8' width='8' height='32' fill='url(%23bgGreen)' rx='2'/%3E%3Cpolyline points='14,34 26,30 38,26 50,30 62,22 74,26 86,8' fill='none' stroke='%236ee7b7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolygon points='86,4 87,6.5 90,6.5 87.5,8.5 88.5,11.5 86,9.5 83.5,11.5 84.5,8.5 82,6.5 85,6.5' fill='%236ee7b7'/%3E%3C/svg%3E");
}

.rc-chart--yellow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cdefs%3E%3ClinearGradient id='bgYellow' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='rgba(245,158,11,0.7)'/%3E%3Cstop offset='100%25' stop-color='rgba(245,158,11,0)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='10' y='35' width='8' height='5' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='22' y='29' width='8' height='11' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='34' y='32' width='8' height='8' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='46' y='25' width='8' height='15' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='58' y='18' width='8' height='22' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='70' y='26' width='8' height='14' fill='url(%23bgYellow)' rx='2'/%3E%3Crect x='82' y='10' width='8' height='30' fill='url(%23bgYellow)' rx='2'/%3E%3Cpolyline points='14,35 26,29 38,32 50,25 62,18 74,26 86,10' fill='none' stroke='%23fbbf24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolygon points='86,6 87,8.5 90,8.5 87.5,10.5 88.5,13.5 86,11.5 83.5,13.5 84.5,10.5 82,8.5 85,8.5' fill='%23fbbf24'/%3E%3C/svg%3E");
}

.rc-chart--purple {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cdefs%3E%3ClinearGradient id='bgPurple' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='rgba(139,92,246,0.7)'/%3E%3Cstop offset='100%25' stop-color='rgba(139,92,246,0)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='10' y='32' width='8' height='8' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='22' y='30' width='8' height='10' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='34' y='24' width='8' height='16' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='46' y='28' width='8' height='12' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='58' y='16' width='8' height='24' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='70' y='22' width='8' height='18' fill='url(%23bgPurple)' rx='2'/%3E%3Crect x='82' y='8' width='8' height='32' fill='url(%23bgPurple)' rx='2'/%3E%3Cpolyline points='14,32 26,30 38,24 50,28 62,16 74,22 86,8' fill='none' stroke='%23c4b5fd' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolygon points='86,4 87,6.5 90,6.5 87.5,8.5 88.5,11.5 86,9.5 83.5,11.5 84.5,8.5 82,6.5 85,6.5' fill='%23c4b5fd'/%3E%3C/svg%3E");
}

/* BEFORE/AFTER */
.transform-section {
  position: relative;
  background-color: var(--bg2);
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 22, 0) 15%, rgba(5, 8, 22, 0) 85%, var(--bg) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.transform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transform-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pain-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  transition: all .3s;
}

.pain-card:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.pc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.pc-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text1);
  line-height: 1.2;
}

.ba-slider-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-slider {
  position: relative;
  user-select: none;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  top: 12px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .25rem .6rem;
  border-radius: 4px;
}

.ba-before .ba-label {
  right: 12px;
}

.ba-after .ba-label {
  left: 12px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 5;
}

.ba-circle {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .3);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--blue);
  transform: translateX(-50%);
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 12, 20, .9));
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: .75rem;
  font-weight: 600;
  background: rgba(37, 99, 235, .8);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.portfolio-info {
  padding: 1rem 1.25rem;
}

.portfolio-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.portfolio-tag {
  font-size: .75rem;
  color: var(--blue);
}

/* PROCESS */
.process {
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 22, 0.3) 30%, rgba(5, 8, 22, 0.3) 70%, var(--bg) 100%),
    url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-icon-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 99, 235, .1);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.step-connector {
  position: absolute;
  top: 4rem;
  right: -32px;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .5), transparent);
  pointer-events: none;
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.process-step p {
  font-size: .85rem;
  color: var(--text3);
  line-height: 1.6;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(15, 23, 42, 0.4);
  border: none;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.why-card:hover {
  background: rgba(15, 23, 42, 0.6);
  transform: translateY(-4px);
}

.why-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--glow);
  opacity: 0.12;
  filter: blur(10px);
}

.why-icon-wrap i {
  font-size: 2.2rem;
  color: var(--glow);
  position: relative;
  z-index: 1;
}

.why-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.why-content p {
  font-size: 0.9rem;
  color: var(--text3);
  line-height: 1.6;
  margin: 0;
}



/* FAQ */
.faq {
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 22, 0) 25%, rgba(5, 8, 22, 0) 75%, var(--bg) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  background-size: 100% 100%, 100px 100%, 100% 100%;
  background-position: center center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.faq-item:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(37, 99, 235, 0.2);
}

.faq-item.open {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.faq-item.open::before {
  opacity: 1;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text1);
  font-size: 1.15rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  transition: transform .3s;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.faq-item:hover .faq-icon {
  color: #fff;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a p {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text3);
  font-size: .95rem;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: .25rem 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--text3);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), rgba(8, 12, 20, .95));
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 8, 22, 1) 0%, rgb(5 8 22 / 32%) 45%, rgb(5 8 22) 100%), url(https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1200&q=60) center / cover no-repeat;
  opacity: .4;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.animated-selection {
  position: relative;
  display: inline-block;
  color: var(--blue);
  padding: 0 0.1em;
  margin-left: -0.1em;
  z-index: 1;
  animation: textColorLoop 4s ease-in-out infinite;
}

.animated-selection::before {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 0;
  width: 100%;
  background-color: var(--blue);
  z-index: -1;
  border-radius: 4px;
  animation: textSelectLoop 4s ease-in-out infinite;
}

@keyframes textSelectLoop {

  0%,
  15% {
    clip-path: inset(0 100% 0 0);
  }

  40%,
  60% {
    clip-path: inset(0 0 0 0);
  }

  85%,
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes textColorLoop {

  0%,
  15% {
    color: var(--blue);
  }

  35%,
  65% {
    color: #fff;
  }

  85%,
  100% {
    color: var(--blue);
  }
}

.cta-content p {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text3);
}

.cta-trust .trust-stars {
  font-size: 1.1rem;
}

.contact-form-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3rem 0;
}

.contact-form-wrap h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--text1);
  padding: 1.2rem 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--blue);
  box-shadow: none;
}

.form-field textarea {
  resize: vertical;
  margin-bottom: .75rem;
}

.form-field select {
  background-color: rgba(13, 17, 23, .9);
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--text1);
  padding: 1.2rem 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s;
}

.custom-select.open .custom-select-trigger {
  border-bottom-color: var(--blue);
  box-shadow: none;
}

.custom-select-trigger i {
  transition: transform .2s;
}

.custom-select.open .custom-select-trigger i {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transition: all .2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option {
  padding: .7rem .9rem;
  font-size: .9rem;
  color: var(--text2);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.custom-option:hover,
.custom-option.selected {
  background: rgba(37, 99, 235, .1);
  color: #fff;
}

#cf-feedback {
  margin-top: .75rem;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

#cf-feedback.success {
  background: rgba(16, 185, 129, .1);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, .3);
  display: block;
}

#cf-feedback.error {
  background: rgba(239, 68, 68, .1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .3);
  display: block;
}

/* FOOTER */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-desc {
  font-size: .85rem;
  color: var(--text3);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: .7rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text3);
  transition: all .2s;
}

.footer-social a:hover {
  background: rgba(37, 99, 235, .15);
  border-color: rgba(37, 99, 235, .35);
  color: var(--blue);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1rem;
  color: var(--text1);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col ul li a {
  font-size: .85rem;
  color: var(--text3);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text3);
}

.footer-contact i {
  color: var(--blue);
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text3);
  flex-wrap: wrap;
  gap: .5rem;
}

/* RESPONSIVE */
.footer-bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 45%);
  width: 100%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(8rem, 20vw, 25rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

@media(max-width:1440px) {
  .laptop-wrap {
    width: 125%;
    margin-left: -15%;
  }

  .float-card--br {
    right: -10px;
  }
}

@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .transform-inner,
  .faq-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .float-card--tl {
    top: -20px;
    right: -10px;
  }

  .float-card--bl {
    left: -10px;
  }

  .float-card--br {
    right: -10px;
  }

  .clients-static-row {
    gap: 2rem;
  }

  .hero-stats-inner {
    flex-wrap: wrap;
  }

  .stat-feature {
    min-width: 45%;
    padding: 0;
  }

  .stat-feature::after {
    display: none;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-wrapper:nth-child(n) {
    grid-area: auto !important;
  }

  .industry-wrapper:nth-child(1) {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .industry-wrapper:nth-child(5) {
    grid-column: span 2 !important;
  }
}

@media(max-width:992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .laptop-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }

  .laptop-img {
    transform: scale(1);
  }

  .hero-bg-globe {
    width: 120%;
    top: -5%;
    right: -10%;
    opacity: 0.15;
  }

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

@media(max-width:768px) {
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 22, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    border-bottom: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0px at calc(100% - 40px) 40px);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1),
      opacity 0.4s ease,
      visibility 0.6s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at calc(100% - 40px) 40px);
  }

  .nav-menu .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .nav-menu .nav-link,
  .nav-menu .menu-close-btn,
  .nav-menu .mobile-menu-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .nav-menu.open .nav-link,
  .nav-menu.open .menu-close-btn,
  .nav-menu.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.open .nav-link:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-menu.open .nav-link:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-menu.open .nav-link:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-menu.open .nav-link:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-menu.open .nav-link:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-menu.open .nav-link:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-menu.open .menu-close-btn {
    transition-delay: 0.4s;
  }

  .nav-menu.open .mobile-menu-footer {
    transition-delay: 0.45s;
  }

  .menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }

  .menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
  }

  .mobile-menu-footer .site-logo-img {
    height: 35px;
    margin-bottom: 0.5rem;
  }

  .mobile-menu-footer .logo-text-wrap {
    align-items: center;
    margin-left: 0;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-inner {
    padding: 3.5rem 0 2rem 0;
  }

  .hero-content>* {
    margin-bottom: 1.8rem;
  }

  .hero-ctas {
    margin-bottom: 2.5rem;
  }

  .logo-name {
    font-size: 1.15rem;
    letter-spacing: 1px;
  }

  .logo-tag {
    font-size: 0.55rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .site-logo-img {
    height: 34px;
  }

  .hero-visual {
    display: none;
  }

  .hero-bg-globe {
    width: 100vw;
    right: 0;
    top: 0;
    opacity: 0.2;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-trust {
    margin-bottom: 1.5rem;
  }

  .trust-text {
    font-size: 0.75rem;
  }

  .trust-avatars img {
    width: 32px;
    height: 32px;
  }

  .industries-headline .ind-line1,
  .industries-headline .ind-line2 {
    font-size: 1.45rem;
  }

  .industries-headline .ind-line3 {
    font-size: 2.4rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-top: 0.2rem;
  }

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

  .industry-wrapper:nth-child(n) {
    grid-area: auto !important;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    display: block;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 4.5rem);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.5), transparent);
    pointer-events: none;
    z-index: -1;
  }

  .process-headline .proc-line1,
  .process-headline .proc-line2 {
    font-size: 1.75rem;
  }

  .process-headline .proc-line3 {
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .clients-label {
    max-width: 220px;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
  }

  .clients-static-row {
    gap: 1.5rem;
  }

  .client-logo-rich i {
    font-size: 1.3rem;
  }

  .cl-name {
    font-size: .95rem;
  }

  .hero-stats-box {
    padding: 0 1rem;
    background: none;
    border: none;
    backdrop-filter: none;
  }

  .hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-feature {
    min-width: auto;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  .sf-title {
    font-size: 0.85rem;
    margin-bottom: 0;
    width: 100%;
  }

  .sf-desc {
    font-size: 0.65rem;
    width: 100%;
  }

  .sf-icon {
    font-size: 2rem;
    margin-top: 2px;
  }

  .transform-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .transform-content {
    display: contents;
  }

  .transform-content>.section-tag {
    display: none;
  }

  .ba-headline .ba-line1,
  .ba-headline .ba-line2 {
    font-size: 1.75rem;
  }

  .ba-headline .ba-line3 {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-top: 0.2rem;
  }

  .transform-content>.ba-headline {
    order: 1;
    margin-bottom: 2rem;
  }

  .ba-slider-wrap {
    order: 2;
    width: 100%;
    margin-bottom: 2rem;
  }

  .transform-content>.section-sub {
    order: 3;
    margin-bottom: 2rem;
  }

  .transform-content>.pain-grid {
    order: 4;
    width: 100%;
    margin-top: 0;
  }

  .pain-card {
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.5rem;
  }

  .pc-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    margin-bottom: 0.25rem;
  }

  .pc-text {
    font-size: 0.8rem;
  }

  .portfolio-headline .port-line1,
  .portfolio-headline .port-line3 {
    font-size: 1.45rem;
  }

  .portfolio-headline .port-line2 {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

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

  .why-us .section-head h2 {
    font-size: 1.8rem;
  }

  .why-grid {
    gap: 1rem;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 0.5rem;
  }

  .why-content h3 {
    font-size: 0.95rem;
  }

  .why-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .faq-headline {
    font-size: 1.8rem !important;
  }

  .faq .section-sub {
    font-size: 0.95rem !important;
  }

  .faq-q {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .faq-a p {
    font-size: 0.8rem;
    padding: 0.25rem 1.25rem 1rem;
  }

  .cta-bg-overlay {
    background: linear-gradient(to right, rgba(5, 8, 22, 1) 0%, rgb(5 8 22 / 70%) 45%, rgb(5 8 22) 100%), url(https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1200&q=60) center / cover no-repeat;
    opacity: 0.85;
  }

  .cta-inner {
    gap: 3rem;
  }

  .cta-content {
    text-align: center;
  }

  .cta-heading span {
    text-align: center !important;
    align-self: center !important;
  }

  /* Force the headline text to be smaller on mobile so it doesn't overflow the container padding */
  .cta-heading>span:first-child,
  .cta-heading>span:last-child {
    font-size: 1.8rem !important;
  }

  .cta-heading .animated-selection {
    font-size: 3rem !important;
  }

  .cta-content p {
    font-size: 0.95rem !important;
    text-align: center;
  }

  .cta-trust {
    align-items: center !important;
    margin: 2.5rem auto 0 auto !important;
  }

  .cta-trust>div:last-child {
    font-size: 0.85rem !important;
    text-align: center;
  }

  .cta-trust .trust-stars {
    font-size: 1rem !important;
  }

  .cta-trust .trust-avatars img {
    width: 32px !important;
    height: 32px !important;
  }

  .contact-form-wrap {
    padding: 0;
  }

  .form-field input,
  .form-field textarea,
  .form-field select,
  .custom-select-trigger {
    font-size: 0.9rem;
    padding: 1rem 0;
    text-align: center;
  }

  .custom-select-trigger {
    justify-content: center;
    gap: 0.5rem;
  }

  .form-row {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media(max-width:480px) {
  .hero-headline {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }

  .float-card {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══ PRELOADER ══════════════════════════════════════════════════════════ */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
}

#site-preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
}

.preloader-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.preloader-star-container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  animation: star-strike 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  border-radius: 5px;
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.9), 0 0 30px 8px rgba(36, 91, 255, 0.6);
  transform-origin: right center;
  transform: translate(-100%, -50%);
}

.preloader-explosion {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: star-explode 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 1;
}

.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-reveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-logo img {
  height: 64px;
  /* Base logo size */
  width: auto;
  object-fit: contain;
}

.preloader-logo .logo-icon {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}


@keyframes star-strike {
  0% {
    transform: translate(var(--star-start-x), var(--star-start-y)) rotate(var(--star-angle)) scaleX(1);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  20% {
    transform: translate(0, 0) rotate(var(--star-angle)) scaleX(0.05);
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes star-explode {

  0%,
  19% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  21% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  40% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes logo-reveal {

  0%,
  19% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }

  22% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    filter: blur(0px);
  }

  40%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}