:root {
  --bg: #05070f;
  /* --surface: #090c18; */
  --surface: #000000;
  --blue: #4d84ff;
  --blue-dim: rgba(77, 132, 255, .15);
  --violet: #7c5cfc;
  --cyan: #00d4ff;
  --border: rgba(255, 255, 255, .07);
  --muted: rgba(255, 255, 255, .38);
  --text: #e8eeff;
  --cardbg: #0a0a0a;
  --start: #04060c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

.container-fluid {
  padding: 0 !important;
}

/* ══ CUSTOM CURSOR ══ */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
  transition: transform .08s, width .25s, height .25s, background .25s;
  mix-blend-mode: screen;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(77, 132, 255, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, width .3s, height .3s, opacity .3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 18px;
  height: 18px;
  background: var(--cyan);
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 54px;
  height: 54px;
  opacity: .6;
}

/* ══ CANVAS ══ */
#c {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ══ NOISE ══ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ════════════════════════════════════════
       SIZNING MAVJUD NAVBAR CSS — O'ZGARISHSIZ
    ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  background: rgba(5, 7, 15, .6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding .35s, background .35s;
}

.nav.shrink {
  padding: 14px 52px;
  background: rgba(5, 7, 15, .85);
}

.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-decoration: none;
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.nav-logo:hover::after {
  transform: scaleX(1);
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  padding: 10px 26px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .2s;
  font-family: 'Outfit', sans-serif;
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  opacity: 0;
  transition: opacity .35s;
}

.btn-nav:hover {
  box-shadow: 0 0 28px rgba(77, 132, 255, .45);
  transform: translateY(-1px);
}

.btn-nav:hover::before {
  opacity: 1;
}

.btn-nav a {
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
       FAQAT YANGI QO'SHILGAN RESPONSIVE CODE
    ════════════════════════════════════════ */

/* Hamburger button — faqat mobileda ko'rinadi */
.nav-burger {
  display: none;
  /* desktop — yashirin */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

/* X animatsiyasi — open holatida */
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.nav-drawer {
  display: none;
  /* faqat mobile */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 499;
  background: rgba(5, 7, 15, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px 36px;
  transform: translateY(-110%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1),
    opacity .38s ease;
  opacity: 0;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

/* Drawer nav links — dikey */
.nav-drawer .drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer .drawer-links li a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .22s, padding-left .22s;
  position: relative;
}

.nav-drawer .drawer-links li a::before {
  content: '›';
  position: absolute;
  left: -16px;
  color: var(--blue);
  opacity: 0;
  transition: opacity .22s, left .22s;
}

.nav-drawer .drawer-links li a:hover {
  color: var(--text);
  padding-left: 16px;
}

.nav-drawer .drawer-links li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Drawer CTA button */
.drawer-cta {
  margin-top: 28px;
  width: 100%;
  padding: 14px 26px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .2s;
  font-family: 'Outfit', sans-serif;
}

.drawer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  opacity: 0;
  transition: opacity .35s;
}

.drawer-cta:hover {
  box-shadow: 0 0 24px rgba(77, 132, 255, .4);
  transform: translateY(-1px);
}

.drawer-cta:hover::before {
  opacity: 1;
}

.drawer-cta span {
  position: relative;
  z-index: 1;
}

/* Drawer socials strip */
.drawer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.drawer-soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .82rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.drawer-soc:hover {
  background: rgba(77, 132, 255, .12);
  color: var(--blue);
  border-color: rgba(77, 132, 255, .3);
}

/* ── BREAKPOINTS ── */

/* Tablet: 768–991px — links yashiriladi, burger chiqadi */
@media (max-width: 991px) {
  .nav {
    padding: 16px 32px;
  }

  .nav.shrink {
    padding: 12px 32px;
  }

  .nav-links {
    display: none;
  }

  /* desktop links — yashirin  */
  .btn-nav {
    display: none;
  }

  /* desktop button — yashirin */
  .nav-burger {
    display: flex;
  }

  /* burger — ko'rinadi        */
  .nav-drawer {
    display: block;
  }

  /* drawer — aktiv            */
}

/* Mobile: < 576px */
@media (max-width: 575px) {
  .nav {
    padding: 14px 20px;
  }

  .nav.shrink {
    padding: 11px 20px;
  }

  .nav-drawer {
    padding: 72px 20px 32px;
  }
}


/* ══ HERO ══ */
#hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 70px;
  overflow: hidden;
}

/* Radial spotlight */
.hero-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
      rgba(77, 132, 255, .13) 0%,
      rgba(124, 92, 252, .07) 40%,
      transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {

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

  50% {
    transform: translate(-50%, -55%) scale(1.08);
    opacity: .75;
  }
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(30, 70, 200, .22);
  top: -120px;
  left: -120px;
  animation: float1 9s ease-in-out infinite;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(124, 92, 252, .18);
  bottom: -60px;
  right: -80px;
  animation: float2 11s ease-in-out infinite;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 212, 255, .1);
  top: 30%;
  right: 12%;
  animation: float1 7s 2s ease-in-out infinite;
}

@keyframes float1 {

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

  50% {
    transform: translateY(-28px) translateX(10px)
  }
}

@keyframes float2 {

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

  50% {
    transform: translateY(24px) translateX(-14px)
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(77, 132, 255, .25);
  background: rgba(77, 132, 255, .07);
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .5px;
  margin-bottom: 32px;
  opacity: 0;
  animation: slideDown .7s .1s ease forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--blue)
  }

  50% {
    opacity: .4;
    box-shadow: 0 0 4px var(--blue)
  }
}

/* Headline */
.hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1.5px;
  max-width: 860px;
  opacity: 0;
  animation: slideUp .8s .25s ease forwards;
}

/* Gradient text effect */
.grad-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 50%, var(--violet) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease infinite;
}

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

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

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

/* Subtitle */
.hero-sub {
  margin: 26px auto 0;
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  animation: slideUp .8s .38s ease forwards;
}

/* CTAs */
.hero-ctas {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp .8s .5s ease forwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-size: .94rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .35s;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
  background-size: 200%;
  opacity: 0;
  transition: opacity .4s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(77, 132, 255, .4);
  color: #fff;
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-primary .btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  font-size: .94rem;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .3s, background .3s, transform .25s;
}

.btn-hero-ghost:hover {
  border-color: rgba(77, 132, 255, .4);
  background: rgba(77, 132, 255, .06);
  transform: translateY(-2px);
  color: var(--text);
}

/* ── Floating arrow icon shimmer ── */
.arrow-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  transition: transform .3s;
}

.btn-hero-primary:hover .arrow-icon {
  transform: rotate(45deg);
}

/* Stats */
.hero-stats {
  margin-top: 70px;
  width: 100%;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  opacity: 0;
  animation: slideUp .8s .62s ease forwards;
}

/* Animated border shine */
.hero-stats::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(90deg, transparent, rgba(77, 132, 255, .3), transparent);
  background-size: 200%;
  animation: borderShine 3s linear infinite;
  z-index: -1;
}

@keyframes borderShine {
  0% {
    background-position: -200% 0;
  }

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

.stat-cell {
  padding: 32px 20px;
  text-align: center;
  background: rgba(255, 255, 255, .025);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-cell:hover {
  background: rgba(77, 132, 255, .06);
}

/* top shimmer line on hover */
.stat-cell::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transition: left .5s;
}

.stat-cell:hover::after {
  left: 120%;
}

.stat-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stat-lbl {
  margin-top: 8px;
  font-size: .78rem;
  color: var(--muted);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn .8s 1.2s ease forwards;
}

.scroll-hint span {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--blue), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

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

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

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

/* ══ KEYFRAMES ══ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ══ FOOTER ══ */
footer {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Top shimmer line */
footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: footerLine 4s linear infinite;
  background-size: 200%;
}

@keyframes footerLine {
  0% {
    background-position: -100% 0;
  }

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

.footer-body {
  padding: 76px 0 60px;
}

/* Brand column */
.f-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
  transition: color .25s;
}

.f-logo:hover {
  color: var(--cyan);
}

.f-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 265px;
  font-weight: 300;
}

/* Social icons */
.f-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.f-soc {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.f-soc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 132, 255, .2), rgba(0, 212, 255, .1));
  opacity: 0;
  transition: opacity .3s;
}

.f-soc:hover {
  color: var(--blue);
  border-color: rgba(77, 132, 255, .35);
  transform: translateY(-3px);
}

.f-soc:hover::before {
  opacity: 1;
}

.f-soc i {
  position: relative;
  z-index: 1;
}

/* Footer headings */
.f-heading {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.f-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--blue);
}

/* Footer links */
.f-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-list a {
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color .25s, gap .25s;
  position: relative;
}

.f-list a::before {
  content: '→';
  font-size: .7rem;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  margin-right: 0;
  display: inline-block;
}

.f-list a:hover {
  color: var(--text);
  gap: 6px;
}

.f-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact rows */
.f-contact {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.f-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(77, 132, 255, .08);
  border: 1px solid rgba(77, 132, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: .83rem;
  transition: background .25s, transform .25s;
}

.f-contact:hover .f-icon {
  background: rgba(77, 132, 255, .18);
  transform: scale(1.08);
}

.f-info strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 2px;
}

.f-info span {
  font-size: .85rem;
  color: var(--muted);
}

/* Newsletter mini strip */
.f-newsletter {
  margin-top: 8px;
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color .3s;
}

.f-newsletter:focus-within {
  border-color: rgba(77, 132, 255, .4);
}

.f-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 18px;
  font-size: .83rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
}

.f-newsletter input::placeholder {
  color: var(--muted);
}

.f-newsletter button {
  padding: 10px 20px;
  background: var(--blue);
  border: none;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background .25s;
  font-family: 'Outfit', sans-serif;
}

.f-newsletter button:hover {
  background: var(--violet);
}

/* Divider */
.f-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Bottom bar */
.f-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
}

.f-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.f-bottom a:hover {
  color: var(--text);
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(34, 212, 114, .2);
  background: rgba(34, 212, 114, .06);
  font-size: .72rem;
  color: rgba(34, 212, 114, .9);
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d472;
  box-shadow: 0 0 6px #22d472;
  animation: pulse2 2s infinite;
}

@keyframes pulse2 {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ══ PARTNER SCROLL ══ */
.section-title {
  text-align: center;
  font-weight: 600;
  font-size: 35px !important;
  margin-bottom: 3rem !important;
}

.partners {
  background: var(--surface) !important;
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 70px 0 !important;
  border: 1px solid var(--border) !important;
}

.partner-scroll {
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner_scroll 45s linear infinite;
  align-items: center;
  gap: 60px;
}

.partner-track span {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.8;
  padding: 0 30px;
  white-space: nowrap;
}

.partner-track span:hover {
  opacity: 1;
}

@keyframes partner_scroll {
  0% {
    transform: translateX(0);
  }

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

/* ══ SERVICES ══ */
.services::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: servicLine 4s linear infinite;
  background-size: 200%;
}

@keyframes servicLine {
  0% {
    background-position: -100% 0;
  }

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

.services {
  background: var(--surface) !important;
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 70px 0;
  border: 1px solid var(--border) !important;
}

.services .row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.services-title {
  text-align: center;
  font-weight: 600;
  font-size: 35px !important;
  /* margin-bottom: 5rem !important; */
}

.service-card {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  margin: 0 0 2rem 0 !important;
  transition: all 0.35s ease !important;
  opacity: 0;
  animation: fadeUp 1s ease forwards !important;
}

.service-card:hover {
  scale: 1.03;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(59, 130, 246, 0.35);

}

.service-card:hover h3 {
  color: #007bff !important;

}

.service-card:hover svg {
  color: #fff !important;

}

.service-title svg {
  width: 45px;
  height: 45px;
  color: var(--blue);
  transition: transform .3s;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--muted);
}

/* ══ PROJECT ══ */
.project::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: projectLine 4s linear infinite;
  background-size: 200%;
}

@keyframes projectLine {
  0% {
    background-position: -100% 0;
  }

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

.project {
  background: var(--surface) !important;
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 70px 0;
  border: 1px solid var(--border) !important;
}

.project .row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.project-title {
  text-align: center;
  font-weight: 600;
  font-size: 45px !important;
  /* margin-bottom: 5rem !important; */
}

.project-card {
  height: 200px !important;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin: 0 0 2rem 0 !important;
  transition: all 0.35s ease !important;
  opacity: 0;
  animation: fadeUp 1s ease forwards !important;

}

.project-card:hover {
  scale: 1.03;
  transform: translateY(-4px);

  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(59, 130, 246, 0.35);
}

.project-card h3 {
  color: var(--text) !important;
  text-align: left;
}

.project-card:hover h3 {
  color: #007bff !important;

}

.project-card p {
  color: var(--muted) !important;
  text-align: left;
}

.project-tech {
  width: 20%;
  height: auto;
  padding: 3px;
  display: inline-block;
  border: 1px solid #15294a;
  border-radius: 50rem;
  color: #3b82f6;
  background: rgb(12 19 31);
  text-align: center;
}

/* ══ TEAM ══ */
.team-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: teamLine 4s linear infinite;
  background-size: 200%;
}

@keyframes teamLine {
  0% {
    background-position: -100% 0;
  }

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

.team-section {
  width: 100%;
  padding: 96px 0 100px;
  background: var(--surface) !important;
  position: relative;
  z-index: 6;
  overflow: hidden;
}

.team-inner {
  max-width: 1300px !important;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 575px) {
  .team-inner {
    padding: 0 20px;
  }
}

/* ── Header ── */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.s-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}

.s-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.1;
}

.grad {
  background: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-sub {
  margin-top: 12px;
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  /* max-width: 460px; */
}

/* ── Grid ── */
.team-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .team-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }
}

/* ── Card ── */
.team-card {
  /* width: 280px; */
  background: var(--cardbg);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease !important;

  opacity: 0;
  animation: fadeUp 1s ease forwards !important;
}

.team-card:nth-child(1) {
  animation-delay: .05s;
}

.team-card:nth-child(2) {
  animation-delay: .13s;
}

.team-card:nth-child(3) {
  animation-delay: .21s;
}

.team-card:nth-child(4) {
  animation-delay: .29s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* top shimmer bar */
.team-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  opacity: 0;
  transition: opacity .35s;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* inner glow blob */
.team-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: radial-gradient(circle, rgba(77, 132, 255, .09), transparent 70%);
}

/* Featured card */
.team-card.featured {
  border-color: rgba(77, 132, 255, .38);
  box-shadow:
    0 0 0 1px rgba(77, 132, 255, .1),
    0 10px 36px rgba(0, 0, 0, .5),
    0 0 30px rgba(77, 132, 255, .14);
}

.team-card.featured::after {
  opacity: 1;
}

.team-card.featured .card-name {
  color: var(--blue);
}

/* Hover */
.team-card:hover {
  scale: 1.03;
  border-color: rgba(77, 132, 255, .32);
  box-shadow:
    0 0 0 1px rgba(77, 132, 255, .08),
    0 18px 44px rgba(0, 0, 0, .55),
    0 0 32px rgba(77, 132, 255, .12);
}

.team-card:hover .card-name {
  color: var(--blue);
}

.team-card:hover .card-role {
  color: #fff;
}

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

.team-card:hover::after {
  opacity: 1;
}

/* Image */
.card-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
  aspect-ratio: 1 / 1.15;
  margin-bottom: 18px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .45s ease;
}

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

/* Text */
.card-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  transition: color .25s;
}

.card-role {
  font-size: .73rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Socials */
.card-socials {
  display: flex;
  gap: 7px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .28s, transform .28s;
}

.team-card:hover .card-socials {
  opacity: 1;
  transform: none;
}

.c-soc {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .72rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.c-soc:hover {
  background: var(--blue-dim);
  color: var(--blue);
  border-color: rgba(77, 132, 255, .3);
  transform: translateY(-2px);
}

/* ══ Result ══ */

.result {
  background: var(--surface) !important;
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 70px 0;
}

.result .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.result .col-11 {
  background: var(--cardbg);
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all 0.35s ease !important;
}

.result .col-11:hover {
  scale: 1.03;
  border-color: rgba(77, 132, 255, .32);
  box-shadow:
    0 0 0 1px rgba(77, 132, 255, .08),
    0 18px 44px rgba(0, 0, 0, .55),
    0 0 32px rgba(77, 132, 255, .12);
}

.result-title {
  text-align: center !important;
  font-weight: 500;
  font-size: 35px !important;
  /* margin-bottom: 5rem !important; */
}

/* ══ Result counter ══ */
.stats-section {
  padding: 80px 0;
}

.stats-card {
  width: 86%;
  margin: auto;
  background: var(--cardbg);
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;

  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.12),
    0 6px 18px rgba(0, 0, 0, 0.45);
}

.stats-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.6);
}

.stats-number {
  font-size: 42px;
  font-weight: 700;
  color: #3b82f6;
}

.stats-text {
  margin-top: 8px;
  color: #9ca3af;
  font-size: 15px;
}

/* containerni professional qilish */
.custom-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ══ Process ══ */
.process-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: processLine 4s linear infinite;
  background-size: 200%;
}

@keyframes processLine {
  0% {
    background-position: -100% 0;
  }

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

.process-section {
  width: 100%;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: var(--surface) !important;

}

/* ── Container ── */
.custom-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 575px) {
  .custom-container {
    padding: 0 20px;
  }
}

/* ── Section title ── */
.process-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--white);
  margin-bottom: 68px;
  opacity: 0;
  animation: fadeUp .65s .05s ease forwards;
}

/* ══════════════════════════════════
       TRACK  —  4 cards + 3 arrows
    ══════════════════════════════════ */
.process-track {
  display: grid;
  /* 4 cards + 3 arrows: auto for arrow, 1fr for cards */
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 16px;
}

/* ══════════════════════════════════
       PROCESS ITEM
    ══════════════════════════════════ */
.process-item {
  position: relative;
  padding-top: 52px;
  /* space for the number above */
  opacity: 0;
  animation: fadeUp .62s ease forwards;
}

.process-item:nth-child(1) {
  animation-delay: .15s;
}

.process-item:nth-child(3) {
  animation-delay: .27s;
}

.process-item:nth-child(5) {
  animation-delay: .39s;
}

.process-item:nth-child(7) {
  animation-delay: .51s;
}

/* ── Step number ── */
.step-number {
  position: absolute;
  top: -4px;
  left: 12px;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-num);
  user-select: none;
  letter-spacing: -2px;
  /* shimmer sweep */
  background: linear-gradient(105deg,
      rgba(59, 130, 246, .13) 0%,
      rgba(59, 130, 246, .32) 45%,
      rgba(59, 130, 246, .13) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numSweep 5s linear infinite;
}

.process-item:nth-child(3) .step-number {
  animation-delay: .9s;
}

.process-item:nth-child(5) .step-number {
  animation-delay: 1.8s;
}

.process-item:nth-child(7) .step-number {
  animation-delay: 2.7s;
}

@keyframes numSweep {
  0% {
    background-position: 200% center;
  }

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

/* ══════════════════════════════════
       PROCESS CARD
    ══════════════════════════════════ */
.process-card {
  background: var(--cardbg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  padding: 24px 22px 28px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition:
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease,
    background .28s ease;
}

/* subtle top glow line — hidden by default */
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse 80% 40% at 50% 0%,
      rgba(59, 130, 246, .09),
      transparent);
  opacity: 0;
  transition: opacity .35s;
}

/* ── ACTIVE card (03 = Dasturlash in screenshot) ── */
.process-item.active .process-card {
  border-color: var(--blue-border);
  background: var(--card-bg-dark);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, .2),
    0 8px 32px rgba(0, 0, 0, .6),
    0 0 28px rgba(59, 130, 246, .1);
}

.process-item.active .process-card::before {
  opacity: 1;
}

/* active step number gets brighter */
.process-item.active .step-number {
  background: linear-gradient(105deg,
      rgba(59, 130, 246, .25) 0%,
      rgba(59, 130, 246, .55) 45%,
      rgba(59, 130, 246, .25) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── HOVER (non-active cards) ── */
.process-item:not(.active) .process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, .3);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, .1),
    0 12px 32px rgba(0, 0, 0, .55),
    0 0 18px rgba(59, 130, 246, .07);
}

.process-item:not(.active) .process-card:hover::before {
  opacity: 1;
}

/* ── Card title ── */
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: .1px;
}

/* ── Card text ── */
.card-text {
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════
       ARROW
    ══════════════════════════════════ */
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  /* push arrow down to align with card center */
  padding-top: 52px;
  opacity: 0;
  animation: fadeIn .5s ease forwards;
}

.arrow:nth-child(2) {
  animation-delay: .22s;
}

.arrow:nth-child(4) {
  animation-delay: .34s;
}

.arrow:nth-child(6) {
  animation-delay: .46s;
}

.arrow-inner {
  font-size: 20px;
  font-weight: 300;
  color: var(--blue);
  opacity: .65;
  line-height: 1;
  /* subtle right-nudge pulse */
  animation: arrowNudge 2.6s ease-in-out infinite;
  display: block;
}

.arrow:nth-child(4) .arrow-inner {
  animation-delay: .6s;
}

.arrow:nth-child(6) .arrow-inner {
  animation-delay: 1.2s;
}

@keyframes arrowNudge {

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

  50% {
    transform: translateX(3px);
    opacity: .9;
  }
}

/* ══════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */

/* Tablet  768–1199px  →  2 × 2  grid */
@media (max-width: 1199px) {
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 52px 20px;
  }

  /* hide all arrows */
  .arrow {
    display: none;
  }

  /* show connector dots between cards instead */
  .process-item {
    padding-top: 50px;
  }
}

/* Small tablet  576–767px  →  2 × 2 tighter */
@media (max-width: 767px) {
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 44px 16px;
  }
}

/* Mobile  < 576px  →  1 column */
@media (max-width: 575px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 44px 0;
  }

  .process-title {
    margin-bottom: 52px;
  }
}

/* Large desktop clamp */
@media (min-width: 1400px) {
  .custom-container {
    max-width: 1340px;
  }
}

/* ══ Now-start ══ */
.now-start::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent);
  animation: nowLine 4s linear infinite;
  background-size: 200%;
}

@keyframes nowLine {
  0% {
    background-position: -100% 0;
  }

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

.now-start {
  height: 60vh !important;
  display: flex;
  align-items: center;
  background: var(--start) !important;
  position: relative;
  overflow: hidden;
}

.now-start-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.now-start-sub {
  font-size: 1.125rem;
  margin-bottom: 32px;
  text-align: center;
}

.pro-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  background: linear-gradient(135deg, #3b82f6, #7c3aed);

  transition: all 0.35s ease;

  /* Glow + depth */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(59, 130, 246, 0.35),
    0 0 25px rgba(124, 58, 237, 0.35);
}

/* Hover */
.pro-btn:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(59, 130, 246, 0.5),
    0 0 35px rgba(124, 58, 237, 0.5);
}

/* Click */
.pro-btn:active {
  transform: scale(0.97);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.4);
}

.pro-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  filter: blur(15px);
  opacity: 0.6;
  z-index: -1;
}

/* Make it move */

@keyframes partner_scroll {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ══ RESPONSIVE ══ */
@media(max-width:768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .f-bottom {
    flex-direction: column;
    text-align: center;
  }

  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   RYSOFT — RESPONSIVE + SCROLL ANIMATION PATCH
   Faqat qo'shimcha kod. Mavjud CSS ga tegmaydi.
   Bu faylni loyihangizning asosiy CSS dan KEYIN ulang.
═══════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. SCROLL REVEAL — base holat
   HTML elementlarga .sr class qo'shasiz,
   JS ular ko'ringanda .sr--in qo'shadi
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.sr.sr--in {
  opacity: 1;
  transform: none;
}

/* Variant: chapdan */
.sr-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}

.sr-left.sr--in {
  opacity: 1;
  transform: none;
}

/* Variant: o'ngdan */
.sr-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.sr-right.sr--in {
  opacity: 1;
  transform: none;
}

/* Stagger delay yordamchilar */
.sr-d1 {
  transition-delay: .08s;
}

.sr-d2 {
  transition-delay: .16s;
}

.sr-d3 {
  transition-delay: .24s;
}

.sr-d4 {
  transition-delay: .32s;
}

.sr-d5 {
  transition-delay: .40s;
}

.sr-d6 {
  transition-delay: .48s;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. HERO — mobile responsive
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  #hero {
    padding: 110px 20px 60px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-top: 18px;
  }

  .hero-ctas {
    margin-top: 32px;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-stats {
    margin-top: 44px;
    max-width: 100%;
  }

  .stat-val {
    font-size: 1.6rem;
  }

  .stat-lbl {
    font-size: .7rem;
  }

  .scroll-hint {
    display: none;
  }

  .orb-1 {
    width: 260px;
    height: 260px;
  }

  .orb-2 {
    width: 200px;
    height: 200px;
  }

  .orb-3 {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero-h1 {
    font-size: 1.9rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .stat-cell:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. PARTNERS — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  .partners {
    padding: 48px 0 !important;
  }

  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
    padding: 0 20px;
  }

  .partner-track span {
    font-size: 1rem;
    padding: 0 18px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. SERVICES — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .services {
    padding: 52px 0 !important;
  }

  .services-title {
    font-size: 1.8rem !important;
    padding: 0 20px;
    margin-bottom: 2rem !important;
  }

  .services .row {
    flex-wrap: wrap;
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: 24px 20px;
  }

  .service-title svg {
    width: 36px;
    height: 36px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. PROJECTS — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .project {
    padding: 52px 0 !important;
  }

  .project-title {
    font-size: 2rem !important;
    padding: 0 20px;
    text-align: center;
  }

  .project .row {
    flex-wrap: wrap;
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .project-card {
    height: auto !important;
    padding: 22px 18px;
  }

  .project-tech {
    font-size: .75rem;
    padding: 4px 8px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. TEAM — mobile (grid allaqachon responsiv,
      faqat padding va sarlavha tuzatiladi)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .team-section {
    padding: 64px 0 72px;
  }

  .s-title {
    font-size: 2.4rem;
  }

  .s-sub {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .team-inner {
    padding: 0 20px;
  }

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

  .team-grid {
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .s-title {
    font-size: 1.8rem;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. STATS / RESULT — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .stats-section {
    padding: 52px 0;
  }

  .stats-card {
    width: 100%;
    margin-bottom: 16px;
  }

  .stats-number {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .result {
    padding: 48px 0 !important;
  }

  .result-title {
    font-size: 1.6rem !important;
    padding: 0 16px;
  }

  .result .col-11 {
    margin: 0 12px;
    padding: 24px 16px !important;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. PROCESS — (allaqachon responsiv, sarlavha tuzatiladi)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .process-section {
    padding: 64px 0 72px;
  }
}

@media (max-width: 767px) {
  .process-title {
    font-size: 1.7rem;
    margin-bottom: 44px;
    padding: 0 8px;
  }

  .process-card {
    padding: 20px 18px 24px;
    min-height: auto;
  }

  .step-number {
    font-size: 54px;
    top: -2px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. NOW-START (CTA band) — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .now-start {
    height: auto !important;
    padding: 72px 24px !important;
  }

  .now-start-title {
    font-size: 1.9rem;
  }

  .now-start-sub {
    font-size: 1rem;
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .now-start {
    padding: 56px 20px !important;
  }

  .now-start-title {
    font-size: 1.55rem;
  }

  .pro-btn {
    width: 100%;
    font-size: 15px;
    padding: 13px 24px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. FOOTER — mobile
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
  .footer-body {
    padding: 52px 0 40px;
  }

  .f-desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .f-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .f-bottom>div {
    justify-content: center;
  }

  .f-newsletter {
    flex-direction: row;
    /* input + button yonma-yon */
  }
}

@media (max-width: 575px) {
  .footer-body {
    padding: 44px 0 32px;
  }

  .f-socials {
    flex-wrap: wrap;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. GLOBAL TEXT responsive
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {

  /* Barcha section sarlavhalari uchun clamp */
  .section-title,
  .services-title,
  .project-title,
  .result-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    padding: 0 16px;
  }

  /* Barcha custom-container lar */
  .custom-container {
    padding: 0 20px;
  }

  /* .stats-card {
    margin-left: 0 !important;
  } */
}

@media (max-width: 400px) {
  html {
    font-size: 14px;
  }

  .custom-container {
    padding: 0 14px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. Touch devicelarda hover effektlarni o'chirish
       (scale, transform chayqalishi oldini olish)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (hover: none) {

  .team-card:hover,
  .service-card:hover,
  .project-card:hover,
  .stats-card:hover,
  .result .col-11:hover {
    transform: none !important;
    scale: 1 !important;
  }
}