/* ── IRANSans فارسی ── */
@font-face {
  font-family: 'IRANSans';
  src: url('/assets/fonts/iransans/fanum/IRANSansfa_UltraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANSans';
  src: url('/assets/fonts/iransans/fanum/IRANSansfa_Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANSans';
  src: url('/assets/fonts/iransans/fanum/IRANSansfa_Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANSans';
  src: url('/assets/fonts/iransans/fanum/IRANSansfa_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANSans';
  src: url('/assets/fonts/iransans/fanum/IRANSansfa_Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --cyan: #22d3ee;
  --lime: #a3e635;
  --purple: #a855f7;
  --orange: #f97316;
  --bg-900: #080d14;
  --bg-800: #0d1520;
  --bg-700: #111b2a;
  --bg-600: #162030;
  --text-100: #f1f5f9;
  --text-300: #cbd5e1;
  --text-500: #64748b;
  --border: rgba(34, 211, 238, .18);
  --radius: 14px;
  --font-fa: 'IRANSans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-900);
  color: var(--text-300);
  font-family: var(--font-fa);
  font-size: 15px;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  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='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-cyan {
  text-shadow: 0 0 22px rgba(34, 211, 238, .55), 0 0 44px rgba(34, 211, 238, .25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 64px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .25em;
  color: var(--text-500);
  margin-bottom: 48px;
  font-weight: 700;
}

.section-label::before {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .5));
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 211, 238, .5), transparent);
}

/* ═══ TOPBAR ═══ */
.topbar {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #060b11, #0a1622, #060b11);
  border-bottom: 1px solid rgba(34, 211, 238, .12);
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 600;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-500);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.topbar-item:hover {
  color: var(--cyan);
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(34, 211, 238, .15);
}

.auth-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  padding: 4px 14px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid rgba(34, 211, 238, .35);
  color: var(--cyan);
  background: rgba(34, 211, 238, .06);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.btn-login:hover {
  background: rgba(34, 211, 238, .15);
  border-color: var(--cyan);
}

.btn-register {
  padding: 4px 14px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  background: rgba(163, 230, 53, .1);
  color: var(--lime);
  border: 1px solid rgba(163, 230, 53, .3);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.btn-register:hover {
  background: rgba(163, 230, 53, .2);
  border-color: rgba(163, 230, 53, .6);
}

/* ═══ NAVBAR ═══ */
nav {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(8, 13, 20, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 211, 238, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 16px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: .93rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--text-300);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-links .active {
  color: var(--lime);
  position: relative;
}

.nav-links .active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 800;
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .02em;
  box-shadow: 0 0 14px rgba(163, 230, 53, .2);
}

.nav-cta:hover {
  background: var(--lime);
  color: #080d14;
  box-shadow: 0 0 28px rgba(163, 230, 53, .5);
}

/* ═══ HAMBURGER ═══ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 1px solid rgba(34, 211, 238, .25);
  border-radius: 8px;
  background: rgba(34, 211, 238, .05);
  padding: 8px;
  transition: all .2s;
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: rgba(34, 211, 238, .6);
  background: rgba(34, 211, 238, .1);
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transition: all .3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ═══ MOBILE OVERLAY ═══ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(4px);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ═══ MOBILE DRAWER ═══ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: linear-gradient(160deg, #0d1520, #111b2a);
  border-left: 1px solid rgba(34, 211, 238, .2);
  z-index: 100;
  padding: 70px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, .25);
  background: rgba(34, 211, 238, .05);
  color: var(--text-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: all .2s;
}

.mobile-close:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.mobile-menu a {
  color: var(--text-300);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  color: var(--text-100);
  background: rgba(34, 211, 238, .06);
  border-color: rgba(34, 211, 238, .15);
}

.mobile-menu a.active {
  color: var(--lime);
  background: rgba(163, 230, 53, .07);
  border-color: rgba(163, 230, 53, .2);
}

.mobile-sep {
  height: 1px;
  background: rgba(34, 211, 238, .1);
  margin: 6px 0;
}

.mobile-cta-btn {
  margin-top: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #080d14 !important;
  text-align: center;
  font-size: .95rem;
  text-decoration: none !important;
  display: block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(34, 211, 238, .25);
  -webkit-text-fill-color: #080d14;
}

.mobile-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(34, 211, 238, .4);
}

.mobile-footer-info {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 211, 238, .1);
  font-size: .78rem;
  color: var(--text-500);
  line-height: 2;
}

.mobile-footer-info a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}

/* ═══ HERO SLIDER ═══ */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(34, 211, 238, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent);
}

.hero-static {
  text-align: center;
  padding: 56px 24px 40px;
  position: relative;
  z-index: 2;
}

.hero-code-logo {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -2px;
}

.hero-code-logo .b {
  color: var(--cyan);
}

.hero-code-logo .s {
  color: var(--lime);
}

.hero-tagline {
  font-size: .78rem;
  letter-spacing: .3em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ═══ SLIDE AREA ═══ */
.hero-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 320px;
}

/* Each slide hidden by default */
.hero-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 0;
  text-align: center;
}

.hero-slide.active {
  display: flex;
}

/* ── Staggered children animation ── */
/* Every direct child of active slide gets animated individually */
.hero-slide .slide-h1,
.hero-slide .slide-h2,
.hero-slide .slide-desc,
.hero-slide .slide-btns {
  opacity: 0;
}

.hero-slide.active .slide-h1 {
  animation: slideInDown .6s cubic-bezier(.22, 1, .36, 1) .05s forwards;
}

.hero-slide.active .slide-h2 {
  animation: slideInUp .55s cubic-bezier(.22, 1, .36, 1) .25s forwards;
}

.hero-slide.active .slide-desc {
  animation: fadeInBlur .5s ease .45s forwards;
}

.hero-slide.active .slide-btns {
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) .62s forwards;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(.96);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBlur {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.85) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* slide-out class for exit animation */
.hero-slide.exit .slide-h1,
.hero-slide.exit .slide-h2,
.hero-slide.exit .slide-desc,
.hero-slide.exit .slide-btns {
  animation: slideOut .35s ease forwards !important;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.slide-h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.slide-h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.slide-desc {
  font-size: .95rem;
  color: var(--text-500);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.slide-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.slide-btn-primary {
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #080d14;
  text-decoration: none;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
}

.slide-btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(34, 211, 238, .35);
}

.slide-btn-outline {
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(34, 211, 238, .4);
  color: var(--cyan);
  text-decoration: none;
  font-size: .9rem;
  background: rgba(34, 211, 238, .05);
  transition: all .2s;
}

.slide-btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, .12);
}

/* ── سبک ویژه: مشاوره رایگان — همیشه متفاوت و به چشم ── */
.btn-consult {
  position: relative;
  overflow: hidden;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .92rem;
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .03em;
  box-shadow: 0 0 18px rgba(163, 230, 53, .2), inset 0 0 18px rgba(163, 230, 53, .04);
}

.btn-consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(163, 230, 53, .15), rgba(34, 211, 238, .08));
  opacity: 0;
  transition: opacity .3s;
}

.btn-consult:hover {
  color: #080d14;
  border-color: var(--lime);
  box-shadow: 0 0 32px rgba(163, 230, 53, .5);
}

.btn-consult:hover::before {
  opacity: 0;
}

.btn-consult:hover {
  background: var(--lime);
}

/* ── سبک استاندارد: شروع پروژه / CTA اصلی ── */
.btn-start {
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .92rem;
  background: linear-gradient(135deg, var(--cyan), #0ea5e9);
  color: #080d14;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(34, 211, 238, .3);
}

.btn-start:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(34, 211, 238, .45);
}

/* Hero icon tabs */
.hero-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-icon-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-500);
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  min-width: 80px;
}

.hero-icon-tab:hover {
  color: var(--text-300);
}

.hero-icon-tab.active {
  color: var(--cyan);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(34, 211, 238, .3);
  background: rgba(34, 211, 238, .04);
  transition: all .3s;
}

.hero-icon-tab:hover .icon-box {
  border-color: rgba(34, 211, 238, .6);
  background: rgba(34, 211, 238, .08);
}

.hero-icon-tab.active .icon-box {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, .12);
  box-shadow: 0 0 20px rgba(34, 211, 238, .2);
}

.icon-box.lime {
  border-color: rgba(163, 230, 53, .3);
  background: rgba(163, 230, 53, .04);
}

.hero-icon-tab.active .icon-box.lime {
  border-color: var(--lime);
  background: rgba(163, 230, 53, .12);
  box-shadow: 0 0 20px rgba(163, 230, 53, .2);
}

.icon-box.purple {
  border-color: rgba(168, 85, 247, .3);
  background: rgba(168, 85, 247, .04);
}

.hero-icon-tab.active .icon-box.purple {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, .2);
}

.icon-box.orange {
  border-color: rgba(249, 115, 22, .3);
  background: rgba(249, 115, 22, .04);
}

.hero-icon-tab.active .icon-box.orange {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, .2);
}

/* Tab indicator dots */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--text-500);
  transition: all .3s;
  cursor: pointer;
}

.slide-dot.active {
  width: 24px;
  background: var(--cyan);
}

/* ═══ STATS ═══ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}

.stat-item {
  padding: 24px 16px;
  text-align: center;
  background: var(--bg-800);
  transition: background .3s;
  border-left: 1px solid rgba(34, 211, 238, .08);
}

.stat-item:last-child {
  border-left: none;
}

.stat-item:hover {
  background: var(--bg-700);
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num.lime {
  color: var(--lime);
}

.stat-label {
  font-size: .78rem;
  color: var(--text-500);
  font-weight: 600;
}

/* ═══ SERVICES ═══ */
/* desktop: 4 cols, tablet: 2 cols, mobile: 1 col — always clean */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.card {
  background: linear-gradient(135deg, var(--bg-800), var(--bg-700));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, .45);
  box-shadow: 0 12px 48px rgba(34, 211, 238, .12);
}

.service-card {
  padding: 26px 22px;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1.5px solid rgba(34, 211, 238, .35);
  background: rgba(34, 211, 238, .04);
}

.service-card h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-card p {
  font-size: .82rem;
  color: var(--text-500);
  line-height: 1.75;
  margin-bottom: 14px;
}

.learn-more {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, gap .2s;
}

.learn-more:hover {
  color: var(--lime);
  gap: 8px;
}

/* ═══ TECHNOLOGIES TABS ═══ */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tech-tab {
  padding: 7px 20px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  border: 1px solid rgba(34, 211, 238, .25);
  color: var(--text-500);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.tech-tab:hover {
  border-color: rgba(34, 211, 238, .5);
  color: var(--text-300);
}

.tech-tab.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 211, 238, .08);
}

.tech-panel {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tech-panel.active {
  display: flex;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(34, 211, 238, .28);
  border-radius: 999px;
  background: rgba(34, 211, 238, .04);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-300);
  cursor: default;
  transition: all .2s;
}

.tech-badge:hover {
  border-color: rgba(163, 230, 53, .5);
  background: rgba(163, 230, 53, .06);
  color: var(--lime);
}

/* ═══ WHY/WHAT ═══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  padding: 32px;
}

.info-card h3 {
  font-size: .95rem;
  font-weight: 900;
  color: var(--text-100);
  letter-spacing: .1em;
  margin-bottom: 22px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-300);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 10px;
}

.check-icon.lime {
  border-color: var(--lime);
  color: var(--lime);
}

/* ═══ CTA ═══ */
.cta-banner {
  background: linear-gradient(135deg, #0d1b2e, #0f1e33);
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-btn {
  padding: 13px 28px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #080d14;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 28px rgba(34, 211, 238, .3);
}

/* ═══ FOOTER ═══ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(34, 211, 238, .1);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-500);
  flex-wrap: wrap;
  gap: 12px;
}

footer a {
  color: var(--text-500);
  text-decoration: none;
  transition: color .2s;
}

footer a:hover {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fu {
  animation: fadeUp .7s ease forwards;
}

.d1 {
  animation-delay: .05s;
  opacity: 0
}

.d2 {
  animation-delay: .18s;
  opacity: 0
}

.d3 {
  animation-delay: .32s;
  opacity: 0
}

.d4 {
  animation-delay: .46s;
  opacity: 0
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #22c55e
  }

  50% {
    opacity: .6;
    box-shadow: 0 0 14px #22c55e
  }
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 2s infinite;
  display: inline-block;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:768px) {
  .two-col {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .topbar {
    padding: 6px 16px;
    font-size: .72rem;
    flex-wrap: nowrap;
  }

  .topbar-side:first-child .topbar-item {
    display: none;
  }

  .topbar-side:first-child span:first-child {
    display: flex;
  }
}

@media(max-width:520px) {
  .hero-icons-row {
    gap: 8px;
  }

  .hero-icon-tab {
    min-width: 64px;
    font-size: .7rem;
  }

  .icon-box {
    width: 52px;
    height: 52px;
  }
}

::-webkit-scrollbar {
  width: 5px
}

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

::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, .3);
  border-radius: 3px
}