:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --accent: #14b8a6;
  --ai-cyan: #22d3ee;
  --ai-violet: #a78bfa;
  --ai-indigo: #6366f1;
  --ai-glow: rgba(56, 189, 248, 0.35);
  --bg: #fff7ed;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #fed7aa;
  --success: #10b981;
  --error: #ef4444;
  --radius: 16px;
  --font: "Segoe UI", system-ui, sans-serif;
  /* Hero — этalon /services */
  --site-hero-padding-top: clamp(28px, 5vw, 48px);
  --site-hero-padding-x: clamp(20px, 3vw, 40px);
  --site-hero-padding-bottom: clamp(32px, 5vw, 52px);
  --site-hero-visual-min-h: clamp(240px, 32vw, 380px);
  --site-hero-title-size: clamp(1.55rem, 4.2vw, 2.5rem);
  --site-hero-lead-size: clamp(0.95rem, 2vw, 1.08rem);
  --site-hero-grid-cols: minmax(0, 1.05fr) minmax(0, 0.95fr);
  --site-hero-grid-gap: clamp(20px, 3vw, 36px);
}

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

html {
  width: 100%;
  height: 100%;
  background: #0a1628;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
}

/* Фон в стиле баннеров — слайдшоу + тёмный navy */
html:has(body.page-site) {
  background: #0a1628;
}

body.page-site {
  position: relative;
  isolation: isolate;
  background: transparent;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #0a1628;
}

.site-bg__slide {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transform: scale(1.06);
  animation: siteBgKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

.site-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.4) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, rgba(5, 10, 22, 0.5) 100%);
  pointer-events: none;
}

.site-bg__mesh {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 28%, rgba(34, 211, 238, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 42% at 82% 68%, rgba(167, 139, 250, 0.16), transparent 72%),
    radial-gradient(ellipse 45% 38% at 58% 18%, rgba(20, 184, 166, 0.14), transparent 68%),
    radial-gradient(ellipse 35% 30% at 40% 85%, rgba(99, 102, 241, 0.12), transparent 65%);
  animation: aiMeshDrift 20s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-bg__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, black 15%, transparent 78%);
  pointer-events: none;
}

@keyframes aiMeshDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(-2%, 1.5%, 0) scale(1.04); opacity: 1; }
}

.text-ai-gradient {
  background: linear-gradient(120deg, #0d9488 0%, #0891b2 30%, #6366f1 62%, #a855f7 85%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-ai-gradient--light {
  background: linear-gradient(120deg, #5eead4 0%, #67e8f9 35%, #c4b5fd 70%, #fdba74 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-sparkle {
  flex-shrink: 0;
  opacity: 0.92;
}

.section-eyebrow--ai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(120deg, #0f766e, #0891b2, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-eyebrow--ai::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ai-cyan), var(--ai-violet));
  box-shadow: 0 0 10px var(--ai-glow);
  flex-shrink: 0;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: inherit;
}

.hero__partner-badge--ai {
  gap: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.08));
  border-color: rgba(139, 92, 246, 0.38);
  color: #6d28d9;
  position: relative;
  overflow: hidden;
}

.hero__partner-badge--ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: aiShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aiShimmer {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

.hero__neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.75;
  animation: heroNeuralPulse 8s ease-in-out infinite alternate;
}

@keyframes heroNeuralPulse {
  0% { opacity: 0.55; transform: scale(0.98); }
  100% { opacity: 0.85; transform: scale(1.02); }
}

.hero__orb--ai {
  width: 120px;
  height: 120px;
  top: 22%;
  left: 12%;
  background: rgba(139, 92, 246, 0.14);
  filter: blur(8px);
}

.hero__card--ai {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.92)) padding-box,
    linear-gradient(135deg, var(--ai-cyan), var(--ai-violet), var(--primary)) border-box;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.18), 0 0 24px rgba(167, 139, 250, 0.1);
}

.hero__card--ai .hero__card-label {
  color: #7c3aed;
}

.trust-bar__item--ai {
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.12), rgba(34, 211, 238, 0.06));
}

.trust-bar__value--ai {
  background: linear-gradient(120deg, #67e8f9, #c4b5fd, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-site .site-card {
  position: relative;
}

.page-site .site-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ai-cyan) 18%,
    var(--ai-violet) 42%,
    var(--accent) 62%,
    var(--primary) 82%,
    transparent 100%
  );
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}

.page-site .site-header {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #f0fdfa 85%, #eef2ff 100%);
}

.page-site .btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #c2410c 100%);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.page-site .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.32), 0 0 20px rgba(167, 139, 250, 0.15);
}

.competencies__chip--ai {
  border-color: rgba(139, 92, 246, 0.42);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.06));
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.14);
}

.competencies__chip--ai:hover {
  border-color: #7c3aed;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.22);
}

.home-promo {
  position: relative;
}

.home-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), rgba(167, 139, 250, 0.35), transparent);
  pointer-events: none;
}

.site-scroll-top {
  border-color: rgba(167, 139, 250, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.9));
}

.site-scroll-top:hover {
  border-color: var(--ai-violet);
  color: #7c3aed;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.svc-hero__glow--3 {
  width: 260px;
  height: 260px;
  top: 30%;
  left: 45%;
  background: rgba(99, 102, 241, 0.22);
}

.svc-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 0%, transparent 95%);
  pointer-events: none;
  z-index: 0;
}

.svc-hero__badge--ai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.18));
  border-color: rgba(167, 139, 250, 0.45);
  color: #e9d5ff;
  position: relative;
  overflow: hidden;
}

.svc-hero__badge--ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: aiShimmer 5s ease-in-out infinite;
  pointer-events: none;
}


.site-bg--teal .site-bg__veil {
  background:
    linear-gradient(180deg, rgba(8, 28, 36, 0.12) 0%, rgba(10, 22, 40, 0.38) 100%),
    radial-gradient(ellipse 85% 65% at 50% 42%, transparent 32%, rgba(4, 18, 28, 0.52) 100%);
}

@keyframes siteBgKenBurns {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.12) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 900px) {
  .site-bg__slide {
    inset: -8%;
    background-position: 58% center;
  }
}

@media (max-width: 480px) {
  .site-bg__slide {
    inset: -12%;
    background-position: 62% center;
  }
  .site-bg__veil {
    background:
      linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.55) 100%),
      radial-gradient(ellipse 100% 70% at 50% 30%, transparent 20%, rgba(5, 10, 22, 0.6) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg__slide {
    animation: none;
    transform: scale(1.06);
  }
  .site-bg__mesh {
    animation: none;
  }
  .hero__neural {
    animation: none;
  }
  .hero__partner-badge--ai::after,
  .svc-hero__badge--ai::after {
    animation: none;
  }
  .svc-hero__chip {
    animation: none;
  }
}

html,
html.page-install-root {
  width: 100%;
  height: auto;
  margin: 0;
  background: #fff;
}

body.page-install {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: auto;
  margin: 0;
  padding: 15px;
  overflow-x: hidden;
  background: #fff;
  box-sizing: border-box;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
}

.install-frame {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.install-frame__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.install-frame__head .brand-row {
  margin-bottom: 0;
  align-items: flex-start;
}
.install-frame__head .brand-logo {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.install-frame__title {
  margin: 2px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.install-frame__version {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.install-frame__lead {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn-primary--install,
.btn-secondary--install {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 11px 16px;
  font-size: 0.92rem;
  box-sizing: border-box;
}

.install-frame__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
body.page-install .install-frame__actions {
  grid-template-columns: 1fr 1fr;
}

.install-frame__feedback {
  margin: 16px auto 0;
  padding: 16px 18px;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff7ed;
  box-sizing: border-box;
}
.install-frame__feedback[hidden] { display: none !important; }
.install-frame__feedback-title {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--primary-dark);
}
.install-frame__feedback-hint {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.feedback-form--compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.feedback-form--compact label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  width: 100%;
}
.feedback-form--compact input,
.feedback-form--compact select,
.feedback-form--compact textarea {
  padding: 8px 10px;
  font-size: 0.9rem;
}

body.page-install .status-block {
  margin-top: 12px;
}
body.page-install .btn-primary {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.app-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 32px clamp(24px, 5vw, 64px) 40px;
}
.app-card--install {
  width: 100%;
  min-width: 100%;
  max-width: none;
  padding: 32px clamp(32px, 6vw, 72px) 36px;
}
.app-card.wide { max-width: 100%; }

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.app-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.app-desc {
  color: var(--muted);
  margin-bottom: 20px;
}

.meta-list { margin-bottom: 20px; }
.meta-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.meta-list dt { color: var(--muted); }
.meta-list code {
  font-size: 0.78rem;
  word-break: break-all;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
}
.meta-list code.small { font-size: 0.72rem; }

.feature-list {
  margin: 0 0 24px 1.2rem;
  color: var(--muted);
}
.feature-list li { margin-bottom: 6px; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
  min-width: 280px;
}
.btn-primary:disabled,
.btn-primary.is-done {
  background: #e2e8f0;
  color: #64748b;
  box-shadow: none;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}
.btn-secondary:disabled {
  background: #f8fafc;
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
  opacity: 1;
}

.status-block {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.status-block.visible { display: block; }
.status-block.success { background: #ecfdf5; border-color: #a7f3d0; }
.status-block.error { background: #fef2f2; border-color: #fecaca; }
.status-title { font-weight: 700; margin-bottom: 6px; }
.status-msg { color: var(--muted); font-size: 0.9rem; }

.doc-section { margin-bottom: 28px; }
.doc-section h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.doc-section ol { margin-left: 1.2rem; color: var(--muted); }
.doc-section p { color: var(--muted); margin-bottom: 10px; }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.doc-table th,
.doc-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.doc-table th {
  background: #fff7ed;
  color: var(--primary-dark);
  font-weight: 600;
}
.doc-table code {
  font-size: 0.85em;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
}

.doc-gallery {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
.doc-gallery__item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.doc-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fafc;
}
.doc-gallery__item figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 4px;
}
.doc-gallery__item figcaption strong {
  color: var(--primary-dark);
}

.feedback-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.feedback-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}
.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.feedback-form .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.app-footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.app-footer a { color: var(--primary-dark); }

/* ——— Общий layout сайта ——— */
body.page-site,
body.page-docs {
  min-height: 100vh;
  padding: 0;
  max-width: 100%;
}

body.page-install.page-site {
  min-height: auto;
  overflow-x: hidden;
}

.site-shell,
.docs-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 32px);
}

.site-card,
.docs-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 0 clamp(20px, 3vw, 40px);
  overflow: hidden;
}

.site-header,
.docs-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  text-align: left;
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px)) 0;
  padding: 12px clamp(20px, 3vw, 40px);
  min-height: 0;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 60%, #f0fdfa 100%);
  border-bottom: 1px solid var(--border);
}

.site-header__brand,
.docs-header .brand-row {
  justify-content: flex-start;
  margin-bottom: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.brand-logo-img {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(194px, 58vw);
}
.site-header__brand:hover .brand-logo-img {
  opacity: 0.92;
}

.site-header .brand-logo,
.docs-header .brand-logo {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  border-radius: 8px;
}
.brand-logo--img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 0;
  background: none;
  object-fit: contain;
}
.install-frame__head .brand-logo--img {
  width: 36px;
  height: 36px;
}

.site-header__title,
.docs-header .app-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  flex: 1 1 12rem;
  min-width: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--primary-dark);
  background: #fff;
  border-color: var(--border);
}
.site-nav a.is-active {
  color: var(--primary-dark);
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
}

.site-body {
  padding: 8px 0 4px;
}

.page-home .site-body {
  padding-top: 0;
  padding-bottom: 0;
}

.page-site:not(.page-home) .site-body > :first-child {
  margin-top: 0;
}

.page-site:not(.page-home) .site-body > .doc-section:first-child {
  padding-top: clamp(12px, 2vw, 16px);
}

.page-docs .site-body > .docs-breadcrumb:first-child {
  margin-top: 4px;
  margin-bottom: 12px;
}

.site-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.site-aside-links {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-aside-links a { color: var(--primary-dark); }

.site-body .btn-primary {
  max-width: 100%;
}

.docs-breadcrumb {
  margin: 0 0 16px;
  font-size: 0.9rem;
}
.docs-breadcrumb a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}
.docs-breadcrumb a:hover { text-decoration: underline; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.apps-catalog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.apps-catalog__head h2 {
  margin: 0;
}

.apps-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apps-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.apps-filter__btn span {
  min-width: 1.2em;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  font-size: 0.75rem;
}

.apps-filter__btn:hover,
.apps-filter__btn.is-active {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.1));
  color: #4338ca;
}

.apps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #fafbff 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(167, 139, 250, 0.3), rgba(249, 115, 22, 0.22)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.apps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.6;
  pointer-events: none;
}
.apps-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.16);
}

.apps-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.apps-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.apps-card__icon--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
}

.apps-card__meta { min-width: 0; }

.apps-card__status {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.apps-card__status--market {
  color: #166534;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.apps-card__status--moderation {
  color: #9a3412;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.apps-card__status--development {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.apps-card__status--planned {
  color: #6b7280;
  background: rgba(107, 114, 128, 0.1);
  border: 1px solid rgba(107, 114, 128, 0.25);
}

.apps-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.apps-card__version {
  display: block;
  min-height: 1.15em;
  font-size: 0.78rem;
  color: var(--muted);
}
.apps-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.apps-card__summary {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(0.92rem * 1.55 * 3);
}
.apps-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
  min-height: 62px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.apps-card__tags li {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6d28d9;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.28);
}
.apps-card__link {
  align-self: stretch;
  justify-content: center;
  text-align: center;
}

.apps-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.apps-card__link--market {
  font-size: 0.88rem;
}

.docs-lead {
  margin: 0;
  text-align: left;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
}

.doc-section {
  margin-bottom: 28px;
  padding: clamp(16px, 2.5vw, 22px) clamp(16px, 2.5vw, 28px);
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.doc-section--intro {
  background: transparent;
  border: none;
  padding: 0 0 8px;
  margin-bottom: 20px;
}
.doc-section h2 {
  text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
}

.docs-steps {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  columns: 1;
}
@media (min-width: 900px) {
  .docs-steps {
    columns: 2;
    column-gap: 48px;
  }
  .docs-steps li {
    break-inside: avoid;
  }
}
.docs-steps li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.docs-steps li::marker {
  color: var(--primary);
  font-weight: 700;
}

.docs-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff7ed;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.doc-section .doc-table {
  font-size: 0.9rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Слайдер */
.doc-slider {
  margin: 0;
  max-width: 100%;
}

.doc-slider__viewport {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.doc-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.doc-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
}
.doc-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.doc-slider__slide img {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: contain;
  background: #0f172a;
  min-height: 240px;
}

.doc-slider__slide figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--border);
}
.doc-slider__slide figcaption strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.doc-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.doc-slider__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.doc-slider__btn:hover {
  background: #fff7ed;
  border-color: var(--primary);
}

.doc-slider__dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 80px;
  max-width: 280px;
}

.doc-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.doc-slider__dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

/* Форма заявки — тёмный AI-баннер (как svc-hero) */
.doc-form-panel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 36px);
  border-radius: 18px;
  color: #fff;
  border: 1px solid rgba(153, 246, 228, 0.22);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(99, 102, 241, 0.3), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(20, 184, 166, 0.24), transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(139, 92, 246, 0.2), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #134e4a 100%);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.doc-form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 0%, transparent 92%);
  pointer-events: none;
}
.doc-form-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ai-cyan) 18%,
    var(--ai-violet) 42%,
    var(--accent) 62%,
    var(--primary) 82%,
    transparent 100%
  );
  pointer-events: none;
}
.doc-form-panel > * {
  position: relative;
  z-index: 1;
}
.doc-form-panel.doc-section {
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(99, 102, 241, 0.3), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(20, 184, 166, 0.24), transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(139, 92, 246, 0.2), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #134e4a 100%);
  border-color: rgba(153, 246, 228, 0.22);
}

.doc-form-panel > .section-eyebrow {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}
.doc-form-panel [class$='__head'] {
  text-align: center;
  margin-bottom: 8px;
}
.doc-form-panel [class$='__head'] .section-eyebrow {
  display: inline-flex;
}

.doc-form-panel h2,
.doc-form-panel.doc-section h2 {
  margin: 8px 0 10px;
  text-align: center;
  border-left: none;
  padding-left: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.3;
}

.docs-form-intro {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.doc-form-panel .site-contacts-block {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.doc-form-panel .site-contacts-inline a {
  color: #99f6e4;
  font-weight: 600;
}
.doc-form-panel .site-contacts-inline a:hover {
  color: #67e8f9;
}

.doc-form-panel .feedback-form {
  margin-top: 0;
}
.doc-form-panel .feedback-form label {
  color: rgba(255, 255, 255, 0.92);
}
.doc-form-panel .feedback-form input,
.doc-form-panel .feedback-form select,
.doc-form-panel .feedback-form textarea {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(153, 246, 228, 0.28);
  color: #f1f5f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.doc-form-panel .feedback-form input::placeholder,
.doc-form-panel .feedback-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}
.doc-form-panel .feedback-form select option {
  background: #1e293b;
  color: #f1f5f9;
}
.doc-form-panel .feedback-form input:focus,
.doc-form-panel .feedback-form select:focus,
.doc-form-panel .feedback-form textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}
.doc-form-panel .feedback-form .checkbox {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}
.doc-form-panel .feedback-form .checkbox a {
  color: #67e8f9;
  font-weight: 600;
}
.doc-form-panel .feedback-form .checkbox a:hover {
  color: #99f6e4;
}
.doc-form-panel .feedback-form .checkbox input {
  accent-color: var(--ai-cyan);
}
.doc-form-panel .status-msg {
  text-align: center;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}
.doc-form-panel .btn-primary {
  box-shadow:
    0 8px 24px rgba(249, 115, 22, 0.28),
    0 0 20px rgba(99, 102, 241, 0.12);
}
.doc-form-panel .btn-primary:hover {
  box-shadow:
    0 10px 28px rgba(249, 115, 22, 0.34),
    0 0 28px rgba(167, 139, 250, 0.22);
}

.btn-primary--block {
  width: 100%;
  min-width: 0;
}

.site-footer,
.docs-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px calc(-1 * clamp(20px, 3vw, 40px)) 0;
  padding: 20px clamp(20px, 3vw, 40px) 16px;
  border-top: 1px solid var(--border);
}
.site-footer { margin-top: clamp(20px, 3vw, 28px); }

@media (max-width: 768px) {
  .site-header,
  .docs-header {
    margin-left: calc(-1 * clamp(20px, 3vw, 40px));
    margin-right: calc(-1 * clamp(20px, 3vw, 40px));
    padding: 12px clamp(20px, 3vw, 40px);
    gap: 8px;
  }
  .site-header__title,
  .docs-header .app-title {
    flex: 1 1 100%;
    order: 2;
  }
  .docs-steps { columns: 1; }
}

@media (max-width: 600px) {
  .doc-section { padding: 16px 14px; }
  .doc-form-panel { max-width: 100%; }
}

/* ——— Главная integrolab.ru ——— */
.page-home .site-card,
.page-prices .site-card {
  padding-bottom: 0;
}

.page-prices .site-body {
  padding-top: 0;
}

.prices-hero.svc-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #312e81 75%, #134e4a 100%);
}
.prices-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.prices-hero__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(34, 211, 238, 0.08));
  color: #e9d5ff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.prices-hero__nav-link:hover {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(34, 211, 238, 0.12));
  transform: translateY(-1px);
}

.site-header--home {
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-nav-toggle {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 2px;
}

@media (max-width: 786px) {
  .site-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .brand-logo-img {
    height: 42px;
    max-width: min(170px, 52vw);
  }
  .site-nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    width: 100%;
    padding-top: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: center; }
}

.site-nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
.site-nav__cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-dark);
  border: 1px solid var(--border);
  background: #fff;
  white-space: nowrap;
}
.site-header__phone:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
}

.site-contact-phone,
.site-contact-email {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.site-contact-phone:hover,
.site-contact-email:hover {
  text-decoration: underline;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  width: 100%;
  margin-top: 10px;
  font-size: 0.88rem;
}
.site-footer__contacts-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.site-footer__phone {
  font-size: 0.92rem;
}

.site-contacts-inline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.site-contacts-inline__sep {
  color: var(--muted);
  font-weight: 900;
}
.site-contacts-block {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.95rem;
}
.site-contacts-inline--lead .site-contact-phone,
.site-contacts-inline--lead .site-contact-email {
  font-size: 1rem;
}
.site-contact-phone--inline {
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  padding: clamp(12px, 2vw, 24px) 0 clamp(20px, 3vw, 32px);
  border-bottom: 0;
}

.page-home .hero--home {
  margin: 0 calc(-1 * var(--site-hero-padding-x));
  padding: var(--site-hero-padding-top) var(--site-hero-padding-x) var(--site-hero-padding-bottom);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #134e4a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  grid-template-columns: var(--site-hero-grid-cols);
  gap: var(--site-hero-grid-gap);
}

.page-home .hero--home .hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero--home .hero__glow--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  background: rgba(249, 115, 22, 0.35);
}

.page-home .hero--home .hero__glow--2 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -30px;
  background: rgba(20, 184, 166, 0.28);
}

.page-home .hero--home .hero__glow--3 {
  width: 260px;
  height: 260px;
  top: 30%;
  left: 45%;
  background: rgba(99, 102, 241, 0.22);
}

.page-home .hero--home .hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 0%, transparent 95%);
  pointer-events: none;
}

.page-home .hero--home > *:not(.hero__glow):not(.hero__mesh) {
  position: relative;
  z-index: 1;
}

.page-home .hero--home .hero__partner-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fde68a;
  box-shadow: none;
}

.page-home .hero--home .hero__partner-badge--ai {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(34, 211, 238, 0.18));
  border-color: rgba(167, 139, 250, 0.45);
  color: #e9d5ff;
  position: relative;
  overflow: hidden;
}

.page-home .hero--home .hero__partner-badge--ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: aiShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.page-home .hero--home .hero__partner-badge--soft {
  background: rgba(255, 255, 255, 0.06);
  color: #99f6e4;
  border-color: rgba(153, 246, 228, 0.25);
}

.page-home .hero--home .hero__title {
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-size: var(--site-hero-title-size);
}

.page-home .hero--home .hero__lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
  font-size: var(--site-hero-lead-size);
  max-width: 38rem;
}

.page-home .hero--home .hero__visual {
  min-height: var(--site-hero-visual-min-h);
}

.page-home .hero--home .hero__actions .btn-primary {
  min-width: 0;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}

.page-home .hero--home .hero__btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-home .hero--home .hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.page-home .hero--home .hero__scroll {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .hero--home .hero__card {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.86)) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.42), rgba(167, 139, 250, 0.32)) border-box;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-home .hero--home .hero__card strong {
  color: #f1f5f9;
}

.page-home .hero--home .hero__card-label {
  color: #99f6e4;
}

.page-home .hero--home .hero__card--ai .hero__card-label {
  color: #c4b5fd;
}

.page-home .hero--home .hero__orb--primary {
  background: rgba(249, 115, 22, 0.28);
}

.page-home .hero--home .hero__orb--accent {
  background: rgba(20, 184, 166, 0.24);
}

.hero__content {
  min-width: 0;
}

.hero__badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.hero__partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.hero__partner-badge--soft {
  background: #f0fdfa;
  color: #0f766e;
  border-color: #99f6e4;
}
.hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--text);
}
.hero__lead {
  margin: 0 0 22px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 280px;
}
.hero__card--float {
  animation: heroFloat 6s ease-in-out infinite;
}
.hero__card--secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  animation-delay: -3s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.7; }
@keyframes heroScrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(4px); opacity: 1; }
}

.trust-bar {
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding: 20px clamp(20px, 3vw, 40px);
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-bar__item {
  position: relative;
  overflow: hidden;
  padding: 14px 12px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(167, 139, 250, 0.05));
  border: 1px solid rgba(167, 139, 250, 0.18);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.trust-bar__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), rgba(167, 139, 250, 0.5), transparent);
  pointer-events: none;
}
.trust-bar__item:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(167, 139, 250, 0.1));
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}
.trust-bar__value {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fbbf24;
}
.trust-bar__label {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.home-b24-promos {
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.home-b24-promos__head {
  margin-bottom: clamp(18px, 3vw, 24px);
}
.home-b24-promos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-b24-promos__card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.92));
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.08);
}
.home-b24-promos__card--cloud {
  border-color: rgba(249, 115, 22, 0.28);
}
.home-b24-promos__card--marketplace_cloud {
  border-color: rgba(167, 139, 250, 0.32);
}
.home-b24-promos__card--marketplace_boxed {
  border-color: rgba(20, 184, 166, 0.28);
}
.home-b24-promos__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-size: 0.92rem;
  font-weight: 800;
  color: #c2410c;
}
.home-b24-promos__card--marketplace_cloud .home-b24-promos__badge {
  color: #6d28d9;
  border-color: rgba(167, 139, 250, 0.35);
}
.home-b24-promos__card-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
}
.home-b24-promos__card-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}
.home-b24-promos__until {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f766e;
}
.home-b24-promos__link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6d28d9;
  text-decoration: none;
}
.home-b24-promos__link:hover {
  text-decoration: underline;
}
.home-b24-promos__foot {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.home-b24-promos__foot a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}
.home-b24-promos__foot a:hover {
  text-decoration: underline;
}

.home-promo {
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 40px) clamp(24px, 3vw, 36px);
  border-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.home-promo__head {
  margin-bottom: clamp(16px, 2.5vw, 22px);
}
.home-promo__title {
  margin: 6px 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
}

.usp-carousel {
  position: relative;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}
.usp-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(380px, 48vw, 640px);
}
.usp-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.usp-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.usp-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.usp-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.usp-carousel__action {
  position: absolute;
  left: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 2;
}
.usp-carousel__cta {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.usp-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.usp-carousel__nav:hover {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.4);
}
.usp-carousel__nav--prev { left: clamp(10px, 2vw, 16px); }
.usp-carousel__nav--next { right: clamp(10px, 2vw, 16px); }
.usp-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 2vw, 14px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}
.usp-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}
.usp-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}
.usp-carousel.is-paused .usp-carousel__dot.is-active {
  background: #fbbf24;
}

.home-banners {
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--border);
}
.home-banners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.home-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.home-banner--orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 45%, #fff 100%);
  border-color: #fed7aa;
}
.home-banner--teal {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 45%, #fff 100%);
  border-color: #99f6e4;
}
.home-banner--violet {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 45%, #fff 100%);
  border-color: #ddd6fe;
}
.home-banner__glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
  pointer-events: none;
}
.home-banner__body {
  position: relative;
  z-index: 1;
}
.home-banner__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-banner__title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  max-width: 34rem;
}
.home-banner__text {
  margin: 0 0 16px;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.home-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  text-decoration: none;
}
.home-banner--teal .home-banner__cta { color: #0f766e; }
.home-banner--violet .home-banner__cta { color: #6d28d9; }
.home-banner__cta span {
  transition: transform 0.2s;
}
.home-banner__cta:hover span {
  transform: translateX(4px);
}
.home-banner__decor {
  position: relative;
  z-index: 0;
  align-self: center;
  justify-self: end;
}
.home-banner__orb {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 2px solid rgba(249, 115, 22, 0.2);
}
.home-banner--teal .home-banner__orb {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.25);
}
.home-banner--violet .home-banner__orb {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.25);
}

.competencies {
  padding: clamp(22px, 3.5vw, 36px) 0;
  border-top: 1px solid var(--border);
}
.section-head--center {
  text-align: center;
}
.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.competencies__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.competencies__chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(135deg, #fff 0%, #fafbff 100%);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.06);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.competencies__chip:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 8px 22px rgba(99, 102, 241, 0.14);
}

.mid-cta {
  padding: clamp(24px, 4vw, 40px) 0;
}
.mid-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 42%, #3730a3 68%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18), 0 0 40px rgba(99, 102, 241, 0.12);
}
.mid-cta__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
.mid-cta__text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 40rem;
}
.mid-cta__bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.6;
}
.mid-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-secondary--block {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.mid-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.mid-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero__orb--primary {
  width: 180px;
  height: 180px;
  top: 10%;
  right: 18%;
  background: rgba(249, 115, 22, 0.18);
}
.hero__orb--accent {
  width: 140px;
  height: 140px;
  bottom: 8%;
  left: 8%;
  background: rgba(20, 184, 166, 0.16);
}
.hero__card {
  position: relative;
  z-index: 1;
  margin: 48px auto 0;
  max-width: 320px;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 255, 0.92)) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(167, 139, 250, 0.28)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.1);
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.hero__card-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0891b2;
}
.hero__card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.section-head,
.pricing-section__head {
  margin-bottom: 20px;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.section-eyebrow--boxed { color: #0f766e; }
.section-eyebrow--market { color: #7c3aed; }
.section-head h2,
.pricing-section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}
.section-lead,
.pricing-section__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52rem;
}

.pillars {
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #fafbff 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(167, 139, 250, 0.35), rgba(249, 115, 22, 0.28)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.75;
  pointer-events: none;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.16);
}
.pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
}
.pillar-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.pillar-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.pillars__cta {
  margin: 18px 0 0;
}

.pricing-section {
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--border);
}
.pricing-section--boxed {
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.95) 0%, rgba(238, 242, 255, 0.4) 50%, #fff 100%);
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.pricing-section--market {
  background: linear-gradient(180deg, rgba(250, 245, 255, 0.95) 0%, rgba(224, 242, 254, 0.35) 55%, #fff 100%);
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

.price-billing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 20px;
}
.price-billing-toolbar__hint {
  display: none;
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
}
.price-billing-toolbar__hint.is-visible {
  display: block;
}

.price-billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(145deg, #fff 0%, #f5f3ff 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}
.price-billing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.price-billing-toggle__btn:hover {
  color: #6d28d9;
}
.price-billing-toggle__btn.is-active {
  background: linear-gradient(135deg, var(--ai-indigo) 0%, var(--ai-violet) 55%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.32);
}
.price-billing-toggle__badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.price-billing-toggle__btn:not(.is-active) .price-billing-toggle__badge {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(167, 139, 250, 0.15));
  color: #6d28d9;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}
.pricing-grid--cloud {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.pricing-grid--market {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #fafbff 100%) padding-box,
    linear-gradient(145deg, rgba(34, 211, 238, 0.38), rgba(167, 139, 250, 0.32), rgba(249, 115, 22, 0.22)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.65;
  pointer-events: none;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.14);
}
.price-card--popular {
  background:
    linear-gradient(180deg, rgba(238, 242, 255, 0.65) 0%, #fff 45%) padding-box,
    linear-gradient(145deg, var(--ai-cyan), var(--ai-violet), var(--primary)) border-box;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.18), 0 0 28px rgba(34, 211, 238, 0.1);
}
.price-card--popular::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), var(--primary), transparent);
}
.price-card--popular:hover {
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.24), 0 0 32px rgba(167, 139, 250, 0.15);
}
.price-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ai-indigo), var(--ai-violet));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}
.price-card__name {
  margin: 0 0 6px;
  font-size: 1rem;
  padding-right: 64px;
}
.price-card__tagline {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  min-height: 2.8em;
}
.price-card__price {
  margin-bottom: 12px;
}
.price-card__amount {
  display: none;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.price-card__amount.is-visible,
.price-card__amount--free {
  display: block;
}
.price-card__amount--promo {
  background: linear-gradient(120deg, #ea580c 0%, #9333ea 50%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__amount--year-old {
  display: none;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}
.price-card__amount--year-old.is-visible {
  display: block;
}
.price-card__amount--free {
  background: linear-gradient(120deg, #0d9488 0%, #0891b2 45%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__period {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--muted);
}
.price-card__meta {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.price-card__meta li::marker {
  color: var(--ai-violet);
}
.price-card__meta li + li { margin-top: 4px; }
.price-card__details {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.82rem;
}
.price-card__details summary {
  cursor: pointer;
  color: #6d28d9;
  font-weight: 600;
}
.price-card__details summary:hover {
  color: var(--ai-indigo);
}
.price-card__order {
  margin-top: auto;
  width: 100%;
  min-width: 0;
  padding: 10px 14px;
  font-size: 0.88rem;
  text-align: center;
  text-decoration: none;
}

.prices-order {
  margin: clamp(24px, 4vw, 40px) auto clamp(16px, 3vw, 24px);
  max-width: min(720px, 100%);
  width: 100%;
}
.prices-order__head {
  text-align: center;
  margin-bottom: 8px;
}
.prices-order__head h2 {
  margin: 8px 0 10px;
  text-align: center;
}
.prices-order__contacts {
  margin-top: 12px;
  text-align: center;
}
.prices-order .feedback-form {
  text-align: left;
}

.prices-order__market {
  margin: 4px 0 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.08);
}
.prices-order__market-label {
  margin-bottom: 8px;
  font-weight: 700;
  color: #e9d5ff;
}
.prices-order__market-hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

#order {
  scroll-margin-top: clamp(72px, 12vw, 96px);
}

.apps-order {
  margin-top: 28px;
}
.apps-order__head {
  text-align: center;
  margin-bottom: 12px;
}
.apps-order__head h2 {
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.apps-order__contacts {
  margin: 12px 0 0;
  font-size: 0.92rem;
}
.apps-order .feedback-form {
  max-width: 640px;
  margin: 0 auto;
}

.price-table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.price-table th,
.price-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.price-table th {
  color: var(--muted);
  font-weight: 600;
}
.price-table--billing .price-table__col-month,
.price-table--billing .price-table__col-year {
  display: none;
}
.price-table--billing .price-table__col-month.is-visible,
.price-table--billing .price-table__col-year.is-visible {
  display: table-cell;
}

.boxed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.boxed-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #f0fdfa 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.45), rgba(20, 184, 166, 0.35), rgba(99, 102, 241, 0.3)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.boxed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--ai-cyan), transparent);
  opacity: 0.8;
  pointer-events: none;
}
.boxed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(20, 184, 166, 0.16);
}
.boxed-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(20, 184, 166, 0.2));
  border: 1px solid rgba(20, 184, 166, 0.35);
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 700;
}
.boxed-card__name {
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.boxed-card__price {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(120deg, #0f766e, #0891b2, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.boxed-card__price span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.boxed-card__users {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.85rem;
}
.boxed-market {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed #99f6e4;
}
.boxed-market__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.pricing-section__note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-disclaimer {
  margin: clamp(24px, 4vw, 40px) 0 clamp(20px, 3.5vw, 36px);
  padding: clamp(18px, 3vw, 26px) clamp(18px, 3.5vw, 28px);
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #f8fafc 0%, #fafbff 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(167, 139, 250, 0.2)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
}
.pricing-disclaimer p {
  margin: 0 0 clamp(10px, 1.8vw, 14px);
}
.pricing-disclaimer p:last-child { margin-bottom: 0; }
.pricing-disclaimer__promo { font-size: 0.82rem; }

.cta-band {
  margin: clamp(24px, 4vw, 40px) calc(-1 * clamp(20px, 3vw, 40px)) 0;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 3vw, 40px) clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, #fff7ed 0%, #f0fdfa 100%);
  border-top: 1px solid var(--border);
}
.cta-band__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.2vw, 18px);
}
.cta-band__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.25;
}
.cta-band__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40rem;
}
.cta-band .btn-primary {
  align-self: flex-start;
  margin-top: clamp(4px, 1vw, 10px);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.site-footer__legal,
.site-footer__version {
  width: 100%;
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.site-footer__sep {
  display: inline-block;
  margin: 0 0.35em;
  font-weight: 900;
  font-size: 1.15em;
  line-height: 1;
  color: var(--text);
  vertical-align: baseline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.cookie-banner__inner p {
  flex: 1 1 240px;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-banner__ok {
  flex-shrink: 0;
  min-width: 120px;
}

.site-mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.site-scroll-top {
  position: fixed;
  right: clamp(12px, 3vw, 20px);
  bottom: clamp(16px, 3vw, 24px);
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(254, 215, 170, 0.85);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s, border-color 0.2s;
  pointer-events: none;
}
.site-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-scroll-top:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}
.page-site.has-mobile-cta .site-scroll-top {
  bottom: 88px;
}

/* ——— Страница услуг ——— */
.page-services .site-body {
  padding-top: 0;
  padding-bottom: 0;
}

.page-apps .site-body {
  padding-top: 0;
  padding-bottom: 0;
}

.apps-catalog {
  scroll-margin-top: clamp(72px, 12vw, 96px);
}

.svc-hero {
  position: relative;
  margin: 0 calc(-1 * var(--site-hero-padding-x));
  padding: var(--site-hero-padding-top) var(--site-hero-padding-x) var(--site-hero-padding-bottom);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #134e4a 100%);
}
.svc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.svc-hero__glow--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  background: rgba(249, 115, 22, 0.35);
}
.svc-hero__glow--2 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -30px;
  background: rgba(20, 184, 166, 0.28);
}
.svc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--site-hero-grid-cols);
  gap: var(--site-hero-grid-gap);
  align-items: center;
}
.svc-hero__inner {
  position: relative;
  min-width: 0;
}
.svc-hero__visual {
  position: relative;
  min-width: 0;
  min-height: var(--site-hero-visual-min-h);
}
.svc-hero__carousel {
  position: relative;
  height: 100%;
  min-height: var(--site-hero-visual-min-h);
  border-radius: clamp(14px, 2vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(153, 246, 228, 0.22);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: rgba(8, 28, 36, 0.5);
}
.svc-hero__carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--site-hero-visual-min-h);
  overflow: hidden;
}
.svc-hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--site-hero-visual-min-h);
}
.svc-hero__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.svc-hero__carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.svc-hero__art {
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--site-hero-visual-min-h);
  object-fit: cover;
  object-position: center center;
}
.svc-hero__chip {
  position: absolute;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(153, 246, 228, 0.35);
  color: #99f6e4;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: svcHeroChipFloat 5s ease-in-out infinite;
}
.svc-hero__chip--1 { top: 8%; left: -4%; animation-delay: 0s; }
.svc-hero__chip--2 { top: 42%; right: -6%; color: #fde68a; border-color: rgba(251, 191, 36, 0.35); animation-delay: -1.2s; }
.svc-hero__chip--3 { bottom: 18%; left: 6%; animation-delay: -2.4s; }
.svc-hero__chip--4 { bottom: 6%; right: 4%; color: #c4b5fd; border-color: rgba(167, 139, 250, 0.35); animation-delay: -3.6s; }

@keyframes svcHeroChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.svc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.svc-hero__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fde68a;
}
.svc-hero__badge--soft {
  color: #99f6e4;
  border-color: rgba(153, 246, 228, 0.25);
}
.svc-hero__title {
  margin: 0 0 14px;
  font-size: var(--site-hero-title-size);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.svc-hero__lead {
  margin: 0 0 22px;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--site-hero-lead-size);
  line-height: 1.65;
}
.svc-hero__lead a {
  color: #67e8f9;
  font-weight: 600;
  text-decoration: none;
}
.svc-hero__lead a:hover {
  text-decoration: underline;
}
.svc-hero__actions .btn-primary {
  min-width: 0;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}
.svc-hero__btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.svc-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}
.svc-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.svc-hero__stats li {
  min-width: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-hero__stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #fbbf24;
}
.svc-hero__stats span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.svc-benefits {
  margin: 0 calc(-1 * clamp(20px, 3vw, 40px));
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 40px);
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}
.section-eyebrow--light {
  color: #fbbf24;
}
.svc-benefits__head {
  margin-bottom: 20px;
  text-align: center;
}
.svc-benefits__title {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}
.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.svc-benefits__item {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.12), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(167, 139, 250, 0.22);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.svc-benefits__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.65;
  pointer-events: none;
}
.svc-benefits__item:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.18), rgba(34, 211, 238, 0.1));
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.2);
}
.svc-benefits__num {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, #67e8f9, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-benefits__item-title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.3;
}
.svc-benefits__item-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.svc-catalog {
  padding: clamp(28px, 4vw, 44px) 0;
}
.svc-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 18px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #fff 0%, #fafbff 100%) padding-box,
    linear-gradient(145deg, rgba(34, 211, 238, 0.35), rgba(167, 139, 250, 0.28), rgba(249, 115, 22, 0.2)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.65;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.16);
}
.svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #6d28d9;
}
.svc-card__title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}
.svc-card__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.svc-card__list {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  flex: 1 1 auto;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
}
.svc-card__list li {
  margin-bottom: 6px;
}
.svc-card__list li::marker {
  color: var(--ai-violet);
}
.svc-card__link {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}
.svc-card__link:hover {
  text-decoration: underline;
}

.svc-process {
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--border);
}
.svc-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 18px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #f8fafc 0%, #fafbff 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(167, 139, 250, 0.22)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-process__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.svc-process__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.12);
}
.svc-process__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ai-indigo), var(--ai-violet), var(--primary));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.28);
}
.svc-process__title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.3;
}
.svc-process__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.svc-formats {
  padding: 0 0 clamp(28px, 4vw, 40px);
}
.svc-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-format-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-format-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ai-cyan), var(--ai-violet), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.svc-format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.14);
}
.svc-format-card:nth-child(1) {
  background:
    linear-gradient(135deg, #f0fdfa 0%, #fff 100%) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(20, 184, 166, 0.3)) border-box;
}
.svc-format-card:nth-child(2) {
  background:
    linear-gradient(135deg, #fff7ed 0%, #fff 100%) padding-box,
    linear-gradient(135deg, rgba(249, 115, 22, 0.35), rgba(167, 139, 250, 0.28)) border-box;
}
.svc-format-card:nth-child(3) {
  background:
    linear-gradient(135deg, #faf5ff 0%, #fff 100%) padding-box,
    linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(99, 102, 241, 0.3)) border-box;
}
.svc-format-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.svc-format-card__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.svc-format-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc-format-card__tags li {
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.svc-order {
  margin-bottom: clamp(16px, 3vw, 24px);
}
.svc-order__head {
  text-align: center;
  margin-bottom: 8px;
}
.svc-order__head h2 {
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.svc-order__contacts {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

@media (max-width: 1200px) {
  .pricing-grid--cloud { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid--market { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boxed-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .page-home .hero--home { grid-template-columns: 1fr; }
  .hero__visual { min-height: var(--site-hero-visual-min-h); }
  .hero__scroll { display: none; }
  .usp-carousel__viewport {
    height: auto;
    overflow: visible;
  }
  .usp-carousel__track {
    height: auto;
  }
  .usp-carousel__slide {
    position: absolute;
    inset: auto;
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
  .usp-carousel__slide.is-active {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
  }
  .usp-carousel__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center top;
    background: #0f172a;
  }
  .usp-carousel__action {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px 12px 14px;
    background: #0f172a;
  }
  .usp-carousel__cta {
    display: block;
    width: 100%;
    text-align: center;
  }
  .usp-carousel__nav { display: none; }
  .usp-carousel__dots { display: none; }
  .price-billing-toolbar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .price-billing-toolbar__hint,
  .price-billing-toolbar__hint.is-visible {
    flex: 0 1 auto;
    max-width: none;
  }
  .price-billing-toggle {
    width: 100%;
  }
  .price-billing-toggle__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .cta-band .btn-primary {
    align-self: stretch;
    text-align: center;
  }
  .trust-bar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-b24-promos__grid { grid-template-columns: 1fr 1fr; }
  .home-banner__decor { display: none; }
  .mid-cta__panel { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid--cloud,
  .pricing-grid--market { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-catalog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .svc-formats__grid { grid-template-columns: 1fr; }
  .svc-hero__grid { grid-template-columns: 1fr; }
  .svc-hero__visual { margin-top: 8px; }
  .svc-hero__chip--1 { left: 2%; }
  .svc-hero__chip--2 { right: 2%; }
}

@media (max-width: 768px) {
  .site-mobile-cta { display: block; }
  .page-home.has-mobile-cta { padding-bottom: 80px; }
  .page-home .hero {
    padding-bottom: var(--site-hero-padding-bottom);
  }
  .btn-primary { min-width: 0; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }
  .pillars__grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .home-b24-promos__grid { grid-template-columns: 1fr; }
  .pricing-grid--cloud,
  .pricing-grid--market { grid-template-columns: 1fr; }
  .svc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-hero__actions .btn-primary,
  .svc-hero__actions .btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }
  .svc-benefits__grid { grid-template-columns: 1fr; }
  .svc-catalog__grid { grid-template-columns: 1fr; }
  .svc-process__steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-shell,
  .docs-shell {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-card,
  .docs-card {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-header,
  .docs-header {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero__title {
    font-size: 1.42rem;
    overflow-wrap: anywhere;
  }
  .page-home .hero--home .hero__title {
    font-size: 1.42rem;
  }
  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .page-home .hero--home .hero__visual {
    display: block;
    min-height: 200px;
  }
  .hero__partner-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .site-mobile-cta {
    left: 10px;
    right: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }
  .svc-hero__title {
    font-size: 1.42rem;
    overflow-wrap: anywhere;
  }
  .svc-hero__stats li {
    flex: 1 1 calc(50% - 8px);
  }
  .svc-hero__visual-frame,
  .svc-hero__art {
    min-height: 200px;
  }
  .svc-hero__carousel,
  .svc-hero__carousel-viewport,
  .svc-hero__carousel-track {
    min-height: 200px;
  }
  .svc-hero__visual {
    min-height: 200px;
  }
  .svc-hero__chip {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}
