/* ══════════════════════════════════════════════════════════════
   SPLASH / INTRO ANIMATION
   ══════════════════════════════════════════════════════════════ */

/* Lock scroll while splash is visible */
body.splash-active {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: all;
}

.splash-bg {
  position: absolute;
  inset: 0;
  background: #020509;
}

.splash-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}

/* ── Glow orbs behind logo ──────────────────────────────────── */
.splash-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 125, 241, 0.35) 0%, rgba(42, 125, 241, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0;
  animation: splashGlowIn 1.8s 0.2s ease-out forwards;
  filter: blur(40px);
}

.splash-glow-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(117, 222, 83, 0.25) 0%, rgba(255, 180, 50, 0.15) 40%, transparent 70%);
  animation-delay: 0.5s;
  animation-duration: 2s;
  filter: blur(30px);
}

@keyframes splashGlowIn {
  0% { opacity: 0; transform: translate(-50%, -60%) scale(0.4); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.1); }
  100% { opacity: 0.85; transform: translate(-50%, -60%) scale(1); }
}

/* ── Logo ───────────────────────────────────────────────────── */
.splash-logo {
  width: 90px;
  height: auto;
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  animation: splashLogoIn 1.2s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 0 40px rgba(42, 169, 255, 0.6)) drop-shadow(0 0 80px rgba(42, 125, 241, 0.3));
  position: relative;
  z-index: 3;
}

@keyframes splashLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
    filter: drop-shadow(0 0 0px rgba(42, 169, 255, 0)) drop-shadow(0 0 0px rgba(42, 125, 241, 0));
  }
  40% {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 60px rgba(42, 169, 255, 0.8)) drop-shadow(0 0 120px rgba(42, 125, 241, 0.5));
  }
  70% {
    transform: scale(0.95) rotate(-2deg);
    filter: drop-shadow(0 0 50px rgba(42, 169, 255, 0.7)) drop-shadow(0 0 100px rgba(42, 125, 241, 0.3));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 30px rgba(42, 169, 255, 0.5)) drop-shadow(0 0 60px rgba(42, 125, 241, 0.2));
  }
}

/* ── Letter-by-letter text ──────────────────────────────────── */
.splash-text {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

.splash-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.7);
  animation: splashLetterIn 0.5s ease forwards;
}

.splash-text span:nth-child(1) { animation-delay: 0.8s; }
.splash-text span:nth-child(2) { animation-delay: 0.9s; }
.splash-text span:nth-child(3) { animation-delay: 1.0s; }
.splash-text span:nth-child(4) { animation-delay: 1.1s; }
.splash-text span:nth-child(6) { animation-delay: 1.3s; }
.splash-text span:nth-child(7) { animation-delay: 1.4s; }
.splash-text span:nth-child(8) { animation-delay: 1.5s; }
.splash-text span:nth-child(9) { animation-delay: 1.6s; }

.splash-divider {
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, rgba(42, 169, 255, 0.8), rgba(117, 222, 83, 0.6));
  border-radius: 2px;
  margin: 0 8px;
  opacity: 0 !important;
  transform: scaleY(0) !important;
  animation: splashDividerIn 0.4s 1.2s ease forwards !important;
}

@keyframes splashLetterIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.7); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes splashDividerIn {
  0% { opacity: 0; transform: scaleY(0); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ── Tagline ────────────────────────────────────────────────── */
.splash-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: splashTaglineIn 0.6s 1.7s ease forwards;
}

@keyframes splashTaglineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Wipe / Exit ────────────────────────────────────────────── */
.splash-wipe {
  position: absolute;
  inset: 0;
  background: #020509;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* Exit animation — triggered by JS adding .splash-exit */
.splash.splash-exit .splash-content {
  animation: splashContentOut 0.6s ease forwards;
}

.splash.splash-exit .splash-wipe {
  animation: splashWipeIn 0.5s 0.4s ease forwards,
             splashWipeOut 0.5s 0.7s ease forwards;
}

.splash.splash-exit .splash-bg {
  animation: splashBgOut 0.4s 0.9s ease forwards;
}

@keyframes splashContentOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); filter: blur(8px); }
}

@keyframes splashWipeIn {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes splashWipeOut {
  from { transform: scaleY(1); transform-origin: top; }
  to { transform: scaleY(0); transform-origin: top; }
}

@keyframes splashBgOut {
  to { opacity: 0; }
}

/* Final hide */
.splash.splash-done {
  display: none;
}

/* ── Reduce motion preference ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .splash-logo,
  .splash-text span,
  .splash-divider,
  .splash-tagline,
  .splash-glow,
  .splash-glow-2 {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

/* ══════════════════════════════════════════════════════════════ */

:root {
  --bg: #1a1b1edc;
  --bg-soft: #081225;
  --text: #ffffff;
  --muted: #ffffff;
  --line: rgba(113, 144, 186, 0.2);
  --primary: #2a7df1;
  --primary-2: #16a8ff;
  --card: rgba(4, 11, 24, 0.75);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #000;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
}

.topbar {
  width: 100%;
  margin: 0;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(70px, 8vw, 120px) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.topbar.scrolled {
  background: rgba(2, 6, 13, 0.88);
  border-bottom-color: rgba(113, 144, 186, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1002;
}

.logo {
  width: 56px;
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 0;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 1;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  height: auto;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: #8cd8ff;
  opacity: 1;
}

.caret {
  font-size: 10px;
  transform: translateY(-1px);
}

.dropdown-item.open .caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 32px;
  background: rgba(10, 22, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(42, 169, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 40px clamp(40px, 8vw, 100px) 45px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.dropdown-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tech-menu {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

@media (min-width: 921px) {
  .navbar {
    height: 100%;
    align-items: stretch;
  }

  .nav-item {
    height: 100%;
    display: inline-flex;
    align-items: stretch;
  }

  .nav-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
  }

  .navbar > a {
    height: 100%;
    display: inline-flex;
    align-items: center;
  }

  .navbar > a.contact-btn {
    height: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
  }

  .dropdown-item:hover .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dropdown-item:hover .caret {
    transform: rotate(180deg);
  }
}

.mega-col h4 {
  margin: 0 0 16px;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  margin: 4px -12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.mega-col a:hover {
  background: rgba(42, 169, 255, 0.1);
  color: #ffffff;
  transform: translateX(6px);
}

.mega-link i {
  font-size: 15px;
  color: var(--primary-2);
  min-width: 18px;
  transition: transform 0.2s ease;
}

.mega-col a:hover i {
  color: #ffffff;
  transform: scale(1.1);
}
}

.topbar .nav-link,
.topbar .navbar a {
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  opacity: 1;
  border: none !important;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none !important;
  box-shadow: none !important;
}

.topbar .nav-link:hover,
.topbar .navbar a:hover {
  color: #3b82f6 !important;
  text-decoration: none !important;
}



.contact-btn {
  border: 1px solid rgba(42, 169, 255, 0.5) !important;
  border-radius: 999px !important;
  padding: 5px 13px !important;
  background: rgba(42, 169, 255, 0.1) !important;
  color: #ffffff !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(42, 169, 255, 0.1);
  margin-left: 10px;
}

.contact-btn:hover {
  background: rgba(42, 169, 255, 0.2) !important;
  border-color: rgba(42, 169, 255, 0.8) !important;
  box-shadow: 0 0 25px rgba(42, 169, 255, 0.2);
  transform: translateY(-1px);
}

.hero-wrap {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 8% 40px 8%;
  overflow: hidden;
  isolation: isolate;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(2, 6, 13, 0.65) 0%, rgba(2, 6, 13, 0.45) 45%, rgba(2, 6, 13, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Animated bottom edge gradient */
.hero-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Ambient glow spots ─────────────────────────────────────── */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(34, 197, 94, 0.15);
  top: 10%;
  left: -8%;
  animation: glowPulse1 6s ease-in-out infinite;
}

.hero-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(42, 125, 241, 0.12);
  bottom: 5%;
  right: 5%;
  animation: glowPulse2 8s ease-in-out infinite;
}

@keyframes glowPulse1 {
  0%, 100% { opacity: 0.5; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.9; transform: scale(1.2) translate(20px, 10px); }
}

@keyframes glowPulse2 {
  0%, 100% { opacity: 0.4; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.75; transform: scale(1.15) translate(-15px, -10px); }
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1000px, 68%);
  max-width: 100%;
  text-align: left;
  flex-shrink: 0;
  padding-right: 10px;
}

/* ── Hero Right Visual ─────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 1;
  width: clamp(300px, 32vw, 450px);
  height: 460px;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Code editor card */
.code-card {
  width: min(380px, 100%);
  border-radius: 12px;
  background: rgba(13, 17, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  animation: cardFloat 8s ease-in-out infinite;
}

.code-card-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
}

.code-card-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.code-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 11.5px;
  color: rgba(200, 216, 236, 0.35);
  font-family: 'Sora', sans-serif;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  cursor: default;
}

.code-tab i { font-size: 13px; }

.code-tab.active {
  color: rgba(200, 216, 236, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid #2a7df1;
}

.code-card-body {
  padding: 14px 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(200, 216, 236, 0.65);
}

.code-line {
  white-space: nowrap;
  padding: 0 18px;
  display: flex;
  align-items: center;
}

.code-line.active-line {
  background: rgba(42, 125, 241, 0.08);
  border-left: 2px solid #2a7df1;
  padding-left: 16px;
}

.ln {
  display: inline-block;
  width: 24px;
  margin-right: 16px;
  color: rgba(200, 216, 236, 0.2);
  font-size: 11px;
  text-align: right;
  user-select: none;
  flex-shrink: 0;
}

.code-kw { color: #c678dd; }
.code-fn { color: #61afef; }
.code-var { color: #e06c75; }
.code-str { color: #98c379; }
.code-key { color: #e06c75; }
.code-param { color: #e5c07b; font-style: italic; }
.code-num { color: #d19a66; }

.code-blinking {
  color: #528bff;
  font-weight: 700;
  animation: blink 1s step-end infinite;
}

.code-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 10.5px;
  color: rgba(200, 216, 236, 0.3);
  font-family: 'Sora', sans-serif;
}

.code-card-footer span:first-child {
  color: #22c55e;
}

.code-card-footer span:first-child i {
  margin-right: 4px;
  font-size: 11px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes cardFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

/* Floating tech icons */
.floating-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(13, 17, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-icon:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.floating-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fi-1 { top: 8%;   right: 2%;   animation: iconFloat 5s ease-in-out infinite 0s; }
.fi-2 { top: 22%;  left: 0;     animation: iconFloat 6s ease-in-out infinite 0.5s; }
.fi-3 { bottom: 18%; right: 2%; animation: iconFloat 5.5s ease-in-out infinite 1s; }
.fi-4 { bottom: 5%;  left: 4%;  animation: iconFloat 7s ease-in-out infinite 1.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Floating stat cards */
.float-stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(13, 17, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.fsc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.fsc-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.fsc-icon.blue {
  background: rgba(42, 125, 241, 0.15);
  color: #2a7df1;
}

.fsc-icon.purple {
  background: rgba(167, 139, 250, 0.15);
  color: #a78bfa;
}

.float-stat-card div:not(.fsc-icon) {
  display: flex;
  flex-direction: column;
}

.float-stat-card strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

.float-stat-card span {
  font-size: 10.5px;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
}

.fsc-1 {
  top: 2%;
  right: 0;
  animation: statFloat 7s ease-in-out infinite 0.3s;
}

.fsc-2 {
  bottom: 0;
  right: 4%;
  animation: statFloat 6s ease-in-out infinite 1s;
}

.fsc-3 {
  top: 50%;
  left: -5%;
  animation: statFloat 8s ease-in-out infinite 0.6s;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(53, 158, 255, 0.6);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #d2e8ff;
  background: rgba(10, 31, 56, 0.62);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1dbfff;
  box-shadow: 0 0 12px #1dbfff;
}

.hero h1 {
  margin: 20px 0 10px;
  line-height: 1.15;
  font-size: clamp(34px, 5.8vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
}

.hero h1 span {
  display: block;
}

.hero h1 .typed-line-small {
  font-size: clamp(24px, 4vw, 50px);
}

/* Gradient shimmer on "Impossible to Ignore." */
.typed-gradient {
  background: linear-gradient(90deg, #22c55e 0%, #16a8ff 40%, #a78bfa 70%, #22c55e 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
  padding: 0 4px 6px 2px;
  margin-left: -2px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated accent line above stat pills */
.hero-accent-line {
  width: 60px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #22c55e, #16a8ff);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.hero-accent-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: lineShimmer 2.5s ease-in-out infinite;
}

@keyframes lineShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero h1 .typed-cursor {
  display: inline;
}

.subtitle {
  margin: 0;
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid rgba(34, 197, 94, 0.4);
}

.cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-row a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-primary {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.5);
}

/* Breathing pulse ring on primary CTA */
.btn-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: ctaPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0; }
}

.cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.cta-row a:hover {
  transform: translateY(-2px);
}

/* ── Hero Trust Line ────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #ffffff;
}

.hero-trust strong {
  color: #22c55e;
}

.hero-trust-avatars {
  display: flex;
  gap: 0;
}

.trust-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(2, 6, 13, 0.8);
  margin-left: -8px;
  background: linear-gradient(135deg, #1a3a5c, #22c55e);
  animation: dotBounce 3s ease-in-out infinite;
  animation-delay: var(--dot-delay, 0s);
}

.trust-dot:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #2a7df1, #16a8ff);
  --dot-delay: 0s;
}

.trust-dot:nth-child(2) {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  --dot-delay: 0.15s;
}

.trust-dot:nth-child(3) {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  --dot-delay: 0.3s;
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #dbeafe;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.client-strip {
  width: 100%;
  margin: 0;
  padding: 28px clamp(10px, 2.6vw, 24px) 32px;
  background: linear-gradient(180deg, rgba(2, 6, 13, 0.95) 0%, rgba(6, 14, 30, 0.98) 100%);
  border-top: 1px solid rgba(42, 125, 241, 0.08);
  border-bottom: 1px solid rgba(42, 125, 241, 0.08);
  position: relative;
  z-index: 2;
}

.client-strip-label {
  margin: 0 auto 16px;
  text-align: center;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: rgba(182, 199, 222, 0.68);
  width: min(1320px, 100%);
}

.client-strip-label span {
  color: #4ab7ff;
}

.client-strip-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(8, 18, 37, 0.5);
  border: 1px solid rgba(42, 125, 241, 0.1);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 8px 0;
  isolation: isolate;
}

.client-strip-track-wrap::before,
.client-strip-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-strip-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 18, 37, 1) 0%, rgba(8, 18, 37, 0.9) 30%, transparent 100%);
}

.client-strip-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 18, 37, 1) 0%, rgba(8, 18, 37, 0.9) 30%, transparent 100%);
}

.client-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 24px;
  padding: 10px 12px;
  animation: logoMarquee 36s linear infinite;
}

.client-strip:hover .client-strip-track {
  animation-play-state: paused;
}

.client-logo {
  width: 120px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 10px 14px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(42, 169, 255, 0.25);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  transition: filter 0.25s ease;
}

.client-logo:hover img {
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(42, 169, 255, 0.2));
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .topbar {
    width: 100%;
    margin-top: 0;
    height: 72px;
    padding: 12px 20px 0;
    background: rgba(2, 6, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 169, 255, 0.15);
  }

  .menu-toggle {
    display: block;
  }
  
  .logo {
    width: 50px;
    height: auto;
  }

  .navbar {
    position: absolute;
    right: 10px;
    top: 74px;
    width: min(300px, calc(100% - 24px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: rgba(8, 18, 30, 0.98);
    border: 1px solid rgba(42, 169, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 999;
  }

  .navbar::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    box-shadow: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item.open .mega-menu {
    max-height: 760px;
    opacity: 1;
    pointer-events: auto;
  }

  .mega-col h4 {
    font-size: 11px;
    color: #3b82f6;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-col a {
    font-size: 14px;
    color: #ffffff !important;
    margin: 10px 0;
    padding: 5px 0;
  }

  .navbar.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar a {
    padding: 10px;
    border-radius: 8px;
  }

  .navbar a:hover {
    background: rgba(50, 101, 168, 0.28);
  }

  .contact-btn {
    text-align: center;
    margin-top: 6px;
    width: fit-content;
    padding: 8px 24px !important;
    align-self: flex-start;
  }

  .hero-wrap {
    min-height: calc(100vh - 62px);
    height: auto;
    padding: 100px 20px 40px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 48px);
    word-spacing: 0.02em;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .subtitle {
    max-width: 100%;
    font-size: 15px;
  }

  .cta-row {
    justify-content: flex-start;
  }

  .hero-stat-pills {
    gap: 8px;
  }

  .hero-stat-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero-glow {
    display: none;
  }

  .hero-trust {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 12px;
  }

  .trust-dot {
    width: 22px;
    height: 22px;
  }

  .client-strip {
    padding: 20px 8px 22px;
  }

  .client-strip-label {
    margin-bottom: 10px;
    letter-spacing: 0.14em;
    font-size: 9px;
  }

  .client-strip-track {
    gap: 14px;
    padding: 8px;
    animation-duration: 28s;
  }

  .client-strip-track-wrap::before,
  .client-strip-track-wrap::after {
    width: 40px;
  }

  .client-logo {
    width: 100px;
    height: 48px;
    border-radius: 8px;
    padding: 8px 10px;
  }

  .subtitle {
    line-height: 1.5;
  }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE ANIMATIONS — Logo, Hero, Background, Text
   ══════════════════════════════════════════════════════════════ */

/* ── Header Logo Animation ──────────────────────────────────── */
.logo-animated {
  animation: logoFloat 3s ease-in-out infinite, logoGlowPulse 4s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-animated:hover {
  transform: scale(1.12) rotate(3deg);
  filter: drop-shadow(0 0 20px rgba(42, 169, 255, 0.7)) drop-shadow(0 0 40px rgba(42, 125, 241, 0.4));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes logoGlowPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(42, 169, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 14px rgba(42, 169, 255, 0.55)) drop-shadow(0 0 28px rgba(42, 125, 241, 0.2)); }
}

/* ── Hero Staggered Entrance ────────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroStagger {
  0% { opacity: 0; transform: translateY(30px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Gradient Text Shimmer ──────────────────────────────────── */
.gradient-shift {
  display: block;
  font-family: "Sora", sans-serif;
  background: linear-gradient(90deg, #30c5ff 0%, #40a7f8 25%, #75de53 50%, #30c5ff 75%, #40a7f8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShimmer 4s ease-in-out infinite;
}

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Badge Dot Pulse ────────────────────────────────────────── */
.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1dbfff;
  box-shadow: 0 0 12px #1dbfff;
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
}

.badge::before {
  display: none;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px #1dbfff; }
  50% { transform: scale(1.3); box-shadow: 0 0 20px #1dbfff, 0 0 40px rgba(29, 191, 255, 0.4); }
}

/* ── Button Shine Effect ────────────────────────────────────── */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 100% { left: -60%; }
  50% { left: 120%; }
}

/* ── Button Border Glow Effect ──────────────────────────────── */
.btn-border-anim {
  position: relative;
  overflow: hidden;
}

.btn-border-anim::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, rgba(42, 169, 255, 0.5), transparent, rgba(117, 222, 83, 0.3), transparent);
  border-radius: inherit;
  animation: borderRotate 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-border-anim:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  to { transform: rotate(360deg); }
}

/* ── Pill Float Animation ───────────────────────────────────── */
.pill-float {
  animation: pillBob 3s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes pillBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── Enhanced Reveal Animations (sections) ──────────────────── */
.reveal.is-visible .svc-card2,
.reveal.is-visible .ind-card,
.reveal.is-visible .process-step,
.reveal.is-visible .test-card,
.reveal.is-visible .stat-block,
.reveal.is-visible .glow-card,
.reveal.is-visible .metric-card {
  animation: cardPopIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.svc-card2, .ind-card, .process-step, .test-card, .stat-block, .glow-card, .metric-card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.ind-card:nth-child(1), .stat-block:nth-child(1), .metric-card:nth-child(1) { animation-delay: 0s; }
.ind-card:nth-child(2), .stat-block:nth-child(2), .metric-card:nth-child(2) { animation-delay: 0.1s; }
.ind-card:nth-child(3), .stat-block:nth-child(3), .metric-card:nth-child(3) { animation-delay: 0.2s; }
.ind-card:nth-child(4), .stat-block:nth-child(4), .metric-card:nth-child(4) { animation-delay: 0.3s; }
.ind-card:nth-child(5) { animation-delay: 0.4s; }
.ind-card:nth-child(6) { animation-delay: 0.5s; }
.ind-card:nth-child(7) { animation-delay: 0.6s; }
.ind-card:nth-child(8) { animation-delay: 0.7s; }

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 0.15s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.45s; }

.test-card:nth-child(1) { animation-delay: 0s; }
.test-card:nth-child(2) { animation-delay: 0.15s; }
.test-card:nth-child(3) { animation-delay: 0.3s; }

.glow-card:nth-child(1) { animation-delay: 0s; }
.glow-card:nth-child(2) { animation-delay: 0.12s; }
.glow-card:nth-child(3) { animation-delay: 0.24s; }
.glow-card:nth-child(4) { animation-delay: 0.36s; }

@keyframes cardPopIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Section Heading Reveal Overrides ───────────────────────── */
.sec-head.reveal.is-visible .kicker {
  animation: kickerSlide 0.5s ease forwards;
}

.sec-head.reveal.is-visible h2 {
  animation: headingReveal 0.7s 0.15s ease forwards;
  opacity: 0;
}

.sec-head.reveal.is-visible p {
  animation: headingReveal 0.8s 0.3s ease forwards;
  opacity: 0;
  color: #ffffff;
}

@keyframes kickerSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes headingReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Industry Card Icon Bounce ──────────────────────────────── */
.ind-card:hover i {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.25) rotate(-5deg); }
  70% { transform: scale(0.95) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ── Stats Counter Glow ─────────────────────────────────────── */
.stat-block strong {
  text-shadow: 0 0 20px rgba(42, 169, 255, 0.3);
  transition: text-shadow 0.3s ease;
}

.stat-block:hover strong {
  text-shadow: 0 0 30px rgba(42, 169, 255, 0.6), 0 0 60px rgba(42, 125, 241, 0.2);
}

/* ── Tech Chip Hover Effect ─────────────────────────────────── */
.tech-chip {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tech-chip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(42, 169, 255, 0.15);
}

.tech-chip:hover img {
  animation: techIconSpin 0.6s ease;
}

@keyframes techIconSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* ── FAQ Open Animation ─────────────────────────────────────── */
.faq-item[open] .faq-answer {
  animation: faqSlideIn 0.35s ease forwards;
}

@keyframes faqSlideIn {
  from { opacity: 0; transform: translateY(-8px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 300px; }
}

/* ── Cursor Blink for typed feel ────────────────────────────── */
.typed-line {
  display: block;
  min-height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
}

.typed-line:empty {
  min-height: 0;
}

.typed-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--primary-2);
  animation: cursorBlink 0.65s step-end infinite;
  margin-left: -2px;
  font-style: normal;
}

.typed-cursor.hide {
  display: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Reduce Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .logo-animated,
  .hero-anim,
  .gradient-shift,
  .badge-dot-pulse,
  .btn-shine::after,
  .pill-float {
    animation: none !important;
  }

  .hero-anim {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS — Premium Dark Theme
   ══════════════════════════════════════════════════════════════ */

/* ── Scroll Hint ────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(200, 218, 240, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(42, 169, 255, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Hero Stat Pills (top row) ───────────────────────────────── */
.hero-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(16, 40, 72, 0.65);
  border: 1px solid rgba(42, 125, 241, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.2);
}

/* Pill pop-in animation */
.pill-pop {
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  animation: pillPopIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--pop-delay, 0s);
}

@keyframes pillPopIn {
  0% { opacity: 0; transform: translateY(12px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-stat-pill i {
  font-size: 17px;
  color: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.5));
}

.hero-stat-pill strong {
  color: #fff;
  font-weight: 800;
}

/* ── Hero Pills (legacy — hidden if unused) ─────────────────── */
.hero-pills {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(210, 230, 255, 0.85);
  background: rgba(20, 50, 90, 0.45);
  border: 1px solid rgba(42, 125, 241, 0.25);
  backdrop-filter: blur(6px);
}

.hero-pill i {
  font-size: 13px;
  color: var(--primary-2);
}

/* ── Generic Section ────────────────────────────────────────── */
.sec {
  padding: 64px 0;
  position: relative;
}

.container {
  width: min(1600px, calc(100% - 16px));
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin-bottom: 12px;
}

.sec-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #ffffff;
}

.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #30c5ff, #75de53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 12px;
}

/* ── About Section ──────────────────────────────────────────── */
.sec-about {
  padding-bottom: 32px;
  background:
    radial-gradient(600px 400px at 0% 50%, rgba(34, 197, 94, 0.06), transparent),
    radial-gradient(600px 400px at 100% 50%, rgba(42, 125, 241, 0.06), transparent),
    var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 8vw, 100px);
  padding: 0 40px;
  align-items: center;
}

.about-text .kicker {
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px;
}

.about-text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #22c55e, #16a8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 92%;
}

.about-text .link-arrow {
  margin-top: 24px;
  font-size: 15px;
  color: #22c55e;
  font-weight: 700;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.metric-card {
  background: rgba(8, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px 20px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.3), rgba(42, 125, 241, 0.3), transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(34, 197, 94, 0.06);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card i {
  font-size: 28px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(42, 125, 241, 0.1);
  color: var(--primary-2);
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, background 0.3s ease;
}

.metric-card:hover i {
  transform: scale(1.1);
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.metric-card strong {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-family: "Sora", sans-serif;
  display: inline-block;
  transition: text-shadow 0.3s ease;
}

.metric-card:hover strong {
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.3);
}

.metric-card span {
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
}

.metric-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Services Section ───────────────────────────────────────── */
.sec-services {
  padding-top: 32px;
  background:
    radial-gradient(600px 500px at 80% 20%, rgba(22, 168, 255, 0.06), transparent),
    linear-gradient(180deg, var(--bg) 0%, #060e1e 100%);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.svc-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ── Per-card accent colors ── */
.svc-card2[data-svc="01"] { --accent: #2a7df1; --accent-rgb: 42,125,241; }
.svc-card2[data-svc="02"] { --accent: #06b6d4; --accent-rgb: 6,182,212; }
.svc-card2[data-svc="03"] { --accent: #8b5cf6; --accent-rgb: 139,92,246; }
.svc-card2[data-svc="04"] { --accent: #f59e0b; --accent-rgb: 245,158,11; }
.svc-card2[data-svc="05"] { --accent: #10b981; --accent-rgb: 16,185,129; }
.svc-card2[data-svc="06"] { --accent: #f97316; --accent-rgb: 249,115,22; }
.svc-card2[data-svc="07"] { --accent: #ec4899; --accent-rgb: 236,72,153; }
.svc-card2[data-svc="08"] { --accent: #22d3ee; --accent-rgb: 34,211,238; }

.svc-card2 {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}

.svc-card2-inner {
  position: relative;
  height: 100%;
  padding: 40px 35px 35px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
    linear-gradient(170deg, rgba(18, 32, 60, 0.75) 0%, rgba(10, 20, 42, 0.7) 100%);
  border: 1px solid white;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(229, 223, 223, 0.899),
    0 1px 0 rgba(255, 255, 255, 0.941) inset,
    0 0 0 0.5px rgba(var(--accent-rgb), 0.12),
    0 0 20px rgba(var(--accent-rgb), 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

/* ── Top accent line ── */
.svc-card2-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
  transition: left 0.4s ease, right 0.4s ease, opacity 0.4s ease;
}

.svc-card2:hover .svc-card2-inner::before {
  left: 5%;
  right: 5%;
  opacity: 1;
}

/* ── Animated shimmer sweep ── */
.svc-card2-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(var(--accent-rgb), 0.04) 45%,
    rgba(var(--accent-rgb), 0.08) 50%,
    rgba(var(--accent-rgb), 0.04) 55%,
    transparent 70%
  );
  transition: left 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.svc-card2:hover .svc-card2-inner::after {
  left: 130%;
}

/* ── Hover lift & glow ── */
.svc-card2:hover {
  transform: translateY(-8px);
}

.svc-card2:hover .svc-card2-inner {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.2),
    0 12px 40px rgba(var(--accent-rgb), 0.12),
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(var(--accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}



/* ── Number badge ── */
.svc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(var(--accent-rgb), 0.3);
  font-family: 'Sora', monospace;
  transition: color 0.3s ease;
}

/* ── Card Art Illustration ── */
.svc-card-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
  mask-image: radial-gradient(circle at 70% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black 20%, transparent 100%);
}

.svc-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.svc-card2:hover .svc-card-art {
  transform: scale(1.1);
  opacity: 0.25;
}

@media (max-width: 992px) {
  .svc-card-art {
    opacity: 0.3;
    width: 70%;
    right: -15%;
    top: 20%;
  }
}

@media (max-width: 768px) {
  .svc-card-art {
    display: none;
  }
}

.svc-card2:hover .svc-num {
  color: rgba(var(--accent-rgb), 0.55);
}

/* ── Icon ── */
.svc-icon2 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.06));
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.08);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.svc-icon2 i {
  font-size: 22px;
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.svc-card2:hover .svc-icon2 {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-rgb), 0.1));
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.2);
  transform: scale(1.08);
  animation: none;
}

.svc-card2:hover .svc-icon2 i {
  transform: scale(1.12) rotate(-8deg);
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.6));
}

/* ── Featured card bg image (CSS-generated) ── */
.svc-featured .svc-card2-inner {
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400"><defs><radialGradient id="g" cx="30%25" cy="40%25" r="60%25"><stop offset="0%25" stop-color="%232a7df1" stop-opacity="0.15"/><stop offset="100%25" stop-color="%23000" stop-opacity="0"/></radialGradient><linearGradient id="l" x1="0" y1="0" x2="1" y2="1"><stop offset="0%25" stop-color="%232a7df1" stop-opacity="0.06"/><stop offset="100%25" stop-color="%23000" stop-opacity="0"/></linearGradient></defs><rect fill="url(%23g)" width="600" height="400"/><rect fill="url(%23l)" width="600" height="400"/><circle cx="120" cy="100" r="80" fill="%232a7df1" fill-opacity="0.04"/><circle cx="350" cy="250" r="120" fill="%2306b6d4" fill-opacity="0.03"/><line x1="100" y1="300" x2="500" y2="100" stroke="%232a7df1" stroke-opacity="0.05" stroke-width="1"/><line x1="50" y1="200" x2="550" y2="200" stroke="%232a7df1" stroke-opacity="0.03" stroke-width="1"/></svg>') center / cover no-repeat,
    radial-gradient(ellipse at 25% 15%, rgba(42, 125, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, rgba(14, 28, 55, 0.82) 0%, rgba(8, 16, 35, 0.78) 100%);
  border: 1px solid #ffffff !important;
}

.svc-featured:hover .svc-card2-inner {
  border-color: #ffffff !important;
}

/* ── Corner decorative icon ── */
.svc-corner-icon {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.svc-corner-icon i {
  font-size: 16px;
  color: rgba(var(--accent-rgb), 0.45);
  transition: color 0.3s ease;
}

.svc-card2:hover .svc-corner-icon {
  background: rgba(var(--accent-rgb), 0.12);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.15);
}

.svc-card2:hover .svc-corner-icon i {
  color: rgba(var(--accent-rgb), 0.7);
}

/* ══════════════════════════════════════
   UI/UX Showcase Card (card 07)
   ══════════════════════════════════════ */
.svc-uiux-showcase {
  grid-column: span 2;
}

.svc-uiux-showcase .svc-card2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(236, 72, 153, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(244, 114, 182, 0.06) 0%, transparent 50%),
    linear-gradient(170deg, rgba(18, 28, 55, 0.82) 0%, rgba(10, 18, 38, 0.78) 100%);
  border: 1px solid #ffffff !important;
  overflow: hidden;
}

.svc-uiux-showcase:hover .svc-card2-inner {
  border-color: #ffffff !important;
}

/* ── Image Stack ── */
.uiux-preview {
  position: relative;
  padding: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background:
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
}

.uiux-preview-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.uiux-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s ease;
}

.uiux-img-1 {
  width: 65%;
  height: 75%;
  top: 5%;
  left: 5%;
  z-index: 3;
  border: 1px solid rgba(244, 114, 182, 0.2);
}

.uiux-img-2 {
  width: 45%;
  height: 55%;
  bottom: 5%;
  right: 5%;
  z-index: 2;
  border: 1px solid rgba(244, 114, 182, 0.15);
}

.uiux-img-3 {
  width: 35%;
  height: 40%;
  top: 0;
  right: 20%;
  z-index: 1;
  opacity: 0.6;
  filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-uiux-showcase:hover .uiux-img-1 {
  transform: translate(-4px, -4px) rotate(-1deg) scale(1.03);
  box-shadow: 0 12px 48px rgba(236, 72, 153, 0.2), 0 0 0 1px rgba(244, 114, 182, 0.3);
}

.svc-uiux-showcase:hover .uiux-img-2 {
  transform: translate(4px, 4px) rotate(1.5deg) scale(1.02);
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15), 0 0 0 1px rgba(244, 114, 182, 0.2);
}

.svc-uiux-showcase:hover .uiux-img-3 {
  transform: translate(6px, -6px);
  opacity: 0.75;
  filter: blur(0.5px);
}

/* ── Content Side ── */
.uiux-content {
  padding: 28px 28px 28px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.uiux-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f0f4fa;
  margin-bottom: 10px;
}

.uiux-content > p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 16px;
}

/* ── Metrics Row ── */
.uiux-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.uiux-metric {
  display: flex;
  flex-direction: column;
}

.uiux-metric strong {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.uiux-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.uiux-metric span {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Responsive: stack on smaller screens ── */
@media (max-width: 900px) {
  .svc-uiux-showcase {
    grid-column: span 2;
  }
  .svc-uiux-showcase .svc-card2-inner {
    grid-template-columns: 1fr;
  }
  .uiux-preview {
    min-height: 200px;
  }
  .uiux-content {
    padding: 20px 24px 24px;
  }
}

@media (max-width: 640px) {
  .svc-uiux-showcase {
    grid-column: span 1;
  }
  .uiux-preview {
    min-height: 180px;
    padding: 20px;
  }
  .uiux-preview-stack {
    min-height: 160px;
  }
  .uiux-metrics {
    gap: 16px;
  }
  .uiux-metric strong {
    font-size: 18px;
  }
}

/* ── Featured card icon bigger ── */
.svc-featured .svc-icon2 {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.svc-featured .svc-icon2 i {
  font-size: 27px;
}

/* ── Featured card highlights ── */
.svc-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
}

.svc-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-highlight-item i {
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(var(--accent-rgb), 0.4));
}

.svc-highlight-item span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
  line-height: 1.3;
}

/* ── Featured card tech strip ── */
.svc-tech-strip {
  margin: 20px 0 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.svc-tech-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.svc-tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tech-badge {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 8px;
  padding: 5px 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-card2:hover .svc-tech-badge {
  background: rgba(var(--accent-rgb), 0.14);
}

/* ── Featured card mini process flow ── */
.svc-mini-process {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 18px 0 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.svc-mp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.svc-mp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
  position: relative;
}

.svc-mp-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
}

.svc-mp-step span {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.svc-mp-line {
  flex: 1;
  height: 2px;
  min-width: 16px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.35), rgba(var(--accent-rgb), 0.1));
  margin: 0 4px;
  margin-bottom: 20px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .svc-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .svc-mini-process {
    flex-wrap: wrap;
    gap: 8px;
  }
  .svc-mp-line {
    min-width: 10px;
  }
}

/* ── Typography ── */
.svc-card2 h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.svc-featured h3 {
  font-size: 30px;
}

.svc-card2 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.svc-featured p {
  font-size: 18px;
}

/* ── Tags ── */
.svc-tags2 {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.svc-tags2 li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 999px;
  padding: 4px 11px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.svc-card2:hover .svc-tags2 li {
  background: rgba(var(--accent-rgb), 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* ── Link ── */
.svc-link2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
  position: relative;
  z-index: 1;
}

.svc-link2 i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.svc-link2:hover {
  gap: 8px;
}

.svc-link2:hover i {
  transform: translateX(3px);
}

/* ── Staggered reveal ── */
.svc-card2:nth-child(1) { animation-delay: 0s; }
.svc-card2:nth-child(2) { animation-delay: 0.08s; }
.svc-card2:nth-child(3) { animation-delay: 0.16s; }
.svc-card2:nth-child(4) { animation-delay: 0.24s; }
.svc-card2:nth-child(5) { animation-delay: 0.32s; }
.svc-card2:nth-child(6) { animation-delay: 0.40s; }
.svc-card2:nth-child(7) { animation-delay: 0.48s; }
.svc-card2:nth-child(8) { animation-delay: 0.56s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .services-bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .svc-featured {
    grid-column: span 1;
  }
  .svc-featured h3 { font-size: 18px; }
  .svc-featured p { font-size: 13px; }
}

/* ── Case Studies Section ────────────────────────────────────── */
.sec-cases {
  padding-bottom: 32px;
  background: #030810;
  border-top: 1px solid rgba(42, 125, 241, 0.08);
  border-bottom: 1px solid rgba(42, 125, 241, 0.08);
  overflow: hidden;
}

/* ── Navigation row: arrow – pills – arrow ── */
.cases-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.cases-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.case-pill {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.case-pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.case-pill.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 125, 241, 0.25);
}

.case-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.case-arr:hover {
  background: rgba(42, 125, 241, 0.15);
  border-color: rgba(42, 125, 241, 0.4);
  box-shadow: 0 0 16px rgba(42, 125, 241, 0.15);
}

/* ── Coverflow stage ── */
.cases-stage {
  position: relative;
  width: 100%;
  height: 520px;
  perspective: 1200px;
}

/* ── Case card (base = side card) ── */
.case-card {
  position: absolute;
  width: 340px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(42, 125, 241, 0.05) 0%, transparent 60%),
    rgba(10, 18, 36, 0.85);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.65);
}

/* ── Left side card ── */
.case-card.pos-left {
  opacity: 0.7;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(-380px) scale(0.78);
  z-index: 1;
}

/* ── Right side card ── */
.case-card.pos-right {
  opacity: 0.7;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(380px) scale(0.78);
  z-index: 1;
}

/* ── Center / active card ── */
.case-card.pos-center {
  opacity: 1;
  pointer-events: auto;
  width: 560px;
  transform: translate(-50%, -50%) scale(1);
  z-index: 10;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(42, 125, 241, 0.08);
}

/* ── Far-left / Far-right (hidden peek) ── */
.case-card.pos-far-left {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translateX(-950px) scale(0.6);
  z-index: 0;
}

.case-card.pos-far-right {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translateX(950px) scale(0.6);
  z-index: 0;
}

/* ── Card image ── */
.case-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.case-card.pos-center .case-img {
  height: 260px;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.case-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 18, 36, 0.9) 100%);
}

/* ── Card body ── */
.case-body {
  padding: 20px 24px 24px;
}

.case-body h4 {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 14px;
}

.case-body h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(42, 125, 241, 0.6), transparent);
  border-radius: 2px;
}

.case-card.pos-center .case-body h4 {
  font-size: 22px;
}

.case-body p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.case-card.pos-center .case-body p {
  font-size: 14.5px;
  color: #ffffff;
}

/* Side cards hide description for cleaner look */
.case-card:not(.pos-center) .case-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .case-card.pos-left {
    transform: translate(-50%, -50%) translateX(-340px) scale(0.75);
  }
  .case-card.pos-right {
    transform: translate(-50%, -50%) translateX(340px) scale(0.75);
  }
}

@media (max-width: 1024px) {
  .cases-stage {
    height: 480px;
  }
  .case-card.pos-center {
    width: 420px;
  }
  .case-card {
    width: 260px;
  }
  .case-card.pos-left {
    transform: translate(-50%, -50%) translateX(-280px) scale(0.72);
  }
  .case-card.pos-right {
    transform: translate(-50%, -50%) translateX(280px) scale(0.72);
  }
}

@media (max-width: 768px) {
  .cases-stage {
    height: 440px;
  }
  .case-card.pos-center {
    width: 340px;
  }
  .case-card.pos-center .case-img {
    height: 200px;
  }
  .case-card {
    width: 220px;
  }
  .case-card.pos-left {
    transform: translate(-50%, -50%) translateX(-220px) scale(0.7);
    opacity: 0.4;
  }
  .case-card.pos-right {
    transform: translate(-50%, -50%) translateX(220px) scale(0.7);
    opacity: 0.4;
  }
}

@media (max-width: 480px) {
  .cases-pills {
    gap: 6px;
  }
  .case-pill {
    font-size: 11px;
    padding: 6px 14px;
  }
  .cases-stage {
    height: 420px;
  }
  .case-card.pos-center {
    width: 290px;
  }
  .case-card.pos-left,
  .case-card.pos-right {
    opacity: 0.25;
    transform: translate(-50%, -50%) translateX(-170px) scale(0.65);
  }
  .case-card.pos-right {
    transform: translate(-50%, -50%) translateX(170px) scale(0.65);
  }
}

/* ── Partners Section ────────────────────────────────────────── */
.sec-partners {
  padding-top: 32px;
  background:
    radial-gradient(600px 350px at 50% 60%, rgba(42, 125, 241, 0.04), transparent),
    var(--bg);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.partner-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  max-width: 83.33%;
  margin-left: auto;
  margin-right: auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px 22px;
  border-radius: 14px;
  background: rgba(12, 20, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  cursor: default;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(16, 28, 52, 0.9);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(42, 125, 241, 0.06);
}

.partner-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.12);
}

.partner-card span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Partners Responsive ── */
@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .partner-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-card {
    padding: 22px 12px 18px;
    gap: 10px;
  }
  .partner-card img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .partner-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-card {
    padding: 18px 10px 14px;
  }
  .partner-card img {
    width: 36px;
    height: 36px;
  }
  .partner-card span {
    font-size: 11px;
  }
}

/* ── Our Clients Section ─────────────────────────────────────── */
.sec-clients {
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 80px;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  margin-bottom: 20px;
}

/* Fade edges */
.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Row 1 → slides LEFT */
.marquee-left {
  animation: marqueeLeft 40s linear infinite;
}

/* Row 2 → slides RIGHT */
.marquee-right {
  animation: marqueeRight 40s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.clients-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 16px 18px;
  border-radius: 14px;
  background: rgba(16, 28, 52, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.marquee-item:hover {
  border-color: rgba(42, 125, 241, 0.2);
  background: rgba(16, 28, 52, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.marquee-item img {
  width: 110px;
  height: 54px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 6px;
}

.marquee-item span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .marquee-item {
    width: 130px;
    padding: 16px 12px 14px;
  }
  .marquee-item img {
    width: 52px;
    height: 40px;
  }
  .clients-marquee::before,
  .clients-marquee::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .marquee-item {
    width: 110px;
    padding: 14px 10px 12px;
    gap: 8px;
  }
  .marquee-item img {
    width: 44px;
    height: 34px;
  }
  .marquee-item span {
    font-size: 10px;
  }
}

/* ── Tech Stack Section ─────────────────────────────────────── */
.sec-tech {
  background: #050c18;
  border-top: 1px solid rgba(42, 125, 241, 0.08);
}

.tech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.tech-tab {
  border: 1px solid rgba(42, 125, 241, 0.2);
  background: rgba(10, 25, 50, 0.5);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tech-tab.active,
.tech-tab:hover {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 125, 241, 0.3);
}

.tech-panels {
  min-height: 120px;
}

.tech-panel {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tech-panel.active {
  display: flex;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 14px;
  flex: 1 1 180px;
  max-width: 260px;
  justify-content: center;
  background: rgba(10, 22, 44, 0.75);
  border: 1px solid rgba(42, 125, 241, 0.12);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tech-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 125, 241, 0.4);
  box-shadow: 0 8px 24px rgba(42, 125, 241, 0.1);
}

.tech-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tech-chip span {
  color: #ffffff;
  font-weight: 700;
}

/* ── Stats Banner ───────────────────────────────────────────── */
.sec-stats {
  padding: 80px 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(42, 125, 241, 0.05), transparent),
    #050c18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(42, 125, 241, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(42, 125, 241, 0.1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(42, 125, 241, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.stat-icon i, .stat-icon svg {
  font-size: 24px;
  color: #30c5ff;
}

.stat-card strong {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  font-family: "Sora", sans-serif;
  background: linear-gradient(135deg, #ffffff, #30c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(42, 125, 241, 0.2));
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ── Testimonials ───────────────────────────────────────────── */
.sec-testimonials {
  background:
    radial-gradient(600px 400px at 30% 50%, rgba(42, 125, 241, 0.06), transparent),
    var(--bg);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: rgba(8, 20, 42, 0.8);
  border: 1px solid rgba(42, 125, 241, 0.12);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 125, 241, 0.35);
}

.test-stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 14px;
}

.test-card > p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.test-author span {
  font-size: 12px;
  color: #ffffff;
}

/* ── Why BTPL Section ───────────────────────────────────────── */
.sec-why {
  background:
    radial-gradient(700px 500px at 85% 40%, rgba(117, 222, 83, 0.05), transparent),
    #050c18;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

.why-text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #30c5ff, #75de53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-text > p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.why-item i {
  color: #75de53;
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.glow-card {
  background: rgba(10, 22, 44, 0.8);
  border: 1px solid rgba(42, 125, 241, 0.15);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(42, 125, 241, 0.4);
  box-shadow: 0 12px 32px rgba(42, 125, 241, 0.12);
}

.glow-card i {
  font-size: 30px;
  color: var(--primary-2);
}

.glow-card strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.sec-faq {
  background: var(--bg);
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(8, 20, 42, 0.7);
  border: 1px solid rgba(42, 125, 241, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(42, 125, 241, 0.35);
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary-2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.sec-cta {
  padding: 80px 0;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(42, 125, 241, 0.12), transparent),
    #050c18;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(42, 125, 241, 0.12), rgba(117, 222, 83, 0.06));
  border: 1px solid rgba(42, 125, 241, 0.2);
  border-radius: 24px;
  padding: 56px 40px;
  backdrop-filter: blur(10px);
}

.cta-banner h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 14px;
}

.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #30c5ff, #75de53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 30px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background:
    linear-gradient(180deg, #020509 0%, #040a14 100%);
  border-top: 1px solid rgba(42, 125, 241, 0.1);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 241, 0.3), transparent);
}

/* ── Footer top row ── */
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(113, 144, 186, 0.08);
}

.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

.ft-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 380px;
}

.ft-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 22, 44, 0.6);
  border: 1px solid rgba(42, 125, 241, 0.12);
  border-radius: 14px;
  padding: 18px 24px;
  justify-self: center;
}

.ft-phone > i {
  font-size: 28px;
  color: var(--primary-2);
}

.ft-phone-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.ft-phone a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.ft-phone a:hover {
  color: var(--primary-2);
}

.ft-social-block {
  justify-self: end;
}

.ft-social-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 25, 50, 0.5);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--primary-2);
  background: rgba(42, 125, 241, 0.15);
  transform: translateY(-2px);
}

/* ── Footer link columns ── */
.ft-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 44px 0 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  color: #ffffff;
  position: relative;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a::before {
  content: "›";
  color: #ffffff;
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-2);
  padding-left: 4px;
}

.footer-col a:hover::before {
  color: var(--primary-2);
}

/* ── Footer bottom ── */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(113, 144, 186, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: #ffffff;
}

.footer-bottom a {
  color: rgba(176, 191, 214, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--primary-2);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-visual {
    width: 380px;
    height: 380px;
  }
  .code-card {
    width: 300px;
    transform: rotateY(-3deg) rotateX(1deg);
  }
  .fsc-3 { display: none; }
  .ft-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ft-phone {
    justify-self: start;
  }
  .ft-social-block {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .hero-visual {
    display: none;
  }
  .hero-wrap {
    justify-content: flex-start;
  }
  .sec {
    padding: 40px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .process-track::before {
    display: none;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ft-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ft-phone {
    justify-self: start;
  }
  .ft-social-block {
    justify-self: start;
  }
  .cta-banner {
    padding: 36px 22px;
  }
  .hero-pills {
    gap: 8px;
    margin-top: 24px;
  }
  .hero-pill {
    font-size: 11px;
    padding: 5px 12px;
  }
  .hero-stat-pills {
    gap: 8px;
  }
  .hero-stat-pill {
    padding: 5px 10px;
    font-size: 10px;
  }
  .scroll-hint {
    display: none;
  }

  /* Force White Borders on Mobile */
  .svc-card2-inner, 
  .svc-featured .svc-card2-inner, 
  .svc-uiux-showcase .svc-card2-inner {
    border: 1px solid #ffffff !important;
    box-shadow: 0 0 0 1px #ffffff, 0 10px 40px rgba(0,0,0,0.5) !important;
  }
}

@media (max-width: 600px) {
  .about-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .metric-card {
    padding: 20px 14px;
  }
  .metric-card strong {
    font-size: 28px;
  }
  .process-track {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .why-visual {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .glow-card {
    padding: 20px 14px;
  }
  .tech-tab {
    font-size: 12px;
    padding: 7px 16px;
  }
  .tech-chip {
    padding: 10px 18px;
  }
  .tech-chip img {
    width: 22px;
    height: 22px;
  }
  .tech-chip span {
    font-size: 13px;
  }
}


/* ── Extra Small Mobile Screens ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-wrap {
    padding: 90px 16px 40px;
  }

  .hero {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(26px, 8.5vw, 42px);
    letter-spacing: -0.03em;
    word-spacing: 0;
    line-height: 1.15;
  }

  .hero h1 .typed-line-small {
    font-size: clamp(20px, 7vw, 36px);
  }

  .hero-stat-pills {
    gap: 6px;
    margin-bottom: 16px;
  }

  .hero-stat-pill {
    padding: 5px 10px;
    font-size: 10px;
    gap: 6px;
  }

  .hero-stat-pill i {
    font-size: 12px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 52px;
  }

  .cta-row {
    flex-direction: column;
    gap: 36px;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 48px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-trust {
    font-size: 11px;
    margin-top: 44px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(24px, 8vw, 38px);
  }

  .hero h1 .typed-line-small {
    font-size: clamp(18px, 6.5vw, 32px);
  }
}


/* ── About Section Mobile Improvements ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .sec-about {
    padding: 30px 0;
  }

  .about-grid {
    padding: 0 20px;
    gap: 40px;
  }

  .about-text h2 {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .about-text .link-arrow {
    margin-top: 20px;
    font-size: 14px;
  }

  .about-metrics {
    gap: 16px;
  }

  .metric-card {
    padding: 24px 16px 20px;
  }

  .metric-card i {
    font-size: 24px;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .metric-card strong {
    font-size: 32px;
  }

  .metric-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .sec-about {
    padding: 25px 0;
  }

  .about-grid {
    padding: 0 16px;
    gap: 32px;
  }

  .about-text h2 {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .about-text .kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .about-metrics {
    gap: 12px;
  }

  .metric-card {
    padding: 20px 14px 18px;
  }

  .metric-card i {
    font-size: 22px;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .metric-card p {
    font-size: 12px;
  }
}


/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS FOR FULL RESPONSIVENESS
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet Responsive (768px) ─────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  
  .sec {
    padding: 50px 0;
  }
  
  .sec-head h2 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
  }
  
  .sec-head p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  /* Services Section */
  .services-bento {
    gap: 16px;
  }
  
  .svc-card2 {
    padding: 24px 20px;
  }
  
  .svc-card2 h3 {
    font-size: 18px;
  }
  
  .svc-card2 p {
    font-size: 14px;
  }
  
  /* Case Studies */
  .cases-stage {
    height: 400px;
  }
  
  .case-card {
    width: 280px;
    height: 320px;
  }
  
  .case-card h3 {
    font-size: 16px;
  }
  
  .case-card p {
    font-size: 13px;
  }
  
  /* Stats Section */
  .stats-row {
    gap: 24px;
  }
  
  .stat-card {
    padding: 32px 24px;
  }
  
  .stat-card strong {
    font-size: 36px;
  }
  
  .stat-card p {
    font-size: 14px;
  }
  
  /* Testimonials */
  .testimonials-track {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 28px 24px;
  }
  
  .testimonial-card p {
    font-size: 15px;
  }
  
  /* Why Section */
  .why-visual {
    gap: 16px;
  }
  
  .glow-card {
    padding: 24px 20px;
  }
  
  .glow-card h3 {
    font-size: 18px;
  }
  
  .glow-card p {
    font-size: 14px;
  }
  
  /* FAQ */
  .faq-item {
    margin-bottom: 12px;
  }
  
  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  
  .faq-item p {
    padding: 0 20px 18px;
    font-size: 14px;
  }
  
  /* Footer */
  .ft-columns {
    gap: 24px;
  }
  
  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .footer-col a {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

/* ── Mobile Responsive (600px) ─────────────────────────────── */
@media (max-width: 600px) {
  .container {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
  
  .sec {
    padding: 40px 0;
  }
  
  .sec-head {
    margin-bottom: 40px;
  }
  
  .sec-head h2 {
    font-size: clamp(22px, 5.5vw, 32px);
    margin-bottom: 12px;
  }
  
  .sec-head p {
    font-size: 14px;
  }
  
  /* Services Section */
  .svc-card2 {
    padding: 20px 16px;
  }
  
  .svc-card2 h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .svc-card2 p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .svc-card2 .link-arrow {
    font-size: 13px;
    margin-top: 12px;
  }
  
  /* Case Studies */
  .cases-stage {
    height: 360px;
  }
  
  .case-card {
    width: 260px;
    height: 300px;
    padding: 20px 16px;
  }
  
  .case-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .case-card p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Partners & Clients */
  .partner-grid,
  .client-grid {
    gap: 12px;
  }
  
  .partner-card,
  .client-card {
    padding: 16px 12px;
  }
  
  .partner-card img,
  .client-card img {
    max-height: 32px;
  }
  
  /* Tech Stack */
  .tech-tabs {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .tech-tab {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .tech-grid {
    gap: 12px;
  }
  
  .tech-chip {
    padding: 8px 14px;
  }
  
  .tech-chip img {
    width: 20px;
    height: 20px;
  }
  
  .tech-chip span {
    font-size: 12px;
  }
  
  /* Stats Section */
  .stat-card {
    padding: 24px 16px;
  }
  
  .stat-card strong {
    font-size: 32px;
  }
  
  .stat-card p {
    font-size: 13px;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 24px 20px;
  }
  
  .testimonial-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Why Section */
  .glow-card {
    padding: 20px 16px;
  }
  
  .glow-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .glow-card p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* FAQ */
  .faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }
  
  .faq-item p {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ── Extra Small Mobile (480px) - Enhanced ─────────────────── */
@media (max-width: 480px) {
  .container {
    padding-left: 3% !important;
    padding-right: 3% !important;
  }
  
  .sec {
    padding: 32px 0;
  }
  
  .sec-head {
    margin-bottom: 32px;
  }
  
  .sec-head h2 {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  
  .sec-head p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .kicker {
    font-size: 10px;
    margin-bottom: 10px;
  }
  
  /* Services Section */
  .svc-card2 {
    padding: 18px 14px;
  }
  
  .svc-card2 h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .svc-card2 p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .svc-card2 .link-arrow {
    font-size: 12px;
    margin-top: 10px;
  }
  
  /* Case Studies */
  .cases-stage {
    height: 320px;
  }
  
  .case-card {
    width: 240px;
    height: 280px;
    padding: 16px 14px;
  }
  
  .case-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .case-card p {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .cases-pills {
    gap: 6px;
    margin-bottom: 20px;
  }
  
  .case-pill {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  /* Partners & Clients */
  .partner-card,
  .client-card {
    padding: 12px 8px;
  }
  
  .partner-card img,
  .client-card img {
    max-height: 28px;
  }
  
  /* Tech Stack */
  .tech-tab {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .tech-chip {
    padding: 6px 12px;
  }
  
  .tech-chip img {
    width: 18px;
    height: 18px;
  }
  
  .tech-chip span {
    font-size: 11px;
  }
  
  /* Stats Section */
  .stat-card {
    padding: 20px 14px;
  }
  
  .stat-card strong {
    font-size: 28px;
  }
  
  .stat-card p {
    font-size: 12px;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 20px 16px;
  }
  
  .testimonial-card p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  /* Why Section */
  .glow-card {
    padding: 16px 14px;
  }
  
  .glow-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .glow-card p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* FAQ */
  .faq-item summary {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  .faq-item p {
    padding: 0 16px 14px;
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* Footer */
  .ft-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .footer-col a {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .ft-brand p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .ft-phone,
  .ft-social-block {
    justify-self: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ── Ultra Small Screens (380px) ──────────────────────────── */
@media (max-width: 380px) {
  .container {
    padding-left: 2% !important;
    padding-right: 2% !important;
  }
  
  .sec {
    padding: 28px 0;
  }
  
  .sec-head h2 {
    font-size: clamp(18px, 4.5vw, 24px);
  }
  
  .svc-card2 {
    padding: 16px 12px;
  }
  
  .case-card {
    width: 220px;
    height: 260px;
    padding: 14px 12px;
  }
  
  .stat-card {
    padding: 18px 12px;
  }
  
  .stat-card strong {
    font-size: 24px;
  }
  
  .testimonial-card,
  .glow-card {
    padding: 16px 12px;
  }
  
  .faq-item summary {
    padding: 12px 14px;
    font-size: 12px;
  }
  
  .faq-item p {
    padding: 0 14px 12px;
    font-size: 11px;
  }
}
