/* ─────────────────────────────────────────────
   0. EXACT REFERENCE LOADER
───────────────────────────────────────────── */
body.loading {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-container-v3 {
  text-align: center;
}

.loader-visual-v3 {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer Rotating Segment */
.loader-outer-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ring-track {
  fill: none;
  stroke: rgba(16, 185, 129, 0.1);
  stroke-width: 4;
}

.ring-segment {
  fill: none;
  stroke: #10b981;
  stroke-width: 4;
  stroke-dasharray: 58 231;
  /* 20% of 289 circumference */
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transform-origin: center;
  animation: rotateSegment 1.5s linear infinite;
}

@keyframes rotateSegment {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Middle Morphing Wave */
.loader-wave {
  position: absolute;
  width: 125px;
  height: 125px;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphWave 4s linear infinite;
  z-index: 1;
}

@keyframes morphWave {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg);
  }

  33% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  }

  66% {
    border-radius: 30% 60% 40% 60% / 60% 30% 70% 40%;
    transform: rotate(180deg);
  }
}

/* Inner Orb with Data Bars */
.loader-orb-v3 {
  position: relative;
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #34d399, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
  z-index: 2;
}

.loader-logo-img {
  width: 55%;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoBreath 2s ease-in-out infinite;
}

@keyframes logoBreath {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes barPulse {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.5);
  }
}

/* Text Stack */
.loader-text-v3 h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.loader-text-v3 p {
  font-family: 'Inter', sans-serif;
  color: #64748b;
  font-size: 0.95rem;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── ROOT VARIABLES ── */
:root {
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --surface: #ffffff;
  --surface2: rgba(255, 255, 255, 0.8);
  --border: rgba(0, 0, 0, 0.05);
  --border2: rgba(0, 0, 0, 0.08);
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;
  --accent: #0ea5e9;
  --accent2: #10b981;
  --accent3: #3b82f6;
  --glow: rgba(16, 185, 129, 0.15);
}

*,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
  /* Hide default cursor */
}

/* ── UNIQUE TECHNICAL IRIS CURSOR (v6) ── */
.parrot-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.parrot-icon {
  width: 100%;
  height: auto;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* Hover States: Animated excited parrot */
@keyframes parrotExcited {
  0% {
    transform: scale(1.4) rotate(-10deg) translateY(0px);
  }

  50% {
    transform: scale(1.4) rotate(-5deg) translateY(-8px);
  }

  100% {
    transform: scale(1.4) rotate(-15deg) translateY(0px);
  }
}

.parrot-cursor.hovering .parrot-icon {
  animation: parrotExcited 0.3s infinite ease-in-out;
  filter: drop-shadow(0 8px 12px rgba(14, 165, 233, 0.6));
}

/* Clicking State */
.parrot-cursor.clicking .parrot-icon {
  transform: scale(0.9) rotate(5deg);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html {
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  /* Disable text selection overall */
  -webkit-user-drag: none;
  /* Disable image dragging */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Re-enable for inputs and selectable text if needed */
input,
textarea,
.selectable-text {
  user-select: text;
}

/* Noise Texture Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3C%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  z-index: 9999;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.highlight-green {
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: var(--accent2);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
}

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

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

::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

/* ── GRADIENT CANVAS BACKGROUND ── */
#gradient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── CURSOR ── */
.cursor {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  will-change: transform;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.15);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1270px;
  z-index: 10001;
  padding: 0 30px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  top: 10px;
  /* background: rgba(255, 255, 255, 0.9); */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 64px;
}

/* Mobile menu overlay backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.15);
  z-index: 10002;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes pulse-dot {

  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(114, 211, 101, 0.2))
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(114, 211, 101, 0.4))
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text2);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent2);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(114, 211, 101, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(114, 211, 101, 0.3);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV FIXES ── */


@media (max-width: 991px) {
  * {
    cursor: auto !important;
  }

  .parrot-cursor {
    display: none !important;
  }

  nav {
    left: 3.5%;
    transform: none;
    width: 93%;
    padding: 0 12px;
    height: 58px;
    top: 10px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10003;
  }

  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }

  .desktop-only-cta {
    display: none !important;
  }

  .mobile-only-cta {
    display: inline-flex !important;
    margin-top: 0;
    width: auto;
  }

  .mobile-cta-li {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Sidebar drawer - full screen premium experience */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    visibility: hidden;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 70px 40px 60px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    z-index: 10004;
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Decorative background blobs for the drawer */
  .nav-links::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    z-index: -1;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered entry for links */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.25s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.35s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.4s;
  }

  .nav-links.active li:nth-child(6) {
    transition-delay: 0.45s;
  }

  .nav-links.active li:nth-child(7) {
    transition-delay: 0.5s;
  }

  .nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    padding: 16px 0;
    letter-spacing: -0.03em;
    text-decoration: none;
    position: relative;
  }

  /* Link Numbers */
  .nav-links a::before {
    content: attr(data-num);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-right: 15px;
    font-family: 'Inter', sans-serif;
    opacity: 0.6;
  }

  .mobile-cta-li {
    border-top: none !important;
    border-bottom: none !important;
    padding-top: 20px !important;
    margin-top: auto;
  }

  .mobile-only-cta {
    width: 100% !important;
    justify-content: center;
    padding: 14px !important;
    font-size: 1.1rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #2dd4bf 100%) !important;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3) !important;
  }

  .menu-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    z-index: 10004;
    position: relative;
  }

  .logo-icon {
    height: 48px;
    flex-shrink: 0;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: 220px;
  }

  /* Show backdrop on mobile - handled via .active class */
  .mobile-menu-backdrop {
    pointer-events: auto;
  }

  /* Standardized Mobile Typography */
  h1,
  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  h2,
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .roadmap-header .section-title {
    font-size: 1.8rem !important;
  }

  .section-tag {
    font-size: 0.75rem;
    margin-bottom: 8px !important;
  }

  .section-sub {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0 12px !important;
    max-width: 100% !important;
  }

  .section-head {
    margin-bottom: 30px !important;
  }

  /* Section Specific Mobile Fixes */
  .partners-cloud-wrap {
    transform: scale(0.4) !important;
    margin-top: -120px !important;
    margin-bottom: -100px !important;
  }

  #partners {
    padding: 60px 5% !important;
  }

  .hero-container {
    padding-left: 0 !important;
    gap: 0px !important;
  }

  .hero-tag {
    font-size: 0.7rem !important;
  }

  .hero-rotator {
    min-height: 140px !important;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 15px !important;
  }

  .client-card {
    padding: 15px 10px !important;
  }

  .client-logo-wrap {
    width: 60px !important;
    height: 60px !important;
  }

  /* Testimonials Mobile Fixes */
  .testi-left {
    padding: 60px 5% 40px !important;
    text-align: center;
  }

  .testi-left .testi-desc {
    font-size: 0.9rem !important;
    margin-bottom: 30px !important;
  }

  .testi-right {
    padding: 20px 5% 60px !important;
    gap: 15px !important;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .testi-right::-webkit-scrollbar {
    display: none !important;
  }

  .testi-card-v3 {
    padding: 30px 25px !important;
    border-radius: 24px !important;
    min-width: 85vw !important;
    scroll-snap-align: center !important;
  }

  .testi-card-v3 .quote-text {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    margin-bottom: 25px !important;
  }

  .testi-card-v3 .author-box {
    gap: 15px !important;
  }

  .testi-card-v3 .author-avatar {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
  }

  .testi-card-v3 .author-info .name {
    font-size: 1rem !important;
  }

  .testi-card-v3 .author-info .role {
    font-size: 0.8rem !important;
  }
}

.mobile-only-cta {
  display: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  z-index: 1;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding-left: 60px;
  /* Reduced since text is removed */
}

.hero-left {
  flex: 1.1;
  text-align: left;
  position: relative;
}

.hero-right {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes ring-rotate-rev {
  from {
    transform: rotate(360deg)
  }

  to {
    transform: rotate(0deg)
  }
}

@keyframes core-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  }

  100% {
    transform: scale(1.08);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.2);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

#hero[data-active="0"] {
  --hero-c1: rgba(16, 185, 129, 0.15);
  --hero-c2: rgba(14, 165, 233, 0.1);
}

#hero[data-active="1"] {
  --hero-c1: rgba(59, 130, 246, 0.15);
  --hero-c2: rgba(30, 64, 175, 0.1);
}

#hero[data-active="2"] {
  --hero-c1: rgba(139, 92, 246, 0.15);
  --hero-c2: rgba(109, 40, 217, 0.1);
}

#hero[data-active="3"] {
  --hero-c1: rgba(245, 158, 11, 0.15);
  --hero-c2: rgba(217, 119, 6, 0.1);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 20%, var(--hero-c1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, var(--hero-c2) 0%, transparent 50%);
  transition: all 0.8s ease;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-c1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  animation: glow-move 10s ease-in-out infinite alternate;
  transition: background 0.8s ease;
}

@keyframes glow-move {
  0% {
    transform: translate(-45%, -45%) scale(1);
  }

  100% {
    transform: translate(-55%, -55%) scale(1.1);
  }
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  color: #3b82f6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.iso-badge img {
  height: 16px;
  width: auto;
  filter: brightness(1.2);
}

.hero-title-group {
  min-height: 420px;
  margin-bottom: 45px;
  position: relative;
  z-index: 5;
}

.hero-rotator {
  position: relative;
  height: 100%;
}

.rotator-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.rotator-item.active {
  opacity: 1;
  visibility: visible;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0 0 10px 0;
  line-height: 1.1;
  color: var(--text);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  opacity: 0.9;
  max-width: 600px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 600px;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-footer-note {
  font-size: 0.85rem;
  color: var(--text3);
  font-style: italic;
}

/* ── HERO VISUAL (Right Side) ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-visual-main {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* Increased from 680 */
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* ── HERO SMOKE EFFECT (Refined & Subtle) ── */
.hero-smoke-wrap {
  position: absolute;
  inset: -100px;
  z-index: 1;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.45;
  overflow: visible;
}

.smoke-blob {
  position: absolute;
  border-radius: 50%;
  transition: background 2s ease;
}

.blob-1 {
  width: 450px;
  height: 450px;
  top: -10%;
  left: -10%;
  background: var(--hero-c1);
  animation: smoke-drift-1 25s infinite linear alternate;
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -10%;
  background: var(--hero-c2);
  animation: smoke-drift-2 30s infinite linear alternate;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: var(--hero-c1);
  opacity: 0.2;
  animation: smoke-drift-3 20s infinite linear alternate;
}

@keyframes smoke-drift-1 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(150px, 100px) rotate(180deg) scale(1.3);
  }
}

@keyframes smoke-drift-2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1.2);
  }

  100% {
    transform: translate(-150px, -100px) rotate(-180deg) scale(1);
  }
}

@keyframes smoke-drift-3 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translate(-30%, -40%) scale(1.5);
    opacity: 0.6;
  }
}

.hero-image-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: float-hero 8s ease-in-out infinite;
}

.hero-main-img {
  position: absolute;
  width: 90%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.12));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.6s;
  transform: translateY(15px) scale(0.96);
}

.hero-main-img.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ── HERO DECO GRAPHICS (ULTRA-CLEAN v7) ── */
.hero-aura-wrap {
  position: absolute;
  inset: -150px;
  z-index: 1;
  pointer-events: none;
}

.aura-glow-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.8;
  animation: aura-soft-pulse 8s ease-in-out infinite alternate;
}

@keyframes aura-soft-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
  }
}

/* Precision Tech Rings */
.tech-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.08);
}

.tr-1 {
  width: 500px;
  height: 500px;
  animation: rotate-slow 40s linear infinite;
}

.tr-2 {
  width: 650px;
  height: 650px;
  border-style: dashed;
  animation: rotate-slow 60s linear infinite reverse;
}

.tr-3 {
  width: 800px;
  height: 800px;
  border-color: rgba(16, 185, 129, 0.04);
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Sharp Data Points */
.data-points {
  position: absolute;
  inset: 0;
}

.dp {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.dp-1 {
  top: 20%;
  right: 15%;
  animation: dp-float 6s ease-in-out infinite;
}

.dp-2 {
  bottom: 25%;
  right: 20%;
  animation: dp-float 8s ease-in-out infinite 1s;
}

.dp-3 {
  top: 40%;
  left: 10%;
  animation: dp-float 7s ease-in-out infinite 2s;
}

.dp-4 {
  bottom: 15%;
  left: 15%;
  animation: dp-float 9s ease-in-out infinite 3s;
}

@keyframes dp-float {

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

  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

.aura-mesh-grid-v3 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

@keyframes float-hero {

  0%,
  100% {
    transform: translateY(0) rotateX(1deg) rotateY(-1deg);
  }

  50% {
    transform: translateY(-20px) rotateX(-1deg) rotateY(1deg);
  }
}

@keyframes aura-rotate-ring {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Connecting Lines */
.ui-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.connector-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-line-curved 4s ease-in-out forwards infinite alternate;
  filter: drop-shadow(0 0 5px var(--accent));
}

@keyframes draw-line-curved {
  0% {
    stroke-dashoffset: 2000;
    opacity: 0.2;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -2000;
    opacity: 0.2;
  }
}

/* Modern UI Cards v2 */
.hero-floating-ui {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  perspective: 1000px;
}

.ui-card-v2 {
  position: absolute;
  z-index: 20;
  animation: ui-float-premium 8s ease-in-out infinite alternate;
}

.card-inner {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.card-glow {
  position: absolute;
  inset: -10px;
  background: var(--glow);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.ui-card-v2:hover .card-glow {
  opacity: 0.2;
}

.ui-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ui-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
}

.ui-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

/* Custom Avatars */
.ui-avatar-stack {
  display: flex;
  margin-right: -4px;
}

.av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #1e293b;
  background: #334155;
  margin-left: -10px;
}

.av:nth-child(1) {
  background: #10b981;
}

.av:nth-child(2) {
  background: #3b82f6;
}

.av:nth-child(3) {
  background: #f59e0b;
}

.card-top {
  top: -10%;
  right: -35%;
}

.card-mid {
  top: 45%;
  left: -55%;
}

.card-bottom {
  bottom: 0%;
  right: -35%;
}

@keyframes ui-float-premium {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }

  100% {
    transform: translate3d(15px, -25px, 50px) rotateX(5deg);
  }
}

@keyframes aura-breathing {

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

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.8;
  }
}

/* ── HERO SIDEBAR (Product Nav) ── */
.hero-sidebar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
  padding-left: 20px;
}

.sidebar-item {
  width: 10px;
  height: 10px;
  background: var(--border2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.sidebar-item.active {
  background: var(--accent2);
  transform: scale(1.4);
  box-shadow: 0 0 15px var(--glow);
}

/* ── HORIZONTAL SERVICES (v4) ── */
#services {
  background: var(--bg);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.services-sticky-container {
  min-height: 80vh;
  /* Reduced from 85vh */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 40px;
  /* Reduced from 60 */
  overflow: hidden;
  padding: 10px 0 40px;
  /* Reduced top padding */
}

.services-horizontal-wrapper {
  position: relative;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 40px 0;
}

.service-card-v3 {
  flex-shrink: 0;
  width: 320px;
  height: 380px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.01),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.service-card-v3.wide {
  width: 520px;
}

.card-glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  z-index: 0;
}

.card-glass::before,
.card-glass::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle at center, var(--accent) 0%, transparent 50%);
  opacity: 0.03;
  pointer-events: none;
  animation: bg-move-infinite 20s linear infinite;
}

.card-glass::after {
  background: radial-gradient(circle at center, var(--accent2) 0%, transparent 50%);
  animation-duration: 25s;
  animation-direction: reverse;
  opacity: 0.02;
}

@keyframes bg-move-infinite {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }

  33% {
    transform: rotate(120deg) translate(50px, -30px) scale(1.1);
  }

  66% {
    transform: rotate(240deg) translate(-40px, 60px) scale(0.9);
  }

  100% {
    transform: rotate(360deg) translate(0, 0) scale(1);
  }
}

.service-card-v3:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(16, 185, 129, 0.1);
  border-color: #ffffff;
}

.service-card-v3.wide .card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-card-v3 .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.icon-blob {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  filter: blur(15px);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.service-card-v3:hover .icon-blob {
  opacity: 0.4;
  transform: scale(1.2) rotate(15deg);
}

.card-icon-wrap svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  color: var(--text);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card-v3:hover .card-icon-wrap svg {
  transform: scale(1.1) rotate(-5deg);
}

.service-index {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 100px;
}

.service-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.service-summary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 15px;
}

.service-full-desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 15px;
  color: var(--accent);
}

/* Floating Shapes in Cards */
.card-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
  transition: opacity 1s ease;
}

.shape-1 {
  width: 220px;
  height: 220px;
  background: var(--accent);
  top: -60px;
  right: -30px;
  animation: float-infinite-large 18s ease-in-out infinite alternate;
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: var(--accent2);
  bottom: -40px;
  left: 15%;
  animation: float-infinite-large 22s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 240px;
  height: 240px;
  background: #f59e0b;
  top: 35%;
  right: -60px;
  animation: float-infinite-large 25s ease-in-out infinite alternate;
}

@keyframes float-infinite-large {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(100px, 50px) scale(1.2) rotate(45deg);
  }

  66% {
    transform: translate(-50px, 120px) scale(0.9) rotate(-30deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@media (max-width: 992px) {
  .service-card-v3.wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card-v3.wide .card-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-grid-v3 {
    grid-template-columns: 1fr;
  }

  .service-card-v3.wide {
    grid-column: span 1;
  }

  .service-card-v3 {
    padding: 35px;
  }

  .service-name {
    font-size: 1.8rem;
  }

  .card-visual {
    opacity: 0.5;
    /* Reduce distraction on small screens */
  }
}

/* Responsive Gutter */
@media (max-width: 1024px) {
  .hero-container {
    padding-left: 40px;
  }
}


@media(max-width: 1000px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-left: 0;
  }

  .hero-left {
    text-align: center;
    padding-right: 0;
  }

  .hero-sidebar {
    position: relative;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    padding-left: 0 !important;
    margin-bottom: 30px;
    width: 100%;
    margin-left: -10px;
    gap: 15px;
  }

  .hero-title-group {
    min-height: 200px;
  }
}

#group-products .card-1 {
  top: -10px;
  left: 80px;
}

#group-products .card-2 {
  top: 150px;
  right: -30px;
}

#group-products .card-3 {
  bottom: 120px;
  left: 0px;
}

#group-products .card-4 {
  bottom: 20px;
  right: 10px;
}

@keyframes float-infinite {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
  }

  100% {
    transform: translateY(-20px) rotate(3deg) scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  }
}

.btn-primary {
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 15px 35px rgba(114, 211, 101, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(114, 211, 101, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
}

.btn-primary:hover::before {
  transform: scale(1);
}

.btn-secondary {
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  z-index: 1000;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent2), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ── FLOATING ORBS (parallax) ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(26, 86, 219, 0.08);
  top: -100px;
  left: -150px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(109, 40, 217, 0.07);
  top: 200px;
  right: -120px;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.05);
  bottom: -80px;
  left: 30%;
}


/* ── SECTIONS ── */
section {
  padding: 50px 5%;
  position: relative;
  z-index: 2;
}

.section-bg-blur {
  backdrop-filter: blur(1px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent)
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 300
}

.section-head {
  margin-bottom: 48px
}

.section-head.center {
  text-align: center
}

.section-head.center .section-sub {
  margin: 0 auto
}

.section-head.center .section-tag {
  justify-content: center
}

/* GSAP scroll targets — start invisible */
.gs-fade {
  opacity: 0;
}

.gs-up {
  opacity: 0;
  transform: translateY(40px);
}

.gs-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gs-right {
  opacity: 0;
  transform: translateX(40px);
}

.gs-scale {
  opacity: 0;
  transform: scale(0.92);
}

/* ── SERVICES ── */
#services {
  padding-top: 40px;
  background: rgba(248, 249, 252, 0.7);
  backdrop-filter: blur(2px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: rgba(248, 249, 252, 0.95);
  padding: 36px 32px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(26, 86, 219, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1
}

.feature-card:hover {
  background: #f1f4ff
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.12)
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.6
}

/* ── ABOUT ── */
#about {
  background: rgba(240, 242, 248, 0.7);
  backdrop-filter: blur(2px);
  overflow: hidden
}

.preview-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.preview-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text2)
}

.point-dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.12);
  border: 1px solid rgba(26, 86, 219, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.6rem;
  color: var(--accent);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 0 0 1px var(--border);
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.how-step:last-child {
  border-bottom: none
}

.how-step:hover {
  background: #f4f6ff
}

.step-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif
}

.step-content p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.5
}

/* ── PRODUCTS ── */
#products {
  background: rgba(248, 249, 252, 0.7);
  backdrop-filter: blur(2px)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.product-card:hover::after {
  transform: scaleX(1)
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 86, 219, 0.25);
  box-shadow: 0 16px 50px rgba(26, 86, 219, 0.1)
}

.product-emoji {
  font-size: 2rem;
  transition: transform 0.3s
}

.product-card:hover .product-emoji {
  transform: scale(1.2) rotate(5deg)
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.55;
  flex: 1
}

.product-link {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: rgba(240, 242, 248, 0.7);
  backdrop-filter: blur(2px);
  padding: 110px 0
}

.testi-head {
  padding: 0 5%
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 60px
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(240, 242, 248, 0.9), transparent)
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(240, 242, 248, 0.9), transparent)
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 35s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  border-color: rgba(26, 86, 219, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 86, 219, 0.08)
}

.testi-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

/* ── TESTIMONIALS SPLIT-REVEAL ── */
#testimonials {
  padding: 0;
  background: #020617;
  position: relative;
}

.testi-container-v3 {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.testi-left {
  flex: 0 0 45%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding-left: 8%;
  padding-right: 5%;
}

.testi-progress-track {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-inner {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent1), var(--accent2));
  box-shadow: 0 0 15px var(--accent2);
  transition: height 0.3s ease-out;
}

.testi-left .sticky-content {
  max-width: 450px;
}

.testi-left .section-title {
  font-size: 4rem;
  line-height: 1.05;
  color: #fff;
  margin: 15px 0 25px;
  letter-spacing: -0.04em;
}

.testi-left .testi-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 50px;
}

.testi-nav-hints {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
}

.testi-right {
  flex: 1;
  padding: 12vh 8% 12vh 0;
  display: flex;
  flex-direction: column;
  gap: 15vh;
  /* Reduced from 25vh */
}

.testi-card-v3 {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 48px;
  padding: 50px 60px;
  /* Slightly tighter padding */
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform: perspective(2000px) rotateY(-5deg) translateX(30px);
  opacity: 0.3;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.testi-card-v3.active {
  transform: perspective(2000px) rotateY(0deg) translateX(0);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.testi-card-v3 .quote-text {
  font-size: 1.75rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.testi-card-v3 .author-box {
  display: flex;
  align-items: center;
  gap: 25px;
}

.testi-card-v3 .author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(var(--accent1-rgb), 0.3);
}

.testi-card-v3 .author-info .name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.testi-card-v3 .author-info .role {
  font-size: 1rem;
  color: var(--accent2);
  font-weight: 600;
  opacity: 0.8;
}

.testi-card-v3 .card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, var(--accent1), transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: -1;
  transition: opacity 1.2s ease;
}

.testi-card-v3.active .card-glow {
  opacity: 0.1;
}

@media (max-width: 992px) {
  .testi-progress-track {
    display: none;
  }

  .testi-container-v3 {
    flex-direction: column;
  }

  .testi-left {
    flex: none;
    height: auto;
    position: relative;
    padding: 80px 5%;
  }

  .testi-right {
    padding: 40px 5%;
    gap: 15px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testi-right::-webkit-scrollbar {
    display: none;
  }

  .testi-card-v3 {
    transform: none !important;
    opacity: 1 !important;
    min-width: 85vw;
    scroll-snap-align: center;
  }

  .testi-nav-hints {
    justify-content: center;
  }

  .testi-nav-hints::after {
    content: 'SWIPE \2192';
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    margin-left: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    animation: swipe-bounce 1.5s infinite ease-in-out;
  }

  @keyframes swipe-bounce {

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

    50% {
      transform: translateX(8px);
    }
  }
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  flex-shrink: 0
}

.testi-name {
  font-size: 0.875rem;
  font-weight: 500
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text3)
}

/* ── SECTION DIVIDER / GRADIENT STRIPE ── */
.gradient-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
  background-size: 200% 100%;
  animation: stripe-flow 4s linear infinite;
  position: relative;
  z-index: 2;
  opacity: 0.4;
}

@keyframes stripe-flow {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: 0% 0
  }
}

/* ── FAQ ── */
#faq {
  background: rgba(248, 249, 252, 0.7);
  backdrop-filter: blur(2px)
}

.faq-wrap {
  max-width: 720px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent)
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text3);
  transition: transform 0.3s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(26, 86, 219, 0.4);
  color: var(--accent)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  padding: 0
}

.faq-item.open .faq-a {
  max-height: 300px;
  transition: max-height 0.5s cubic-bezier(0.9, 0, 0.8, 1);
  padding-bottom: 20px
}

/* ── CTA ── */
#cta-section {
  background: rgba(240, 242, 248, 0.7);
  backdrop-filter: blur(2px);
  padding: 70px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated cta gradient orb */
.cta-orb {
  position: absolute;
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.1) 0%, rgba(109, 40, 217, 0.06) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cta-pulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cta-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    filter: hue-rotate(0deg)
  }

  100% {
    transform: translate(-50%, -50%) scale(1.15);
    filter: hue-rotate(30deg)
  }
}

.cta-input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cta-input:focus {
  border-color: rgba(26, 86, 219, 0.6);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1)
}

.cta-input::placeholder {
  color: var(--text3)
}

/* ── SCROLL PROGRESS BAR ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  background-size: 200% 100%;
  transform-origin: left;
  transform: scaleX(0);
  animation: bar-shine 3s linear infinite;
}

@keyframes bar-shine {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

/* ─────────────────────────────────────────────
   BLOG SECTION
───────────────────────────────────────────── */
.blog-slider-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.blog-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.blog-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.blog-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  top: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.blog-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  transition: color 0.3s ease;
  margin-top: auto;
}

.blog-card:hover .blog-read-more {
  color: #10b981;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

.blog-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-slider-btn:hover {
  background: #10b981;
  color: white;
  border-color: #10b981;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.blog-slider-btn.prev {
  left: 0;
}

.blog-slider-btn.next {
  right: 0;
}

.blog-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #64748b;
  font-weight: 500;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(16, 185, 129, 0.2);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.15rem;
  }
  .blog-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .blog-slider-container {
    padding: 0 15px;
  }

  .blog-track {
    gap: 15px;
  }

  .blog-card {
    flex: 0 0 90%;
  }

  .blog-slider-btn {
    display: none;
    /* Hide buttons on mobile to encourage natural swiping */
  }
}

/* ── FOOTER ── */
footer {
  padding: 30px 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  position: relative;
  z-index: 2;
}

.footer-minimal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.footer-minimal-logo {
  height: 42px;
  width: auto;
  filter: none;
  transition: all 0.3s ease;
}

.footer-minimal-logo:hover {
  transform: scale(1.05);
}

.footer-links-minimal {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-minimal a {
  color: #64748b !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-links-minimal a:hover {
  color: #0ea5e9;
}

.footer-social-minimal {
  display: flex;
  gap: 20px;
}

.footer-social-minimal a {
  width: 32px;
  height: 32px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 1px solid #e2e8f0;
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-social-minimal a.social-fb {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.2);
}

.footer-social-minimal a.social-x {
  color: #0f1419;
  border-color: rgba(15, 20, 25, 0.2);
}

.footer-social-minimal a.social-ig {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.2);
}

.footer-social-minimal a.social-yt {
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.2);
}

.footer-social-minimal a.social-fb:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
  transform: translateY(-3px);
}

.footer-social-minimal a.social-x:hover {
  background: #0f1419;
  color: white;
  border-color: #0f1419;
  transform: translateY(-3px);
}

.footer-social-minimal a.social-ig:hover {
  background: #E1306C;
  color: white;
  border-color: #E1306C;
  transform: translateY(-3px);
}

.footer-social-minimal a.social-yt:hover {
  background: #FF0000;
  color: white;
  border-color: #FF0000;
  transform: translateY(-3px);
}

.footer-copyright-minimal {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-top: 10px;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* ── PRODUCTS SECTION ── */
#products {
  padding: 40px 5% 100px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.prod-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.prod-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.prod-icon {
  font-size: 1.8rem;
  margin-bottom: 24px;
  width: 58px;
  height: 58px;
  background: var(--bg2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.prod-card:hover .prod-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
}

.prod-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.prod-card p {
  font-size: 0.92rem;
  color: var(--text2);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}

.prod-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.prod-link span {
  transition: transform 0.3s ease;
}

.prod-card:hover .prod-link {
  color: var(--accent3);
}

.prod-card:hover .prod-link span {
  transform: translateX(5px);
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 0px !important;
  }

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

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
    gap: 15px;
  }

  .hero-right {
    margin-top: 0;
    margin-bottom: 10px;
    width: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-visual-main {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/10;
  }

  .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

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

  .preview-wrap {
    grid-template-columns: 1fr
  }

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

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

@media(max-width:600px) {
  #hero {
    padding: 70px 5% 20px;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-badges {
    justify-content: center;
    margin-bottom: 10px !important;
    gap: 8px !important;
  }

  .hero-tag {
    margin-bottom: 0 !important;
  }

  .iso-badge {
    padding: 6px 12px !important;
    font-size: 0.65rem !important;
  }

  .hero-title-group {
    min-height: 280px !important;
    margin-bottom: 5px !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }

  .hero-sub {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    max-width: 100%;
    line-height: 1.5 !important;
  }

  .hero-footer-note {
    margin-top: 5px !important;
    margin-bottom: 25px !important;
    padding: 0 10px;
    z-index: 10;
    position: relative;
    display: block;
  }

  .hero-right {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    min-height: 180px !important;
  }

  .hero-visual-main {
    max-width: 320px !important;
  }

  .hero-container {
    gap: 0px !important;
    padding-bottom: 80px !important;
  }

  .hero-scroll {
    bottom: 15px !important;
    font-size: 0.6rem !important;
    gap: 8px !important;
  }

  .scroll-line {
    height: 30px !important;
  }

  .products-grid {
    grid-template-columns: 1fr
  }
}


/* ── NEW ABOUT US (v3) ── */
#about-us {
  background: #020617;
  /* Deeper slate */
  padding: 40px 5% 20px;
  /* Reduced from 80 */
  position: relative;
  z-index: 10;
  overflow: visible;
  color: #fff;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.about-container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  position: relative;
  z-index: 5;
}

.about-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.about-lead-centered {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 40px;
  align-items: center;
}

.section-tag-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent2);
  margin-bottom: 30px;
  font-weight: 700;
}

.section-tag-modern span {
  width: 40px;
  height: 2px;
  background: var(--accent2);
  position: relative;
  overflow: hidden;
}

.section-tag-modern span::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.about-title-v2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 15px;
}

.about-lead {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin-bottom: 35px;
  line-height: 1.6;
}


.about-features-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-item-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 25px;
  /* Reduced padding */
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-item-v2.main {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-item-v2:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.1);
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent2);
  margin-bottom: 15px;
  /* Reduced margin */
  transition: all 0.3s ease;
}

.bento-icon i {
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item-v2:hover .bento-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #fff;
}

.bento-item-v2 h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  /* Reduced margin */
  color: #fff;
}

.bento-item-v2 p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.bento-item-v2 p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.about-glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 35px;
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about-glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 60%);
  pointer-events: none;
}

.about-glass-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Align to the left */
  gap: 15px;
  margin-bottom: 15px;
}

.card-header .bento-icon {
  margin-bottom: 0;
  /* Remove margin that breaks alignment */
  flex-shrink: 0;
}

.card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.card-desc {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.vision-quote {
  font-size: 0.95rem;
  color: #94a3b8;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.mission-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mission-checklist li:hover {
  color: #fff;
  transform: translateX(10px);
}

.check-icon {
  color: var(--accent2);
  font-weight: 900;
  font-size: 1.2rem;
}

.about-visual-center {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Orbital Visual */
.about-visual-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-30px);
  /* Move top */
}

.orbital-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation: orbit-rotate 25s linear infinite;
}

.ring-2 {
  width: 75%;
  height: 75%;
  animation: orbit-rotate 18s linear infinite reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  animation: orbit-rotate 12s linear infinite;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.core-node {
  width: 100px;
  height: 100px;
  background: #000000;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.4);
}

.core-node img {
  width: 60%;
  height: auto;
}

.node-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0.2;
  }
}

.stat-point {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 100px;
  text-align: center;
  z-index: 15;
  transition: all 0.3s ease;
  cursor: default;
}

.stat-point:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p1 {
  top: 10%;
  right: 0;
}

.p2 {
  bottom: 20%;
  left: -20px;
}

.p3 {
  bottom: 5%;
  right: 20%;
}

.point-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent2);
  display: block;
  line-height: 1;
}

.point-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(14, 165, 233, 0.2) 0px, transparent 50%);
  opacity: 0.6;
  filter: blur(100px);
  animation: mesh-shift 20s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(1.2) rotate(5deg);
  }
}

.about-glow-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.about-data-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  z-index: 2;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .about-container-v2 {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

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

  .about-features-bento {
    max-width: 600px;
  }

  .orbital-container {
    width: 280px;
    height: 280px;
  }

  .core-node {
    width: 75px;
    height: 75px;
  }

  .stat-point {
    padding: 10px 18px;
  }

  .point-val {
    font-size: 1.4rem;
  }

  .point-label {
    font-size: 0.6rem;
  }

  .p1 {
    top: 5%;
    right: -10px;
  }

  .p2 {
    bottom: 15%;
    left: -30px;
  }

  .p3 {
    bottom: 0%;
    right: 10%;
  }
}

@media (max-width: 600px) {
  .about-features-bento {
    grid-template-columns: 1fr;
  }

  .bento-item-v2.main {
    grid-row: auto;
  }

  .orbital-container {
    width: 240px;
    height: 240px;
    margin-top: 20px;
  }

  .stat-point {
    padding: 8px 14px;
  }

  .point-val {
    font-size: 1.2rem;
  }
}

/* ── PARTNERS EXACT CLOUD LAYOUT ── */
#partners {
  padding: 40px 2%;
  background-color: #f4f9ff;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.partners-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-cloud-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  /* Pull up significantly */
  position: relative;
  transform: scale(0.8);
}

.hex-group {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.side-left {
  margin-right: 20px;
}

/* Space around center */
.side-right {
  margin-left: 20px;
}

/* Space around center */

.hex-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 -10px;
  /* Slight overlap */
}

.hex-col.offset {
  margin-top: 62px;
}

.hex-item {
  width: 115px;
  height: 130px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.02);
  padding: 15px;
  /* Internal padding for logos */
}

.hex-item:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(147, 51, 234, 0.12);
  z-index: 50;
}

.hex-item img {
  width: 80%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
}

.hex-main-item {
  width: 300px;
  height: 340px;
  background: transparent;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 10;
}

.hex-main-item img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  z-index: 2;
}

.hex-main-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 4px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── CLIENTS SECTION ── */
/* ── CLIENTS SECTION (MARQUEE) ── */
#clients {
  padding: 40px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.clients-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  will-change: transform;
}

.marquee-track.forward {
  animation: marquee-scroll 60s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-scroll-reverse 60s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.client-chip {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 28px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.client-chip:hover {
  background: #fff;
  border-color: #10b981;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
  z-index: 10;
}

.chip-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.chip-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

/* Gradient fades on sides */
#clients::before,
#clients::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}

#clients::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

#clients::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

@media (max-width: 768px) {
  .client-chip {
    padding: 10px 20px;
    gap: 10px;
  }

  .chip-name {
    font-size: 0.85rem;
  }

  .chip-logo {
    width: 24px;
    height: 24px;
  }
}

#team {
  padding: 40px 0 40px;
  background-color: #f4f9ff;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
  position: relative;
}

.team-bg-text {
  position: absolute;
  top: 60%;
  /* Lowered */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.team-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 390px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  z-index: 1;
  margin-top: 5px;
}

.team-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

.team-track {
  display: flex;
  padding-left: calc(50vw - 160px);
  padding-right: calc(50vw - 160px);
  gap: 40px;
  min-width: max-content;
}

.team-member-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  height: 350px;
  background: #fff;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(0.85);
  opacity: 0.6;
  z-index: 1;
}

.team-member-card.focused {
  transform: scale(1);
  opacity: 1;
  z-index: 5;
}

.team-member-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), transparent);
  -webkit-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.4s;
}

.team-member-card:hover::before,
.team-member-card.focused::before {
  opacity: 1;
}

.team-member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-member-card:hover img,
.team-member-card.focused img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 5px;
  letter-spacing: -0.5px;
}

.member-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.team-count {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1e293b;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.team-count span {
  color: #10b981;
  font-size: 2rem;
}

.scroll-progress-container {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0 40px;
  border-radius: 1px;
  overflow: hidden;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: #10b981;
}

.team-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #10b981;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.team-nav-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.team-nav-btn svg {
  transition: transform 0.3s;
}

.team-nav-btn.prev-btn:hover svg {
  transform: translateX(-2px);
}

.team-nav-btn.next-btn:hover svg {
  transform: translateX(2px);
}

/* Mobile responsive overrides for team footer and buttons */
@media (max-width: 768px) {
  .team-footer {
    max-width: 90% !important;
    justify-content: space-between !important;
    gap: 15px !important;
  }
  
  .scroll-progress-container {
    display: none !important;
  }

  .team-footer .team-count:last-of-type {
    display: none !important;
  }

  .team-nav-btn {
    width: 38px !important;
    height: 38px !important;
  }
}

/* ── STACKED PRODUCTS SECTION ── */
#products {
  padding: 40px 0 80px;
  background: #f8fafc;
  position: relative;
}

.products-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.product-card {
  position: sticky;
  top: 120px;
  width: 100%;
  min-height: 450px;
  background: #fff;
  border-radius: 32px;
  margin-bottom: 30vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  will-change: transform, opacity;
  transform-origin: top center;
}

.product-card:nth-child(1) {
  z-index: 1;
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(139, 92, 246, 0.07);
}

.product-card:nth-child(2) {
  z-index: 2;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(14, 165, 233, 0.07);
}

.product-card:nth-child(3) {
  z-index: 3;
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(168, 85, 247, 0.07);
}

.product-card:nth-child(4) {
  z-index: 4;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(16, 185, 129, 0.07);
}

.product-card:nth-child(5) {
  z-index: 5;
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(244, 63, 94, 0.07);
}

.product-card:nth-child(6) {
  z-index: 6;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(249, 115, 22, 0.07);
}

.product-card:nth-child(7) {
  z-index: 7;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(245, 158, 11, 0.07);
}

.product-card:nth-child(8) {
  z-index: 8;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 15px 30px rgba(0, 0, 0, 0.04), 0 30px 60px rgba(239, 68, 68, 0.07);
}

.product-card:last-child {
  margin-bottom: 4vh;
}

.product-visual {
  flex: 1.1;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

/* ── ROADMAP (HOW IT WORKS) ── */
#roadmap {
  padding: 40px 5% 40px;
  background: linear-gradient(-45deg, #f8fafc, #eff6ff, #f1f5f9, #ecfdf5);
  background-size: 400% 400%;
  animation: roadmapBgShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  transition: background 1s ease;
}

@keyframes roadmapBgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.roadmap-bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.roadmap-bg-glows .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0;
  /* Hidden by default, animated via JS */
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-1 {
  top: -100px;
  right: -50px;
  background: #3b82f6;
  transform: scale(0.8);
}

.glow-2 {
  bottom: -100px;
  left: -50px;
  background: #10b981;
  transform: scale(0.8);
}

.roadmap-step.active~.roadmap-bg-glows .glow {
  opacity: 0.2;
  transform: scale(1.2);
}

.glow-1 {
  top: -100px;
  right: -50px;
  background: #3b82f6;
}

.glow-2 {
  bottom: -100px;
  left: -50px;
  background: #10b981;
}

.roadmap-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.roadmap-header .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.roadmap-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(15, 23, 42, 0.05);
  transform: translateX(-50%);
  border-radius: 20px;
}

.roadmap-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #3b82f6, #10b981);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
  border-radius: 20px;
}

.roadmap-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid #10b981;
  border-radius: 50%;
  box-shadow: 0 0 20px #10b981;
  z-index: 10;
  opacity: 0;
}

.roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced from 40px for more compact height */
  position: relative;
  z-index: 2;
}

.roadmap-step {
  display: flex;
  width: 50%;
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
  transform: scale(0.95);
}

.roadmap-step.active {
  opacity: 1;
  transform: scale(1);
}

.roadmap-left {
  align-self: flex-start;
  padding-right: 50px;
  /* Reduced from 80px */
  text-align: right;
  justify-content: flex-end;
}

.roadmap-right {
  align-self: flex-end;
  padding-left: 50px;
  /* Reduced from 80px */
  text-align: left;
}

.step-num-v4 {
  position: absolute;
  top: 0;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 4px solid #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #94a3b8;
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.roadmap-left .step-num-v4 {
  right: -28px;
}

.roadmap-right .step-num-v4 {
  left: -28px;
}

.roadmap-step.active .step-num-v4 {
  background: #10b981;
  /* Explicit Green as requested */
  color: #fff;
  border-color: #fff;
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
  transform: scale(1.1);
}

.step-card-v4 {
  background: rgba(255, 255, 255, 0.03);
  /* Lighter for better glass effect */
  backdrop-filter: blur(20px);
  padding: 20px 32px;
  /* Further reduced padding */
  border-radius: 24px;
  /* Slightly sharper corners for premium look */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle border */
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
  max-width: 520px;
  /* More focused width */
  position: relative;
  overflow: hidden;
}

.roadmap-step.active .step-card-v4 {
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-5px);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.roadmap-left .step-icon {
  margin-left: auto;
}

.roadmap-step.active .step-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.step-card-v4 h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-card-v4 p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .roadmap-line {
    left: 40px;
  }

  .roadmap-step {
    width: 100%;
    padding-left: 90px !important;
    padding-right: 0 !important;
    text-align: left !important;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .roadmap-left .step-num-v4,
  .roadmap-right .step-num-v4 {
    left: 12px !important;
    right: auto !important;
  }

  .roadmap-left .step-icon {
    margin-left: 0;
  }
}

.product-visual img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12));
}

.product-info {
  flex: 1;
  z-index: 3;
}

.product-tag {
  display: inline-block;
  padding: 6px 16px;
  /* Scaled */
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.tag-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.tag-indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.tag-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.tag-blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.tag-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.tag-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}


/* CONTACT SECTION MODERN */
#cta-section {
  padding: 60px 0 120px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 45px;
  text-align: left;
  /* Strict left align */
}

.contact-details .section-head {
  text-align: left;
  margin-bottom: 0;
}

.contact-details .section-tag {
  justify-content: flex-start;
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
  background: #0ea5e9;
  color: white;
  border-color: #0ea5e9;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.info-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.info-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form-wrapper {
  background: white;
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  position: relative;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  /* Left align labels */
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
  margin-left: 2px;
}

.form-input {
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid #f1f5f9;
  background: #f8fafc;
  font-size: 1rem;
  color: #1e293b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #0ea5e9;
  background: white;
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  grid-column: span 2;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  color: white;
  padding: 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-details {
    max-width: 100%;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  #cta-section {
    padding: 30px 0 60px;
  }

  .contact-container {
    gap: 30px;
    padding: 0 15px;
  }

  .contact-details {
    gap: 25px;
  }

  .contact-info-item {
    gap: 15px;
  }

  .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .info-content p {
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    gap: 8px;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .form-textarea {
    min-height: 100px;
  }

  .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

@media (max-width: 1200px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .about-header-centered {
    margin-bottom: 50px;
  }

  .mission-checklist li {
    justify-content: flex-start;
  }

  .card-header {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .about-container-modern {
    padding: 60px 15px;
  }

  .about-header-centered {
    margin-bottom: 30px;
  }

  .about-title-v2 {
    font-size: 1.8rem;
  }

  .about-lead-centered {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .orbital-container {
    width: 250px;
    height: 250px;
    transform: scale(0.8);
  }

  .core-node {
    width: 60px;
    height: 60px;
  }

  .about-glass-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .card-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .vision-quote {
    font-size: 0.88rem;
    padding-top: 15px;
  }

  .mission-checklist li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 0;
    justify-content: flex-start;
  }
}

.product-title {
  font-size: 2.2rem;
  /* Reduced */
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-logo-inline {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.name-group {
  display: inline-flex;
}

/* Product Split Colors */
.txt-green {
  color: #3db44a !important;
}

.txt-blue {
  color: #0089d0 !important;
}

.txt-red {
  color: #ef4444 !important;
}

.txt-orange {
  color: #f97316 !important;
}

.product-desc {
  font-size: 0.95rem;
  /* Reduced */
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
  /* Reduced */
}

@media (max-width: 991px) {

  .vision-mission-card {
    padding: 25px !important;
  }

  .card-header h3 {
    font-size: 1.5rem;
  }

  .about-visual-right {
    transform: none;
    order: -1;
    margin-bottom: 40px;
  }

  .products-stack-container {
    width: 88%;
    margin: 30px auto 0;
    left: 0;
    right: 0;
  }

  .product-card,
  .product-card:nth-child(even) {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    text-align: center;
    top: 75px;
    left: 0;
    gap: 15px;
    min-height: auto;
    margin-bottom: 20vh;
  }

  .product-visual {
    width: 100%;
    max-width: 220px;
  }

  .product-visual img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
  }

  .product-info {
    width: 100%;
  }

  .product-features {
    justify-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .feature-item {
    font-size: 0.8rem;
  }

  .product-title {
    font-size: 1.35rem;
    margin: 5px 0;
  }

  .product-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .btn-product {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

.feature-item svg {
  color: #10b981;
}

.btn-product {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
  background: #1e293b;
  color: #fff;
}

@media (max-width: 991px) {

  #products,
  #about-us,
  #roadmap,
  #team,
  #partners,
  #clients {
    padding-top: 20px !important;
    box-shadow: none !important;
  }

  #products {
    padding-bottom: 40px !important;
  }

  .product-card,
  .product-card:nth-child(even) {
    flex-direction: column;
    padding: 40px 25px;
    text-align: center;
    top: 100px;
  }

  .product-card:last-child {
    margin-bottom: 0;
  }

  .product-features {
    justify-items: center;
  }

  .product-title {
    font-size: 2rem;
  }
}

/* ─────────────────────────────────────────────
   18. JUMP NAV BUTTON
───────────────────────────────────────────── */
.jump-nav-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jump-nav-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.jump-nav-btn:hover {
  background: #10b981;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.jump-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jump-icon svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jump-nav-btn.up .jump-icon svg {
  transform: rotate(180deg);
}

/* Mobile Overrides for Jump Nav */
@media (max-width: 600px) {
  .jump-nav-btn {
    bottom: 25px;
    right: 20px;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .jump-text {
    display: none !important;
  }

  .jump-nav-btn.up {
    background: #10b981;
    border-color: #fff;
  }
}

/* Mobile Team Scroller disabled - Handled by GSAP Touch Sync */