:root {
  --primary: #0F172A;
  --secondary: #2563EB;
  --accent: #F97316;
  --accent-d: #EA6C08;
  --bg: #F8FAFC;
  --bg2: rgba(248, 250, 252, 0.5);
  --bg3: #F1F5F9;
  --text: #1E293B;
  --muted: #64748B;
  --border: rgba(226, 232, 240, 0.4);
  --card: rgba(255, 255, 255, 0.7);
  --sh: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -1px rgba(0, 0, 0, .05);
  --sh-lg: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .07);
  --r: 16px;
  --r-sm: 10px;
  --hh: clamp(70px, 10vw, 120px);
  --orb1: rgba(239, 68, 68, 0.4);
  --orb2: rgba(37, 99, 235, 0.4);
  --orb3: rgba(239, 68, 68, 0.2)
}

[data-theme="dark"] {
  --bg: #0F172A;
  --bg2: rgba(30, 41, 59, 0.5);
  --bg3: #263349;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --card: rgba(30, 41, 59, 0.45);
  --sh: 0 4px 6px -1px rgba(0, 0, 0, .35), 0 2px 4px -1px rgba(0, 0, 0, .25);
  --sh-lg: 0 20px 25px -5px rgba(0, 0, 0, .45), 0 8px 10px -6px rgba(0, 0, 0, .35);
  --orb1: rgba(37, 99, 235, 0.6);
  --orb2: rgba(124, 58, 237, 0.5);
  --orb3: rgba(37, 99, 235, 0.3)
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'SF Pro Rounded', ui-rounded, system-ui, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.65;
  transition: background .3s, color .3s;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section-alt {
  background: transparent
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 99, 235, .1);
  color: var(--secondary);
  border: 1px solid rgba(37, 99, 235, .25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.s-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 14px
}

.s-title span {
  color: var(--secondary)
}

.s-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7
}

.tc {
  text-align: center
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .28s cubic-bezier(.4, 0, .2, 1);
  border: 2px solid transparent;
  white-space: nowrap
}

.btn-primary {
  background: var(--secondary);
  color: #fff
}

.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, .38)
}

.btn-accent {
  background: var(--accent);
  color: #fff
}

.btn-accent:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(249, 115, 22, .38)
}

.btn-outline {
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  background: transparent
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px)
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18)
}

.btn-wa {
  background: #25D366;
  color: #fff
}

.btn-wa:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .4)
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-size: .86rem;
  font-weight: 700;
  transition: gap .2s;
  cursor: pointer
}

.learn-more:hover {
  gap: 11px
}

/* Header */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--hh);
  transition: all .3s
}

#hdr.scrolled {
  background: var(--bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border)
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text)
}

.logo-ico {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--secondary), #7C3AED);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0
}

.logo img {
  height: clamp(45px, 8.5vw, 70px);
  width: auto;
  object-fit: contain;
}

.logo-t span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  transition: all .2s
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg2)
}

.hdr-act {
  display: flex;
  align-items: center;
  gap: 10px
}

.dmode-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all .2s
}

.dmode-btn:hover {
  background: rgba(255, 255, 255, .15)
}

.hamb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent
}

.hamb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.hamb.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamb.open span:nth-child(2) {
  opacity: 0
}

.hamb.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--hh);
  left: 0;
  right: 0;
  background: var(--bg);
  backdrop-filter: blur(24px);
  padding: 20px 24px 28px;
  z-index: 998;
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  transition: all .25s
}

.mob-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1
}

.mob-menu a {
  display: block;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: .97rem;
  font-weight: 500;
  transition: color .2s
}

.mob-menu a:hover {
  color: var(--accent)
}

.mob-menu .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center
}

.max-w-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Global Background */
.page-bg {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 30px 30px
}

#hero {
  padding-bottom: 3rem;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: flow 3s ease-in-out infinite;
  z-index: 0;
  will-change: transform;
  transition: translate 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.o1 {
  width: 800px;
  height: 800px;
  background: var(--orb1);
  top: -200px;
  left: -200px;
  animation-delay: 0s
}

.o2 {
  width: 700px;
  height: 700px;
  background: var(--orb2);
  bottom: -150px;
  right: -150px;
  animation-delay: -1.5s
}

.o3 {
  width: 500px;
  height: 500px;
  background: var(--orb3);
  top: 40%;
  left: 50%;
  animation-delay: -3s
}

@keyframes flow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -25px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 35px) scale(0.98);
  }

  75% {
    transform: translate(-35px, -20px) scale(1.02);
  }
}

.h-badge {
  background: rgba(37, 99, 235, 0.18);
  color: #93C5FD;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.35);
  animation: fy .6s ease both;
}

.h-badge .dot {
  width: 6px;
  height: 6px;
  background: #22d3ee;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.h-title {
  color: var(--text);
  animation: fy .6s ease .1s both;
}

.title-sm {
  font-size: clamp(1.05rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.title-lg {
  font-size: clamp(3.2rem, 9.5vw, 11rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.txt-anim-white {
  background: linear-gradient(to right, var(--text) 0%, var(--secondary) 50%, var(--text) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
  animation: txtFlow 4s linear infinite;
}

.txt-blue {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 40px rgba(37, 99, 235, 0.3);
}

@keyframes txtFlow {
  to {
    background-position: 200% center;
  }
}

.h-title .hl {
  color: var(--accent);
  display: inline-block;
  transition: opacity .4s ease;
  min-width: 3em;
}

.h-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  animation: fy .6s ease .2s both;
}

.h-btns {
  animation: fy .6s ease .3s both;
}

.h-stats {
  animation: circularIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  perspective: 1000px;
}

.h-stat strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 140px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #2563EB 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.5), 0 0 40px rgba(37, 99, 235, 0.2);
  animation: txtFlow 4s linear infinite;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.h-stat strong:hover {
  transform: scale(1.15) translateZ(20px);
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.8), 0 0 60px rgba(37, 99, 235, 0.4);
  z-index: 10;
}

.h-stat strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.h-stat strong::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-top: 2px solid var(--secondary);
  border-right: 2px solid rgba(147, 197, 253, 0.3);
  border-radius: 50%;
  animation: rotateRing 3s linear infinite;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-stat strong:hover::after {
  inset: -12px;
  animation-duration: 1s;
  border-top-color: #fff;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.h-stat-sym {
  font-size: 0.6em;
  margin-left: 2px;
  font-weight: 700;
}

.star-sym {
  background: linear-gradient(to bottom, #FFD700, #F59E0B) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5) !important;
}

.h-stat>span {
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 500;
}

.h-stat-sep {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@keyframes fy {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes circularIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Scrolling Badges */
.badges-marquee {
  max-width: 700px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  animation: fy .6s ease .2s both;
}

.badges-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-x 15s linear infinite;
}

.badges-track:hover {
  animation-play-state: paused;
}

.badges-set {
  display: flex;
  gap: 16px;
}

.fi {
  background: var(--bg2);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Services */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px
}

.srv-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)), var(--card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: all .32s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), var(--sh)
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), #7C3AED);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, .3)
}

.srv-card:hover::after {
  transform: scaleX(1)
}

.srv-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px
}

.si-bl {
  background: rgba(37, 99, 235, .12);
  color: #2563EB
}

.si-pu {
  background: rgba(124, 58, 237, .12);
  color: #7C3AED
}

.si-or {
  background: rgba(249, 115, 22, .12);
  color: #F97316
}

.si-gr {
  background: rgba(16, 185, 129, .12);
  color: #10B981
}

.si-rd {
  background: rgba(239, 68, 68, .12);
  color: #EF4444
}

.si-cy {
  background: rgba(6, 182, 212, .12);
  color: #06B6D4
}

.si-pk {
  background: rgba(236, 72, 153, .12);
  color: #EC4899
}

.si-yw {
  background: rgba(245, 158, 11, .12);
  color: #F59E0B
}

.srv-card h3 {
  font-size: 1rem;
  margin-bottom: 9px;
  color: var(--text)
}

.srv-card p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 18px
}

/* Why Choose Us */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.why-txt p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 13px
}

.why-it {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  background: var(--card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: all .25s
}

.why-it:hover {
  border-color: var(--secondary);
  transform: translateX(5px);
  box-shadow: var(--sh)
}

.why-ck {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(37, 99, 235, .1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: 1px
}

.why-it-txt strong {
  display: block;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 1px
}

.why-it-txt span {
  font-size: .8rem;
  color: var(--muted)
}

.stats-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.stat-c {
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  text-align: center;
  transition: all .3s;
  cursor: default
}

.stat-c:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--sh-lg)
}

.stat-ico {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px
}

.stat-n {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px
}

.stat-n .sf {
  color: var(--accent)
}

.stat-l {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.4
}

/* Portfolio */
.pf-filter {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center
}

.pf-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s
}

.pf-btn:hover,
.pf-btn.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .3)
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px
}

.pf-card {
  background: var(--card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .32s;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1)
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg)
}

.pf-card.hidden {
  display: none
}

.pf-img {
  height: 190px;
  position: relative;
  overflow: hidden
}

.pf-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform .35s
}

.pf-card:hover .pf-img-bg {
  transform: scale(1.07)
}

.pf-ov {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .28s
}

.pf-card:hover .pf-ov {
  opacity: 1
}

.pf-info {
  padding: 18px
}

.pf-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 7px;
  padding: 3px 10px;
  background: rgba(37, 99, 235, .09);
  border-radius: 100px
}

.pf-info h3 {
  font-size: .97rem;
  margin-bottom: 6px;
  color: var(--text)
}

.pf-info p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: 12px
}

.tech-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}

.tt {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px
}

/* Process */
.proc-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative
}

.proc-g::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), #7C3AED, var(--accent));
  z-index: 0;
  border-radius: 1px
}

.proc-c {
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05)
}

.proc-c:hover {
  border-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: var(--sh-lg)
}

.proc-n {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #7C3AED);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(37, 99, 235, .4)
}

.proc-ico {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 12px
}

.proc-c h3 {
  font-size: .97rem;
  margin-bottom: 8px;
  color: var(--text)
}

.proc-c p {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.62
}

/* Testimonials */
.test-g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px
}

.test-c {
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: all .3s;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05)
}

.test-c:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--sh-lg)
}

.q-ico {
  font-size: 2.8rem;
  color: var(--secondary);
  opacity: .25;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 10px
}

.test-txt {
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic
}

.test-auth {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid var(--border)
}

.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0
}

.auth-info strong {
  display: block;
  font-size: .9rem;
  color: var(--text)
}

.auth-info span {
  font-size: .78rem;
  color: var(--muted)
}

.stars {
  color: #F59E0B;
  font-size: .82rem;
  margin-bottom: 3px;
  letter-spacing: 1px
}

/* CTA */
.cta-sec {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 96px 0
}

.cta-sec::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: .07;
  top: -200px;
  right: -200px;
  filter: blur(60px);
  pointer-events: none
}

.cta-sec::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .05;
  bottom: -150px;
  left: -100px;
  filter: blur(60px);
  pointer-events: none
}

.cta-in {
  position: relative;
  z-index: 1;
  text-align: center
}

.cta-in h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--text);
  margin-bottom: 14px
}

.cta-in h2 span {
  color: var(--accent)
}

.cta-in p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.02rem;
  line-height: 1.72
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* Contact/Form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start
}

.contact-info h2 {
  margin-bottom: 14px
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.72
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ci-it {
  display: flex;
  align-items: flex-start;
  gap: 13px
}

.ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.ci-it-txt strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 2px
}

.ci-it-txt span {
  font-size: .84rem;
  color: var(--muted)
}

.contact-form {
  background: var(--card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text)
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  width: 100%
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.form-group select option {
  background: var(--card)
}

/* Footer */
footer {
  background: transparent;
  color: var(--muted);
  padding: 72px 0 0
}

.ft-g {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 48px
}

.ft-brand .logo {
  margin-bottom: 14px
}

.ft-brand p {
  font-size: .86rem;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 22px
}

.soc-links {
  display: flex;
  gap: 9px
}

.soc-l {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  transition: all .2s;
  cursor: pointer
}

.soc-l:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff
}

.ft-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ft-col a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s
}

.ft-col a:hover {
  color: var(--accent)
}

.ft-con {
  display: flex;
  flex-direction: column;
  gap: 13px
}

.fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted)
}

.fci-ico {
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 1px
}

.ft-btm {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--muted)
}

/* Floating elements */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9900;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s;
  animation: wp 2.5s ease-in-out infinite
}

.wa-float:hover {
  transform: scale(1.12)
}

@keyframes wp {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55)
  }

  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, .72), 0 0 0 10px rgba(37, 211, 102, .1)
  }
}

.btt {
  position: fixed;
  bottom: 94px;
  right: 22px;
  z-index: 9900;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 235, .45);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  border: none
}

.btt.show {
  opacity: 1;
  visibility: visible
}

.btt:hover {
  transform: translateY(-3px)
}

/* Scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s ease, transform .62s ease
}

.rv.vis {
  opacity: 1;
  transform: translateY(0)
}

.rv-d1 {
  transition-delay: .08s
}

.rv-d2 {
  transition-delay: .16s
}

.rv-d3 {
  transition-delay: .24s
}

.rv-d4 {
  transition-delay: .32s
}

.rv-d5 {
  transition-delay: .4s
}

.rv-d6 {
  transition-delay: .48s
}

.rv-d7 {
  transition-delay: .56s
}

.rv-d8 {
  transition-delay: .64s
}

/* Responsive Overrides */
@media(min-width: 769px) {
  .w-sm-auto {
    width: auto !important;
  }
}

@media(max-width:1024px) {
  .why-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .proc-g {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-g::before {
    display: none
  }

  .ft-g {
    grid-template-columns: 1fr 1fr
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:768px) {

  .nav-links,
  .hdr-act .btn {
    display: none
  }

  .hamb {
    display: flex
  }

  .section {
    padding: 64px 0
  }

  /* Hero specific mobile overrides */
  #hero {
    padding: calc(var(--hh) + 15px) 0 60px
  }

  .title-lg {
    font-size: 2.8rem;
    white-space: normal;
  }

  .title-lg span {
    display: inline-block
  }

  .h-sub {
    font-size: .95rem;
    padding: 0 10px
  }

  .w-sm-auto {
    width: 100% !important;
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .ft-g {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .ft-btm {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .stats-g {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {

  .srv-grid,
  .pf-grid,
  .test-g {
    grid-template-columns: 1fr
  }

  .proc-g {
    grid-template-columns: 1fr
  }

  .h-stat-sep {
    display: none
  }

  .h-stats {
    flex-direction: column;
    gap: 24px
  }

  .h-stat strong {
    font-size: 3.2rem;
    min-width: 110px;
    height: 110px;
  }
}