/* ═══════════════════════════════════════════════════
   DOJA SYSTEMS — Premium Website Styles
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-0: #003DA6; --purple-1: #0047BF; --purple-2: #0055FF; --purple-3: #2B70FF; --purple-4: #4D87FF;
  --pink: #FA12E3; --orange: #FF6221; --blue: #1F7CFF;
  --cyan: #40DDFF; --green: #21C828; --yellow: #FFD700;
  --black-0: #070C1C; --black-1: #0A1128; --black-2: #0D1530;
  --grey-0: #514B81; --grey-1: #7F76B3; --grey-2: #B6AEE0;
  --grey-5: #F1F1F9; --white: #ffffff;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-natural: cubic-bezier(.5,0,.5,1);
  --ease-out:     cubic-bezier(.165,.84,.44,1);
  --ease-bounce:  cubic-bezier(.175,.885,.32,1.275);
  --nav-h: 72px;
  --radius-sm: 10px; --radius-md: 16px; --radius-lg: 22px; --radius-xl: 32px;
  --shadow-card: 0 4px 24px rgba(0,85,255,.08), 0 1px 4px rgba(0,0,0,.06);
  --shadow-hover: 0 12px 48px rgba(0,85,255,.16), 0 2px 8px rgba(0,0,0,.1);
  --transition: .3s var(--ease-natural);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black-0);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px; line-height: 1;
  padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .2s var(--ease-bounce), box-shadow .2s, background .2s, opacity .2s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--purple-2), var(--pink));
  color: #fff; box-shadow: 0 4px 20px rgba(0,85,255,.35);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(0,85,255,.5); }
.btn--hero {
  background: #fff; color: var(--black-0); font-size: 16px;
  padding: 16px 36px; box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.btn--hero:hover { box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.btn--ghost {
  background: rgba(0,0,0,.06); color: var(--black-0);
  border: 1.5px solid rgba(0,0,0,.1);
}
.btn--ghost-light {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.2); }
.btn--outline {
  background: transparent; color: var(--purple-2); border: 2px solid var(--purple-2);
}
.btn--outline:hover { background: var(--purple-2); color: #fff; }
.btn--full { width: 100%; }
.btn--xl { padding: 20px 56px; font-size: 18px; }

/* ─── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.nav.hero-mode:not(.scrolled) .nav__link,
.nav.hero-mode:not(.scrolled) .nav__logo-text,
.nav.hero-mode:not(.scrolled) .lang-current { color: rgba(255,255,255,.85); }
.nav.hero-mode:not(.scrolled) .lang-current { border-color: rgba(255,255,255,.2); }

.nav__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-text {
  font-weight: 800; font-size: 17px; color: var(--black-0);
  transition: color var(--transition);
}
/* Logo hell/dunkel switch */
.nav__logo-img { display: block; transition: opacity .3s; }
.nav__logo-img--on-light { display: none; }
.nav__logo-img--on-dark  { display: block; }
.nav.scrolled .nav__logo-img--on-dark  { display: none; }
.nav.scrolled .nav__logo-img--on-light { display: block; }
.nav__logo-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav.scrolled .nav__logo-text { color: var(--black-0); }
.nav__logo-text--accent { color: var(--purple-2); }
.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav__link {
  font-size: 14px; font-weight: 600; color: var(--black-0);
  padding: 8px 12px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--purple-2); background: rgba(0,85,255,.06); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid rgba(0,0,0,.12); border-radius: 100px;
  padding: 6px 12px; cursor: pointer; font-family: var(--font);
  font-size: 13px; font-weight: 700; color: var(--black-0);
  transition: background .2s, border-color .2s, color .2s;
}
.lang-current:hover { background: rgba(0,85,255,.05); border-color: var(--purple-2); }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-chevron { font-size: 10px; opacity: .6; transition: transform .2s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.12); min-width: 160px; overflow: hidden;
  opacity: 0; transform: translateY(-8px) scale(.97); pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 16px; background: none; border: none;
  font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--black-0);
  cursor: pointer; transition: background .15s;
}
.lang-option:hover { background: var(--grey-5); }
.lang-option--active { color: var(--purple-2); font-weight: 700; background: rgba(0,85,255,.05); }
.lang-option span { font-size: 16px; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black-0); border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.nav.hero-mode:not(.scrolled) .nav__hamburger span { background: #fff; }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 4px;
  z-index: 99; transform: translateY(-110%); opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s;
  pointer-events: none; border-bottom: 1px solid rgba(0,0,0,.07);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  padding: 12px 16px; font-weight: 600; font-size: 15px;
  border-radius: 10px; transition: background .2s;
}
.mobile-menu a:hover { background: var(--grey-5); }
.mobile-lang {
  display: flex; gap: 8px; flex-wrap: wrap; padding: 8px 0 4px;
  border-top: 1px solid rgba(0,0,0,.06); margin-top: 8px;
}
.lang-option-mobile {
  padding: 6px 12px; border-radius: 100px;
  border: 1.5px solid var(--grey-2); background: #fff;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; color: var(--grey-0);
}
.lang-option-mobile:hover, .lang-option-mobile.active {
  border-color: var(--purple-2); color: var(--purple-2); background: rgba(0,85,255,.05);
}

/* ─── TYPOGRAPHY UTILS ─────────────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  color: var(--purple-2); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; line-height: 1.1;
  color: var(--black-0); margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px; color: var(--grey-0); max-width: 560px; margin-bottom: 56px; line-height: 1.7;
}
.text-gradient {
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--pink) 50%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% auto; animation: gradientShift 4s ease-in-out infinite;
}
.text-accent { color: var(--purple-2); }

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ─── ICON 3D (SVG gradient icons) ─────────────────── */
.icon-3d { width: 48px; height: 48px; display: block; flex-shrink: 0; }
.icon-3d--lg { width: 56px; height: 56px; }
.icon-3d--sm { width: 40px; height: 40px; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; background: var(--black-1);
  display: flex; align-items: center; overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.hero__body {
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 2;
}
.hero__head {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 40px;
}
.hero__lower {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 { width: 600px; height: 600px; top: -200px; left: -150px; background: radial-gradient(circle, rgba(0,85,255,.6), transparent 70%); }
.hero__orb--2 { width: 500px; height: 500px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(250,18,227,.5), transparent 70%); animation-delay: -3s; }
.hero__orb--3 { width: 400px; height: 400px; bottom: -100px; left: 30%; background: radial-gradient(circle, rgba(64,221,255,.35), transparent 70%); animation-delay: -5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.04); }
  66% { transform: translate(-20px,15px) scale(.97); }
}

.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45; }

.hero__float { position: absolute; pointer-events: none; will-change: transform; }
.hero__float--1 { top: 18%; left: 6%; }
.hero__float--2 { top: 12%; right: 8%; }
.hero__float--3 { top: 55%; right: 5%; }
.hero__float--4 { bottom: 28%; left: 4%; }
.float-label {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.18);
  text-transform: uppercase; font-family: 'Courier New', monospace;
  animation: floatPulse 5s ease-in-out infinite;
}
.hero__float--1 .float-label { animation-delay: 0s; }
.hero__float--2 .float-label { animation-delay: -1.2s; }
.hero__float--3 .float-label { animation-delay: -2.5s; }
.hero__float--4 .float-label { animation-delay: -3.8s; }
@keyframes floatPulse { 0%, 100% { opacity: .18; } 50% { opacity: .5; } }

.hero__content {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.75); margin-bottom: 28px; backdrop-filter: blur(8px);
  animation: fadeInDown .6s var(--ease-out) both;
}
.hero__badge-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(33,200,40,.6); } 50% { box-shadow: 0 0 0 6px rgba(33,200,40,0); } }

.hero__title {
  font-size: clamp(44px, 6.5vw, 82px); font-weight: 800; line-height: 1.06;
  color: #fff; margin-bottom: 0; letter-spacing: -.025em;
  animation: fadeInUp .7s .15s var(--ease-out) both;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple-3) 50%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
  font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.6);
  margin-bottom: 32px; line-height: 1.75; max-width: 680px;
  animation: fadeInUp .7s .25s var(--ease-out) both;
}

/* KV points */
.hero__kv {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px; animation: fadeInUp .7s .35s var(--ease-out) both;
}
.hero__kv-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 8px 20px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.75); backdrop-filter: blur(6px);
}
.hero__kv-icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.hero__kv-icon svg { width: 100%; height: 100%; }

.hero__cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp .7s .45s var(--ease-out) both;
}

/* Hero illustration */
.hero__illustration { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__dashboard-wrap { position: relative; width: 100%; }
.hero__dashboard {
  width: 100%; max-width: 500px; height: auto;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  animation: fadeInUp .9s .3s var(--ease-out) both;
  filter: drop-shadow(0 0 40px rgba(0,85,255,.3));
}
.dash-badge {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: rgba(10,17,40,0.85); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  animation: fadeInUp .8s var(--ease-out) both; white-space: nowrap;
}
.dash-badge--1 { top: 15%; left: -12%; animation-delay: .5s; }
.dash-badge--2 { bottom: 18%; right: -8%; animation-delay: .7s; }

/* Hero stats */
.hero__stats {
  display: flex; align-items: center; gap: 32px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 20px 40px; backdrop-filter: blur(12px);
  animation: fadeInUp .7s .55s var(--ease-out) both;
}
.hero__stat { text-align: center; }
.hero__stat-value { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 600; }
.hero__stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ─── CLIENTS ──────────────────────────────────────── */
.clients {
  padding: 40px 0; background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.clients__label {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey-1); margin-bottom: 28px;
}
.clients__track {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.clients__logo-card {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md); padding: 12px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  min-width: 140px;
}
.clients__logo-card:hover {
  border-color: rgba(106,6,239,.2);
  box-shadow: 0 4px 16px rgba(106,6,239,.08);
  transform: translateY(-2px);
}
.clients__logo-card img {
  height: 40px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter .2s;
}
.clients__logo-card:hover img { filter: grayscale(0) opacity(1); }

/* ─── PROBLEM VISUAL ───────────────────────────────── */
.problem-story { padding: 100px 0 80px; background: #F4F5F8; }
.problem-visual-wrap {
  margin: 52px 0 44px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 32px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
}
.problem-visual__svg { width: 100%; height: auto; display: block; }

.problem-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.problem-stat {
  background: #fff; border: 1.5px solid rgba(239,68,68,.12);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
}
.problem-stat__figure {
  font-size: 44px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #EF4444, #F97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px; font-family: var(--font-head);
}
.problem-stat__label {
  font-size: 15px; font-weight: 700; color: var(--black-0); margin-bottom: 6px;
}
.problem-stat__desc { font-size: 13px; color: var(--grey-0); line-height: 1.6; margin: 0; }

/* ─── SERVICES ─────────────────────────────────────── */
.services { padding: 120px 0; background: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
  background: #fff; border: 1.5px solid var(--grey-5); border-radius: var(--radius-lg);
  padding: 32px 24px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), box-shadow .3s, border-color .3s;
  will-change: transform, opacity;
}
.service-card:not(.visible):nth-child(2) { transition-delay: .08s; }
.service-card:not(.visible):nth-child(3) { transition-delay: .16s; }
.service-card:not(.visible):nth-child(4) { transition-delay: .24s; }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }

.service-card__icon {
  width: 52px; height: 52px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}

.service-card__title { font-size: 18px; font-weight: 800; color: var(--black-0); margin-bottom: 10px; }
.service-card__desc { font-size: 14px; color: var(--grey-0); line-height: 1.65; margin-bottom: 20px; }
.service-card__examples { margin-bottom: 20px; }
.service-card__examples-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--grey-1); text-transform: uppercase; margin-bottom: 8px;
}
.service-card__examples ul { display: flex; flex-direction: column; gap: 5px; }
.service-card__examples li {
  font-size: 13px; color: var(--grey-0); padding-left: 16px; position: relative;
}
.service-card__examples li::before {
  content: '→'; position: absolute; left: 0; color: var(--purple-2);
  font-size: 11px; top: 1px;
}
.service-card__tools { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.tool-badge {
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px;
  background: var(--grey-5); color: var(--grey-0); border: 1px solid rgba(0,0,0,.06);
}
.tool-badge--dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.15); }

/* ─── CONNECTED ────────────────────────────────────── */
.connected {
  position: relative; padding: 120px 0; background: var(--black-2); overflow: hidden;
}
.connected__bg { position: absolute; inset: 0; pointer-events: none; }
.connected__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35; }
.connected__orb--1 { width: 500px; height: 500px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(0,85,255,.5), transparent 70%); animation: orbFloat 10s ease-in-out infinite; }
.connected__orb--2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(64,221,255,.4), transparent 70%); animation: orbFloat 8s ease-in-out infinite reverse; }
.connected__inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.connected__title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
}
.connected__desc { font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 32px; }
.pain-points { display: flex; flex-direction: column; gap: 12px; }
.pain-point {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 12px 18px;
  font-size: 15px; color: rgba(255,255,255,.7); font-weight: 500;
}
.pain-point__icon { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; }
.pain-point__icon svg { width: 100%; height: 100%; }
.connected .section-label { color: rgba(250,18,227,.85); }

/* Flow diagram */
.connected__sol-title {
  font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: #fff; margin-bottom: 32px;
}
.flow-diagram { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 28px; }
.flow-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 14px 24px; width: 100%;
  font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8);
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.flow-item:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); transform: translateX(6px); }
.flow-item--active { background: rgba(106,6,239,.2); border-color: rgba(0,85,255,.5); color: #fff; }
.flow-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-icon svg { width: 100%; height: 100%; }
.flow-arrow { font-size: 18px; color: rgba(255,255,255,.3); padding-left: 24px; line-height: 1; }
.connected__comm { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.comm-label { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ─── SOLUTIONS SECTION ────────────────────────────── */
.solutions-section { padding: 120px 0; background: var(--grey-5); }
.solutions-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }

.solution-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.06); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), box-shadow .3s, border-color .3s;
  will-change: transform, opacity;
}
.solution-card:not(.visible):nth-child(2) { transition-delay: .1s; }
.solution-card:not(.visible):nth-child(3) { transition-delay: .2s; }
.solution-card.visible { opacity: 1; transform: translateY(0); }
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.solution-card--purple { border-color: rgba(0,85,255,.3); background: linear-gradient(160deg, rgba(0,85,255,.03) 0%, #fff 60%); }
.solution-card--purple::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple-2), var(--pink)); }
.solution-card--purple .solution-card__num { color: var(--purple-2); }

.solution-card--blue { border-color: rgba(64,221,255,.35); background: linear-gradient(160deg, rgba(64,221,255,.04) 0%, #fff 60%); }
.solution-card--blue::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #3B82F6, var(--cyan)); }
.solution-card--blue .solution-card__num { color: #3B82F6; }

.solution-card--pink { border-color: rgba(250,18,227,.25); background: linear-gradient(160deg, rgba(250,18,227,.03) 0%, #fff 60%); }
.solution-card--pink::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink), var(--orange)); }
.solution-card--pink .solution-card__num { color: var(--pink); }

.solution-card__num {
  font-size: 11px; font-weight: 800; letter-spacing: .15em; color: var(--grey-2);
  text-transform: uppercase; margin-bottom: 16px;
}
.solution-card__icon { width: 56px; height: 56px; margin-bottom: 16px; display: flex; align-items: center; }
.solution-card__title { font-size: 22px; font-weight: 800; color: var(--black-0); margin-bottom: 12px; line-height: 1.25; }
.solution-card__desc { font-size: 14px; color: var(--grey-0); line-height: 1.7; margin-bottom: 20px; }
.solution-card__list { display: flex; flex-direction: column; gap: 8px; }
.solution-card__list li {
  font-size: 14px; color: var(--grey-0); padding-left: 20px; position: relative;
}
.solution-card__list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

/* ─── PROCESS ──────────────────────────────────────── */
.process { padding: 120px 0; background: #fff; }
.process__steps { display: flex; flex-direction: column; gap: 0; max-width: 780px; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--grey-5);
  opacity: 0; transform: translateX(-24px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  will-change: transform, opacity;
}
.process-step:last-child { border-bottom: none; }
.process-step:not(.visible):nth-child(2) { transition-delay: .08s; }
.process-step:not(.visible):nth-child(3) { transition-delay: .16s; }
.process-step:not(.visible):nth-child(4) { transition-delay: .24s; }
.process-step:not(.visible):nth-child(5) { transition-delay: .32s; }
.process-step.visible { opacity: 1; transform: translateX(0); }
.process-step__num {
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-2), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; padding-top: 4px;
}
.process-step__content h3 { font-size: 20px; font-weight: 800; color: var(--black-0); margin-bottom: 8px; }
.process-step__content p { font-size: 15px; color: var(--grey-0); line-height: 1.7; }

/* ─── FOR WHOM ──────────────────────────────────────── */
.for-whom { padding: 120px 0; background: var(--grey-5); }
.for-whom .section-subtitle { margin-bottom: 48px; }
.forwhom-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.forwhom-traits__title { font-size: 18px; font-weight: 800; color: var(--black-0); margin-bottom: 20px; }
.trait-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  background: #fff; border-radius: var(--radius-md); border: 1.5px solid rgba(0,0,0,.06);
  font-size: 15px; font-weight: 600; color: var(--black-0); margin-bottom: 12px;
  opacity: 0; transform: translateX(-16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), border-color .2s;
  will-change: transform, opacity;
}
.trait-item:not(.visible):nth-child(3) { transition-delay: .06s; }
.trait-item:not(.visible):nth-child(4) { transition-delay: .12s; }
.trait-item:not(.visible):nth-child(5) { transition-delay: .18s; }
.trait-item.visible { opacity: 1; transform: translateX(0); }
.trait-item:hover { border-color: var(--purple-2); transform: translateX(4px); }
.trait-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; }
.trait-icon svg { width: 100%; height: 100%; }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.06); border-radius: var(--radius-lg);
  padding: 24px 16px; text-align: center; font-size: 14px; font-weight: 700;
  color: var(--black-0); opacity: 0; transform: translateY(20px); cursor: default;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .25s, border-color .25s;
  will-change: transform, opacity;
}
.industry-card.visible { opacity: 1; transform: translateY(0); }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--purple-2); }
.industry-card__icon { width: 40px; height: 40px; margin-bottom: 10px; display: flex; align-items: center; }

/* ─── TECH ──────────────────────────────────────────── */
.tech { padding: 120px 0; background: #fff; }
.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.tech-category {
  background: var(--grey-5); border-radius: var(--radius-lg); padding: 28px 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  will-change: transform, opacity;
}
.tech-category:not(.visible):nth-child(2) { transition-delay: .06s; }
.tech-category:not(.visible):nth-child(3) { transition-delay: .12s; }
.tech-category:not(.visible):nth-child(4) { transition-delay: .18s; }
.tech-category:not(.visible):nth-child(5) { transition-delay: .24s; }
.tech-category.visible { opacity: 1; transform: translateY(0); }
.tech-category__label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--purple-2); text-transform: uppercase; margin-bottom: 16px;
}
.tech-items { display: flex; flex-direction: column; gap: 12px; }
.tech-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--black-0); }
.tech-item__logo {
  width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; flex-shrink: 0;
}
.tech-item__logo--purple  { background: linear-gradient(135deg, #8B5CF6, #6A06EF); }
.tech-item__logo--dark    { background: linear-gradient(135deg, #2D1B69, #1a0f3e); }
.tech-item__logo--blue    { background: linear-gradient(135deg, #3B82F6, #1F7CFF); }
.tech-item__logo--black   { background: linear-gradient(135deg, #1a1a1a, #000); }
.tech-item__logo--green   { background: linear-gradient(135deg, #21C828, #15a01a); }
.tech-item__logo--purple2 { background: linear-gradient(135deg, #611f69, #4A154B); }
.tech-item__logo--orange  { background: linear-gradient(135deg, #FF6221, #e0450d); }
.tech-item__logo--gradient { background: linear-gradient(135deg, var(--purple-2), var(--pink)); }
.tech-item__logo--img { background: #fff; padding: 0; overflow: hidden; }
.tech-item__logo--img svg { width: 100%; height: 100%; display: block; }

/* ─── WHY US ────────────────────────────────────────── */
.why-us { position: relative; padding: 120px 0; background: var(--black-1); overflow: hidden; }
.why-us__bg { position: absolute; inset: 0; pointer-events: none; }
.why-us__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; animation: orbFloat 10s ease-in-out infinite; }
.why-us__orb--1 { width: 600px; height: 600px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(0,85,255,.5), transparent 70%); }
.why-us__orb--2 { width: 500px; height: 500px; bottom: -100px; right: -80px; background: radial-gradient(circle, rgba(250,18,227,.4), transparent 70%); animation-delay: -5s; }
.why-us__inner { position: relative; z-index: 2; }
.why-us .section-label { color: rgba(250,18,227,.85); }
.why-us__title {
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
}
.why-us__sub { font-size: 18px; color: rgba(255,255,255,.55); max-width: 580px; margin-bottom: 64px; line-height: 1.7; }
.why-us__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.why-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out), background .3s, border-color .3s;
  will-change: transform, opacity;
}
.why-card:not(.visible):nth-child(2) { transition-delay: .08s; }
.why-card:not(.visible):nth-child(3) { transition-delay: .16s; }
.why-card:not(.visible):nth-child(4) { transition-delay: .24s; }
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.why-card__icon { width: 52px; height: 52px; margin-bottom: 16px; display: flex; align-items: center; }
.why-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ─── DEMO CTA ──────────────────────────────────────── */
.demo-cta {
  position: relative; padding: 140px 0; background: var(--black-0);
  overflow: hidden; text-align: center;
}
.demo-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.demo-cta__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; animation: orbFloat 10s ease-in-out infinite; }
.demo-cta__orb--1 { width: 700px; height: 700px; top: -300px; left: -200px; background: radial-gradient(circle, rgba(0,85,255,.5), transparent 70%); }
.demo-cta__orb--2 { width: 500px; height: 500px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(250,18,227,.4), transparent 70%); animation-delay: -4s; }
.demo-cta__orb--3 { width: 400px; height: 400px; bottom: -100px; left: 40%; background: radial-gradient(circle, rgba(64,221,255,.3), transparent 70%); animation-delay: -8s; }
.demo-cta__particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; }
.demo-cta__inner { position: relative; z-index: 2; }

.demo-cta__badge {
  display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 28px; backdrop-filter: blur(8px);
}
.demo-cta__title {
  font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 24px;
}
.demo-cta__title span {
  background: linear-gradient(135deg, var(--cyan), var(--purple-3), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.demo-cta__sub { font-size: 18px; color: rgba(255,255,255,.55); margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }

.demo-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto 20px;
}
.demo-input {
  flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
  color: #fff; font-family: var(--font); font-size: 15px;
  outline: none; backdrop-filter: blur(8px); transition: border-color .2s, background .2s;
}
.demo-input::placeholder { color: rgba(255,255,255,.4); }
.demo-input:focus { border-color: var(--purple-3); background: rgba(255,255,255,.12); }
.demo-submit { flex-shrink: 0; }
.demo-cta__fine { font-size: 13px; color: rgba(255,255,255,.3); }

/* ─── FOOTER ────────────────────────────────────────── */
.footer { background: var(--black-0); padding: 72px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 240px 1fr; gap: 64px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 12px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: rgba(255,255,255,.6);
  transition: background .2s, color .2s; text-decoration: none;
}
.footer__social-link:hover { background: var(--purple-2); color: #fff; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 16px; letter-spacing: .04em; }
.footer__col a { display: block; font-size: 13px; color: rgba(255,255,255,.4); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: rgba(255,255,255,.85); }
.footer__bottom { padding: 24px 0; background: rgba(0,0,0,.2); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,.28); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── LEGAL PAGES ───────────────────────────────────── */
.legal-page { padding-top: var(--nav-h); }
.legal-hero {
  background: var(--black-1); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.legal-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
  width: 400px; height: 400px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,85,255,.5), transparent 70%);
}
.legal-hero__inner { position: relative; z-index: 2; }
.legal-hero__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55);
  margin-bottom: 20px; transition: color .2s;
}
.legal-hero__back:hover { color: rgba(255,255,255,.9); }
.legal-hero__title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.legal-hero__date { font-size: 14px; color: rgba(255,255,255,.4); }

.legal-content { padding: 72px 0 120px; }
.legal-content .container { max-width: 840px; }
.legal-section { margin-bottom: 56px; }
.legal-section h2 { font-size: 22px; font-weight: 800; color: var(--black-0); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--grey-5); }
.legal-section h3 { font-size: 17px; font-weight: 700; color: var(--black-0); margin: 20px 0 10px; }
.legal-section p { font-size: 15px; color: var(--grey-0); line-height: 1.8; margin-bottom: 14px; }
.legal-section ul { margin: 10px 0 14px 20px; }
.legal-section ul li { font-size: 15px; color: var(--grey-0); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.legal-section a { color: var(--purple-2); text-decoration: underline; }
.legal-section a:hover { color: var(--purple-3); }

.placeholder-box {
  background: rgba(255,215,0,.08); border: 2px dashed rgba(255,193,7,.4);
  border-radius: var(--radius-md); padding: 16px 20px; margin: 8px 0;
  font-size: 14px; color: rgba(255,140,0,.9); font-weight: 600;
}
.placeholder-box::before { content: '⚠️ '; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px);} to { opacity:1; transform:translateY(0);} }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0);} }
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  will-change: transform, opacity;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .hero__lower { grid-template-columns: 1fr; gap: 40px; }
  .hero__head { align-items: center; text-align: center; }
  .hero__content { align-items: center; text-align: center; }
  .hero__kv { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__illustration { display: none; }
}

@media (max-width: 900px) {
  .connected__inner { grid-template-columns: 1fr; gap: 48px; }
  .solutions-grid { grid-template-columns: 1fr; max-width: 560px; }
  .forwhom-grid { grid-template-columns: 1fr; gap: 40px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ─── COMPANY ABOUT ────────────────────────────────── */
.company-about {
  padding: 120px 0;
  background: linear-gradient(160deg, #0a1128 0%, #0d1530 60%, #0a1128 100%);
  position: relative;
  overflow: hidden;
}
.company-about::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(106,6,239,.12) 0%, transparent 70%);
  pointer-events: none;
}
.company-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.company-about__title {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 12px 0 24px;
  line-height: 1.25;
}
.company-about__desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.company-about__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.company-about__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.55;
}
.company-about__detail-item a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.company-about__detail-item a:hover { color: #fff; }
.company-about__detail-icon {
  width: 18px;
  height: 18px;
  color: var(--purple-2);
  flex-shrink: 0;
  margin-top: 3px;
}
.company-about__services {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  margin-bottom: 32px;
  font-style: italic;
}
.company-about__image-wrap {
  position: relative;
}
.company-about__img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.company-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.company-about__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.35);
  font-size: .9rem;
}
.company-about__img-placeholder svg { width: 80px; height: 80px; }
.company-about__img-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: rgba(10,17,40,.95);
  border: 1px solid rgba(0,85,255,.3);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  box-shadow: 0 4px 20px rgba(106,6,239,.15);
}
.company-about .section-label {
  color: var(--purple-2);
  background: rgba(106,6,239,.12);
  border: 1px solid rgba(106,6,239,.2);
}

@media (max-width: 1024px) {
  .company-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .company-about__image-wrap { max-width: 500px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .hero__float { display: none; }
  .hero__stats { flex-wrap: wrap; gap: 20px; padding: 16px 24px; }
  .hero__stat-divider { display: none; }
  .clients__track { gap: 8px; }
  .clients__logo-card { min-width: 120px; padding: 10px 16px; }
  .problem-stats { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr; }
  .demo-form { flex-direction: column; }
  .demo-input { min-width: unset; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .company-about { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero__kv { flex-direction: column; align-items: center; }
  .hero__cta { flex-direction: column; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── PRICING ───────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--grey-5); }
.pricing__inner,
.pricing .container { text-align: center; }
.pricing .section-label,
.pricing .section-title,
.pricing .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(0,85,255,.10), 0 2px 8px rgba(0,0,0,.06);
  padding: 48px 48px 40px;
  max-width: 760px;
  margin: 48px auto 0;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-2), var(--cyan));
}

.pricing-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing-ops-display { text-align: left; }
.pricing-ops-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black-0);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-ops-label { font-size: .85rem; color: var(--grey-0); font-weight: 500; }

.pricing-price-display {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-2);
  margin-top: 6px;
}
.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--purple-2);
  transition: all .2s;
}
.pricing-per { font-size: .85rem; color: var(--grey-0); font-weight: 500; align-self: flex-end; margin-bottom: 6px; margin-left: 4px; }

.pricing-slider-wrap {
  position: relative;
  padding-bottom: 36px;
  margin-bottom: 32px;
}
.pricing-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e5e7f0;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--purple-2);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,85,255,.4);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.pricing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0,85,255,.55);
}
.pricing-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--purple-2);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,85,255,.4);
  cursor: pointer;
}
.pricing-slider-fill {
  position: absolute;
  top: 0; left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--purple-2), var(--cyan));
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
  transition: width .15s;
}
.pricing-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .75rem;
  color: var(--grey-0);
  font-weight: 600;
}

.pricing-info-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--grey-5);
  border-radius: var(--radius-md);
}
.pricing-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--black-0);
  font-weight: 500;
}

.pricing-cta-row { text-align: center; }
.pricing-fine { margin-top: 12px; font-size: .8rem; color: var(--grey-1); }

@media (max-width: 600px) {
  .pricing-card { padding: 32px 24px 28px; }
  .pricing-card__top { flex-direction: column; align-items: flex-start; }
  .pricing-amount { font-size: 2.4rem; }
}

/* ─── HERO NUMBER CARDS (DOJA) ──────────────────── */
.hero-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 100%;
  margin: 0;
  animation: fadeUp .8s var(--ease-out) .4s both;
}
.hero-number-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  transition: transform .3s var(--ease-out), background .3s;
}
.hero-number-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.13);
}
.hero-number-card__val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-number-card--1 .hero-number-card__val { color: #4ade80; }
.hero-number-card--2 .hero-number-card__val { color: #60a5fa; }
.hero-number-card--3 .hero-number-card__val { color: #facc15; }
.hero-number-card--4 .hero-number-card__val { color: #f472b6; }
.hero-number-card__label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ─── HERO DOJA SPLIT LAYOUT ────────────────────── */
.hero--doja {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.hero__doja-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__doja-left {
  text-align: left;
}
.hero__doja-left .hero__badge { justify-content: flex-start; }
.hero__doja-left .hero__actions { justify-content: flex-start; }
.hero__doja-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero__doja-right .hero-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 340px;
  width: 100%;
  animation: fadeUp .8s var(--ease-out) .4s both;
}
@media (max-width: 768px) {
  .hero__doja-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__doja-left .hero__badge { justify-content: center; }
  .hero__doja-left .hero__actions { justify-content: center; }
  .hero__doja-right { justify-content: center; }
  .hero__doja-right .hero-numbers { max-width: 100%; }
}
