:root {
  --bg: #060c1b;
  --bg-soft: #0b1225;
  --bg-card: rgba(16, 24, 45, 0.82);
  --bg-card-solid: #10192f;
  --bg-alt: #0d1730;
  --surface: rgba(20, 31, 58, 0.9);
  --surface-2: rgba(10, 18, 36, 0.95);
  --text: #f5f7ff;
  --text-soft: #c4cce6;
  --text-muted: #91a0c9;
  --border: rgba(123, 145, 255, 0.16);
  --border-strong: rgba(123, 145, 255, 0.28);
  --brand-cyan: #36c1ff;
  --brand-blue: #4e78ff;
  --brand-violet: #825cff;
  --brand-pink: #ea5cff;
  --brand-orange: #ff8c4d;
  --brand-green: #50d6a0;
  --gradient-brand: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet) 48%, var(--brand-orange));
  --gradient-soft: linear-gradient(180deg, rgba(10, 18, 36, 0.72), rgba(10, 18, 36, 0.96));
  --gradient-panel: linear-gradient(135deg, rgba(54, 193, 255, 0.18), rgba(130, 92, 255, 0.18) 55%, rgba(255, 140, 77, 0.12));
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.26);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, 0.2);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: min(1200px, calc(100vw - 2rem));
  --header-h: 78px;
  --touch-min: 44px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text-soft);
  background:
    radial-gradient(circle at top left, rgba(54, 193, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(130, 92, 255, 0.2), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 140, 77, 0.12), transparent 28%),
    linear-gradient(180deg, #050913 0%, #091122 32%, #060c1b 100%);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--text); font-family: 'Outfit', sans-serif; line-height: 1.08; }
button, input, textarea { font: inherit; }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  background: var(--text);
  color: #050913;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 3px;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1200;
  background: rgba(5, 10, 22, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.scrolled {
  background: rgba(6, 12, 27, 0.92);
  border-color: var(--border);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
}
.nav__logo-img {
  height: 50px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1;
}
.brand-mark__name {
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.brand-mark__tag {
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav__menu a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--text); }
.nav__cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__toggle {
  display: none;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gradient-brand);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(130, 92, 255, 0.25);
}
.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.btn--outline {
  color: var(--brand-cyan);
  border-color: rgba(54, 193, 255, 0.35);
  background: rgba(54, 193, 255, 0.06);
}
.btn--lg { padding: 1rem 1.55rem; }
.btn--sm { min-height: 42px; padding: 0.8rem 1rem; }
.btn--block { width: 100%; }

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 7rem) 0;
}
.section--compact { padding: 2rem 0 1rem; }
.section__head, .technologies__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section__tag, .technologies__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 193, 255, 0.18);
  background: rgba(54, 193, 255, 0.08);
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.section__title, .technologies__title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.section__subtitle, .technologies__subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
}
.section__cta { text-align: center; margin-top: 2rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  animation: float 14s ease-in-out infinite;
}
.hero__gradient--1 { width: 420px; height: 420px; top: -110px; right: -120px; background: rgba(130, 92, 255, 0.3); }
.hero__gradient--2 { width: 420px; height: 420px; bottom: -180px; left: -100px; background: rgba(54, 193, 255, 0.22); animation-delay: -5s; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.95) 22%, rgba(0,0,0,.95) 100%);
}
.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-cyan);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  background: linear-gradient(135deg, #ffffff, #9ddcff 20%, #d3b0ff 52%, #ffb06d 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  max-width: 650px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  margin-bottom: 1.4rem;
}
.hero__subtitle strong { color: var(--text); }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero__points span, .client-logo {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}
.stat__value, .stat__suffix {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
}
.stat__suffix { color: var(--brand-cyan); }
.stat__label { display: block; color: var(--text-muted); font-size: 0.92rem; }
.hero__visual { position: relative; min-height: 760px; }
.hero-showcase {
  position: relative;
  min-height: 760px;
  border-radius: 36px;
}
.hero-logo-shell {
  position: absolute;
  inset: 14px -28px auto auto;
  width: min(550px, 110%);
  padding: 0.95rem;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}
.hero-logo-shell__img {
  width: 100%;
  border-radius: 24px;
}
.hero-logo-shell__note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(8, 14, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-logo-shell__note span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-logo-shell__note strong {
  color: var(--text);
  font-size: 0.95rem;
}
.hero-window {
  position: absolute;
  border-radius: 30px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 17, 34, 0.9);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}
.hero-window--app {
  left: 0;
  top: 225px;
  width: min(420px, 90%);
  padding: 1rem;
}
.hero-window__top {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.hero-window__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.hero-phone {
  border-radius: 28px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(38, 54, 100, 0.85), rgba(17, 27, 55, 0.92));
}
.hero-phone__screen {
  min-height: 320px;
  border-radius: 22px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(18, 30, 62, 0.98), rgba(9, 15, 30, 0.94));
}
.hero-phone__badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-phone__card {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(54, 193, 255, 0.72), rgba(130, 92, 255, 0.68));
}
.hero-phone__card--main { height: 120px; margin-bottom: 0.9rem; }
.hero-phone__chart {
  height: 72px;
  margin-bottom: 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    linear-gradient(90deg, rgba(54,193,255,.2), rgba(130,92,255,.28), rgba(255,140,77,.2));
}
.hero-phone__row {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0.7rem;
}
.hero-phone__row--short { width: 62%; }
.hero-window--metrics {
  right: 14px;
  bottom: 32px;
  width: min(340px, 84%);
  padding: 1.1rem;
}
.hero-window__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 6px rgba(80, 214, 160, 0.15);
}
.hero-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-metric:first-of-type { border-top: 0; padding-top: 0; }
.hero-metric strong { display: block; color: var(--text); font-size: 1.45rem; }
.hero-metric span { color: var(--text-muted); font-size: 0.92rem; }
.hero-metric__bars {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  min-width: 90px;
}
.hero-metric__bars span {
  width: 12px;
  border-radius: 999px 999px 6px 6px;
  background: var(--gradient-brand);
}
.hero-metric__bars span:nth-child(1) { height: 26px; }
.hero-metric__bars span:nth-child(2) { height: 34px; }
.hero-metric__bars span:nth-child(3) { height: 44px; }
.hero-metric__bars span:nth-child(4) { height: 54px; }
.hero-metric__line {
  width: 110px;
  height: 46px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(255,255,255,.05) 20% 80%, transparent 80%),
    linear-gradient(135deg, rgba(54,193,255,.8), rgba(130,92,255,.75), rgba(255,140,77,.75));
  clip-path: polygon(0 88%, 22% 70%, 42% 76%, 60% 38%, 77% 48%, 100% 8%, 100% 100%, 0 100%);
}
.hero-orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.hero-orbit svg { width: 18px; height: 18px; color: var(--brand-cyan); }
.hero-orbit--one { left: 24px; bottom: 24px; }
.hero-orbit--two { right: 18px; top: 96px; }
.hero__clients {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
}
.hero__clients-label {
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin-bottom: 1rem;
}
.hero__clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.infographics__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.35rem;
}
.info-card {
  border-radius: 30px;
  padding: 1.6rem;
  background: rgba(16, 24, 45, 0.86);
  border: 1px solid rgba(123, 145, 255, 0.16);
  box-shadow: var(--shadow-lg);
}
.info-card__head {
  margin-bottom: 1.25rem;
}
.info-card__head h3 {
  font-size: 1.35rem;
}
.info-card__kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--brand-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.info-donut {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(8, 14, 28, 0.95) 0 33%, transparent 34%),
    conic-gradient(var(--brand-cyan) 0 34%, var(--brand-violet) 34% 68%, var(--brand-orange) 68% 100%);
  box-shadow: inset 0 0 0 20px rgba(255, 255, 255, 0.04);
}
.info-donut__center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: rgba(8, 14, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.info-donut__center strong {
  color: var(--text);
  font-size: 1.4rem;
}
.info-donut__center span {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.info-legend {
  display: grid;
  gap: 0.7rem;
}
.info-legend div,
.info-step,
.info-metric {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.info-legend div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
  font-weight: 700;
}
.info-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.info-dot--cyan { background: var(--brand-cyan); }
.info-dot--violet { background: var(--brand-violet); }
.info-dot--orange { background: var(--brand-orange); }
.info-steps {
  display: grid;
  gap: 0.8rem;
}
.info-step {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.info-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.info-step strong,
.info-metric strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.info-step small,
.info-metric span {
  color: var(--text-muted);
  font-size: 0.86rem;
}
.info-metrics {
  display: grid;
  gap: 0.8rem;
}
.info-bar {
  height: 10px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.info-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}
.info-bar--cyan span {
  width: 92%;
  background: linear-gradient(90deg, rgba(54, 193, 255, 0.92), rgba(54, 193, 255, 0.45));
}
.info-bar--violet span {
  width: 88%;
  background: linear-gradient(90deg, rgba(130, 92, 255, 0.95), rgba(130, 92, 255, 0.45));
}
.info-bar--orange span {
  width: 84%;
  background: linear-gradient(90deg, rgba(255, 140, 77, 0.95), rgba(255, 140, 77, 0.45));
}

.why__grid,
.services__grid,
.tech__groups,
.testimonials__grid,
.pricing__grid,
.blog-preview__grid,
.trust__badges {
  display: grid;
  gap: 1.35rem;
}
.why__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.why__item,
.service-card,
.tech__group,
.testimonial,
.pricing-card,
.blog-card,
.contact__form,
.contact__info,
.about__panel,
.about__card,
.trust__badge,
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.why__item {
  border-radius: 26px;
  padding: 1.5rem;
}
.why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(54, 193, 255, 0.12);
  color: var(--brand-cyan);
}
.why__icon svg { width: 26px; height: 26px; }
.why__title { font-size: 1.2rem; margin-bottom: 0.55rem; }
.why__text { color: var(--text-muted); }

.services { background: linear-gradient(180deg, rgba(9,17,34,.25), rgba(12,22,46,.6)); }
.services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  border-radius: 28px;
  padding: 1.7rem;
  transition: transform 0.22s var(--ease), border-color 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 193, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin-bottom: 1rem;
  color: var(--text);
  background: var(--gradient-brand);
}
.service-card__title { font-size: 1.4rem; margin-bottom: 1rem; }
.service-card__list { margin-bottom: 1rem; }
.service-card__list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}
.service-card__desc, .service-card__tech { color: var(--text-muted); }
.service-card__desc { margin-bottom: 1rem; }
.service-card__tech { margin-bottom: 1.2rem; font-size: 0.94rem; }
.service-card__link { color: var(--brand-cyan); font-weight: 800; }

.portfolio__grid { display: grid; gap: 1.5rem; }
.case-card {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
}
.case-card__image { min-height: 100%; }
.case-card__placeholder {
  position: relative;
  min-height: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(16, 27, 55, 0.92), rgba(8, 14, 28, 0.98));
}
.case-card__placeholder--1 { background: linear-gradient(135deg, rgba(54,193,255,.22), rgba(130,92,255,.14), rgba(8,14,28,.98)); }
.case-card__placeholder--2 { background: linear-gradient(135deg, rgba(130,92,255,.26), rgba(255,140,77,.12), rgba(8,14,28,.98)); }
.case-card__placeholder--3 { background: linear-gradient(135deg, rgba(80,214,160,.18), rgba(54,193,255,.12), rgba(8,14,28,.98)); }
.case-card__badge {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}
.case-visual {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  min-height: 220px;
  border-radius: 24px;
  background: rgba(7, 12, 26, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.case-visual--commerce,
.case-visual--mobile,
.case-visual--data {
  padding: 1.1rem;
}
.web-visual__browser {
  height: 100%;
  min-height: 220px;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 28, 58, 0.96), rgba(8, 14, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.web-visual__top {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.web-visual__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.web-visual__hero {
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(54, 193, 255, 0.92), rgba(130, 92, 255, 0.76));
  margin-bottom: 0.85rem;
}
.web-visual__layout {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.web-visual__sidebar,
.web-visual__chart,
.web-visual__cards span,
.mobile-visual__panel,
.mobile-visual__stats span,
.data-visual__metric {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.web-visual__sidebar {
  min-height: 96px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 20%, transparent 20% 32%, rgba(255,255,255,.08) 32% 44%, transparent 44% 56%, rgba(255,255,255,.08) 56% 68%, transparent 68%);
}
.web-visual__chart {
  min-height: 96px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(54,193,255,.18), rgba(130,92,255,.12));
  position: relative;
  overflow: hidden;
}
.web-visual__chart::after {
  content: '';
  position: absolute;
  inset: auto 10px 10px 10px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(54,193,255,.72), rgba(130,92,255,.72), rgba(255,140,77,.76));
  clip-path: polygon(0 86%, 18% 68%, 34% 74%, 52% 38%, 70% 48%, 86% 18%, 100% 0, 100% 100%, 0 100%);
}
.web-visual__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.web-visual__cards span {
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}
.case-visual--mobile {
  position: relative;
  display: grid;
  place-items: center;
}
.mobile-visual__phone {
  position: relative;
  z-index: 2;
  width: 132px;
  padding: 8px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.mobile-visual__screen {
  min-height: 228px;
  border-radius: 24px;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(18, 30, 62, 0.98), rgba(9, 15, 30, 0.94));
}
.mobile-visual__top {
  height: 12px;
  width: 54px;
  margin: 0 auto 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.mobile-visual__card {
  height: 68px;
  border-radius: 18px;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, rgba(130,92,255,.86), rgba(255,140,77,.78));
}
.mobile-visual__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}
.mobile-visual__stats span {
  height: 34px;
  background: rgba(255,255,255,.08);
}
.mobile-visual__feed {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  margin-bottom: 0.6rem;
}
.mobile-visual__feed--short { width: 65%; }
.mobile-visual__panel {
  position: absolute;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, rgba(54,193,255,.22), rgba(130,92,255,.14));
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
}
.mobile-visual__panel--left {
  left: 10px;
  bottom: 22px;
}
.mobile-visual__panel--right {
  right: 10px;
  top: 26px;
  background: linear-gradient(135deg, rgba(255,140,77,.2), rgba(130,92,255,.18));
}
.case-visual--data {
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
}
.data-visual__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.data-node {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}
.data-node--source { background: rgba(255,255,255,.05); }
.data-node--core { background: linear-gradient(135deg, rgba(54,193,255,.18), rgba(130,92,255,.2)); }
.data-node--output { background: linear-gradient(135deg, rgba(255,140,77,.18), rgba(80,214,160,.14)); }
.data-visual__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.data-visual__metric {
  padding: 0.85rem 0.75rem;
  background: rgba(255,255,255,.06);
}
.data-visual__metric strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
}
.data-visual__metric span {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.case-card__content { padding: 2rem; }
.case-card__title { font-size: 1.65rem; margin-bottom: 0.5rem; }
.case-card__meta { color: var(--brand-cyan); font-weight: 700; margin-bottom: 1rem; }
.case-card__problem, .case-card__solution { margin-bottom: 1rem; }
.case-card__results li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
  margin-bottom: 0.55rem;
}
.case-card__results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
}

.technologies { background: linear-gradient(180deg, rgba(12, 22, 46, 0.3), rgba(10, 18, 36, 0.16)); }
.tech__groups { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.tech__group {
  border-radius: 26px;
  padding: 1.6rem;
}
.tech__group-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-cyan);
}
.tech__group-title { margin-bottom: 1rem; font-size: 1.24rem; }
.tech__list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tech__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.52rem 0.8rem 0.52rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}
.tech__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  flex-shrink: 0;
}
.tech__icon svg {
  width: 17px;
  height: 17px;
}
.tech__icon--react,
.tech__icon--rn { color: #61dafb; }
.tech__icon--next { color: #f5f7ff; }
.tech__icon--ts { color: #3178c6; }
.tech__icon--tailwind { color: #38bdf8; }
.tech__icon--flutter { color: #54c5f8; }
.tech__icon--kotlin { color: #8b5cf6; }
.tech__icon--swift { color: #f59e0b; }
.tech__icon--node { color: #66bb6a; }
.tech__icon--python { color: #ffd54f; }
.tech__icon--postgres { color: #60a5fa; }
.tech__icon--mongo { color: #4ade80; }
.tech__icon--powerbi { color: #facc15; }
.tech__icon--tableau { color: #f97316; }
.tech__icon--sql { color: #38bdf8; }
.tech__icon--etl { color: #fb7185; }
.tech__icon--awsdms { color: #ffb84d; }
.tech__icon--airbyte { color: #8b5cf6; }
.tech__icon--fivetran { color: #22c55e; }
.tech__icon--talend { color: #f59e0b; }

.testimonials__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial {
  border-radius: 26px;
  padding: 1.6rem;
}
.testimonial__text {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.testimonial__author { color: var(--text-muted); font-weight: 700; }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}
.about__vision, .about__experience { margin-bottom: 1rem; }
.about__industries h4 { color: var(--text); margin-bottom: 0.85rem; }
.industry-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.5rem; }
.industry-pills span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}
.about__visual {
  display: grid;
  gap: 1rem;
}
.about__panel {
  border-radius: 30px;
  padding: 1.6rem;
}
.about__panel-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; color: var(--text); font-weight: 800; }
.about__panel-top span { color: var(--brand-cyan); }
.about__steps { display: grid; gap: 0.9rem; }
.about__steps div {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
}
.about__steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--text);
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.about__card {
  border-radius: 24px;
  padding: 1.25rem;
}
.about__card strong { display: block; color: var(--text); margin-bottom: 0.4rem; }
.about__card span { color: var(--text-muted); }

.pricing__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-card {
  position: relative;
  border-radius: 28px;
  padding: 1.7rem;
}
.pricing-card--featured {
  transform: translateY(-8px);
  border-color: rgba(54, 193, 255, 0.28);
  background: linear-gradient(180deg, rgba(18, 30, 60, 0.95), rgba(12, 20, 38, 0.95));
}
.pricing-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(54, 193, 255, 0.12);
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-card__title { font-size: 1.45rem; margin-bottom: 0.8rem; }
.pricing-card__desc { color: var(--text-muted); margin-bottom: 1.5rem; }

.careers .section__head {
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(54,193,255,.12), rgba(130,92,255,.14), rgba(255,140,77,.12));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}

.blog-preview__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.22s var(--ease), border-color 0.22s ease;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(54, 193, 255, 0.24); }
.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, rgba(54,193,255,.24), rgba(130,92,255,.18), rgba(255,140,77,.16));
}
.blog-card__image--2 { background: linear-gradient(135deg, rgba(130,92,255,.24), rgba(255,140,77,.16)); }
.blog-card__image--3 { background: linear-gradient(135deg, rgba(80,214,160,.16), rgba(54,193,255,.22)); }
.blog-card__content { padding: 1.4rem; }
.blog-card__content h3 { font-size: 1.28rem; margin-bottom: 0.7rem; }
.blog-card__content p { color: var(--text-muted); }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 1.5rem;
}
.contact__info, .contact__form {
  border-radius: 30px;
  padding: 1.7rem;
}
.contact__list { display: grid; gap: 1rem; margin: 1.4rem 0 1.7rem; }
.contact__list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.contact__label { color: var(--brand-cyan); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.form__row { display: grid; gap: 0.55rem; margin-bottom: 1rem; }
.form__row label { color: var(--text); font-weight: 700; }
.form__row input,
.form__row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.form__row input::placeholder,
.form__row textarea::placeholder { color: #7f8db7; }
.form__honeypot { display: none; }
.contact__helper {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact__helper strong { color: var(--text); }

.trust { padding-top: 0; }
.trust__badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust__badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 22px;
  padding: 1rem 1.1rem;
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(54,193,255,.12);
  color: var(--brand-cyan);
}
.trust__badge span:last-child { color: var(--text); font-weight: 700; }

.footer {
  padding: 2.2rem 0 2.8rem;
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__logo img {
  width: 180px;
  border-radius: 18px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__nav a, .footer__legal a { color: var(--text-muted); font-weight: 600; }
.footer__nav a:hover, .footer__legal a:hover { color: var(--text); }
.footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}
.footer__copy { text-align: center; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 18px, 0); }
}

@media (max-width: 1080px) {
  .hero__container,
  .about__grid,
  .contact__grid,
  .services__grid,
  .infographics__grid,
  .tech__groups,
  .testimonials__grid,
  .pricing__grid,
  .blog-preview__grid,
  .trust__badges,
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-card { grid-template-columns: 1fr; }
  .hero__container { grid-template-columns: 1fr; }
  .hero__visual { min-height: 700px; }
  .hero-showcase { min-height: 700px; }
  .hero-logo-shell {
    inset: 10px -18px auto auto;
    width: min(520px, 118%);
  }
  .hero-window--app { top: 205px; }
  .hero-window--metrics { bottom: 24px; }
  .hero-orbit--two { top: 96px; }
}

@media (max-width: 780px) {
  :root { --header-h: 72px; }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.9rem;
    background: rgba(8, 14, 28, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav__menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__menu a { padding: 0.8rem 0.9rem; border-radius: 14px; }
  .hero__stats,
  .services__grid,
  .infographics__grid,
  .tech__groups,
  .testimonials__grid,
  .pricing__grid,
  .blog-preview__grid,
  .trust__badges,
  .why__grid,
  .contact__grid,
  .about__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  .hero__visual { min-height: 640px; }
  .hero-showcase { min-height: 640px; }
  .hero-logo-shell {
    position: relative;
    inset: auto;
    width: min(480px, 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
  }
  .hero-logo-shell__note { padding: 0.8rem 0.95rem; }
  .hero-logo-shell__note span { font-size: 0.76rem; }
  .hero-logo-shell__note strong { font-size: 0.94rem; }
  .hero-window--app { width: 100%; max-width: 360px; top: 212px; }
  .hero-window--metrics { width: min(280px, 78%); bottom: 16px; }
  .hero-orbit--two { top: 108px; }
  .footer__top { justify-items: center; text-align: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 0.9rem; }
  .hero__points { flex-direction: column; align-items: flex-start; }
  .hero__stats { grid-template-columns: 1fr; }
  .stat { padding: 1rem; }
  .hero__visual { min-height: 560px; }
  .hero-showcase { min-height: 560px; }
  .hero-logo-shell {
    width: min(360px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logo-shell__note {
    gap: 0.6rem;
    margin-top: 0.7rem;
    padding: 0.7rem 0.8rem;
  }
  .hero-logo-shell__note span { font-size: 0.7rem; }
  .hero-logo-shell__note strong { font-size: 0.88rem; }
  .hero-window--app { top: 196px; }
  .hero-window--metrics { right: 0; }
  .hero-orbit { font-size: 0.86rem; }
  .contact__info, .contact__form, .service-card, .pricing-card, .testimonial, .why__item, .tech__group, .blog-card__content, .case-card__content { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
