:root {
  --bg: #0b0a16;
  --surface: rgba(16, 20, 31, 0.72);
  --surface-muted: rgba(14, 18, 28, 0.76);
  --text: #eef2ff;
  --text-soft: #b8c0d9;
  --line: rgba(148, 163, 184, 0.28);
  --accent: #a855f7;
  --accent-soft: rgba(168, 85, 247, 0.16);
  --radius: 18px;
  --shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* Background adapted from provided radial glow component. */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle 860px at 12% -8%, rgba(244, 114, 182, 0.24), transparent 64%),
    radial-gradient(circle 960px at 100% 8%, rgba(147, 51, 234, 0.24), transparent 65%),
    radial-gradient(circle 720px at 62% 88%, rgba(99, 102, 241, 0.16), transparent 69%);
}

body::after {
  z-index: -1;
  background:
    linear-gradient(132deg, #090814 0%, #120a22 48%, #0c1124 100%),
    linear-gradient(180deg, rgba(88, 28, 135, 0.12), rgba(2, 6, 23, 0.9));
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 8px 12px;
  background: #0b1220;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(8, 12, 22, 0.55);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

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

.topbar__brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.topbar__links a:hover {
  color: var(--accent);
}

.section {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle 460px at 20% 22%, rgba(168, 85, 247, 0.08), transparent 72%),
    radial-gradient(circle 420px at 82% 76%, rgba(244, 114, 182, 0.08), transparent 74%);
}

.section--alt {
  background:
    linear-gradient(145deg, rgba(19, 14, 36, 0.44), rgba(10, 18, 36, 0.34)),
    var(--surface-muted);
  backdrop-filter: blur(1px);
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

.hero {
  min-height: calc(100vh - 68px);
  padding: 40px 0 56px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle 540px at 16% 34%, rgba(217, 70, 239, 0.17), transparent 68%),
    radial-gradient(circle 460px at 80% 32%, rgba(99, 102, 241, 0.2), transparent 70%);
  filter: blur(4px);
}

.hero__content {
  display: grid;
  gap: 42px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.hero__text {
  grid-column: 1;
  grid-row: 1;
}

.hero__visual {
  grid-column: 2;
  grid-row: 1 / -1;
}

.hero__actions {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.hero__text h1 {
  font-size: clamp(2rem, 3.9vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 17.5ch;
}

.hero__title-desktop {
  display: block;
}

.hero__title-mobile {
  display: none;
}

.hero__subtitle {
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__badge {
  margin-bottom: 18px;
}

.hero__accent {
  background: linear-gradient(92deg, #f472b6 8%, #d946ef 52%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta {
  padding: 15px 28px;
  border-radius: 14px;
  font-size: 1rem;
  background: linear-gradient(135deg, #f472b6 0%, #d946ef 48%, #8b5cf6 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 34px rgba(217, 70, 239, 0.35);
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 22px 42px rgba(236, 72, 153, 0.4);
}

.hero__visual {
  position: relative;
  min-height: 470px;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(145deg, rgba(10, 14, 26, 0.9), rgba(16, 10, 30, 0.7)),
    radial-gradient(circle at 80% 10%, rgba(217, 70, 239, 0.18), transparent 46%);
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow:
    0 30px 50px rgba(2, 6, 23, 0.52),
    0 0 0 1px rgba(30, 41, 59, 0.55) inset;
}

.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
}

.hero__orb--pink {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -90px;
  background: rgba(244, 114, 182, 0.52);
}

.hero__orb--violet {
  width: 280px;
  height: 280px;
  top: -90px;
  right: 120px;
  background: rgba(139, 92, 246, 0.38);
}

.hero__orb--blue {
  width: 240px;
  height: 240px;
  left: -80px;
  top: 120px;
  background: rgba(96, 165, 250, 0.34);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 90%);
}

.product-panel {
  position: absolute;
  inset: 62px 54px 86px 54px;
  border-radius: 22px;
  border: 1px solid rgba(168, 85, 247, 0.36);
  background:
    linear-gradient(145deg, rgba(30, 24, 53, 0.82), rgba(16, 19, 36, 0.88)),
    radial-gradient(circle at 72% 18%, rgba(244, 114, 182, 0.2), transparent 44%);
  backdrop-filter: blur(12px);
  box-shadow:
    0 20px 38px rgba(2, 6, 23, 0.48),
    0 0 0 1px rgba(244, 114, 182, 0.16) inset;
  padding: 18px;
}

.product-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.product-panel__header span:last-child {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9a8d4;
}

.product-panel__chart {
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    linear-gradient(180deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 27, 75, 0.58));
  background-size:
    100% 30px,
    28px 100%,
    100% 100%;
  position: relative;
  overflow: hidden;
}

.product-panel__chart::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #f472b6 55%, #fb7185);
  box-shadow: 0 0 18px rgba(244, 114, 182, 0.7);
  transform: rotate(-10deg);
}

.product-panel__stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-panel__stats div {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  padding: 10px 12px;
  background: rgba(9, 14, 25, 0.62);
}

.product-panel__stats p {
  margin: 0 0 4px;
  color: #b8c0d9;
  font-size: 0.82rem;
}

.product-panel__stats strong {
  color: #f8fafc;
  font-size: 1.08rem;
}

.metric-chip {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.44);
}

.metric-chip p {
  margin: 0 0 4px;
  color: #b8c0d9;
  font-size: 0.78rem;
}

.metric-chip strong {
  color: #f8fafc;
  font-size: 0.96rem;
}

.metric-chip--one {
  left: 22px;
  bottom: 28px;
}

.metric-chip--two {
  right: 22px;
  top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 58%, #f472b6 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 14px 26px rgba(217, 70, 239, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 18px 34px rgba(217, 70, 239, 0.38);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(9, 14, 25, 0.7);
}

.btn--ghost:hover {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(14, 22, 38, 0.85);
}

.btn--small {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
}

h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.value-section {
  position: relative;
  text-align: center;
}

.value-section__badge {
  margin-bottom: 14px;
}

.value-section h2 {
  margin-bottom: 12px;
}

.value-section__subtitle {
  max-width: 68ch;
  margin: 0 auto 28px;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.value-cards {
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.value-card {
  text-align: left;
  background:
    linear-gradient(145deg, rgba(19, 24, 44, 0.82), rgba(25, 16, 44, 0.68)),
    radial-gradient(circle at 92% 8%, rgba(217, 70, 239, 0.16), transparent 48%);
  border: 1px solid rgba(168, 85, 247, 0.26);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 30px rgba(2, 6, 23, 0.38),
    0 0 0 1px rgba(244, 114, 182, 0.1) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(16px);
}

.value-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 70, 239, 0.46);
  box-shadow:
    0 24px 38px rgba(2, 6, 23, 0.48),
    0 0 24px rgba(217, 70, 239, 0.24);
}

.value-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.18rem;
  color: #f9a8d4;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(244, 114, 182, 0.35);
  box-shadow: 0 8px 18px rgba(217, 70, 239, 0.22);
}

.value-section__ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  will-change: transform, opacity;
  background:
    radial-gradient(circle at 30% 30%, rgba(244, 114, 182, 0.28), transparent 52%),
    radial-gradient(circle at 70% 55%, rgba(139, 92, 246, 0.24), transparent 58%),
    radial-gradient(circle at 50% 75%, rgba(96, 165, 250, 0.22), transparent 62%);
  filter: blur(20px);
  transition: opacity 0.35s ease;
}

.examples-section {
  position: relative;
  overflow: hidden;
}

.examples-section::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle 560px at 8% 26%, rgba(168, 85, 247, 0.2), transparent 70%),
    radial-gradient(circle 640px at 88% 74%, rgba(244, 114, 182, 0.2), transparent 72%),
    radial-gradient(circle 500px at 55% 12%, rgba(96, 165, 250, 0.14), transparent 72%);
  filter: blur(8px);
  animation: examples-bg-shift 18s ease-in-out infinite alternate;
  z-index: -1;
}

.examples-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 34%),
    radial-gradient(circle 460px at 72% 34%, rgba(217, 70, 239, 0.1), transparent 72%);
}

.examples-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.examples-section__subtitle {
  max-width: 68ch;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-soft);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.example-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background-clip: padding-box;
  padding: 20px;
  background:
    linear-gradient(152deg, rgba(14, 18, 33, 0.84), rgba(24, 14, 42, 0.72)),
    radial-gradient(circle at 85% 12%, rgba(217, 70, 239, 0.18), transparent 48%);
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 30px rgba(2, 6, 23, 0.38),
    0 0 0 1px rgba(244, 114, 182, 0.09) inset;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.example-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(244, 114, 182, 0.5),
    rgba(168, 85, 247, 0.34),
    rgba(96, 165, 250, 0.34)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.example-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 48px 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.44), transparent);
  opacity: 0.7;
}

.example-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 40px rgba(2, 6, 23, 0.48),
    0 0 28px rgba(217, 70, 239, 0.26);
  background:
    linear-gradient(152deg, rgba(18, 22, 40, 0.9), rgba(30, 16, 50, 0.8)),
    radial-gradient(circle at 85% 12%, rgba(244, 114, 182, 0.24), transparent 48%);
}

.example-card h3 {
  margin: 0;
  font-size: 1.03rem;
  max-width: 24ch;
}

.example-card p {
  margin: 0;
  color: var(--text-soft);
}

.example-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.example-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f5d0fe;
  border: 1px solid rgba(244, 114, 182, 0.35);
  background: rgba(17, 24, 39, 0.6);
}

.example-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbcfe8;
  border: 1px solid rgba(168, 85, 247, 0.4);
  background:
    radial-gradient(circle at 30% 25%, rgba(244, 114, 182, 0.35), transparent 62%),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 0 16px rgba(217, 70, 239, 0.28);
}

.example-card__cta {
  margin-top: auto;
  width: fit-content;
  font-weight: 600;
  text-decoration: none;
  color: rgba(224, 231, 255, 0.78);
  border-bottom: 1px solid transparent;
  transition: color 0.28s ease, border-color 0.28s ease, text-shadow 0.28s ease;
}

.example-card:hover .example-card__cta {
  color: #f5d0fe;
  border-color: rgba(244, 114, 182, 0.5);
  text-shadow: 0 0 12px rgba(244, 114, 182, 0.35);
}

.example-card--featured {
  grid-column: span 2;
  background:
    linear-gradient(146deg, rgba(20, 18, 42, 0.86), rgba(34, 15, 54, 0.8)),
    radial-gradient(circle at 82% 24%, rgba(244, 114, 182, 0.28), transparent 46%);
  box-shadow:
    0 22px 36px rgba(2, 6, 23, 0.44),
    0 0 30px rgba(168, 85, 247, 0.18);
}

.examples-note {
  margin: 24px auto 0;
  max-width: 72ch;
  text-align: center;
  color: #d7dced;
}

.about-modern {
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: "";
  position: absolute;
  inset: -8% -8%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 520px at 12% 24%, rgba(168, 85, 247, 0.2), transparent 70%),
    radial-gradient(circle 460px at 92% 78%, rgba(244, 114, 182, 0.18), transparent 70%),
    linear-gradient(145deg, rgba(8, 12, 28, 0.96), rgba(12, 16, 34, 0.94));
  filter: blur(6px);
}

.about-modern__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-modern__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-modern__text p {
  margin: 0 0 12px;
  color: var(--text-soft);
  max-width: 62ch;
}

.about-modern__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-modern__list li {
  position: relative;
  padding-left: 20px;
  color: #d7dced;
}

.about-modern__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.45);
}

.about-modern__media {
  background: transparent;
}

.about-modern__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  filter: none;
  mask: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.card,
.case,
.reason,
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(3px);
}

.card h3,
.case h3,
.reason h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.card p,
.case p,
.reason p,
.steps p,
.about p,
.contacts p {
  color: var(--text-soft);
}

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

.case__tag {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.case__result {
  margin-top: 12px;
  color: var(--text);
  font-weight: 600;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about__content {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr;
}

.about p + p {
  margin-top: 12px;
}

.about img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contacts::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(138deg, rgba(10, 12, 30, 0.98), rgba(23, 12, 44, 0.96), rgba(14, 24, 52, 0.95)),
    radial-gradient(circle 560px at 16% 24%, rgba(217, 70, 239, 0.22), transparent 72%),
    radial-gradient(circle 540px at 86% 72%, rgba(244, 114, 182, 0.2), transparent 70%);
  filter: blur(8px);
  animation: contacts-bg-shift 20s ease-in-out infinite alternate;
}

.contacts::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 340px at 50% 0%, rgba(139, 92, 246, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%);
}

.contacts__content {
  text-align: center;
  max-width: 900px;
}

.contacts__content > p {
  max-width: 62ch;
  margin: 0 auto;
}

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

.messenger-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 128px;
  padding: 18px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #e2e8f0;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background:
    linear-gradient(145deg, rgba(18, 24, 42, 0.74), rgba(24, 14, 44, 0.62)),
    radial-gradient(circle at 85% 15%, rgba(217, 70, 239, 0.18), transparent 50%);
  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 24px rgba(2, 6, 23, 0.38),
    0 0 0 1px rgba(244, 114, 182, 0.08) inset;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.messenger-btn svg {
  width: 34px;
  height: 34px;
}

.messenger-icon--telegram {
  fill: #38bdf8;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.45));
}

.messenger-btn--telegram:hover .messenger-icon--telegram {
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.62));
}

.messenger-icon--whatsapp {
  fill: #22c55e;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.45));
}

.messenger-btn--whatsapp:hover .messenger-icon--whatsapp {
  filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.62));
}

.messenger-icon--instagram path {
  fill: url(#instagramGradient);
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.45));
}

.messenger-btn--instagram:hover .messenger-icon--instagram path {
  filter: drop-shadow(0 0 15px rgba(217, 70, 239, 0.62));
}

.messenger-icon--max {
  fill: #a78bfa;
  filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.45));
}

.messenger-btn--max:hover .messenger-icon--max {
  filter: drop-shadow(0 0 14px rgba(167, 139, 250, 0.62));
}

.messenger-btn__label {
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1;
}

.messenger-btn:hover {
  transform: translateY(-3px) scale(1.015);
  color: #f8fafc;
  border-color: rgba(244, 114, 182, 0.48);
  box-shadow:
    0 20px 30px rgba(2, 6, 23, 0.44),
    0 0 22px rgba(217, 70, 239, 0.26);
}

.messenger-btn--primary {
  border-color: rgba(147, 197, 253, 0.42);
  background:
    linear-gradient(140deg, rgba(17, 35, 64, 0.82), rgba(20, 24, 44, 0.72)),
    radial-gradient(circle at 88% 20%, rgba(96, 165, 250, 0.24), transparent 46%);
  box-shadow:
    0 16px 28px rgba(2, 6, 23, 0.42),
    0 0 24px rgba(96, 165, 250, 0.2);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(31, 74, 255, 0.35);
}

@media (max-width: 980px) {
  .hero__content,
  .about__content,
  .about-modern__content {
    grid-template-columns: 1fr;
  }

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

  .hero__text h1 {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 360px;
  }

  .product-panel {
    inset: 44px 34px 74px 34px;
  }

  .grid--3,
  .reasons {
    grid-template-columns: 1fr 1fr;
  }

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

  .example-card--featured {
    grid-column: auto;
  }

  .value-section__subtitle {
    margin-bottom: 22px;
  }
}

@media (max-width: 720px) {
  body::before {
    background:
      radial-gradient(circle 520px at 30% 0%, rgba(244, 114, 182, 0.2), transparent 65%),
      radial-gradient(circle 520px at 100% 10%, rgba(132, 96, 255, 0.2), transparent 65%),
      radial-gradient(circle 420px at 60% 82%, rgba(96, 165, 250, 0.16), transparent 68%);
  }

  .section {
    padding: 56px 0;
  }

  .topbar {
    position: static;
    top: auto;
  }

  .topbar__links .btn.btn--primary {
    display: none;
  }

  .hero {
    padding-top: 28px;
    text-align: center;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__content {
    gap: 28px;
  }

  .hero__text,
  .hero__visual,
  .hero__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .hero__text {
    width: 100%;
    max-width: 100%;
  }

  .hero__text h1 {
    font-size: clamp(1.72rem, 7.1vw, 2.08rem);
    line-height: 1.13;
    letter-spacing: -0.03em;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero__title-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero__title-mobile .hero__line {
    display: block;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    width: 100%;
    min-height: 290px;
  }

  .hero__actions {
    width: 100%;
    margin-top: 0;
    justify-content: center;
  }

  .product-panel {
    inset: 40px 18px 70px 18px;
    padding: 14px;
  }

  .product-panel__chart {
    height: 120px;
  }

  .metric-chip {
    padding: 10px 12px;
  }

  .metric-chip--one {
    left: 12px;
    bottom: 14px;
  }

  .metric-chip--two {
    right: 12px;
    top: 12px;
  }

  .topbar__content,
  .topbar__links {
    flex-wrap: wrap;
  }

  .topbar__content {
    justify-content: center;
    padding: 10px 0;
  }

  .topbar__links {
    justify-content: center;
    gap: 12px;
  }

  .grid--3,
  .grid--2,
  .steps,
  .reasons {
    grid-template-columns: 1fr;
  }

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

  .about-modern__media {
    order: -1;
  }

  .about-modern__text {
    text-align: left;
  }

  .about-modern__media img {
    width: 100%;
    max-width: 100%;
    height: min(72vw, 340px);
    max-height: min(72vw, 340px);
    margin-inline: auto;
    object-fit: cover;
    object-position: top center;
  }

  .example-card {
    gap: 10px;
    padding: 18px;
  }

  .example-card__cta {
    padding: 4px 0;
  }

  .value-section__subtitle {
    font-size: 1rem;
  }

  .value-section::before {
    content: "";
    position: absolute;
    inset: 44px -10px 10px;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(circle 220px at 22% 28%, rgba(217, 70, 239, 0.22), transparent 72%),
      radial-gradient(circle 240px at 78% 70%, rgba(96, 165, 250, 0.2), transparent 72%);
    filter: blur(22px);
    animation: value-mobile-glow 16s ease-in-out infinite alternate;
  }

  .value-section__ghost {
    display: none;
  }

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

  .messenger-btn {
    min-height: 110px;
    padding: 16px 14px;
  }

  .messenger-btn svg {
    width: 30px;
    height: 30px;
  }

  .messenger-btn__label {
    font-size: 0.95rem;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}

@media (hover: none), (pointer: coarse) {
  .value-section__ghost {
    display: none;
  }
}

@keyframes value-mobile-glow {
  0% {
    transform: translate3d(-10px, -6px, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(6px, 8px, 0) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-4px, 4px, 0) scale(1.02);
    opacity: 0.78;
  }
}

@keyframes examples-bg-shift {
  0% {
    transform: translate3d(-1.2%, -1%, 0) scale(1);
    opacity: 0.84;
  }
  50% {
    transform: translate3d(1.6%, 1.2%, 0) scale(1.03);
    opacity: 1;
  }
  100% {
    transform: translate3d(-0.6%, 0.8%, 0) scale(1.01);
    opacity: 0.9;
  }
}

@keyframes contacts-bg-shift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: 0.88;
  }
  50% {
    transform: translate3d(1.5%, 1.3%, 0) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate3d(-0.8%, 1%, 0) scale(1.01);
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-card,
  .value-card.is-visible,
  .value-card:hover,
  .value-section::before,
  .examples-section::before,
  .example-card,
  .example-card:hover,
  .example-card__cta,
  .about-modern__content,
  .contacts::before,
  .messenger-btn,
  .messenger-btn:hover {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
