:root {
  --bg: #ffffff;
  --bg-soft: #fafbff;
  --text: #15182f;
  --muted: #667085;
  --line: #e8eaf4;
  --purple: #6c4dff;
  --purple-deep: #5b35f5;
  --purple-soft: #f4f1ff;
  --green: #18c997;
  --green-deep: #10b885;
  --green-soft: #ecfff8;
  --shadow: 0 18px 48px rgba(28, 31, 64, 0.09);
  --shadow-soft: 0 12px 32px rgba(28, 31, 64, 0.07);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(var(--float-rotate, 0deg));
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: rotate(-6deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(-4deg) scale(1.025);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

button {
  font: inherit;
}

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

.section-pad {
  padding: 74px 0;
}

main {
  padding-top: 32px;
}

.compact-top {
  padding-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

.site-header.is-floating .header-wrap {
  padding-top: 14px;
  width: min(1120px, calc(100% - 40px));
  max-width: 1120px;
}

.site-header:not(.is-header-ready),
.site-header:not(.is-header-ready) .header-shell,
.site-header:not(.is-header-ready) .header-wrap {
  transition: none !important;
}

.header-wrap {
  display: flex;
  justify-content: center;
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 0;
  box-sizing: border-box;
  transition:
    padding-top 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-shell {
  position: relative;
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 12px 0;
  border: 1px solid transparent;
  border-bottom-color: transparent;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  contain: layout style;
  transition:
    min-height 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-floating .header-shell {
  min-height: 58px;
  padding: 7px 22px;
  border-color: rgba(255, 255, 255, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 36px rgba(28, 31, 64, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
}

.site-header.is-header-ready .header-wrap {
  transition:
    padding-top 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header.is-header-ready,
  .header-wrap,
  .header-shell {
    transition: none !important;
  }
}

.header-nav a.is-active {
  color: var(--purple-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  max-width: min(140px, 38vw);
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
  gap: 22px;
  color: #394056;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-nav a {
  transition: color 0.18s ease;
}

.header-nav a:hover {
  color: var(--purple-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  justify-self: end;
  grid-column: 3;
  min-width: 286px;
}

.header-actions .btn-primary {
  min-width: 172px;
  text-align: center;
  white-space: nowrap;
}

.header-actions .btn {
  min-height: 38px;
  padding: 9px 18px;
  font-size: 13px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.hero-cta:hover,
.job-card a:hover,
.link-arrow:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple-deep);
  color: #fff;
  box-shadow: 0 14px 24px rgba(91, 53, 245, 0.18);
}

.btn-ghost {
  border-color: rgba(91, 53, 245, 0.28);
  color: var(--purple-deep);
  background: #fff;
}

.btn-white {
  background: #fff;
  color: var(--purple-deep);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(91, 53, 245, 0.18);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  justify-self: end;
  grid-column: 3;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.hero-copy {
  padding-top: 0;
  animation: fadeUp 0.8s ease both;
}

.eyebrow,
.section-kicker,
.card-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 650px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.text-purple {
  color: var(--purple-deep);
}

.text-green {
  color: var(--green-deep);
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta {
  min-width: 176px;
  border-radius: 16px;
  padding: 15px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta strong {
  font-size: 15px;
  line-height: 1.1;
}

.hero-cta span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.72;
}

.hero-cta-primary {
  background: var(--purple-deep);
  color: #fff;
  box-shadow: 0 18px 30px rgba(91, 53, 245, 0.22);
}

.hero-cta-secondary {
  border: 1px solid rgba(24, 201, 151, 0.55);
  color: var(--green-deep);
  background: #fff;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(24, 201, 151, 0.1);
  flex: 0 0 auto;
}

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

.hero-visual::before {
  display: none;
}

.hero-logo-3d {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  filter: drop-shadow(0 34px 34px rgba(91, 53, 245, 0.14));
  animation: heroFloat 7s ease-in-out infinite;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  border: 1px solid rgba(108, 77, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  backdrop-filter: blur(12px);
  animation: cardFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

.float-top,
.money-row,
.job-head,
.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.float-card strong,
.float-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.float-card p {
  margin: 8px 0 5px;
  font-size: 13px;
  font-weight: 800;
}

.float-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.float-top span,
.job-head em {
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 5px 8px;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}

.float-shift {
  top: 78px;
  left: 12px;
  width: 176px;
  padding: 12px 13px;
  --float-rotate: -1.5deg;
}

.float-shift .float-top {
  margin-bottom: 6px;
}

.float-shift p {
  margin: 0 0 3px;
  font-size: 12px;
}

.float-shift small {
  font-size: 10px;
  line-height: 1.35;
}

.float-pay {
  top: 118px;
  right: 0;
  --float-rotate: 1deg;
  animation-delay: -2.2s;
}

.float-rating {
  left: 0;
  bottom: 135px;
  --float-rotate: 1.2deg;
  animation-delay: -3.4s;
}

.float-people {
  right: 28px;
  bottom: 104px;
  width: 230px;
  --float-rotate: -0.8deg;
  animation-delay: -1.3s;
}

.money-row span,
.rating-num {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.float-rating .stars {
  margin-top: 4px;
  font-size: 13px;
}

.money-row b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
}

.stars {
  display: block;
  color: #ffb020;
  font-size: 15px;
  letter-spacing: 1px;
}

.avatar-row {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.avatar-row span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-right: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--green));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.avatar-row b {
  margin-left: 14px;
  color: var(--muted);
  font-size: 12px;
}

.stats-section {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 4;
}

.stats-section--overlap {
  margin-top: -22px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.mini-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 800;
}

.stat-mini-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.stat-mini-icon--green {
  background: rgba(24, 201, 151, 0.14);
  color: var(--green-deep);
}

.stat-mini-icon--purple {
  background: rgba(100, 82, 254, 0.12);
  color: #6452fe;
}

.stat-mini-icon__glyph {
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--stat-icon) center / 22px 22px no-repeat;
  mask: var(--stat-icon) center / 22px 22px no-repeat;
}

.mini-icon.purple {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.mini-icon.green {
  background: #effff9;
  color: var(--green-deep);
}

.stat-item strong {
  display: block;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.stat-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-kicker,
.section-head.center .card-label {
  margin: 0 auto;
}

.section-head p {
  margin: 12px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.knowledge-soon-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  letter-spacing: 0;
}

.soft-card,
.feature-card,
.category-card,
.job-card,
.review-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(28, 31, 64, 0.055);
}

.feature-card,
.direction-card,
.category-card,
.knowledge-main,
.support-card,
.job-card,
.popular-card,
.review-card,
.faq-card,
.partner-card,
.more-grid article,
.final-cta,
.stats-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.feature-card.is-visible,
.direction-card.is-visible,
.category-card.is-visible,
.knowledge-main.is-visible,
.support-card.is-visible,
.job-card.is-visible,
.popular-card.is-visible,
.review-card.is-visible,
.faq-card.is-visible,
.partner-card.is-visible,
.more-grid article.is-visible,
.final-cta.is-visible,
.stats-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover,
.job-card:hover,
.review-card:hover,
.article-grid a:hover,
.more-grid article:hover {
  border-color: rgba(108, 77, 255, 0.18);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  padding: 20px 20px 22px;
}

.feature-card img {
  width: 100%;
  height: 142px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.feature-card p,
.direction-card p,
.support-card p,
.partner-card p,
.review-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.feature-card p {
  font-size: 14px;
}

.directions {
  padding: 34px 0 74px;
}

.directions .container {
  width: min(1240px, calc(100% - 48px));
}

.direction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.direction-card {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 38%);
  gap: 16px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(108, 77, 255, 0.12);
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.direction-business {
  border-color: rgba(108, 77, 255, 0.12);
  box-shadow: 0 18px 42px rgba(28, 31, 64, 0.06);
}

.direction-performer {
  border-color: rgba(108, 77, 255, 0.12);
  box-shadow: 0 18px 42px rgba(28, 31, 64, 0.06);
}

.direction-body {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.direction-points {
  display: grid;
  gap: 0;
}

.direction-ill {
  width: min(220px, 100%);
  align-self: end;
  justify-self: end;
  margin-top: 12px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 22px 28px rgba(91, 53, 245, 0.14));
}

.direction-ill--performer {
  width: min(250px, 100%);
  filter: drop-shadow(0 28px 30px rgba(24, 201, 151, 0.2));
}

.card-label {
  margin-bottom: 16px;
}

.green-label {
  background: var(--green-soft);
  color: var(--green-deep);
}

.direction-card h2 {
  max-width: none;
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: #4b516a;
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1.42;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.green-list li::before {
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(108, 77, 255, 0.1);
}

.link-arrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--purple-deep);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.link-arrow::after {
  content: "→";
}

.direction-info,
.performer-steps {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.direction-benefits {
  display: grid;
  gap: 0;
}

.direction-point,
.workflow-step,
.performer-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.direction-point {
  position: relative;
  padding: 0 0 12px;
}

.direction-point + .direction-point {
  padding-top: 12px;
  border-top: 1px solid rgba(108, 77, 255, 0.08);
}

.direction-icon,
.workflow-step span,
.performer-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(91, 53, 245, 0.2);
}

.direction-icon.direction-icon--green,
.direction-performer .direction-icon {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 10px 18px rgba(24, 201, 151, 0.22);
}

.direction-performer .direction-point + .direction-point {
  border-top-color: rgba(24, 201, 151, 0.12);
}

.direction-point strong,
.workflow-step strong,
.performer-step strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.direction-point p,
.workflow-step p,
.performer-step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.direction-workflow,
.performer-step-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 16px;
  background: #fff;
  background-image: none;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(28, 31, 64, 0.055);
  box-sizing: border-box;
  width: 100%;
  height: var(--direction-inner-height);
  min-height: 0;
}

.direction-workflow {
  align-self: center;
  transform: translateY(-12px);
}

.direction-workflow h3 {
  margin: 0 0 11px;
  font-size: 14px;
  font-weight: 800;
}

.workflow-list,
.performer-step-card {
  display: grid;
  gap: 0;
}

.workflow-step {
  padding: 0 0 9px;
}

.workflow-step + .workflow-step {
  padding-top: 9px;
  border-top: 1px solid rgba(108, 77, 255, 0.1);
}

.workflow-step:last-child {
  padding-bottom: 0;
}

.analytics-ill {
  width: min(280px, 118%);
  height: 136px;
  object-fit: contain;
  object-position: left bottom;
  margin-top: auto;
  transform: translate(-18px, 8px);
  filter: drop-shadow(0 22px 28px rgba(91, 53, 245, 0.14));
}

.performer-step-card {
  align-self: start;
  width: 100%;
  padding: 14px 18px;
  gap: 0;
  overflow: hidden;
}

.performer-step {
  padding: 0 0 13px;
}

.performer-step + .performer-step {
  padding-top: 13px;
  border-top: 1px solid rgba(108, 77, 255, 0.08);
}

.performer-step:last-child {
  padding-bottom: 0;
}

.performer-step span {
  background: var(--green-soft);
  color: var(--green-deep);
  box-shadow: 0 10px 18px rgba(24, 201, 151, 0.12);
}

.performer-visual {
  min-width: 0;
  display: grid;
  place-items: center;
  height: 100%;
}

.phone-wallet-ill {
  width: min(340px, 124%);
  max-width: none;
  transform: translate(12px, 8px);
  filter: drop-shadow(0 28px 30px rgba(24, 201, 151, 0.2));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.category-card img {
  height: 84px;
  object-fit: contain;
}

.category-card h3 {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}

.knowledge-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.knowledge-main .knowledge-topics-grid {
  flex: 1;
}

.knowledge-main,
.support-card,
.popular-card,
.faq-card,
.partner-card {
  border-radius: var(--radius-md);
  padding: 26px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-grid a,
.more-grid article {
  min-height: 82px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  color: #424862;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(28, 31, 64, 0.035);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.article-grid a:hover {
  border-color: rgba(21, 24, 47, 0.12);
  box-shadow: 0 10px 24px rgba(28, 31, 64, 0.06);
  color: var(--text);
}


.knowledge-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 0;
}

.knowledge-topic {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  color: inherit;
  transition: color 0.18s ease;
}

.knowledge-topic:nth-child(n + 4) {
  border-top: 1px solid rgba(108, 77, 255, 0.08);
  margin-top: 6px;
  padding-top: 18px;
}

.knowledge-topic-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(91, 53, 245, 0.2);
}

.knowledge-topic-text {
  padding-top: 7px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.knowledge-topic:hover .knowledge-topic-text {
  color: var(--purple-deep);
}

.support-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
}

.support-card-head h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
}

.support-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.support-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  margin-top: 18px;
}

.support-card-contacts {
  display: grid;
  gap: 8px;
}

.support-card-contacts a {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.support-card-ill {
  width: min(132px, 78%);
  margin: 6px -4px 0 auto;
  align-self: flex-end;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transform: translate(10px, -18px);
  filter: drop-shadow(0 16px 22px rgba(91, 53, 245, 0.12));
}

.support-card-btn {
  width: 100%;
  margin-top: 18px;
  flex-shrink: 0;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
  margin-top: 22px;
}

.jobs-layout .job-grid {
  align-self: stretch;
}

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

.job-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  padding: 16px;
}

.job-head {
  align-items: flex-start;
}

.company-logo-img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: contain;
  background: #f7f8fc;
  border: 1px solid rgba(21, 24, 47, 0.06);
  padding: 2px;
}

.company-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.company-logo.red { background: #f04438; }
.company-logo.orange { background: #f97316; }
.company-logo.green { background: #12b76a; }
.company-logo.blue { background: #2f6bff; }
.company-logo.cyan { background: #1b84ff; }
.company-logo.teal { background: #20c997; }

.job-head b,
.job-head p {
  display: block;
  margin: 0;
}

.job-head p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.job-head em {
  background: #fff0f0;
  color: #ef4444;
}

.job-head em.green-badge {
  background: var(--green-soft);
  color: var(--green-deep);
}

.job-head em.blue-badge {
  background: #eff6ff;
  color: #2563eb;
}

.job-card > strong {
  margin-top: 14px;
  font-size: 18px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.job-card small {
  margin-top: 10px;
  color: #8a90a5;
  font-weight: 800;
}

.job-card a {
  display: grid;
  place-items: center;
  margin-top: auto;
  border: 1px solid rgba(91, 53, 245, 0.28);
  border-radius: 12px;
  color: var(--purple-deep);
  padding: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}

.job-card a:hover {
  background: var(--purple-soft);
}

.popular-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popular-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.popular-list {
  display: grid;
  flex: 1;
  gap: 10px;
  align-content: start;
}

.popular-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(28, 31, 64, 0.035);
  transition: box-shadow 0.18s ease;
}

.popular-list a:hover {
  box-shadow: 0 10px 22px rgba(28, 31, 64, 0.06);
}

.popular-list span {
  display: grid;
  gap: 2px;
  font-size: 13px;
  font-weight: 800;
}

.popular-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.popular-list b {
  color: var(--green-deep);
  white-space: nowrap;
  font-size: 13px;
}

.popular-card .link-arrow {
  margin-top: auto;
  padding-top: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 210px;
  border-radius: 18px;
  padding: 20px;
}

.review-card span {
  color: #ffb020;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-card p {
  margin-top: 18px;
  font-size: 14px;
}

.review-card small {
  display: block;
  margin-top: 18px;
  color: #8a90a5;
  font-weight: 800;
}

.review-illustrated {
  position: relative;
  overflow: hidden;
}

.review-illustrated img {
  position: absolute;
  width: 150px;
  right: -16px;
  bottom: -20px;
  opacity: 0.95;
}

.faq-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.faq-card h2,
.partner-card h2 {
  margin-bottom: 20px;
}

.faq-card {
  padding: 34px;
  height: 100%;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-list details[open] {
  border-color: rgba(21, 24, 47, 0.12);
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 31, 64, 0.05);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #30364d;
  padding: 0 18px 0 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #f3f4f8;
  background-image: url("/static/landing/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 7px;
  transform: rotate(0deg);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.24s ease;
}

.faq-list details[open] summary::after {
  background-color: #e8eaf4;
  background-image: url("/static/landing/icons/chevron-down.svg");
  filter: none;
  transform: rotate(180deg);
}

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

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > .faq-answer-body,
.faq-answer > div:not(.faq-answer-body) {
  overflow: hidden;
  min-height: 0;
}

.faq-answer > p,
.faq-answer > .faq-answer-body > p,
.faq-answer > div > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.faq-answer > p + p,
.faq-answer > .faq-answer-body > p + p,
.faq-answer > div > p + p {
  padding-top: 10px;
  padding-bottom: 0;
}

.faq-answer > .faq-answer-body > p:last-child,
.faq-answer > div > p:last-child,
.faq-answer > p:last-child {
  padding-bottom: 18px;
}

.faq-answer > p a,
.faq-answer > .faq-answer-body > p a,
.faq-answer > div > p a {
  color: var(--text);
  font-weight: 700;
}

.partner-card {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  padding: 34px 36px;
  background: #fbf9ff;
}

.partner-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  max-width: min(56%, 420px);
  padding: 8px 0;
}

.partner-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.partner-tags span {
  border-radius: 999px;
  background: #fff;
  padding: 10px 12px;
  color: #4b516a;
  font-size: 12px;
  font-weight: 800;
}

.partner-card-ill {
  position: absolute;
  right: -18px;
  bottom: -24px;
  z-index: 1;
  width: min(470px, 54%);
  height: auto;
  max-height: 96%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  filter: drop-shadow(0 24px 28px rgba(91, 53, 245, 0.14));
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.more-grid article {
  min-height: 72px;
  justify-content: center;
  text-align: center;
  font-size: 13px;
}

.final-cta-section {
  padding: 34px 0 60px;
}

.final-cta {
  min-height: 220px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(110deg, var(--purple-deep), #3f7ef9 52%, var(--green));
  color: #fff;
  padding: 30px 42px;
  box-shadow: 0 22px 46px rgba(91, 53, 245, 0.2);
}

.final-cta img {
  width: 210px;
  transform: translate(-18px, 12px) rotate(-8deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.14));
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zero-price {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.zero-price strong {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.zero-price span {
  max-width: 140px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 32px;
  padding: 44px 0 34px;
}

.footer-brand .brand-logo {
  height: 32px;
  max-width: 140px;
}

.footer-brand p,
.footer-brand-text {
  max-width: none;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-row a,
.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}

.social-row a:hover,
.social-link:hover {
  transform: translateY(-1px);
}

.social-link--telegram {
  background: transparent;
}

.social-link--telegram img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
}

.social-link--support {
  background: var(--purple-soft);
}

.social-link--support img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  color: #8a90a5;
  font-size: 12px;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-nav a.is-active {
  position: relative;
  color: var(--purple-deep);
}

.header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 99px;
  background: var(--purple-deep);
}

.knowledge-page {
  background: #fff;
}

.knowledge-hero {
  padding: 48px 0 62px;
}

.knowledge-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 64px;
}

.knowledge-hero-copy h1 {
  max-width: 610px;
  margin: 14px 0 20px;
  color: #12152b;
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.knowledge-hero-copy h1 span {
  color: var(--green);
}

.knowledge-hero-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 600;
}

.knowledge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.knowledge-hero-actions .btn {
  min-width: 178px;
}

.knowledge-search {
  width: min(100%, 565px);
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 22px;
  border: 1px solid rgba(108, 77, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(28, 31, 64, 0.08);
  padding: 8px 10px 8px 22px;
}

.knowledge-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.knowledge-search input::placeholder {
  color: #8c93a8;
}

.knowledge-search button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: var(--purple-soft);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.knowledge-search button:hover {
  transform: translateY(-2px);
  background: #ebe5ff;
}

.knowledge-search button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.knowledge-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #687087;
  font-size: 13px;
  font-weight: 800;
}

.knowledge-tags a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  padding: 7px 14px;
  font-size: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.knowledge-tags a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(91, 53, 245, 0.12);
}

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

.knowledge-hero-visual::before {
  display: none;
}

.knowledge-hero-visual img {
  position: relative;
  width: min(580px, 100%);
  animation: heroFloat 6s ease-in-out infinite;
}

.knowledge-section {
  padding: 44px 0;
}

.knowledge-section.compact {
  padding-top: 24px;
}

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

.quick-topic-card {
  position: relative;
  display: block;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(28, 31, 64, 0.045);
  padding: 22px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-topic-card:hover,
.knowledge-article-card:hover,
.knowledge-guide-card:hover,
.knowledge-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 77, 255, 0.22);
  box-shadow: 0 20px 44px rgba(28, 31, 64, 0.08);
}

.quick-topic-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  max-width: 58%;
  color: #171a31;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.quick-topic-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 58%;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.quick-topic-card img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 38%;
  max-height: 52%;
  margin: 0;
  object-fit: contain;
  object-position: right bottom;
}

.knowledge-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.82fr);
  gap: 34px;
  align-items: stretch;
}

.knowledge-faq-card,
.knowledge-help-card,
.knowledge-support-wide,
.knowledge-info-card {
  border: 1px solid rgba(108, 77, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.knowledge-faq-card {
  padding: 30px;
}

.knowledge-faq-card h2,
.knowledge-help-card h2,
.knowledge-info-card h2 {
  margin: 0 0 20px;
  color: #15182f;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.knowledge-faq-list {
  gap: 10px;
}

.knowledge-faq-list details {
  border-color: var(--line);
  box-shadow: none;
}

.knowledge-faq-list summary {
  min-height: 54px;
  padding-inline: 18px 16px;
  font-size: 14px;
  font-weight: 700;
}

.knowledge-faq-list .faq-answer > p {
  margin: 0;
  padding: 0 52px 18px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.knowledge-faq-card .link-arrow {
  margin-top: 18px;
}

.knowledge-help-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 28px 198px;
}

.knowledge-help-card::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(244, 241, 255, 0.8);
}

.knowledge-help-card .section-head {
  margin-bottom: 20px;
}

.knowledge-help-card .section-head p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.knowledge-help-card .mini-support-list {
  gap: 16px;
}

.knowledge-help-card .mini-support-list article {
  border: 0;
  background: transparent;
  padding: 0;
}

.mini-support-list {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  align-content: start;
  gap: 12px;
}

.mini-support-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.mini-support-list span,
.support-channel-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--purple-soft);
}

.mini-support-list img,
.support-channel-grid span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mini-support-list h3,
.support-channel-grid h3 {
  margin: 0;
  color: #20243a;
  font-size: 14px;
  font-weight: 800;
}

.mini-support-list p,
.support-channel-grid p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.mini-support-list b {
  display: inline-block;
  color: var(--green-deep);
  font-size: 12px;
}

.mini-support-list a {
  color: #22263a;
  font-size: 13px;
  font-weight: 800;
}

.knowledge-help-illustration {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: -20px;
  width: 255px;
}

.knowledge-article-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(28, 31, 64, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.knowledge-guide-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(28, 31, 64, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.knowledge-section-link {
  justify-content: flex-end;
  margin-top: 20px;
}

/* Legacy grid fallbacks (unused when bento classes are present). */
.knowledge-article-grid:not(.bento-grid) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.knowledge-guide-grid:not(.bento-grid) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.knowledge-support-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  align-items: center;
  gap: 28px;
  padding: 30px;
  overflow: hidden;
}

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

.support-channel-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.support-channel-grid b,
.support-channel-grid a:not(.channel-button) {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.support-channel-grid button,
.support-channel-grid .channel-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 53, 245, 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--purple-deep);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.knowledge-support-wide > img {
  width: 270px;
  max-width: 115%;
  transform: translateX(10px);
}

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

.knowledge-info-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.knowledge-info-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.knowledge-info-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.knowledge-info-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #3c4358;
  font-size: 13px;
  font-weight: 800;
}

.knowledge-info-card li b {
  color: var(--green-deep);
  white-space: nowrap;
}

.knowledge-info-card .link-arrow {
  margin-top: auto;
}

.suggest-topic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
  align-items: end;
}

.suggest-topic img {
  width: 170px;
  max-width: 120%;
  justify-self: end;
}

.suggest-topic .btn {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .header-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 1fr);
  }

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

  .direction-grid,
  .knowledge-grid,
  .jobs-layout,
  .faq-partner-grid {
    grid-template-columns: 1fr;
  }

  .popular-card {
    position: static;
  }

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

@media (max-width: 1100px) {
  .header-nav {
    gap: 16px;
    font-size: 12px;
  }

  .header-wrap {
    width: min(100% - 32px, 980px);
  }

  .site-header.is-floating .header-shell {
    padding: 7px 16px;
    gap: 16px;
  }

  .header-actions {
    min-width: 240px;
  }

  .header-actions .btn {
    padding: 8px 14px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    min-height: 68px;
  }

  .header-wrap {
    width: min(100% - 32px, 720px);
  }

  .header-shell {
    width: 100%;
    min-height: 54px;
    padding: 10px 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header.is-floating .header-wrap {
    padding-top: 10px;
    width: min(100% - 32px, 720px);
    max-width: none;
  }

  .site-header.is-floating .header-shell {
    min-height: 54px;
    padding: 7px 14px;
    border-radius: 22px;
  }

  .header-actions {
    min-width: 0;
  }

  .brand-logo {
    height: 28px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    border: 1px solid rgba(108, 77, 255, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-header.is-open .header-nav a {
    padding: 12px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .float-shift { left: 0; top: 36px; }
  .float-pay { right: 0; top: 74px; }
  .float-rating { left: 0; bottom: 88px; }
  .float-people { right: 0; bottom: 48px; }

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

  .direction-card {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 34%);
    min-height: 0;
  }

  .direction-ill {
    width: min(180px, 100%);
  }

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

  .stat-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .partner-card,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-card-ill {
    position: static;
    width: min(320px, 100%);
    margin: 8px auto 0;
    transform: none;
  }

  .partner-card-body {
    max-width: none;
  }

  .final-cta {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 54px 0;
  }

  .compact-top {
    padding-top: 14px;
  }

  .brand-text {
    font-size: 18px;
  }

  .site-header.is-floating .header-wrap {
    padding-top: 8px;
  }

  .site-header.is-floating .header-shell {
    border-radius: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 390px;
    margin-inline: -10px;
  }

  .hero-logo-3d {
    width: 390px;
  }

  .float-card {
    width: 165px;
    padding: 13px;
    border-radius: 15px;
  }

  .float-people {
    width: 190px;
  }

  .float-card h3,
  .float-card strong {
    font-size: 12px;
  }

  .money-row span,
  .rating-num {
    font-size: 20px;
  }

  .stats-card,
  .feature-grid,
  .category-grid,
  .article-grid,
  .knowledge-topics-grid,
  .job-grid,
  .review-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .direction-card,
  .knowledge-main,
  .support-card,
  .popular-card,
  .faq-card,
  .partner-card,
  .final-cta {
    padding: 22px;
    border-radius: 22px;
  }

  .direction-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .direction-ill {
    width: min(200px, 72%);
    justify-self: center;
    margin-top: 8px;
  }

  .direction-card h2,
  h2 {
    font-size: 28px;
  }

  .support-card-ill {
    width: min(116px, 70%);
    margin-top: 4px;
    margin-right: -2px;
    transform: translate(6px, -12px);
  }

  .support-card-btn {
    margin-top: 16px;
  }

  .category-card {
    min-height: 138px;
  }

  .category-card img {
    height: 80px;
  }

  .review-illustrated img {
    position: static;
    width: 120px;
    margin-top: 12px;
  }

  .partner-card-ill {
    position: static;
    width: min(320px, 100%);
    margin: 8px auto 0;
    transform: none;
  }

  .partner-card-body {
    max-width: none;
  }

  .final-cta img {
    width: 160px;
    transform: none;
  }

  .zero-price strong {
    font-size: 48px;
  }
}

@media (max-width: 1180px) {
  .knowledge-hero-grid,
  .knowledge-faq-layout,
  .knowledge-support-wide {
    grid-template-columns: 1fr;
  }

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

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

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

  .knowledge-hero-visual {
    min-height: 430px;
  }

  .knowledge-support-wide > img {
    width: 220px;
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 920px) {
  .header-nav a.is-active::after {
    display: none;
  }

  .knowledge-hero {
    padding: 30px 0 46px;
  }

  .knowledge-hero-grid {
    gap: 34px;
  }

  .knowledge-hero-copy h1 {
    font-size: clamp(40px, 8vw, 54px);
  }

  .knowledge-hero-visual {
    min-height: 320px;
  }

  .knowledge-hero-visual img {
    width: min(470px, 100%);
  }

  .support-channel-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-help-card {
    padding-bottom: 170px;
  }
}

@media (max-width: 700px) {
  .knowledge-section {
    padding: 34px 0;
  }

  .quick-topic-grid,
  .knowledge-article-grid,
  .knowledge-guide-grid,
  .knowledge-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-topic-card {
    min-height: 0;
  }

  .knowledge-faq-card,
  .knowledge-help-card,
  .knowledge-support-wide,
  .knowledge-info-card {
    border-radius: 22px;
    padding: 22px;
  }

  .knowledge-help-card {
    padding-bottom: 170px;
  }

  .knowledge-help-illustration {
    width: 205px;
  }

  .knowledge-hero-copy h1 {
    font-size: 40px;
  }

  .knowledge-hero-copy > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.62;
  }

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

  .knowledge-search {
    width: 100%;
    min-height: 58px;
    margin-top: 26px;
  }

  .knowledge-hero-visual {
    min-height: 270px;
  }

  .knowledge-hero-visual::before {
    display: none;
  }

  .knowledge-faq-list summary {
    min-height: 58px;
    align-items: flex-start;
    padding-block: 15px;
  }

  .knowledge-faq-list .faq-answer > p {
    margin-right: 18px;
  }

  .knowledge-article-card,
  .knowledge-guide-card {
    min-height: 0;
  }

  .knowledge-section-link {
    justify-content: flex-start;
  }

  .suggest-topic {
    grid-template-columns: 1fr;
  }

  .suggest-topic img {
    width: 150px;
    justify-self: start;
  }
}

.business-page {
  background: #fff;
}

.business-section {
  padding: 42px 0;
}

.business-section.compact {
  padding-top: 24px;
}

.business-hero {
  padding: 40px 0 34px;
}

.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 54px;
  align-items: start;
}

.business-hero-copy {
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.75s ease both;
}

.business-hero-lead {
  margin-top: -22px;
}

.business-hero-copy h1 {
  max-width: 610px;
  margin: 12px 0 14px;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.business-hero-copy h1 span {
  color: var(--green-deep);
}

.business-hero-lead > p:not(.section-kicker) {
  max-width: 535px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
}

.business-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.business-hero-actions .btn {
  min-width: 178px;
}

.business-hero-visual {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -48px;
  position: relative;
}

.business-hero-visual::before {
  display: none;
}

.business-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  transform: translateY(-56px);
  filter: drop-shadow(0 32px 34px rgba(91, 53, 245, 0.13));
  animation: heroFloat 7s ease-in-out infinite;
}

.business-benefits-section {
  padding-top: 20px;
  padding-bottom: 36px;
}

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

.business-benefit-card,
.business-feature-card,
.business-process-card,
.business-payment-copy,
.business-calc-card,
.business-trust-grid article,
.business-category-grid article,
.business-help-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(28, 31, 64, 0.055);
}

.business-benefit-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 18px;
}

.business-benefit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.business-benefit-card h3,
.business-feature-card h3,
.business-process-card h3,
.business-trust-grid h3,
.business-category-grid h3 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

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

.business-benefit-card p,
.business-feature-card p,
.business-process-card p,
.business-trust-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.business-benefit-card p {
  font-size: 12px;
}

.business-stats-section {
  padding-top: 8px;
  padding-bottom: 30px;
}

.business-stats-section .stats-section {
  margin-top: 0;
}

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

.business-feature-card {
  min-height: 258px;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.business-feature-card:hover,
.business-category-grid article:hover,
.business-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.business-feature-card img {
  width: 150px;
  height: 118px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.business-feature-card h3 {
  font-size: 18px;
}

.business-feature-card p {
  max-width: 250px;
  font-size: 13.5px;
}

.business-process-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-radius: 22px;
  padding: 18px;
}

.business-process-card article {
  position: relative;
  min-height: 188px;
  padding: 14px 18px 88px;
}

.business-process-card article + article {
  border-left: 1px dashed rgba(108, 77, 255, 0.22);
}

.business-process-card img {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 80px;
  height: 70px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 14px 18px rgba(91, 53, 245, 0.12));
}

.business-process-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.business-process-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}

.business-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.business-payment-copy,
.business-calc-card {
  border-radius: 22px;
  padding: 30px;
}

.business-payment-copy h2 {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
}

.business-payment-copy p {
  margin: 0 0 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.business-payment-copy ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #4b516a;
  font-size: 14px;
  font-weight: 800;
}

.business-payment-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-payment-copy li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 12px;
}

.business-calc-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.calc-row > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  text-align: center;
}

.calc-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calc-row strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.calc-row .green-total {
  color: var(--green-deep);
}

.calc-row > b {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 18px;
}

.calc-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.calc-notes span {
  border: 1px solid rgba(108, 77, 255, 0.1);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  color: #4b516a;
  font-size: 13px;
  font-weight: 800;
}

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

.business-trust-grid article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 18px;
}

.business-trust-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.business-trust-grid h3 {
  font-size: 14px;
}

.business-trust-grid p {
  font-size: 12px;
}

.business-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.business-category-grid article {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 18px;
  padding: 16px 10px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.business-category-grid img {
  width: 62px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 10px;
}

.business-category-grid h3 {
  font-size: 12.5px;
  line-height: 1.25;
}

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

.business-page .jobs-layout {
  margin-top: 22px;
}

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

.business-job-card {
  min-height: 218px;
}

.business-page .review-grid .business-review-card {
  min-height: 210px;
}

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

.business-review-card {
  min-height: 226px;
}

.business-review-controls {
  display: inline-flex;
  gap: 10px;
}

.business-review-controls span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(108, 77, 255, 0.14);
  border-radius: 50%;
  color: var(--purple-deep);
  font-size: 19px;
  font-weight: 800;
}

.business-faq-layout {
  --business-side-panel-height: 520px;
  align-items: stretch;
}

.business-faq-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  box-sizing: border-box;
  height: var(--business-side-panel-height);
  min-height: var(--business-side-panel-height);
  border-radius: 22px;
  padding: 34px;
}

.business-faq-card h2 {
  margin-bottom: 20px;
}

.business-faq-scroll {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 6px 2px 2px;
}

.business-faq-scroll .faq-list {
  display: grid;
  gap: 12px;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.business-faq-scroll::-webkit-scrollbar {
  width: 6px;
}

.business-faq-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(108, 77, 255, 0.22);
}

.business-faq-scroll .faq-list details {
  overflow: hidden;
}

.business-partner-card {
  box-sizing: border-box;
  height: var(--business-side-panel-height);
  min-height: var(--business-side-panel-height);
}

@media (max-width: 1180px) {
  .business-faq-card,
  .business-partner-card {
    height: auto;
    min-height: 0;
  }

  .business-faq-card {
    grid-template-rows: auto auto;
  }

  .business-faq-scroll {
    max-height: 420px;
    overflow-y: auto;
  }

  .business-faq-scroll .faq-list {
    height: auto;
  }
}

.business-faq-card .link-arrow {
  margin-top: 18px;
}

.business-help-card {
  min-height: 338px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: center;
  border-radius: 22px;
  padding: 32px;
  overflow: hidden;
}

.business-help-card h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.business-help-card p {
  max-width: 410px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.business-help-card a:not(.btn) {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
}

.business-help-card .btn {
  margin-top: 20px;
}

.business-help-card img {
  width: 260px;
  max-width: none;
  justify-self: end;
  filter: drop-shadow(0 24px 26px rgba(91, 53, 245, 0.14));
}

.business-final-cta {
  grid-template-columns: 190px minmax(0, 1fr);
}

.business-final-cta img {
  width: 185px;
  transform: translate(-10px, 8px) rotate(-7deg);
}

.business-benefit-card,
.business-feature-card,
.business-process-card,
.business-payment-copy,
.business-calc-card,
.business-trust-grid article,
.business-category-grid article,
.business-job-card,
.business-review-card,
.business-faq-card,
.business-help-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.48s ease, transform 0.48s ease, box-shadow 0.18s ease;
}

.business-benefit-card.is-visible,
.business-feature-card.is-visible,
.business-process-card.is-visible,
.business-payment-copy.is-visible,
.business-calc-card.is-visible,
.business-trust-grid article.is-visible,
.business-category-grid article.is-visible,
.business-job-card.is-visible,
.business-review-card.is-visible,
.business-faq-card.is-visible,
.business-help-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .business-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .business-hero-visual {
    min-height: 390px;
  }

  .business-benefit-grid,
  .business-process-card,
  .business-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-hero-visual {
    min-height: auto;
    margin-top: -12px;
  }

  .business-hero-visual img {
    transform: translateY(-20px);
  }

  .business-feature-grid,
  .business-trust-grid,
  .business-review-grid,
  .business-page .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-payment-grid,
  .business-faq-layout,
  .business-page .jobs-layout {
    grid-template-columns: 1fr;
  }

  .business-process-card article:nth-child(4),
  .business-process-card article:nth-child(5) {
    border-top: 1px dashed rgba(108, 77, 255, 0.22);
  }

  .business-process-card article:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .business-hero {
    padding: 28px 0 26px;
  }

  .business-hero-copy h1 {
    font-size: clamp(40px, 7vw, 52px);
  }

  .business-hero-visual {
    min-height: 300px;
  }

  .business-benefit-grid,
  .business-process-card,
  .business-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-help-card {
    grid-template-columns: 1fr;
  }

  .business-help-card img {
    width: 210px;
    justify-self: center;
  }

  .calc-row {
    grid-template-columns: 1fr;
  }

  .calc-row > b {
    min-height: 24px;
  }
}

@media (max-width: 700px) {
  .business-section {
    padding: 32px 0;
  }

  .business-hero-copy h1 {
    font-size: 40px;
  }

  .business-hero-lead > p:not(.section-kicker) {
    font-size: 15px;
  }

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

  .business-hero-visual {
    min-height: auto;
    margin-top: 0;
  }

  .business-hero-visual img {
    width: min(430px, 112%);
    transform: translateY(-8px);
  }

  .business-benefit-grid,
  .business-feature-grid,
  .business-process-card,
  .business-trust-grid,
  .business-category-grid,
  .business-review-grid,
  .business-page .review-grid {
    grid-template-columns: 1fr;
  }

  .business-process-card article,
  .business-process-card article + article,
  .business-process-card article:nth-child(4),
  .business-process-card article:nth-child(5) {
    border-left: 0;
    border-top: 1px dashed rgba(108, 77, 255, 0.22);
  }

  .business-process-card article:first-child {
    border-top: 0;
  }

  .business-payment-copy,
  .business-calc-card,
  .business-help-card {
    padding: 22px;
    border-radius: 22px;
  }

  .business-payment-copy h2,
  .business-help-card h2 {
    font-size: 26px;
  }

  .calc-notes {
    grid-template-columns: 1fr;
  }

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

  .business-final-cta img {
    width: 150px;
    transform: none;
  }
}

/* Bento layouts for landing content blocks. Keep this layer after legacy grid rules. */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 24px;
  align-items: stretch;
}

.bento-grid > * {
  min-width: 0;
  height: 100%;
}

.bento-features .feature-card:nth-child(1),
.bento-business-features .business-feature-card:nth-child(1),
.bento-articles .knowledge-article-card:nth-child(1),
.bento-business-trust article:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.bento-features .feature-card:nth-child(2),
.bento-business-features .business-feature-card:nth-child(2),
.bento-articles .knowledge-article-card:nth-child(2),
.bento-business-trust article:nth-child(2) {
  grid-column: span 6;
}

.bento-features .feature-card:nth-child(3),
.bento-features .feature-card:nth-child(4),
.bento-business-features .business-feature-card:nth-child(3),
.bento-business-features .business-feature-card:nth-child(4),
.bento-articles .knowledge-article-card:nth-child(3),
.bento-articles .knowledge-article-card:nth-child(4),
.bento-business-trust article:nth-child(3),
.bento-business-trust article:nth-child(4) {
  grid-column: span 3;
}

.bento-features .feature-card,
.bento-business-features .business-feature-card,
.bento-business-benefits .business-benefit-card,
.bento-business-trust article,
.bento-articles .knowledge-article-card,
.bento-guides .knowledge-guide-card {
  position: relative;
  display: block;
  flex-direction: initial;
  min-height: 0;
  padding: 22px 24px;
  overflow: hidden;
}

.bento-features .feature-card h3,
.bento-business-features .business-feature-card h3,
.bento-business-benefits .business-benefit-card h3,
.bento-business-trust article h3,
.bento-articles .knowledge-article-card h3,
.bento-guides .knowledge-guide-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
  max-width: 56%;
  font-weight: 800;
  line-height: 1.2;
}

.bento-features .feature-card p,
.bento-business-features .business-feature-card p,
.bento-business-benefits .business-benefit-card p,
.bento-business-trust article p,
.bento-articles .knowledge-article-card p,
.bento-guides .knowledge-guide-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 56%;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.bento-features .feature-card img,
.bento-business-features .business-feature-card img,
.bento-business-benefits .business-benefit-card img,
.bento-business-trust article img,
.bento-articles .knowledge-article-card img,
.bento-guides .knowledge-guide-card img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 42%;
  max-height: 58%;
  margin: 0;
  object-fit: contain;
  object-position: right bottom;
}

.bento-features .feature-card:nth-child(1) h3,
.bento-business-features .business-feature-card:nth-child(1) h3,
.bento-business-benefits .business-benefit-card:nth-child(1) h3,
.bento-business-trust article:nth-child(1) h3,
.bento-articles .knowledge-article-card:nth-child(1) h3,
.bento-guides .knowledge-guide-card:nth-child(1) h3 {
  font-size: 24px;
  max-width: 50%;
}

.bento-features .feature-card:nth-child(1) p,
.bento-business-features .business-feature-card:nth-child(1) p,
.bento-business-benefits .business-benefit-card:nth-child(1) p,
.bento-business-trust article:nth-child(1) p,
.bento-articles .knowledge-article-card:nth-child(1) p,
.bento-guides .knowledge-guide-card:nth-child(1) p {
  max-width: 50%;
  font-size: 15px;
}

.bento-features .feature-card:nth-child(1) img,
.bento-business-features .business-feature-card:nth-child(1) img,
.bento-business-benefits .business-benefit-card:nth-child(1) img,
.bento-business-trust article:nth-child(1) img,
.bento-articles .knowledge-article-card:nth-child(1) img,
.bento-guides .knowledge-guide-card:nth-child(1) img {
  max-width: 46%;
  max-height: 68%;
  right: 20px;
  bottom: 20px;
}

.bento-features .feature-card:nth-child(2) h3,
.bento-business-features .business-feature-card:nth-child(2) h3,
.bento-business-trust article:nth-child(2) h3,
.bento-articles .knowledge-article-card:nth-child(2) h3 {
  font-size: 20px;
}

.bento-features .feature-card:nth-child(2) p,
.bento-business-features .business-feature-card:nth-child(2) p,
.bento-business-trust article:nth-child(2) p,
.bento-articles .knowledge-article-card:nth-child(2) p {
  font-size: 14px;
}

.bento-features .feature-card:nth-child(3) h3,
.bento-features .feature-card:nth-child(4) h3,
.bento-business-features .business-feature-card:nth-child(3) h3,
.bento-business-features .business-feature-card:nth-child(4) h3,
.bento-business-benefits .business-benefit-card:nth-child(n+2) h3,
.bento-business-trust article:nth-child(3) h3,
.bento-business-trust article:nth-child(4) h3,
.bento-articles .knowledge-article-card:nth-child(3) h3,
.bento-articles .knowledge-article-card:nth-child(4) h3,
.bento-guides .knowledge-guide-card:nth-child(n+2) h3 {
  font-size: 15px;
  max-width: 58%;
}

.bento-features .feature-card:nth-child(3) p,
.bento-features .feature-card:nth-child(4) p,
.bento-business-features .business-feature-card:nth-child(3) p,
.bento-business-features .business-feature-card:nth-child(4) p,
.bento-business-benefits .business-benefit-card:nth-child(n+2) p,
.bento-business-trust article:nth-child(3) p,
.bento-business-trust article:nth-child(4) p,
.bento-articles .knowledge-article-card:nth-child(3) p,
.bento-articles .knowledge-article-card:nth-child(4) p,
.bento-guides .knowledge-guide-card:nth-child(n+2) p {
  font-size: 12px;
  max-width: 58%;
}

.bento-features .feature-card:nth-child(3) img,
.bento-features .feature-card:nth-child(4) img,
.bento-business-features .business-feature-card:nth-child(3) img,
.bento-business-features .business-feature-card:nth-child(4) img,
.bento-business-benefits .business-benefit-card:nth-child(n+2) img,
.bento-business-trust article:nth-child(3) img,
.bento-business-trust article:nth-child(4) img,
.bento-articles .knowledge-article-card:nth-child(3) img,
.bento-articles .knowledge-article-card:nth-child(4) img,
.bento-guides .knowledge-guide-card:nth-child(n+2) img {
  max-width: 38%;
  max-height: 52%;
}

.bento-business-trust {
  grid-auto-rows: 150px;
}

.bento-business-trust article {
  display: block;
  grid-template-columns: none;
  min-height: 0;
  border-radius: 18px;
  align-items: stretch;
}

.bento-topics,
.bento-guides,
.bento-more,
.bento-business-benefits {
  grid-auto-rows: 150px;
}

/* Knowledge topics use quick-topic-grid (3×2), not bento-topics layout. */

.bento-guides > *:nth-child(1),
.bento-more > *:nth-child(1),
.bento-business-benefits > *:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.bento-guides > *:nth-child(n+2),
.bento-more > *:nth-child(n+2),
.bento-business-benefits > *:nth-child(n+2) {
  grid-column: span 4;
}

.bento-guides article:nth-child(1) img,
.bento-guides .knowledge-guide-card:nth-child(1) img {
  max-width: 46%;
  max-height: 68%;
  right: 20px;
  bottom: 20px;
}

.bento-guides article:nth-child(1) h3,
.bento-guides .knowledge-guide-card:nth-child(1) h3,
.bento-more article:nth-child(1) {
  font-size: 24px;
}

.bento-more article {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  text-align: left;
  padding: 24px;
}

.bento-more article:nth-child(1) {
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(244, 241, 255, 0.86), rgba(236, 255, 248, 0.72)),
    #fff;
}

.bento-business-benefits .business-benefit-card {
  display: block;
  grid-template-columns: none;
  min-height: 0;
  border-radius: 18px;
  align-items: stretch;
}

@media (max-width: 1180px) {
  .bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .bento-grid > *,
  .bento-features .feature-card:nth-child(n),
  .bento-business-features .business-feature-card:nth-child(n),
  .bento-articles .knowledge-article-card:nth-child(n),
  .bento-business-trust article:nth-child(n),
  .bento-topics > *:nth-child(n),
  .bento-guides > *:nth-child(n),
  .bento-more > *:nth-child(n),
  .bento-business-benefits > *:nth-child(n) {
    grid-column: span 3;
    grid-row: auto;
  }

  .bento-features .feature-card:nth-child(1),
  .bento-business-features .business-feature-card:nth-child(1),
  .bento-articles .knowledge-article-card:nth-child(1),
  .bento-business-trust article:nth-child(1),
  .bento-topics > *:nth-child(1),
  .bento-guides > *:nth-child(1),
  .bento-more > *:nth-child(1),
  .bento-business-benefits > *:nth-child(1) {
    grid-column: span 6;
  }
}

@media (max-width: 920px) {
  .bento-grid {
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-grid > *,
  .bento-features .feature-card:nth-child(n),
  .bento-business-features .business-feature-card:nth-child(n),
  .bento-articles .knowledge-article-card:nth-child(n),
  .bento-business-trust article:nth-child(n),
  .bento-topics > *:nth-child(n),
  .bento-guides > *:nth-child(n),
  .bento-more > *:nth-child(n),
  .bento-business-benefits > *:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-features .feature-card:nth-child(1) img,
  .bento-business-features .business-feature-card:nth-child(1) img,
  .bento-business-benefits .business-benefit-card:nth-child(1) img,
  .bento-business-trust article:nth-child(1) img,
  .bento-articles .knowledge-article-card:nth-child(1) img,
  .bento-guides .knowledge-guide-card:nth-child(1) img {
    max-height: 56%;
  }

  .bento-features .feature-card:nth-child(1) h3,
  .bento-business-features .business-feature-card:nth-child(1) h3,
  .bento-guides .knowledge-guide-card:nth-child(1) h3,
  .bento-guides article:nth-child(1) h3,
  .bento-more article:nth-child(1),
  .bento-business-benefits .business-benefit-card:nth-child(1) h3,
  .bento-business-trust article:nth-child(1) h3,
  .bento-articles .knowledge-article-card:nth-child(1) h3 {
    font-size: 20px;
  }

  .bento-features .feature-card h3,
  .bento-business-features .business-feature-card h3,
  .bento-business-benefits .business-benefit-card h3,
  .bento-business-trust article h3,
  .bento-articles .knowledge-article-card h3,
  .bento-guides .knowledge-guide-card h3 {
    max-width: 62%;
  }

  .bento-features .feature-card p,
  .bento-business-features .business-feature-card p,
  .bento-business-benefits .business-benefit-card p,
  .bento-business-trust article p,
  .bento-articles .knowledge-article-card p,
  .bento-guides .knowledge-guide-card p {
    max-width: 62%;
  }
}

/* Performers landing page */
.performer-hero {
  padding: 40px 0 80px;
}

.performer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.performer-hero-copy {
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.75s ease both;
}

.performer-hero-lead {
  margin-top: -22px;
}

.performer-hero-copy h1 {
  max-width: 610px;
  margin: 12px 0 14px;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.performer-hero-copy h1 span {
  color: var(--green-deep);
}

.performer-hero-lead > p:not(.section-kicker) {
  max-width: 535px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
}

.performer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.performer-hero-actions .btn {
  min-width: 178px;
}

.performer-mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 560px;
}

.performer-mini-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #4b516a;
  font-size: 12px;
  font-weight: 800;
}

.performer-mini-benefit img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.performer-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 490px;
  margin-top: -16px;
  position: relative;
  overflow: visible;
}

/* Сцена: все слои привязаны к обрезанным PNG без прозрачных полей */
.performer-hero-scene {
  position: relative;
  width: min(520px, 100%);
  height: 490px;
  min-height: 490px;
  margin: 0 auto;
}

.performer-hero-layer {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Карта — база по центру сцены */
.performer-hero-layer--platform {
  left: 50%;
  top: 60%;
  z-index: 1;
  width: 96%;
  max-width: 500px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 28px rgba(91, 53, 245, 0.1));
}

/* Телефон — по центру карты */
.performer-hero-layer--phone {
  left: 50%;
  top: 49%;
  z-index: 3;
  width: 22%;
  max-width: 112px;
  min-width: 96px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 32px rgba(28, 31, 64, 0.16));
}

/* Кошелёк — слева на карте */
.performer-hero-layer--wallet {
  left: 5%;
  top: 54%;
  z-index: 4;
  width: 22%;
  max-width: 112px;
  transform: translateY(-45%);
  filter: drop-shadow(0 20px 24px rgba(24, 201, 151, 0.18));
}

/* Пин — правый верхний угол карты */
.performer-hero-layer--pin {
  right: 16%;
  top: 20%;
  z-index: 5;
  width: 11%;
  max-width: 56px;
  filter: drop-shadow(0 18px 22px rgba(91, 53, 245, 0.2));
}

/* Календарь — правый нижний угол карты */
.performer-hero-layer--calendar {
  right: 15%;
  bottom: 19%;
  z-index: 4;
  width: 18%;
  max-width: 92px;
  filter: drop-shadow(0 18px 22px rgba(91, 53, 245, 0.14));
}

.performer-stats-section {
  margin-top: 160px;
  padding-top: 0;
  padding-bottom: 30px;
}

.performer-section {
  padding: 44px 0;
}

.performer-section.compact {
  padding: 28px 0 36px;
}

.performer-feature-card,
.performer-process-card,
.performer-info-card,
.performer-category-grid article,
.performer-review-card,
.performer-faq-card,
.performer-help-card,
.performer-job-card {
  border: 1px solid rgba(108, 77, 255, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(28, 31, 64, 0.055);
}

.performer-feature-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px;
}

.performer-feature-card h3 {
  margin: 0;
  max-width: 62%;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.performer-feature-card p {
  margin: 8px 0 0;
  max-width: 62%;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.performer-feature-card img {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: min(180px, 46%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(91, 53, 245, 0.14));
}

.performer-process-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 22px;
  padding: 18px;
}

.performer-process-card article {
  position: relative;
  min-height: 188px;
  padding: 14px 18px 88px;
}

.performer-process-card article + article {
  border-left: 1px dashed rgba(108, 77, 255, 0.22);
}

.performer-process-card img {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 80px;
  height: 70px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 14px 18px rgba(91, 53, 245, 0.12));
}

.performer-process-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.performer-process-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}

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

.performer-jobs-head h2,
.performer-reviews-head h2 {
  margin: 0;
}

.performer-jobs-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.performer-jobs-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.performer-jobs-scroll::-webkit-scrollbar {
  height: 6px;
}

.performer-jobs-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(108, 77, 255, 0.22);
}

.performer-job-card {
  scroll-snap-align: start;
  min-height: 218px;
}

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

.performer-info-card {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  border-radius: 22px;
  padding: 30px;
}

.performer-info-copy {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.performer-info-card img {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 0;
  width: auto;
  height: auto;
  max-width: 38%;
  max-height: 58%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 22px rgba(91, 53, 245, 0.12));
}

.performer-info-card h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: 800;
}

.performer-info-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.performer-info-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b516a;
  font-size: 14px;
  font-weight: 800;
}

.performer-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.performer-info-card li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.performer-categories-link {
  display: inline-flex;
  margin-top: 10px;
}

.performer-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.performer-category-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 132px;
  border-radius: 20px;
  padding: 18px 12px;
  text-align: center;
}

.performer-category-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.performer-category-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

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

.performer-review-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 12px 14px;
  min-height: 210px;
  border-radius: 22px;
  padding: 22px;
}

.performer-review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  grid-row: span 2;
  align-self: start;
  box-shadow: 0 10px 18px rgba(91, 53, 245, 0.12);
}

.performer-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.performer-review-meta b {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.performer-review-meta span {
  color: #f5b301;
  font-size: 13px;
  letter-spacing: 1px;
}

.performer-review-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.performer-faq-layout {
  --business-side-panel-height: 560px;
  align-items: stretch;
}

.performer-faq-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  box-sizing: border-box;
  height: var(--business-side-panel-height);
  min-height: var(--business-side-panel-height);
  border-radius: 22px;
  padding: 34px;
}

.performer-faq-card h2 {
  margin-bottom: 20px;
}

.performer-help-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  box-sizing: border-box;
  height: var(--business-side-panel-height);
  min-height: var(--business-side-panel-height);
  border-radius: 22px;
  overflow: hidden;
  padding: 34px 28px 24px;
}

.performer-help-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.performer-help-card h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
}

.performer-help-card > .performer-help-body > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.performer-help-card .mini-support-list {
  gap: 16px;
}

.performer-help-card .mini-support-list article {
  border: 0;
  background: transparent;
  padding: 0;
}

.performer-help-card .btn {
  margin-top: 18px;
  align-self: flex-start;
}

.performer-help-ill {
  position: absolute;
  right: -12px;
  bottom: -18px;
  z-index: 1;
  width: min(240px, 52%);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 24px 28px rgba(91, 53, 245, 0.14));
}

.performer-page .jobs-layout {
  margin-top: 22px;
}

.performer-final-cta {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
}

.performer-final-cta img {
  width: 185px;
  transform: translate(-10px, 8px) rotate(-7deg);
}

.performer-feature-card,
.performer-process-card,
.performer-info-card,
.performer-category-grid article,
.performer-review-card,
.performer-faq-card,
.performer-help-card,
.performer-job-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.48s ease, transform 0.48s ease, box-shadow 0.18s ease;
}

.performer-feature-card.is-visible,
.performer-process-card.is-visible,
.performer-info-card.is-visible,
.performer-category-grid article.is-visible,
.performer-review-card.is-visible,
.performer-faq-card.is-visible,
.performer-help-card.is-visible,
.performer-job-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .performer-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .performer-hero-visual {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .performer-hero-scene {
    min-height: 440px;
    height: 440px;
  }

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

  .performer-process-card article:nth-child(4) {
    border-top: 1px dashed rgba(108, 77, 255, 0.22);
    border-left: 0;
  }

  .performer-info-grid,
  .performer-review-grid,
  .performer-faq-layout {
    grid-template-columns: 1fr;
  }

  .performer-faq-card,
  .performer-help-card {
    height: auto;
    min-height: 0;
  }

  .performer-final-cta {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .performer-info-copy {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .performer-mini-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .performer-info-card {
    min-height: 0;
  }

  .performer-info-copy {
    max-width: 100%;
  }

  .performer-info-card img {
    position: static;
    display: block;
    max-width: 108px;
    max-height: none;
    margin: 18px 0 0 auto;
  }
}

@media (max-width: 640px) {
  .performer-mini-benefits,
  .performer-process-card,
  .performer-category-grid,
  .performer-review-grid {
    grid-template-columns: 1fr;
  }

  .performer-process-card article,
  .performer-process-card article + article,
  .performer-process-card article:nth-child(4) {
    border-left: 0;
    border-top: 1px dashed rgba(108, 77, 255, 0.22);
  }

  .performer-process-card article:first-child {
    border-top: 0;
  }

  .performer-jobs-head,
  .performer-reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .performer-final-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .performer-final-cta img {
    width: 150px;
    transform: none;
  }

  .performer-hero-scene {
    min-height: 390px;
    height: 390px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .performer-hero-layer--wallet {
    left: 4%;
    width: 20%;
  }

  .performer-hero-layer--pin {
    width: 10%;
    right: 14%;
    top: 18%;
  }

  .performer-hero-layer--calendar {
    width: 17%;
    right: 13%;
    bottom: 17%;
  }
  }
}
