:root {
  --bg: #05030a;
  --bg-2: #090513;
  --bg-3: #0d071c;
  --panel: rgba(17, 10, 30, 0.72);
  --panel-2: rgba(24, 13, 42, 0.82);
  --panel-3: rgba(255, 255, 255, 0.055);
  --line: rgba(197, 139, 255, 0.18);
  --line-strong: rgba(197, 139, 255, 0.42);
  --text: #f7f2ff;
  --muted: #b7aecb;
  --soft: #7d708f;
  --violet: #8e2bff;
  --violet-2: #c58bff;
  --cyan: #00e5ff;
  --lime: #7df9ff;
  --pink: #f052ff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 34px rgba(142, 43, 255, 0.55), 0 0 90px rgba(142, 43, 255, 0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 9%, rgba(142, 43, 255, 0.28), transparent 28%),
    radial-gradient(circle at 78% 15%, rgba(0, 229, 255, 0.10), transparent 24%),
    radial-gradient(circle at 70% 68%, rgba(142, 43, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #05030a 0%, #0b0515 42%, #05030a 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(197, 139, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 139, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 22%, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(142, 43, 255, 0.20) 50%, transparent 51%),
    radial-gradient(circle at 50% -10%, rgba(197, 139, 255, 0.16), transparent 50%);
  opacity: 0.38;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 0 0 106px;
  position: relative;
}

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


.page-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(74px);
  opacity: 0.55;
}

.bg-orb-one {
  width: 430px;
  height: 430px;
  left: -160px;
  top: 90px;
  background: rgba(142, 43, 255, 0.50);
}

.bg-orb-two {
  width: 380px;
  height: 380px;
  right: -140px;
  top: 210px;
  background: rgba(0, 229, 255, 0.16);
}

.bg-orb-three {
  width: 560px;
  height: 560px;
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
  background: rgba(142, 43, 255, 0.30);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 16px;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid rgba(197, 139, 255, 0.20);
  border-radius: 24px;
  background: rgba(8, 5, 16, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 139, 255, 0.46);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(142, 43, 255, 0.28), rgba(197, 139, 255, 0.08));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(197, 139, 255, 0.86);
  box-shadow: var(--glow);
}

.brand-word {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 0 0 24px rgba(197, 139, 255, 0.72);
}

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

.nav a {
  position: relative;
  transition: color 0.22s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-2), transparent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.language-toggle {
  width: 48px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(197, 139, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px rgba(142, 43, 255, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 139, 255, 0.60);
  background: rgba(142, 43, 255, 0.16);
  box-shadow: 0 0 28px rgba(142, 43, 255, 0.22);
}

.mobile-language-toggle {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
}

.header-cta,
.button,
.price-card a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(197, 139, 255, 0.48);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(142, 43, 255, 0.38), rgba(197, 139, 255, 0.10));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(142, 43, 255, 0.42);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-cta::before,
.button-primary::before,
.price-card a::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  transform: translateX(-80%) rotate(12deg);
  transition: transform 0.62s ease;
}

.header-cta:hover,
.button:hover,
.price-card a:hover {
  transform: translateY(-3px);
}

.header-cta:hover::before,
.button-primary:hover::before,
.price-card a:hover::before {
  transform: translateX(80%) rotate(12deg);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(197, 139, 255, 0.8);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--violet-2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(166, 255, 0, 0.78);
  animation: pulse 1.9s ease-in-out infinite;
}

h1 {
  max-width: 780px;
  margin: 22px 0 24px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

h1 span {
  color: var(--violet-2);
  text-shadow: 0 0 42px rgba(197, 139, 255, 0.54);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button-primary {
  border: 1px solid rgba(197, 139, 255, 0.65);
  background:
    linear-gradient(135deg, rgba(142, 43, 255, 0.95), rgba(197, 139, 255, 0.34)),
    rgba(142, 43, 255, 0.62);
  color: #fff;
  box-shadow: 0 0 34px rgba(142, 43, 255, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.button-ghost {
  border: 1px solid rgba(197, 139, 255, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  border-color: rgba(197, 139, 255, 0.60);
  background: rgba(142, 43, 255, 0.12);
  box-shadow: 0 0 32px rgba(142, 43, 255, 0.22);
}

.telegram-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 17px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.10), rgba(142, 43, 255, 0.09));
  color: var(--muted);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.10);
}

.telegram-pill span,
.telegram-pill strong {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.48);
}


.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.orbit-card::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(142, 43, 255, 0.32), transparent 63%);
  filter: blur(32px);
  animation: breathe 4.2s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(197, 139, 255, 0.34);
  box-shadow: 0 0 34px rgba(142, 43, 255, 0.48), inset 0 0 34px rgba(142, 43, 255, 0.18);
}

.ring-one {
  inset: 5%;
  animation: spin 18s linear infinite;
}

.ring-two {
  inset: 14%;
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: spin 12s linear infinite reverse;
}

.ring-three {
  inset: 27%;
  border-color: rgba(0, 229, 255, 0.22);
  transform: rotateY(70deg) rotateZ(24deg);
  animation: spin 16s linear infinite;
}

.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 78%;
  border-radius: 50%;
  filter: drop-shadow(0 0 32px rgba(197, 139, 255, 0.76)) drop-shadow(0 0 88px rgba(142, 43, 255, 0.42));
  mix-blend-mode: screen;
  animation: float 5.5s ease-in-out infinite;
}

.platform {
  position: absolute;
  z-index: 1;
  left: 19%;
  right: 19%;
  bottom: 12%;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(197, 139, 255, 0.52), rgba(142, 43, 255, 0.18) 42%, transparent 72%);
  filter: blur(10px);
  transform: rotateX(72deg);
}

.float-note {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 6, 18, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow), 0 0 30px rgba(142, 43, 255, 0.18);
  backdrop-filter: blur(18px);
}

.note-one {
  top: 18%;
  left: 6%;
  animation: float 4.4s ease-in-out infinite;
}

.note-two {
  right: 3%;
  top: 34%;
  animation: float 4.8s ease-in-out infinite reverse;
}

.note-three {
  right: 10%;
  bottom: 18%;
  color: var(--lime);
  animation: float 4.2s ease-in-out infinite;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.service-strip span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(142, 43, 255, 0.055));
  color: var(--muted);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.why-copy h2,
.contact-card h2 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.section-head p,
.why-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card,
.benefit-card,
.process-step,
.example-card,
.price-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.026)),
    rgba(13, 7, 26, 0.70);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.process-step::before,
.example-card::before,
.price-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(142, 43, 255, 0.18), transparent 38%),
    linear-gradient(120deg, transparent, rgba(197, 139, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover::before,
.benefit-card:hover::before,
.process-step:hover::before,
.example-card:hover::before,
.price-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.service-card {
  min-height: 430px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34), 0 0 36px rgba(142, 43, 255, 0.16);
}

.card-num {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(197, 139, 255, 0.64);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 139, 255, 0.32);
  border-radius: 22px;
  background: radial-gradient(circle, rgba(142, 43, 255, 0.34), rgba(255, 255, 255, 0.04) 62%);
  box-shadow: 0 0 28px rgba(142, 43, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.service-icon::after {
  color: var(--violet-2);
  font-size: 30px;
  text-shadow: 0 0 24px rgba(197, 139, 255, 0.82);
}

.telegram-icon::after { content: "↗"; transform: rotate(-35deg); }
.website-icon::after { content: "⌘"; }
.growth-icon::after { content: "↗"; }
.banner-icon::after { content: "✎"; }

.service-card h3,
.benefit-card h3,
.process-step h3,
.example-card h3,
.price-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.service-card h3 {
  font-size: 24px;
}

.service-card p,
.service-card li,
.benefit-card p,
.process-step p,
.example-card p,
.price-card p,
.price-card li {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.66;
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.service-card li,
.price-card li {
  padding-left: 20px;
}

.service-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--violet-2);
  box-shadow: 0 0 16px rgba(197, 139, 255, 0.86);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.why-copy p {
  margin-bottom: 28px;
}

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

.benefit-card {
  min-height: 222px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.benefit-card span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(197, 139, 255, 0.30);
  color: var(--violet-2);
  font-size: 24px;
  box-shadow: 0 0 24px rgba(142, 43, 255, 0.18);
}

.benefit-card h3 {
  font-size: 22px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 139, 255, 0.68), rgba(0, 229, 255, 0.22), transparent);
}

.process-step {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.process-step span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(197, 139, 255, 0.45);
  border-radius: 17px;
  color: var(--violet-2);
  background: rgba(142, 43, 255, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 26px rgba(142, 43, 255, 0.22);
}

.process-step h3 {
  font-size: 22px;
}

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

.example-card {
  min-height: 430px;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.example-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}

.example-visual {
  position: relative;
  height: 190px;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 139, 255, 0.20);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(142, 43, 255, 0.42), transparent 30%),
    linear-gradient(135deg, rgba(142, 43, 255, 0.13), rgba(0, 229, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.example-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(197, 139, 255, 0.24);
  background-image:
    linear-gradient(rgba(197, 139, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 139, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

.example-visual::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 139, 255, 0.38);
  border-radius: 50%;
  color: var(--violet-2);
  font-size: 38px;
  text-shadow: 0 0 24px rgba(197, 139, 255, 0.78);
  box-shadow: 0 0 38px rgba(142, 43, 255, 0.32), inset 0 0 28px rgba(142, 43, 255, 0.18);
}

.bot-visual::after { content: "↗"; transform: translate(-50%, -50%) rotate(-35deg); }
.site-visual::after { content: "▣"; }
.promo-visual::after { content: "✦"; }

.example-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197, 139, 255, 0.24);
  color: var(--violet-2);
  font-size: 12px;
  font-weight: 800;
}

.example-card h3 {
  padding: 0 8px;
  font-size: 23px;
}

.example-card p {
  padding: 0 8px 8px;
}

.price-card {
  min-height: 420px;
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}

.price-card.accent {
  border-color: rgba(197, 139, 255, 0.55);
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 43, 255, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(142, 43, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(13, 7, 26, 0.84);
  box-shadow: 0 0 52px rgba(142, 43, 255, 0.20);
}

.popular {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(166, 255, 0, 0.28);
  border-radius: 999px;
  background: rgba(166, 255, 0, 0.09);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.price-card h3 {
  font-size: 28px;
}

.price-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 24px 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  letter-spacing: -0.055em;
}

.price-card a {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 1px solid rgba(197, 139, 255, 0.38);
  border-radius: 16px;
  background: rgba(142, 43, 255, 0.16);
  color: #fff;
  font-weight: 800;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.price-card a:hover {
  border-color: rgba(197, 139, 255, 0.70);
  box-shadow: 0 0 26px rgba(142, 43, 255, 0.26);
}

.contact-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 50%, rgba(142, 43, 255, 0.38), transparent 30%),
    linear-gradient(135deg, rgba(142, 43, 255, 0.18), rgba(0, 229, 255, 0.035)),
    rgba(13, 7, 26, 0.74);
}

.contact-card > *:not(.contact-orb) {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card p {
  max-width: 650px;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-orb {
  position: absolute;
  right: 5%;
  top: 50%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(197, 139, 255, 0.32);
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 0 55px rgba(142, 43, 255, 0.44), inset 0 0 44px rgba(142, 43, 255, 0.18);
  opacity: 0.65;
}

.contact-orb::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: inherit;
  border: 1px solid rgba(0, 229, 255, 0.20);
}

.footer {
  padding: 34px 0 26px;
  border-top: 1px solid var(--line);
  background: rgba(5, 3, 10, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p,
.footer small,
.footer-bottom {
  color: var(--muted);
}

.footer p {
  max-width: 340px;
  margin-bottom: 0;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact span {
  color: #fff;
  font-weight: 800;
}

.footer-contact a {
  color: var(--violet-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(197, 139, 255, 0.12);
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes spin {
  to { rotate: 360deg; }
}

@media (max-width: 1120px) {
  .hero-grid,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 0px 0 78px;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-inner {
    min-height: 66px;
    padding: 0 14px;
    border-radius: 20px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    left: 15px;
    right: 15px;
    top: 86px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 5, 16, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  body.menu-open .mobile-menu {
    display: flex;
  }

  .mobile-menu a {
    padding: 14px;
    border: 1px solid rgba(197, 139, 255, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-menu .mobile-menu-cta {
    color: #fff;
    background: rgba(142, 43, 255, 0.22);
    border-color: rgba(197, 139, 255, 0.35);
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 66px);
  }

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

  .service-strip,
  .benefit-grid,
  .process-line,
  .examples-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    display: none;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-word {
    font-size: 23px;
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.20em;
    font-size: 11px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .telegram-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 350px;
  }

  .orbit-card {
    width: min(360px, 100%);
  }

  .float-note {
    display: none;
  }

  .section-head h2,
  .why-copy h2,
  .contact-card h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .contact-card {
    min-height: auto;
    padding: 28px;
  }

  .contact-orb {
    width: 180px;
    height: 180px;
    right: -40px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* --- NeXR v2 правки по иконкам и якорям --- */
html {
  scroll-padding-top: 104px;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

/* Услуги: заменяем абстрактные стрелки на понятные фирменные пиктограммы */
.service-icon {
  color: var(--violet-2);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
}

.telegram-icon::before {
  width: 2px;
  height: 9px;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -7px 0 -1px currentColor, 0 0 16px rgba(197, 139, 255, 0.9);
}

.telegram-icon::after {
  width: 39px;
  height: 31px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
  border: 2px solid currentColor;
  border-radius: 12px 12px 10px 10px;
  background:
    radial-gradient(circle at 32% 43%, currentColor 0 2.5px, transparent 3px),
    radial-gradient(circle at 68% 43%, currentColor 0 2.5px, transparent 3px),
    linear-gradient(currentColor 0 0) center 72% / 17px 2px no-repeat,
    linear-gradient(135deg, rgba(142, 43, 255, 0.22), rgba(0, 229, 255, 0.06));
  box-shadow: 0 0 22px rgba(197, 139, 255, 0.55), inset 0 0 18px rgba(142, 43, 255, 0.18);
}

.website-icon::before {
  width: 37px;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid currentColor;
  border-radius: 8px;
  background:
    linear-gradient(currentColor 0 0) 8px 8px / 20px 2px no-repeat,
    linear-gradient(currentColor 0 0) 8px 15px / 14px 2px no-repeat,
    linear-gradient(90deg, rgba(197, 139, 255, 0.12), rgba(0, 229, 255, 0.06));
  box-shadow: 0 0 22px rgba(197, 139, 255, 0.46), inset 0 0 16px rgba(142, 43, 255, 0.16);
}

.website-icon::after {
  width: 26px;
  height: 2px;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px rgba(197, 139, 255, 0.75);
}

.growth-icon::before {
  left: 17px;
  right: 17px;
  bottom: 17px;
  height: 1px;
  border-radius: 999px;
  background: rgba(197, 139, 255, 0.34);
  box-shadow: 0 0 12px rgba(197, 139, 255, 0.45);
}

.growth-icon::after {
  width: 44px;
  height: 34px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg width='48' height='36' viewBox='0 0 48 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 28C10 21 15 25 21 18C27 11 33 14 42 5' stroke='%23C58BFF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M33 5H42V14' stroke='%2300E5FF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='4' cy='28' r='2.5' fill='%23C58BFF'/%3E%3Ccircle cx='21' cy='18' r='2.5' fill='%23C58BFF'/%3E%3Ccircle cx='42' cy='5' r='2.5' fill='%2300E5FF'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(197, 139, 255, 0.78));
}

.banner-icon::before {
  width: 34px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(90deg, var(--violet-2), var(--violet), var(--cyan));
  box-shadow: 0 0 18px rgba(197, 139, 255, 0.65);
}

.banner-icon::after {
  width: 0;
  height: 0;
  left: calc(50% + 17px);
  top: calc(50% + 10px);
  transform: translate(-50%, -50%) rotate(45deg);
  border-left: 7px solid var(--violet-2);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  filter: drop-shadow(0 0 9px rgba(197, 139, 255, 0.72));
}

/* Почему NeXR: все пиктограммы в единой цветовой системе, без оранжевых emoji */
.benefit-card .benefit-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(197, 139, 255, 0.30);
  color: var(--violet-2);
  font-size: 0;
  background: rgba(142, 43, 255, 0.08);
  box-shadow: 0 0 24px rgba(142, 43, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.benefit-card .benefit-icon::before,
.benefit-card .benefit-icon::after {
  content: "";
  position: absolute;
}

.design-benefit::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(197, 139, 255, 0.78);
}

.automation-benefit::before {
  width: 20px;
  height: 30px;
  clip-path: polygon(50% 0, 14% 48%, 43% 48%, 29% 100%, 88% 38%, 58% 38%, 72% 0);
  background: linear-gradient(180deg, var(--cyan), var(--violet-2));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.52);
}

.result-benefit::before {
  width: 26px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50% / 58%;
  box-shadow: 0 0 16px rgba(197, 139, 255, 0.72);
}

.result-benefit::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.84);
}

.style-benefit::before {
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 50% 0%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 100% 50%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 50% 100%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 0% 50%, currentColor 0 2px, transparent 3px),
    linear-gradient(currentColor 0 0) center / 2px 24px no-repeat,
    linear-gradient(90deg, currentColor 0 0) center / 24px 2px no-repeat;
  filter: drop-shadow(0 0 12px rgba(197, 139, 255, 0.78));
}

/* Примеры форматов: вместо абстрактных стрелок — мини-иллюстрации */
.example-visual::after {
  content: none;
}

.example-visual > * {
  position: relative;
  z-index: 2;
}

.bot-visual {
  display: grid;
  place-items: center;
}

.bot-figure {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 68px;
  transform: translate(-50%, -42%);
  border: 2px solid var(--violet-2);
  border-radius: 22px 22px 18px 18px;
  background:
    linear-gradient(currentColor 0 0) 50% 76% / 28px 2px no-repeat,
    linear-gradient(135deg, rgba(142, 43, 255, 0.24), rgba(0, 229, 255, 0.07));
  color: var(--violet-2);
  box-shadow: 0 0 34px rgba(197, 139, 255, 0.48), inset 0 0 22px rgba(142, 43, 255, 0.18);
}

.bot-antenna {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--violet-2);
  box-shadow: 0 -9px 0 -1px var(--cyan), 0 0 16px rgba(0, 229, 255, 0.65);
}

.bot-eye {
  position: absolute;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.9);
}

.bot-eye-left { left: 24px; }
.bot-eye-right { right: 24px; }

.bot-mouth {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 28px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--violet-2);
}

.bot-bubble {
  position: absolute;
  width: 94px;
  height: 38px;
  border: 1px solid rgba(197, 139, 255, 0.24);
  border-radius: 16px 16px 16px 6px;
  background: rgba(15, 8, 30, 0.62);
  box-shadow: 0 0 22px rgba(142, 43, 255, 0.12);
}

.bot-bubble::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: rgba(197, 139, 255, 0.58);
  box-shadow: 0 10px 0 rgba(0, 229, 255, 0.22);
}

.bot-bubble-left {
  left: 30px;
  top: 42px;
  opacity: 0.62;
}

.bot-bubble-right {
  right: 30px;
  bottom: 38px;
  transform: scaleX(-1);
  opacity: 0.48;
}

.site-visual {
  display: grid;
  place-items: center;
}

.site-window {
  width: min(82%, 280px);
  height: 118px;
  border: 2px solid rgba(197, 139, 255, 0.54);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 7, 26, 0.96), rgba(142, 43, 255, 0.15));
  box-shadow: 0 0 36px rgba(197, 139, 255, 0.34), inset 0 0 24px rgba(142, 43, 255, 0.16);
  overflow: hidden;
}

.site-window-top {
  height: 26px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(197, 139, 255, 0.22);
  background: rgba(255,255,255,0.035);
}

.site-window-top span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--violet-2);
  box-shadow: 0 0 10px rgba(197, 139, 255, 0.75);
}

.site-window-body {
  position: relative;
  padding: 18px 18px 0;
}

.site-line {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-2), rgba(197, 139, 255, 0.18));
  box-shadow: 0 0 14px rgba(197, 139, 255, 0.42);
}

.site-line-wide { width: 70%; margin-bottom: 10px; }
.site-line-mid { width: 48%; margin-bottom: 16px; background: rgba(197,139,255,0.42); }

.site-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.site-blocks i {
  height: 22px;
  border: 1px solid rgba(197, 139, 255, 0.24);
  border-radius: 8px;
  background: rgba(197, 139, 255, 0.08);
}

.promo-visual {
  display: grid;
  place-items: center;
}

.channel-icon {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 98px;
  height: 98px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(197, 139, 255, 0.54);
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.20), transparent 24%),
    linear-gradient(135deg, rgba(142, 43, 255, 0.42), rgba(0, 229, 255, 0.12));
  box-shadow: 0 0 38px rgba(197, 139, 255, 0.44), inset 0 0 26px rgba(142, 43, 255, 0.20);
}

.channel-plane {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 46px;
  height: 40px;
  transform: translate(-50%, -50%);
  clip-path: polygon(4% 46%, 96% 4%, 68% 92%, 50% 57%, 29% 74%);
  background: linear-gradient(135deg, #fff, var(--violet-2) 58%, var(--cyan));
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.58);
}

.channel-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 58px;
  padding: 13px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(197, 139, 255, 0.22);
  border-radius: 16px;
  background: rgba(7, 3, 16, 0.58);
  opacity: 0.72;
}

.channel-panel span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(197, 139, 255, 0.54);
}

.channel-panel span:nth-child(2) { width: 72%; background: rgba(0, 229, 255, 0.30); }
.channel-panel span:nth-child(3) { width: 54%; opacity: 0.72; }

@media (max-width: 560px) {
  html {
    scroll-padding-top: 86px;
  }

  .bot-bubble-left { left: 18px; }
  .bot-bubble-right { right: 18px; }
  .channel-panel { right: 18px; bottom: 20px; width: 82px; }
}
/* Asset images: services, benefits and examples */
.service-icon,
.why-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 24px;
  border-radius: 24px;
  border: 1px solid rgba(196, 139, 255, 0.28);
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.18), rgba(15, 10, 28, 0.78));
  box-shadow:
    inset 0 0 22px rgba(168, 85, 247, 0.10),
    0 0 26px rgba(168, 85, 247, 0.12);
}

.service-icon::before,
.service-icon::after {
  content: none !important;
  display: none !important;
}

.service-icon img,
.why-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.example-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(196, 139, 255, 0.24);
  background: rgba(18, 12, 34, 0.78);
  box-shadow:
    inset 0 0 26px rgba(168, 85, 247, 0.10),
    0 0 32px rgba(168, 85, 247, 0.10);
}

.example-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 560px) {
  .service-icon,
  .why-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }
}


/* Final v3 adjustments */
.price-card strong {
  font-size: 28px;
}

.service-card:nth-child(3) {
  min-height: 455px;
}

@media (max-width: 1120px) {
  .service-card:nth-child(3) {
    min-height: auto;
  }
}
