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

:root {
  --bg: #070b14;
  --bg2: #0b0f1c;
  --bg3: #0f1628;
  --accent: #00e5ff;
  --accent2: #006eff;
  --accent3: #7b2fff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf0;
  --text-muted: #7a8299;
  --text-dim: #4a5170;
  --glow: rgba(0, 229, 255, 0.15);
  --glow-strong: rgba(0, 229, 255, 0.3);
  --font-display: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --space: 8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
} /* scroll handled by JS lerp */

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 2px;
}

/* ── NAV WRAPPER ── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  transition: padding 0.4s ease;
}
.nav-wrapper.scrolled {
  padding: 14px 56px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.brand-mark-footer {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.nav-logo-text {
  background: linear-gradient(135deg, #fff 0%, #b0c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 10px var(--accent),
    0 0 20px rgba(0, 229, 255, 0.5);
  margin-top: 4px;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: rgba(11, 15, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}
.nav-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    rgba(0, 110, 255, 0.04),
    rgba(0, 229, 255, 0.02)
  );
  pointer-events: none;
}
.nav-pill a {
  position: relative;
  z-index: 1;
  padding: 9px 20px;
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-pill a:hover,
.nav-pill a.active {
  color: #fff;
}
.nav-hover-bg {
  position: absolute;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 100px;
  background: rgba(40, 200, 64, 0.07);
  border: 1px solid rgba(40, 200, 64, 0.2);
  font-size: 12px;
  font-weight: 500;
  color: #5cdb7a;
  cursor: default;
  white-space: nowrap;
}
.nav-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 8px rgba(40, 200, 64, 0.9);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent2) 0%, #00b8ff 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow:
    0 4px 20px rgba(0, 110, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.45);
}
.nav-cta-arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-cta:hover .nav-cta-arrow {
  transform: translateX(3px);
}

.whatsapp-cta {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow:
    0 4px 20px rgba(18, 140, 126, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.whatsapp-cta:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: none;
  transition: all 0.25s ease;
}
.nav-hamburger:hover {
  border-color: rgba(0, 229, 255, 0.28);
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.nav-hamburger.open {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(0, 229, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(0, 229, 255, 0.9));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.22);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.14), transparent 34%),
    radial-gradient(
      circle at bottom,
      rgba(123, 47, 255, 0.12),
      transparent 30%
    ),
    rgba(7, 11, 20, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-mobile::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    transparent 40%
  );
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.nav-mobile-header,
.nav-mobile-footer {
  position: relative;
  z-index: 1;
}
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-brand span:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff;
}
.nav-mobile-brand span:last-child {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-mobile a {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #e9edf7;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.22s ease;
  backdrop-filter: blur(10px);
}
.nav-mobile a:hover {
  color: #fff;
  background: rgba(0, 229, 255, 0.09);
  border-color: rgba(0, 229, 255, 0.22);
  transform: translateY(-1px);
}
.nav-mobile .nav-mobile-cta {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  justify-content: center;
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 15px;
  box-shadow:
    0 18px 36px rgba(37, 211, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.nav-mobile-footer {
  padding-top: 12px;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(0, 110, 255, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(123, 47, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 10%,
      rgba(0, 229, 255, 0.08) 0%,
      transparent 50%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 80%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 110, 255, 0.12);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(123, 47, 255, 0.1);
  right: 200px;
  top: 100px;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.08);
  left: 100px;
  bottom: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-h1 .accent-word {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  border: none;
  cursor: none;
  box-shadow:
    0 8px 32px rgba(0, 110, 255, 0.35),
    0 0 0 1px rgba(0, 229, 255, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 48px rgba(0, 110, 255, 0.5),
    0 0 60px rgba(0, 229, 255, 0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  cursor: none;
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}
.hero-visual {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 1;
  animation: fadeInRight 1s 0.4s ease both;
}
.hero-terminal {
  background: rgba(11, 15, 28, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 229, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.hero-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.td1 {
  background: #ff5f57;
}
.td2 {
  background: #febc2e;
}
.td3 {
  background: #28c840;
}
.terminal-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.terminal-line {
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 1.9;
}
.tl-prompt {
  color: var(--accent);
}
.tl-cmd {
  color: #fff;
}
.tl-out {
  color: #7a8299;
}
.tl-green {
  color: #28c840;
}
.tl-yellow {
  color: #febc2e;
}
.tl-blue {
  color: #6699ff;
}
.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent);
  animation: blink 1s infinite;
  vertical-align: middle;
}

/* floating cards */
.float-card {
  position: absolute;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.float-card-1 {
  top: -24px;
  left: -80px;
  animation: float 6s ease-in-out infinite;
}
.float-card-2 {
  bottom: -20px;
  right: -40px;
  animation: float 6s 2s ease-in-out infinite;
}
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.fi-green {
  background: rgba(40, 200, 64, 0.2);
}
.fi-blue {
  background: rgba(0, 229, 255, 0.15);
}

/* SECTION COMMON */
section {
  padding: 120px 64px;
  position: relative;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* SERVICES */
.services {
  background: var(--bg2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: none;
  group: true;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 229, 255, 0.08);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .service-icon {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 110, 255, 0.2),
    rgba(0, 229, 255, 0.1)
  );
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: box-shadow 0.4s;
}
.service-h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-arrow {
  margin-top: 28px;
  color: var(--accent);
  font-size: 28px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

/* WHY CHOOSE US */
.why {
  background: var(--bg);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
}
.why-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(0, 229, 255, 0.08) 0%,
    transparent 60%
  );
}
.why-visual-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.why-stat-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.why-stat-bar-wrap {
  flex: 1;
}
.why-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.why-stat-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.why-stat-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transition: width 1.5s ease;
  width: 0;
}
.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.why-badge {
  padding: 8px 14px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.why-points {
  list-style: none;
}
.why-point {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.why-point:last-child {
  border-bottom: none;
}
.why-point:hover .wp-icon {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  border-color: rgba(0, 229, 255, 0.4);
}
.wp-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}
.wp-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wp-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 80px 64px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--glass-border);
}
.stat-item:last-child::after {
  display: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.stat-accent {
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
}

/* PORTFOLIO */
.portfolio {
  background: var(--bg);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: none;
  group: true;
  transition: all 0.4s;
}
.portfolio-card:first-child {
  grid-column: span 2;
}
.portfolio-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.portfolio-img {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.portfolio-card:first-child .portfolio-img {
  height: 300px;
}
.portfolio-mockup {
  width: 85%;
  height: 85%;
  border-radius: 12px;
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-mockup {
  transform: scale(1.04);
}
.pm-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.pm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pm-content {
  width: 80%;
  margin-top: 20px;
}
.pm-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}
.pm-line.accent {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  width: 60%;
}
.pm-line.wide {
  width: 100%;
}
.pm-line.med {
  width: 75%;
}
.pm-line.short {
  width: 45%;
}
.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.pm-box {
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pm-box.accent {
  background: linear-gradient(
    135deg,
    rgba(0, 110, 255, 0.2),
    rgba(0, 229, 255, 0.1)
  );
  border-color: rgba(0, 229, 255, 0.2);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(7, 11, 20, 0.95) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-info {
  padding: 24px;
}
.portfolio-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.portfolio-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.portfolio-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.chip {
  padding: 4px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-muted);
}

/* TEAM */
.team {
  background: var(--bg2);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: none;
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 229, 255, 0.05) 0%,
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.team-card:hover::before {
  opacity: 1;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid rgba(0, 229, 255, 0.3);
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.team-avatar-photo {
  padding: 0;
  overflow: hidden;
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.15);
}
.team-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.team-meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}
.team-skill {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-muted);
}
.team-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s;
}
.team-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg);
  overflow: hidden;
}
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.testi-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.testi-quote {
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.testi-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.testi-co {
  font-size: 12px;
  color: var(--text-dim);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star {
  color: #febc2e;
  font-size: 14px;
}

/* CONTACT */
.contact {
  background: var(--bg2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 600;
}
.ci-val {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}
textarea {
  resize: none;
  height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(0, 110, 255, 0.4);
}
.form-submit:hover {
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  background: var(--bg);
  padding: 24px 64px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom .accent-link {
  color: var(--accent);
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(48px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-wrapper {
    padding: 16px 32px;
  }
  .nav-wrapper.scrolled {
    padding: 12px 32px;
  }
  .nav-status {
    display: none;
  }
  section,
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }
  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
  }
}
@media (max-width: 900px) {
  .nav-wrapper {
    padding: 14px 20px;
  }
  .brand-mark {
    width: 56px;
    height: 56px;
  }
  .nav-logo-text {
    display: none;
  }
  .nav-mobile-brand span:first-child {
    display: none;
  }
  .nav-right .whatsapp-cta span,
  .nav-mobile .nav-mobile-cta span {
    display: none;
  }
  .nav-pill {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  section,
  .hero,
  .stats {
    padding: 80px 24px;
  }
  .hero-h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card:first-child {
    grid-column: span 1;
  }
  footer {
    padding: 48px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Glow line decoration */
.glow-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

select option {
  background: #0b0f1c;
  color: var(--text);
}

/* ── SCROLL PROGRESS BAR ── */
/* defined inline via JS */

/* ── UPGRADED REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* Card 3D tilt — preserve transform-style */
.service-card,
.team-card,
.pricing-card,
.tech-cat-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Magnetic button — smooth return */
.btn-primary,
.btn-secondary,
.nav-cta,
.pricing-cta {
  will-change: transform;
  transition:
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s ease;
}

/* Smoother section entries */
section {
  transition: opacity 0.5s ease;
}

/* Scroll-linked glow pulse on hero badge */
.hero-badge {
  animation:
    fadeInUp 0.8s ease both,
    glowPulse 4s 1s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  }
}

/* Floating cards — ensure they stay above smooth wrapper */
.float-card {
  z-index: 2;
  position: absolute;
}

/* ── TRUSTED BY ── */
.trusted {
  background: var(--bg2);
  padding: 60px 64px;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.trusted-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trusted-logo-item {
  padding: 16px 40px;
  border-right: 1px solid var(--glass-border);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: -0.5px;
  transition: color 0.3s;
  cursor: default;
  white-space: nowrap;
}
.trusted-logo-item:last-child {
  border-right: none;
}
.trusted-logo-item:hover {
  color: var(--text-muted);
}
.trusted-logo-item span {
  color: var(--accent);
}

/* ── ABOUT ── */
.about {
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}
.about-copy {
  background: linear-gradient(
    160deg,
    rgba(0, 110, 255, 0.08) 0%,
    rgba(0, 229, 255, 0.05) 48%,
    rgba(123, 47, 255, 0.06) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(18px);
}
.about-copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-copy p strong {
  color: #fff;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-point {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.about-point i {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 8px;
  display: inline-block;
}
.about-point h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.about-point p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}
.about-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.about-panel-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-panel-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.about-panel-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-badge {
  padding: 8px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.16);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

/* ── PROCESS ── */
.process {
  background: var(--bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent2),
    var(--accent),
    var(--accent2),
    transparent
  );
  opacity: 0.3;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.process-num-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  cursor: default;
}
.process-num-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.process-step:hover .process-num-wrap {
  border-color: transparent;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}
.process-step:hover .process-num-wrap::before {
  opacity: 1;
}
.process-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.process-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 4px;
}
.process-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.process-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

/* ── TECH STACK ── */
.techstack {
  background: var(--bg2);
}
.tech-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-cat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s;
}
.tech-cat-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.tech-cat-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s;
}
.tech-pill:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.05);
  color: var(--accent);
}
.tech-pill-icon {
  font-size: 16px;
  line-height: 1;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.featured {
  background: linear-gradient(
    160deg,
    rgba(0, 110, 255, 0.12) 0%,
    rgba(0, 229, 255, 0.06) 50%,
    var(--glass) 100%
  );
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow:
    0 0 60px rgba(0, 229, 255, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.3);
  transform: none;
}
.pricing-card:not(.featured):hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.pricing-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.pricing-plan {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}
.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-feature .pf-check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-feature .pf-cross {
  color: var(--text-dim);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-feature {
  color: var(--text);
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.2px;
}
.pricing-cta.outlined {
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  background: transparent;
}
.pricing-cta.outlined:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 255, 0.05);
}
.pricing-cta.filled {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 110, 255, 0.4);
}
.pricing-cta.filled:hover {
  box-shadow: 0 12px 36px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}
.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}

/* ── FAQ ── */
.faq {
  background: var(--bg2);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(0, 229, 255, 0.2);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: none;
  gap: 16px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 22px;
}
.faq-cta-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 229, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.faq-cta-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.faq-cta-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.faq-cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.faq-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive additions */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .process-grid::before {
    display: none;
  }
  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .trusted-logos {
    gap: 0;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .trusted-logo-item {
    padding: 12px 20px;
    font-size: 15px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tech-categories {
    grid-template-columns: 1fr;
  }
}
