/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: #050508;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#00d4ff, #8b5cf6);
  border-radius: 10px;
}
::selection {
  background: rgba(0, 212, 255, 0.22);
  color: #fff;
}

/* ── Variables ── */
:root {
  --void: #050508;
  --surface: #0a0a14;
  --card: #0d0d1c;
  --nb: #00d4ff;
  --np: #8b5cf6;
  --nv: #a78bfa;
  --nk: #e879f9;
  --grad: linear-gradient(135deg, #00d4ff, #8b5cf6 55%, #e879f9);
  --grad2: linear-gradient(135deg, #00d4ff, #a78bfa);
  --glass: rgba(255, 255, 255, 0.03);
  --gb: 1px solid rgba(255, 255, 255, 0.06);
  --spring: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--void);
  color: #fff;
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
.fd {
  font-family: "Oxanium", sans-serif;
}
.tg {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tg2 {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Grain ── */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Grid overlay ── */
.grid-ov {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Orb ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

/* ── Glass Card ── */
.gc {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--gb);
  border-radius: 1.25rem;
  transition: all 0.4s var(--spring);
}
.gc:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 212, 255, 0.07);
}

/* ── Section Label ── */
.sl {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(0, 212, 255, 0.05);
  font-family: "Oxanium", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nb);
}
.sl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nb);
  box-shadow: 0 0 8px var(--nb);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ── Buttons ── */
.btn-p {
  position: relative;
  padding: 0.85rem 2rem;
  background: var(--grad);
  color: #050508;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-p:hover::before {
  transform: translateX(100%);
}
.btn-p:hover {
  box-shadow:
    0 0 40px rgba(0, 212, 255, 0.45),
    0 0 80px rgba(0, 212, 255, 0.18);
  transform: translateY(-2px);
}
.btn-s {
  padding: 0.85rem 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-s:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Container ── */
.ct {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .ct {
    padding: 0 1.25rem;
  }
}

/* ── Section spacing ── */
.sec {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec {
    padding: 4rem 0;
  }
}

/* ── Scroll reveal ── */
.rv {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--spring),
    transform 0.9s var(--spring);
}
.rv-l {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.9s var(--spring),
    transform 0.9s var(--spring);
}
.rv-r {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.9s var(--spring),
    transform 0.9s var(--spring);
}
.rv.in,
.rv-l.in,
.rv-r.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}

/* ── Animations ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-18px);
  }
  66% {
    transform: translateY(-8px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.5s ease;
}
#nav.scrolled {
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 0;
}
.nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--grad);
  padding: 1px;
  position: relative;
}
.logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-txt {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad2);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 8rem;
}
.h-tag {
  animation: fadeUp 0.8s var(--spring) 0.1s both;
}
.h-line {
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 9.5vw, 9rem);
}
.h-l1 {
  animation: fadeUp 0.8s var(--spring) 0.2s both;
  color: #fff;
}
.h-l2 {
  animation: fadeUp 0.8s var(--spring) 0.35s both;
  background: linear-gradient(135deg, #00d4ff, #8b5cf6 50%, #e879f9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeUp 0.8s var(--spring) 0.35s both,
    gradShift 5s ease infinite;
}
.h-l3 {
  animation: fadeUp 0.8s var(--spring) 0.5s both;
}
.h-sub {
  animation: fadeUp 0.8s var(--spring) 0.65s both;
}
.h-ctas {
  animation: fadeUp 0.8s var(--spring) 0.8s both;
}
.h-card {
  animation: fadeUp 0.8s var(--spring) 0.95s both;
}
.stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeUp 0.8s var(--spring) 1s both;
}
.stat-item {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
}
.stat-item:last-child {
  border-right: none;
}
.stat-v {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: transform 0.3s;
}
.stat-item:hover .stat-v {
  transform: scale(1.1);
}
.stat-l {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
}
.scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.8s var(--spring) 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(180deg, var(--nb) 0%, transparent 100%);
  animation: pulse 2s ease-in-out infinite;
}

/* ─────────────────────────────────────
   TRUSTED BY
───────────────────────────────────── */
#trusted {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(90deg, var(--void), var(--surface), var(--void));
}
.mq-wrap {
  overflow: hidden;
  position: relative;
}
.mq-wrap::before,
.mq-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}
.mq-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--void), transparent);
}
.mq-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--void), transparent);
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.mq-track2 {
  display: flex;
  white-space: nowrap;
  animation: marqueeR 42s linear infinite;
  margin-top: 1rem;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 3rem;
}
.mq-name {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.3s;
  cursor: default;
}
.mq-name:hover {
  color: rgba(255, 255, 255, 0.45);
}
.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-left: 3rem;
}

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1000px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }
}
.srv-card {
  padding: 2rem;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.3rem;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.35),
    rgba(139, 92, 246, 0.35),
    rgba(232, 121, 249, 0.2)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.srv-card:hover::before {
  opacity: 1;
}
.srv-num {
  font-family: "Oxanium", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: color 0.4s;
}
.srv-card:hover .srv-num {
  color: rgba(255, 255, 255, 0.07);
}
.srv-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.srv-card:hover .srv-icon-box {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.srv-title {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.3s;
  margin: 0.6rem 0 0.5rem;
}
.srv-card:hover .srv-title {
  color: var(--nb);
}
.srv-desc {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.825rem;
  line-height: 1.65;
}
.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}
.srv-card:hover .tag {
  border-color: rgba(255, 255, 255, 0.1);
}
.srv-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Oxanium", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.25rem;
  transition: all 0.3s;
}
.srv-card:hover .srv-arrow {
  color: var(--nb);
}
.srv-arrow svg {
  transition: transform 0.3s;
}
.srv-card:hover .srv-arrow svg {
  transform: translateX(5px);
}

/* ─────────────────────────────────────
   FEATURED PROJECTS
───────────────────────────────────── */
.proj-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  display: flex;
  min-height: 420px;
  transition: all 0.5s var(--spring);
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.proj-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(0, 212, 255, 0.07);
}
.proj-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .proj-card {
    flex-direction: column;
  }
}
.proj-visual {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.proj-visual-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--spring);
}
.proj-card:hover .proj-visual-inner {
  transform: scale(1.04);
}
.proj-mock {
  position: absolute;
  inset: 0;
  padding: 2rem;
  opacity: 0.6;
}
.proj-mock-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.proj-mock-logo {
  width: 4rem;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
}
.proj-mock-links {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}
.proj-mock-link {
  width: 2.5rem;
  height: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.2rem;
}
.proj-mock-btn {
  width: 3.5rem;
  height: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}
.proj-mock-hero {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.proj-mock-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.proj-mock-h1 {
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem;
}
.proj-mock-h2 {
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 0.4rem;
  width: 70%;
}
.proj-mock-p1,
.proj-mock-p2 {
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.2rem;
}
.proj-mock-p2 {
  width: 80%;
}
.proj-mock-ctas {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.proj-mock-cta1 {
  width: 5rem;
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.proj-mock-cta2 {
  width: 4.5rem;
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}
.proj-mock-img {
  width: 38%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  min-height: 7rem;
}
.proj-vg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.proj-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: "Oxanium", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.proj-info {
  flex: 1;
  padding: 2.5rem 3rem;
  background: rgba(10, 10, 20, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .proj-info {
    padding: 1.75rem;
  }
}
.proj-cat {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nb);
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
}
.proj-title {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0.75rem 0 0.3rem;
  transition: all 0.4s;
}
.proj-card:hover .proj-title {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proj-sub {
  color: rgba(0, 212, 255, 0.6);
  font-size: 0.75rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.proj-desc {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.825rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.proj-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.proj-tech {
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.3rem;
  font-size: 0.62rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.proj-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.metric-v {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-l {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.proj-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 1.25rem;
  transition: color 0.3s;
  font-family: "Oxanium", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.proj-card:hover .proj-cta {
  color: var(--nb);
}
.proj-cta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
}
.proj-cta svg {
  transition: transform 0.4s var(--spring);
}
.proj-card:hover .proj-cta svg {
  transform: translateX(6px);
}

/* ─────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 6rem;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-card {
  padding: 2rem;
  text-align: center;
  cursor: default;
}
.stat-card-v {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(135deg, #00d4ff, #8b5cf6 50%, #e879f9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s ease infinite;
}
.stat-card-l {
  color: rgba(255, 255, 255, 0.27);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  margin-top: 0.5rem;
}
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.wcu-heading {
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 2rem;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feat-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.3rem;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-item:hover::before {
  opacity: 1;
}
.feat-icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nb);
  transition: all 0.4s;
}
.feat-item:hover .feat-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.18),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(0, 212, 255, 0.24);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}
.feat-title {
  font-family: "Oxanium", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  transition: color 0.3s;
  margin-bottom: 0.35rem;
}
.feat-item:hover .feat-title {
  color: var(--nb);
}
.feat-desc {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
  line-height: 1.6;
}
.feat-arr {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--nb);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s;
}
.feat-item:hover .feat-arr {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────
   PROCESS
───────────────────────────────────── */
.proc-line-wrap {
  position: relative;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.proc-connector {
  position: absolute;
  top: 2.3rem;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  z-index: 0;
}
.proc-connector-inner {
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 212, 255, 0.5),
    rgba(139, 92, 246, 0.5),
    rgba(232, 121, 249, 0.4)
  );
}
.proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
}
.proc-node {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
  transition: all 0.4s;
  position: relative;
}
.proc-node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.4s;
}
.proc-step:hover .proc-node {
  background: linear-gradient(135deg, var(--nb), var(--np));
  color: #050508;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}
.proc-step:hover .proc-node::after {
  border-color: rgba(0, 212, 255, 0.35);
}
.proc-title {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}
.proc-step:hover .proc-title {
  color: var(--nb);
}
.proc-desc {
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.72rem;
  line-height: 1.6;
  padding: 0 0.35rem;
}
.proc-dur {
  margin-top: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.proc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
}
@media (max-width: 768px) {
  .proc-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
}
.proc-cta-title {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.proc-cta-sub {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.825rem;
}
.proc-cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1000px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.testi-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.testi-qm {
  font-family: "Oxanium", sans-serif;
  font-size: 5rem;
  line-height: 0.85;
  color: rgba(0, 212, 255, 0.14);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.testi-quote {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.75rem;
}
.testi-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.18), transparent);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #050508;
  flex-shrink: 0;
}
.testi-name {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.testi-role {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}
.testi-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.55);
  border: 1px solid rgba(0, 212, 255, 0.12);
  background: rgba(0, 212, 255, 0.04);
}

/* ─────────────────────────────────────
   CTA
───────────────────────────────────── */
.big-title {
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin-bottom: 2rem;
}
.view-all-link {
  transition: all 0.25s ease;
  color: rgba(0, 212, 255, 0.8);
}
.view-all-link:hover {
  color: #fff;
  transform: translateX(3px);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.form-wrap {
  padding: 2.5rem 2.75rem;
}
@media (max-width: 600px) {
  .form-wrap {
    padding: 1.5rem;
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.62rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.03);
}
.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.form-select option {
  background: #0d0d1c;
  color: #fff;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--grad);
  color: #050508;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.form-submit:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.45);
  transform: translateY(-2px);
}
.form-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.62rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.15em;
  margin-top: 0.75rem;
}
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
}
.avail-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
.avail-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.1em;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-row:hover .contact-icon {
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.06);
}
.contact-row:hover .contact-icon svg {
  stroke: var(--nb);
}
.contact-icon svg {
  stroke: rgba(255, 255, 255, 0.38);
  transition: stroke 0.3s;
}
.contact-val {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.contact-row:hover .contact-val {
  color: #fff;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3rem;
}
@media (max-width: 900px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
}
@media (max-width: 500px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}
.ft-brand-desc {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 18rem;
  margin: 1.25rem 0 1.75rem;
}
.ft-socials {
  display: flex;
  gap: 0.6rem;
}
.ft-social {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.ft-social:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.06);
  color: var(--nb);
}
.ft-col-title {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ft-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.ft-link::before {
  content: "";
  width: 0.75rem;
  height: 1px;
  background: var(--nb);
  opacity: 0;
  transition: opacity 0.3s;
}
.ft-link:hover {
  color: #fff;
}
.ft-link:hover::before {
  opacity: 0.6;
}
.ft-newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0;
}
.ft-nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ft-nl-copy h4 {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.25rem;
}
.ft-nl-copy p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
}
.ft-nl-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ft-nl-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  outline: none;
  width: 15rem;
  transition: all 0.3s;
}
.ft-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.ft-nl-input:focus {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.03);
}
.ft-nl-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--grad);
  color: #050508;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.ft-nl-btn:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.03);
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.1em;
}
.ft-legal {
  display: flex;
  gap: 1.5rem;
}
.ft-legal a {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s;
}
.ft-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.ft-crafted {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────
   SECTION HEADER UTIL
───────────────────────────────────── */
.sec-hdr-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
.sec-hdr-left {
}
.sec-h2 {
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-top: 1.25rem;
}
.sec-hdr-right {
  max-width: 16rem;
  color: rgba(255, 255, 255, 0.33);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────
   BG STRIPES (alt sections)
───────────────────────────────────── */
.bg-alt {
  background: rgba(255, 255, 255, 0.012);
}
.whatsapp-float {
            position: fixed;
            left: 18px;
            bottom: 18px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
            z-index: 9999;
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover,
        .whatsapp-float:focus-visible {
            transform: translateY(-3px);
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
            filter: brightness(1.03);
        }

        .whatsapp-float svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
        }

        @media (max-width: 640px) {
            .whatsapp-float {
                left: 12px;
                bottom: 12px;
                width: 48px;
                height: 48px;
                z-index: 9999;
            }

            .whatsapp-float svg {
                width: 20px;
                height: 20px;
            }
        }

