/* Design tokens — match Экспонат app */
:root {
  --color-primary: #6c5ce7;
  --color-primary-dark: #5a4bd1;
  --color-primary-light: #8b7cf0;
  --color-primary-bg: #f0eeff;
  --color-text: #1a1a2e;
  --color-text-secondary: #6b7280;
  --color-bg: #ffffff;
  --color-page-bg: #fafafa;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --gradient-hero: linear-gradient(135deg, #6c5ce7 0%, #8b5cf6 50%, #a78bfa 100%);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --radius-card: 16px;
  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(108, 92, 231, 0.18);
  --transition: 300ms ease;
  --content-max: 1200px;
}

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

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-page-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow {
  max-width: 720px;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: color var(--transition);
}

.site-header.is-scrolled .site-logo {
  color: var(--color-text);
}

.site-logo__text {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.site-logo--footer {
  color: #fff;
}

.site-logo--footer .site-logo__text {
  color: #fff;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
}

.site-header.is-scrolled .site-nav__link {
  color: var(--color-text-secondary);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.site-nav__link:hover::after {
  width: 100%;
}

.site-header.is-scrolled .site-nav__link:hover {
  color: var(--color-text);
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  transition: background var(--transition), color var(--transition);
}

.site-header.is-scrolled .site-header__burger {
  background: var(--color-primary-bg);
  color: var(--color-text);
}

.site-header__burger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 24px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.site-header__mobile-nav.is-open {
  display: flex;
}

.site-header__mobile-nav a {
  font-weight: 500;
  padding: 10px 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.site-header__mobile-nav .btn {
  margin-top: 8px;
  text-align: center;
  border-bottom: none;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  padding: 12px 20px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 16px;
}

.btn--xl {
  padding: 18px 32px;
  font-size: 18px;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(108, 92, 231, 0.35);
}

.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.45);
  background: var(--color-primary-dark);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header.is-scrolled .btn--ghost {
  color: var(--color-text);
  border-color: var(--color-border);
}

.site-header.is-scrolled .btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost:hover {
  transform: scale(1.02);
  border-color: #fff;
}

.site-header.is-scrolled .btn--primary:hover {
  color: #fff;
}

.btn--hero-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.btn--hero-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.btn--hero-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--hero-ghost:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  transform: scale(1.02);
  background: var(--color-primary-bg);
}

.btn--block {
  width: 100%;
}

.btn--pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(108, 92, 231, 0.35);
  }
  50% {
    box-shadow: 0 6px 28px rgba(108, 92, 231, 0.55);
  }
}

.btn--hero-primary.btn--pulse {
  animation: glow-pulse-light 3s ease-in-out infinite;
}

@keyframes glow-pulse-light {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(167, 139, 250, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(139, 92, 246, 0.4) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  animation: mesh-move 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mesh-move {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(4%, 3%) rotate(6deg);
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.15) 0, transparent 2px),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.12) 0, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0, transparent 2px),
    radial-gradient(circle at 72% 65%, rgba(255, 255, 255, 0.14) 0, transparent 2px),
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.08) 0, transparent 2px);
  background-size: 100% 100%;
  animation: particles-drift 18s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes particles-drift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-24px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.hero__text {
  color: #fff;
  max-width: 640px;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  min-height: 3.6em;
}

@media (min-width: 768px) {
  .hero__title {
    min-height: 2.4em;
  }
}

.hero__cursor {
  display: inline-block;
  margin-left: 2px;
  font-weight: 400;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero__typed.is-done + .hero__cursor {
  opacity: 0;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero__note {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__mockup-wrap {
  perspective: 1200px;
  perspective-origin: 50% 40%;
  max-width: 920px;
  margin-inline: auto;
  width: 100%;
}

.hero__mockup-float {
  animation: float-y 6s ease-in-out infinite;
  will-change: transform;
}

.hero__mockup-tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s ease-out;
}

.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

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

.browser-frame__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--color-border);
}

.browser-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}

.browser-frame__dot:nth-child(1) {
  background: #ff5f57;
}

.browser-frame__dot:nth-child(2) {
  background: #febc2e;
}

.browser-frame__dot:nth-child(3) {
  background: #28c840;
}

.browser-frame__viewport {
  aspect-ratio: 1200 / 750;
  background: var(--color-page-bg);
}

.browser-frame__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  animation: chevron-bounce 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes chevron-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ——— Sections ——— */
.section {
  padding: 72px 0;
}

.section__title {
  margin: 0 0 40px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

.section__title--sm {
  font-size: 22px;
  text-align: left;
  margin-bottom: 20px;
}

/* Problem / Solution */
.problem-solution {
  background: var(--color-bg);
}

.problem-solution__grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.problem-solution__divider {
  display: flex;
  justify-content: center;
  order: 2;
}

.problem-solution__arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ps-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

.ps-item:last-child {
  border-bottom: none;
}

/* Features */
.features__grid {
  display: grid;
  gap: 20px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.feature-card__text {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* How it works */
.how-it-works {
  background: var(--color-page-bg);
}

.steps {
  position: relative;
  padding-top: 8px;
}

.steps__track {
  display: none;
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 12px;
  pointer-events: none;
}

.steps__line-svg {
  width: 100%;
  height: 12px;
  display: block;
}

.steps__line-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.steps__line-path.is-drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s ease-out;
}

.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.steps__list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
  opacity: 0.35;
  border-radius: 2px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
}

.step__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.step__text {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* Stats */
.stats {
  background: var(--color-primary-bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat__value--plain {
  font-size: clamp(24px, 4vw, 36px);
}

.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.stats__quote {
  margin: 0;
  padding: 28px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.stats__quote p {
  margin: 0 0 12px;
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
}

.stats__quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--color-text-secondary);
}

/* Pricing */
.pricing__scroll {
  margin-inline: -20px;
  padding-inline: 20px;
}

.pricing__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.price-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card--featured {
  position: relative;
  border: 2px solid var(--color-primary);
  border-top-width: 3px;
  box-shadow: var(--shadow-lg);
  transform: scale(1);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.price-card__name {
  margin: 8px 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

.price-card__price {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
}

.price-card__period {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.price-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.price-card__features .ok {
  color: var(--color-primary);
  font-weight: 600;
}

.price-card__features .no {
  color: var(--color-text-secondary);
}

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  border: none;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after {
  transform: scaleY(0);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__panel.is-open {
  grid-template-rows: 1fr;
}

.faq-item__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item__inner p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.cta-banner__mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 60%, rgba(167, 139, 250, 0.3) 0%, transparent 45%);
  animation: mesh-move 20s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-banner__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
}

.cta-banner__lead {
  margin: 0 0 28px;
  font-size: 18px;
  opacity: 0.92;
}

.cta-banner__mail {
  margin: 20px 0 0;
  font-size: 15px;
  opacity: 0.85;
}

.cta-banner__mail a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-banner__mail a:hover {
  opacity: 1;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 24px;
}

.site-footer__grid {
  display: grid;
  gap: 36px;
  margin-bottom: 40px;
}

.site-footer__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a,
.site-footer__links span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__soon {
  opacity: 0.5;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ——— Tablet 768 ——— */
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .site-header__actions {
    display: flex;
  }

  .site-header__burger {
    display: none;
  }

  .site-header__mobile-nav {
    display: none !important;
  }

  .hero__content {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero__text {
    flex: 1;
    min-width: 0;
  }

  .hero__mockup-wrap {
    flex: 1.1;
    margin-inline: 0;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 32px;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .problem-solution__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }

  .problem-solution__col--left {
    order: 1;
  }

  .problem-solution__divider {
    order: 2;
  }

  .problem-solution__col--right {
    order: 3;
  }

  .problem-solution__arrow .ps-arrow-path {
    transform: none;
  }

  .pricing__scroll {
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .price-card {
    flex: none;
    scroll-snap-align: unset;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ——— Desktop 1024 ——— */
@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .steps__track {
    display: block;
  }

  .steps__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    padding-top: 8px;
  }

  .steps__list::before {
    display: none;
  }

  .step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
  }

  .step__body {
    padding-top: 8px;
  }

  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }

  .price-card--featured {
    transform: scale(1.04);
    z-index: 1;
  }
}

/* ——— Wide 1440 ——— */
@media (min-width: 1440px) {
  .container {
    padding-inline: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
