:root {
  --bg: #06070b;
  --bg-2: #0a0d14;
  --panel: rgba(255,255,255,0.07);
  --panel-2: rgba(255,255,255,0.05);
  --stroke: rgba(255,255,255,0.11);
  --stroke-soft: rgba(255,255,255,0.07);
  --text: #f5f7fb;
  --muted: #aab1c3;
  --muted-2: #c8d0df;
  --accent: #7c5cff;
  --accent-2: #19d3ff;
  --accent-3: #6f86ff;
  --success: #74f0c0;
  --shadow: 0 16px 48px rgba(0,0,0,0.35);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(ellipse 150% 110% at 0% -15%, rgba(124,92,255,0.25) 0%, rgba(124,92,255,0.08) 35%, transparent 55%),
    radial-gradient(ellipse 110% 130% at 100% -8%, rgba(25,211,255,0.2) 0%, rgba(25,211,255,0.05) 30%, transparent 52%),
    radial-gradient(ellipse 95% 75% at 80% 110%, rgba(111,134,255,0.14) 0%, rgba(111,134,255,0.04) 38%, transparent 55%),
    radial-gradient(ellipse 75% 110% at 10% 98%, rgba(124,92,255,0.12) 0%, transparent 48%),
    radial-gradient(ellipse 60% 60% at 50% 45%, rgba(30,40,75,0.5) 0%, transparent 72%),
    linear-gradient(172deg, #020306 0%, #05080e 22%, #070b14 48%, #05080d 75%, #020407 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.particles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* Blob-формы и mesh gradient */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: blob-float 22s ease-in-out infinite;
}

.bg-blob:nth-child(1) {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 8%;
  background: radial-gradient(circle, rgba(124,92,255,0.4) 0%, rgba(124,92,255,0.1) 40%, transparent 70%);
  animation-delay: 0s;
  animation-duration: 24s;
}

.bg-blob:nth-child(2) {
  width: 380px;
  height: 380px;
  right: -100px;
  top: 35%;
  background: radial-gradient(circle, rgba(25,211,255,0.35) 0%, rgba(25,211,255,0.08) 45%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 20s;
}

.bg-blob:nth-child(3) {
  width: 340px;
  height: 340px;
  left: 25%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(111,134,255,0.3) 0%, transparent 65%);
  animation-delay: -12s;
  animation-duration: 26s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.5; }
  20% { transform: translate(4%, -3%) scale(1.08) rotate(2deg); opacity: 0.6; }
  40% { transform: translate(-3%, 4%) scale(0.95) rotate(-1deg); opacity: 0.45; }
  60% { transform: translate(2%, 3%) scale(1.05) rotate(1deg); opacity: 0.55; }
  80% { transform: translate(-2%, -2%) scale(1.02) rotate(-0.5deg); opacity: 0.5; }
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 25%, rgba(124,92,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 88% 15%, rgba(25,211,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 55% 85%, rgba(111,134,255,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(124,92,255,0.05) 0%, transparent 70%);
  animation: mesh-shift 28s ease-in-out infinite;
}

@keyframes mesh-shift {
  0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
  33% { opacity: 0.94; transform: scale(1.02) translate(0.5%, 0.3%); }
  66% { opacity: 0.98; transform: scale(0.99) translate(-0.3%, -0.2%); }
}

.noise,
.grid,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.08) 35%, transparent 85%);
  opacity: 0.85;
  animation: grid-pulse 12s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.9; }
}

.noise {
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
}

.glow::before,
.glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  animation: glow-float 18s ease-in-out infinite;
}

.glow::before {
  width: 620px;
  height: 620px;
  left: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(124,92,255,0.4) 0%, rgba(124,92,255,0.1) 30%, transparent 60%);
  opacity: 0.92;
}

.glow::after {
  width: 580px;
  height: 580px;
  right: -200px;
  top: 2%;
  background: radial-gradient(circle, rgba(25,211,255,0.32) 0%, rgba(25,211,255,0.08) 35%, transparent 62%);
  opacity: 0.96;
  animation-delay: -6s;
}

@keyframes glow-float {
  0%, 100% { opacity: 0.9; transform: scale(1) translate(0, 0); }
  25% { opacity: 0.98; transform: scale(1.04) translate(1.5%, 0.5%); }
  50% { opacity: 0.92; transform: scale(1.02) translate(-0.8%, 1.5%); }
  75% { opacity: 0.96; transform: scale(1.05) translate(1%, -0.5%); }
}

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left, 0));
  padding-right: max(20px, env(safe-area-inset-right, 0));
}

.section-space {
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(8,10,18,0.75) 0%, rgba(6,8,14,0.6) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(135deg, #fff 0%, #d4d1ff 25%, #7c5cff 50%, #19d3ff 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.4s ease, filter 0.2s;
}

.brand:hover {
  background-position: 100% center;
}

.brand-mark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  padding: 100px 28px 32px;
  background: linear-gradient(180deg, rgba(10,12,18,0.98), rgba(6,8,14,0.98));
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 26;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover {
  color: var(--accent-2);
  padding-left: 8px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3) 52%, var(--accent-2));
  box-shadow: 0 12px 34px rgba(98, 92, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 16px 48px rgba(124, 92, 255, 0.45), 0 0 24px rgba(25,211,255,0.15);
}

.point {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.point:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(124,92,255,0.18);
  transform: translateX(4px);
}

.eyebrow {
  animation: fade-in-up 0.8s ease-out;
}

h1 { animation: fade-in-up 0.8s ease-out 0.1s both; }
.hero-text { animation: fade-in-up 0.8s ease-out 0.2s both; }
.hero-actions { animation: fade-in-up 0.8s ease-out 0.3s both; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  padding: 48px 0 64px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-flow {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

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

.hero-intro h1 {
  max-width: 12ch;
}

.hero-intro .hero-text {
  max-width: 540px;
}

.hero-intro .stats {
  margin-top: 36px;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-intro .meta-row {
  margin-top: 28px;
}

.hero-showcase {
  width: 100%;
  animation: fade-in-up 0.9s ease-out 0.35s both;
}

.hero-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: fade-in-up 0.9s ease-out 0.45s both;
}

.glass-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 35%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 1px rgba(124,92,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}
.glass-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 36px 96px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 60px rgba(124,92,255,0.1),
    0 0 0 1px rgba(25,211,255,0.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  width: max-content;
  color: #e2e7f3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
  font-size: 13px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 18px rgba(124,92,255,0.7);
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.service-card, .case-card, .result-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-grid.is-visible .service-card,
.cases-grid.is-visible .case-card,
.results-grid.is-visible .result-card {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #b8b5ff 22%, #7c5cff 48%, #19d3ff 78%, #7c5cff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 10s ease-in-out infinite;
}

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

.hero-text {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #dde4f4;
  font-size: 14px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.048);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
a.meta-chip:hover {
  background: rgba(124,92,255,0.12);
  border-color: rgba(124,92,255,0.3);
  color: #fff;
}
.section-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 500;
}
.section-link:hover {
  text-decoration: underline;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(168deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 1px rgba(124,92,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-card:hover {
  background: linear-gradient(168deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.08) 100%);
  border-color: rgba(124,92,255,0.28);
  transform: translateY(-4px);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 40px rgba(124,92,255,0.12),
    0 0 0 1px rgba(25,211,255,0.06);
}


.stat-value {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124,92,255,0.12);
  border: 1px solid rgba(124,92,255,0.2);
  font-size: 13px;
  font-weight: 600;
  color: #e2e7f3;
}

.cta-urgency {
  background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(25,211,255,0.15));
  border-color: rgba(124,92,255,0.25);
  animation: pulse-soft 3s ease-in-out infinite;
}

.form-cta-intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,0.12), rgba(25,211,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  font-weight: 500;
  color: #e2e7f3;
}

.cta-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(25,211,255,0.7);
  animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

.showcase {
  position: relative;
  padding: 18px;
  overflow: hidden;
  min-height: 380px;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: auto auto -110px -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(34px);
  background: rgba(124,92,255,0.18);
}

.window {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(11,14,23,0.95), rgba(8,10,16,0.92));
  display: grid;
  grid-template-rows: auto 1fr;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.window-label {
  color: #dde3ef;
  font-size: 14px;
}

.window-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}

.mock-main {
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 18%, rgba(25,211,255,0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.mock-kicker {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #e2e7f4;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.mock-title {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 8.1ch;
  margin: 0 0 12px;
}

.mock-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 34ch;
}

.mock-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mock-metric {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.mock-metric strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.mock-metric span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.mock-cta {
  margin-top: 22px;
  display: inline-flex;
  width: max-content;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(124,92,255,0.92), rgba(25,211,255,0.92));
  box-shadow: 0 10px 30px rgba(124,92,255,0.18);
}

.mock-sidebar {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-card h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.bars {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.bar {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.info-card {
  padding: 28px;
}

.section-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e1e6f2;
  font-size: 13px;
}

/* Founder / Кто за этим стоит */
.founder-block {
  position: relative;
  z-index: 1;
}
.founder-card {
  padding: 36px 40px;
  background: linear-gradient(165deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.founder-label {
  color: #f59e0b;
  border-color: rgba(245,158,11,0.35);
  background: rgba(245,158,11,0.1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  padding: 28px 0 0;
  position: relative;
}
.founder-photo {
  flex-shrink: 0;
  width: 320px;
  max-width: 100%;
  height: 400px;
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.2);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(124,92,255,0.08);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-content h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.founder-title-accent {
  color: #f59e0b;
}
.founder-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.5;
}
.founder-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.founder-content p:last-of-type {
  margin-bottom: 20px;
}
.founder-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.founder-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.founder-list li:last-child {
  border-bottom: none;
}
.founder-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 24px;
  }
  .founder-photo {
    width: 100%;
    max-width: 280px;
    height: 340px;
    max-height: 340px;
    margin: 0 auto;
    order: -1;
  }
  .founder-card {
    padding: 28px 24px;
  }
}
@media (max-width: 480px) {
  .founder-photo {
    max-width: 100%;
    height: 300px;
    max-height: 300px;
  }
  .founder-card {
    padding: 24px 20px;
  }
  .founder-content h2 {
    font-size: clamp(22px, 5vw, 28px);
  }
}

.info-card h3,
.section-heading {
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.info-card p,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.services-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #e5eaf6;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.service-pill:hover {
  background: rgba(124,92,255,0.12);
  border-color: rgba(124,92,255,0.25);
}

.process {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(124,92,255,0.3), rgba(25,211,255,0.25));
  border: 1px solid rgba(255,255,255,0.1);
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.process-step span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 620px;
}

.services-grid,
.cases-grid,
.results-grid,
.reviews-grid {
  display: grid;
  gap: 14px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cases-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Carousel */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 280px;
}

.carousel-container:not(.is-loaded) {
  opacity: 0.6;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  min-width: 0;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-btn:hover:not(:disabled) {
  background: rgba(124,92,255,0.2);
  border-color: var(--accent);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-fallback {
  text-align: center;
  margin-top: 24px;
}

.carousel-fallback a {
  color: var(--accent);
}

.editable-page-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.editable-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cases-loading,
.cases-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 48px 24px;
}

.cases-empty a {
  color: var(--accent-2);
}

.case-preview-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0 0 22px 22px;
}

.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.case-card,
.result-card,
.review-card,
.cta-banner {
  background: linear-gradient(168deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover,
.case-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 96px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,92,255,0.08);
  border-color: rgba(124,92,255,0.2);
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border-color: rgba(25,211,255,0.15);
}

.service-card,
.case-card,
.review-card {
  padding: 18px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(124,92,255,0.28), rgba(25,211,255,0.2));
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-weight: 800;
}

.service-card h4,
.case-card h4,
.review-card h4 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.service-card p,
.case-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.service-card ul,
.case-meta {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.case-meta li {
  position: relative;
  padding-left: 18px;
  color: #dfe5f1;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 10px;
}

.service-card li::before,
.case-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.case-preview {
  min-height: 220px;
  border-radius: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 80% 10%, rgba(25,211,255,0.12), transparent 24%),
    radial-gradient(circle at 18% 85%, rgba(124,92,255,0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  overflow: hidden;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #e2e7f4;
  font-size: 13px;
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.preview-main {
  display: grid;
  gap: 10px;
}

.preview-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.preview-line span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124,92,255,0.85), rgba(25,211,255,0.85));
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.case-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe5f1;
  font-size: 13px;
}

.case-value {
  color: #eef3fe;
  font-weight: 700;
  font-size: 14px;
}

.result-card {
  padding: 18px;
  text-align: left;
}

.result-card strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.05em;
}

.result-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.review-card {
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
}

.review-role {
  margin-top: 18px;
  color: #dfe5f1;
  font-size: 14px;
}

.cta-banner {
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(124,92,255,0.08) 0%, rgba(25,211,255,0.04) 50%, rgba(111,134,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}

.cta-banner::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,0.4), rgba(25,211,255,0.3));
  opacity: 0.9;
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,211,255,0.18), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin-left: 72px;
}

.cta-banner[style*="flex-direction:column"] .cta-content {
  margin-left: 0;
  margin-top: 56px;
}

.cta-banner[style*="flex-direction:column"] .cta-banner::before {
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.cta-content h3 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.cta-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(124,92,255,0.12), rgba(25,211,255,0.04), transparent 68%);
  transform: translate(-50%, -50%);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cursor-glow.active {
  opacity: 1;
}

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

  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .nav-overlay {
    display: block;
  }

  .hero-blocks {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-banner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .topbar-inner {
    min-height: 60px;
    gap: 16px;
  }

  .top-actions .btn-ghost {
    display: none;
  }

  .section-space {
    padding: 36px 0;
  }

  .hero {
    padding: 20px 0 24px;
  }

  .hero-panel,
  .showcase,
  .info-card,
  .service-card,
  .case-card,
  .review-card,
  .result-card,
  .cta-banner {
    padding: 16px;
  }

  .window-body,
  .services-grid,
  .results-grid,
  .reviews-grid,
  .cases-grid,
  .mock-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero-text {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .top-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .top-actions .btn {
    width: auto;
    min-width: 140px;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .section-head p {
    max-width: 100%;
  }

  .info-card h3,
  .section-heading {
    font-size: clamp(24px, 5vw, 32px);
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-space {
    padding: 40px 0;
  }

  .btn {
    min-height: 44px;
    padding: 14px 24px;
  }

  .stat-value {
    font-size: 28px;
  }

  .result-card strong {
    font-size: 28px;
  }
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 0;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.15));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 1rem;
  background: linear-gradient(135deg, #fff 0%, #b8b5ff 40%, #7c5cff 70%, #19d3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }
.page-hero {
  padding: 48px 0 40px;
  text-align: center;
}
.page-hero h1 {
  max-width: 100%;
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.content-block {
  padding: 36px 0;
}

/* Прайс-лист */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.price-category {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-category--add {
  border-color: rgba(25,211,255,0.2);
  background: linear-gradient(180deg, rgba(25,211,255,0.06), rgba(25,211,255,0.02));
}

.price-cat-title {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f7fb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--muted);
}

.price-items li:last-child {
  border-bottom: none;
}

.price-items span {
  flex: 1;
  min-width: 0;
}

.price-items strong {
  color: var(--accent-2);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 48px 0 24px; }
}