:root {
  --ink: #111111;
  --text: #222426;
  --muted: #666f7a;
  --line: #dde3e8;
  --paper: #f7f8f6;
  --white: #ffffff;
  --accent: #c9ff35;
  --accent-strong: #a6e600;
  --teal: #0f8f83;
  --blue: #2563eb;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 14px 44px rgba(17, 17, 17, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 248, 246, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--accent);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: #050505;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.16);
}

.brand-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
  transform: translateY(2px);
}

.brand-copy strong,
.footer-brand {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a,
.nav-solutions > summary,
.nav-solutions-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #303336;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-solutions:hover > .nav-solutions-trigger,
.nav-solutions:focus-within > .nav-solutions-trigger {
  background: #f1f5f4;
  color: #303336;
}

.site-nav > a[aria-current="page"],
.nav-solutions[open] > summary {
  background: var(--ink);
  color: var(--white);
}

.nav-solutions {
  position: relative;
}

.nav-solutions::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-solutions > summary {
  list-style: none;
}

.nav-solutions > summary::-webkit-details-marker {
  display: none;
}

.nav-solutions > summary::after,
.nav-solutions-trigger::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.solutions-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 100;
  display: none;
  gap: 4px;
  width: 300px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-solutions:hover > .solutions-panel,
.nav-solutions:focus-within > .solutions-panel,
.nav-solutions[open] > .solutions-panel {
  display: grid;
}

.solutions-panel a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.solutions-panel a:hover,
.solutions-panel a[aria-current="page"] {
  background: #f1f5f4;
}

.solutions-panel a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.solutions-panel strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.solutions-panel a[aria-current="page"] strong,
.solutions-panel a[aria-current="page"] span {
  color: inherit;
}

.solutions-panel span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.header-phone {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: var(--ink);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.button {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button.light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 46px;
  height: 42px;
  padding: 0;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle em {
  font-style: normal;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
}

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: 58px;
}

h1 span {
  display: inline-block;
  padding: 0 12px 7px;
  background: var(--accent);
  border-radius: var(--radius);
  color: var(--ink);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 46px;
}

h3 {
  font-size: 22px;
}

.section {
  padding: 82px 0;
}

.section-lead {
  color: var(--muted);
  font-size: 20px;
}

.hero-section {
  position: relative;
  padding: 28px 0 48px;
  background:
    radial-gradient(circle at 78% 8%, rgba(201, 255, 53, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  grid-template-areas:
    "copy showcase"
    "offer showcase";
  gap: 52px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  padding: 18px 0;
}

.hero-offer {
  grid-area: offer;
  align-self: start;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 14px;
  color: #3b3f42;
  font-size: 21px;
}

.source-strip {
  display: inline-flex;
  align-items: center;
  max-width: 620px;
  margin: 0 0 22px;
  padding: 14px 18px;
  background: #eef7f4;
  border: 1px solid #d3e7df;
  border-radius: var(--radius);
}

.source-strip span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.source-strip strong {
  color: var(--ink);
  font-size: 16px;
}

.nowrap {
  white-space: nowrap;
}

.hero-gift-mobile {
  display: none;
}

.home-hero-offer {
  transform: translateY(-10px);
}

.home-hero-offer .source-strip {
  margin-bottom: 12px;
}

.hero-price {
  display: grid;
  gap: 2px;
  margin-bottom: 20px;
}

.hero-price span {
  color: var(--muted);
  font-weight: 800;
}

.hero-price strong {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.hero-actions,
.placeholder-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-trust span {
  min-height: 86px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.hero-trust strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.hero-showcase {
  grid-area: showcase;
  position: relative;
  min-height: 560px;
  padding: 24px 0 0;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 34px 24px 68px 64px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(201, 255, 53, 0.28), transparent 45%), #111111;
  border-radius: var(--radius);
  filter: blur(0.2px);
}

.site-slider {
  position: relative;
  z-index: 2;
  width: min(590px, 94%);
  margin-left: auto;
  aspect-ratio: 16 / 10;
  background: var(--white);
  border: 12px solid #111111;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.2);
  overflow: hidden;
  animation: floatShop 7s ease-in-out infinite;
}

.site-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.018);
  animation: siteSlide 10.5s infinite;
}

.site-slider img:nth-child(2) {
  animation-delay: 3.5s;
}

.site-slider img:nth-child(3) {
  animation-delay: 7s;
}

.site-slider img:nth-child(4) {
  animation-delay: 10.5s;
}

.sales-float {
  position: relative;
  z-index: 3;
  width: min(500px, 86%);
  margin: -38px 0 0 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(14px);
  animation: floatResult 6.4s ease-in-out infinite;
}

.sales-copy {
  display: block;
  margin-bottom: 12px;
}

.sales-copy span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sales-copy strong {
  color: var(--ink);
  font-size: 14px;
}

.sales-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6.5;
  background: #eef3f0;
  border-radius: var(--radius);
}

.sales-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  transform: scale(1.02);
  animation: salesSlide 10.5s infinite;
}

.sales-slider img:nth-child(2) {
  animation-delay: 3.5s;
}

.sales-slider img:nth-child(3) {
  animation-delay: 7s;
}

.home-entry-hero .hero-grid,
.direct-entry-hero .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  column-gap: 52px;
  row-gap: 14px;
}

.home-entry-hero .hero-lead,
.direct-entry-hero .hero-lead {
  margin-bottom: 0;
}

.direct-entry-hero .compact-price strong {
  font-size: 44px;
}

.direct-entry-hero .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(44px, 4.2vw, 54px);
}

.direct-entry-hero .hero-lead {
  font-size: 20px;
}

.direct-entry-hero .compact-price {
  margin: 6px 0 8px;
}

.direct-entry-hero .service-note {
  margin-bottom: 10px;
}

.direct-hero-offer .source-strip {
  margin-bottom: 12px;
}

.internet-store-hero .hero-price {
  margin-bottom: 8px;
}

@media (min-width: 1121px) {
  .internet-store-hero .home-hero-offer {
    transform: translateY(-24px);
  }
}

.home-entry-hero .hero-showcase::before,
.direct-entry-hero .hero-showcase::before {
  display: none;
}

.home-entry-hero .site-slider,
.direct-entry-hero .site-slider {
  box-shadow: 0 28px 72px rgba(17, 17, 17, 0.14);
}

.home-entry-hero .site-slider img,
.direct-entry-hero .site-slider img {
  animation: homeSiteSlide 17.5s infinite;
}

.home-entry-hero .site-slider img[src*="site-buhcons"],
.direct-entry-hero .site-slider img[src*="site-buhcons"] {
  object-position: top left;
}

.home-entry-hero .site-slider img:nth-child(2),
.direct-entry-hero .site-slider img:nth-child(2) {
  animation-delay: 3.5s;
}

.home-entry-hero .site-slider img:nth-child(3),
.direct-entry-hero .site-slider img:nth-child(3) {
  animation-delay: 7s;
}

.home-entry-hero .site-slider img:nth-child(4),
.direct-entry-hero .site-slider img:nth-child(4) {
  animation-delay: 10.5s;
}

.home-entry-hero .site-slider img:nth-child(5),
.direct-entry-hero .site-slider img:nth-child(5) {
  animation-delay: 14s;
}

.home-entry-hero .site-slider img:nth-child(6),
.direct-entry-hero .site-slider img:nth-child(6) {
  animation-delay: 17.5s;
}

.home-entry-hero .site-slider img:nth-child(7),
.direct-entry-hero .site-slider img:nth-child(7) {
  animation-delay: 21s;
}

.home-entry-hero .sales-float,
.direct-entry-hero .sales-float {
  width: min(450px, 82%);
  margin: -30px 0 0 58px;
  padding: 10px;
}

.home-entry-hero .sales-copy,
.direct-entry-hero .sales-copy {
  display: none;
}

.home-entry-hero .sales-slider,
.direct-entry-hero .sales-slider {
  aspect-ratio: 16 / 7.2;
  background: var(--white);
}

.home-entry-hero .sales-slider img,
.direct-entry-hero .sales-slider img {
  object-position: center;
  animation: homeMetricSlide 14s infinite;
}

.home-entry-hero .sales-slider img:nth-child(2),
.direct-entry-hero .sales-slider img:nth-child(2) {
  animation-delay: 3.5s;
}

.home-entry-hero .sales-slider img:nth-child(3),
.direct-entry-hero .sales-slider img:nth-child(3) {
  animation-delay: 7s;
}

.home-entry-hero .sales-slider img:nth-child(4),
.direct-entry-hero .sales-slider img:nth-child(4) {
  animation-delay: 10.5s;
}

@keyframes homeSiteSlide {
  0%,
  16% {
    opacity: 1;
    transform: scale(1);
  }

  20%,
  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

@keyframes homeMetricSlide {
  0%,
  21% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@media (max-width: 1120px) {
  .home-entry-hero .hero-grid,
  .direct-entry-hero .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .home-entry-hero .sales-float,
  .direct-entry-hero .sales-float {
    width: calc(100% - 20px);
    margin: -18px auto 0;
    padding: 8px;
  }

  .home-entry-hero .sales-slider,
  .direct-entry-hero .sales-slider {
    aspect-ratio: 16 / 8;
  }
}

.approach-section {
  background: var(--white);
}

.approach-wrap {
  display: grid;
  gap: 28px;
}

.approach-head {
  max-width: 980px;
}

.approach-head h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #050505;
}

.approach-head mark {
  position: relative;
  display: inline-block;
  padding: 0 0 7px;
  background: transparent;
  color: #050505;
}

.approach-head mark::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(166, 230, 0, 0.82), 0 0 22px rgba(201, 255, 53, 0.5);
}

.approach-head p:last-child {
  max-width: 1030px;
  margin: 0;
  color: #3e4652;
  font-size: 21px;
  line-height: 1.38;
}

.approach-steps {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.approach-card {
  position: relative;
  min-height: 338px;
  padding: 24px 28px 28px;
  background: var(--white);
  border: 1px solid #d8e9df;
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(17, 17, 17, 0.09);
  overflow: hidden;
}

.approach-card-top {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.approach-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: #eefad9;
  border-radius: var(--radius);
  color: #050505;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.approach-line {
  position: relative;
  height: 1px;
  background: var(--accent);
}

.approach-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--accent-strong);
  border-radius: 50%;
  transform: translateY(-50%);
}

.approach-card-body {
  position: relative;
  display: block;
}

.approach-card-body > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.approach-card h3 {
  max-width: none;
  margin-bottom: 30px;
  color: #050505;
  font-size: clamp(30px, 2.15vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.approach-card ul {
  display: grid;
  gap: 17px;
  max-width: 342px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-card:first-of-type ul {
  max-width: 392px;
}

.approach-card:first-of-type li {
  white-space: nowrap;
}

.approach-card:nth-of-type(2) ul {
  max-width: 250px;
}

.approach-card li {
  position: relative;
  min-height: 26px;
  padding-left: 38px;
  color: #101318;
  font-size: 17px;
  line-height: 1.28;
}

.approach-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #ecf9cf;
  border-radius: 50%;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
}

.approach-visual {
  position: absolute;
  right: -10px;
  bottom: 0;
  z-index: 1;
  width: 174px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius);
  pointer-events: none;
}

.approach-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(17, 17, 17, 0.1));
  mask-image: radial-gradient(circle at 52% 52%, #000 66%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at 52% 52%, #000 66%, transparent 86%);
}

.approach-visual-chart {
  right: -10px;
  bottom: 0;
  width: 174px;
  height: 120px;
}

.approach-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cde6dc;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.approach-result-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--accent-strong);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  transform: translate(3px, -5px);
}

.approach-result p {
  margin: 0;
  color: #3e4652;
  font-size: 20px;
  line-height: 1.35;
}

.approach-result strong {
  color: #202631;
}

.approach-result .button {
  min-width: 184px;
  min-height: 46px;
}

@media (max-width: 920px) {
  .approach-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .approach-card-body {
    display: block;
  }

  .approach-result {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .approach-result .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .approach-head mark {
    padding-bottom: 6px;
  }

  .approach-head p:last-child {
    font-size: 17px;
  }

  .approach-card {
    min-height: 0;
    padding: 18px;
  }

  .approach-card-top {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }

  .approach-number {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .approach-card-body {
    grid-template-columns: 1fr;
  }

  .approach-card h3 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .approach-card li {
    font-size: 16px;
    white-space: normal;
  }

  .approach-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 142px;
    margin-top: 16px;
  }

  .approach-visual img {
    object-fit: contain;
    transform: none;
  }

  .approach-result {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .approach-result p {
    font-size: 17px;
  }
}

.future-features-section {
  background: var(--paper);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.future-features-head {
  margin-bottom: 34px;
}

.future-features-head h2 {
  margin-bottom: 0;
}

.future-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.future-feature-card {
  position: relative;
  min-height: 260px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid #d8e5df;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.future-feature-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  border-radius: 0 0 999px 999px;
}

.future-feature-card h3 {
  min-height: 50px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.future-feature-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.future-feature-card li {
  position: relative;
  padding-left: 28px;
  color: #30363b;
  font-size: 16px;
  line-height: 1.35;
}

.future-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  background: #ecf9cf;
  border-radius: 50%;
  color: #050505;
  font-size: 11px;
  font-weight: 900;
}

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

  .future-feature-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .future-features-head {
    margin-bottom: 26px;
  }

  .future-features-grid {
    grid-template-columns: 1fr;
  }

  .future-feature-card {
    padding: 22px 20px;
  }

  .future-feature-card::before {
    left: 20px;
    right: 20px;
  }

  .future-feature-card h3 {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 22px;
  }
}

.intro-grid,
.platform-grid,
.pricing-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.audience-list span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 250, 246, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.35), transparent 38%);
  border: 1px solid #d4e7df;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.05);
}

.process-section,
.pricing-section,
.tariffs-section {
  background: var(--white);
}

.included-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 255, 53, 0.24), transparent 26%),
    radial-gradient(circle at 86% 34%, rgba(15, 143, 131, 0.28), transparent 30%),
    linear-gradient(145deg, #0c0f0e 0%, #121614 48%, #080908 100%);
  color: var(--white);
}

.included-section h2 {
  color: var(--white);
}

.included-section .eyebrow {
  color: var(--accent);
}

.included-primer {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 24px;
}

.included-primer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 255, 53, 0.72) 18%, rgba(119, 230, 209, 0.54) 50%, rgba(201, 255, 53, 0.72) 82%, transparent 100%);
  box-shadow: 0 0 18px rgba(201, 255, 53, 0.18);
}

.included-primer-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 22px 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.14), transparent 30%),
    #151a16;
  border: 1px solid rgba(201, 255, 53, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 58px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.included-primer-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -56px;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: rgba(201, 255, 53, 0.08);
}

.included-primer-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 255, 53, 0.1);
  border: 1px solid rgba(201, 255, 53, 0.3);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 900;
}

.included-primer-card div {
  position: relative;
  z-index: 2;
}

.included-primer-card h3 {
  margin: 0 0 8px;
  color: var(--white);
}

.included-primer-card p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.section-head.compact h2 {
  max-width: 860px;
}

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

.included-item {
  position: relative;
  min-height: 252px;
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.18), transparent 36%),
    #171c19;
  border: 1px solid rgba(201, 255, 53, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.included-item:nth-of-type(1),
.included-item:nth-of-type(2),
.included-item:nth-of-type(7),
.included-item:nth-of-type(8) {
  grid-column: span 2;
}

.included-item::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 255, 53, 0.08);
}

.included-item:nth-of-type(1),
.included-item:nth-of-type(7) {
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 17, 17, 0.12), transparent 34%),
    linear-gradient(135deg, var(--accent), #efffc7);
  border-color: rgba(201, 255, 53, 0.85);
  color: var(--ink);
}

.included-item:nth-of-type(3),
.included-item:nth-of-type(6) {
  background:
    linear-gradient(150deg, rgba(15, 143, 131, 0.9), rgba(16, 64, 58, 0.96)),
    #0f4d46;
  border-color: rgba(119, 230, 209, 0.34);
}

.included-item:nth-of-type(8) {
  background: #151a16;
  border-color: rgba(201, 255, 53, 0.24);
}

.included-item:nth-of-type(7),
.included-item:nth-of-type(8) {
  margin-top: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.16);
}

.included-item:nth-of-type(7)::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 5px;
  background: var(--accent);
}

.included-item span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  background: rgba(201, 255, 53, 0.1);
  border: 1px solid rgba(201, 255, 53, 0.26);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 900;
}

.included-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--white);
}

.included-item p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.included-item:nth-of-type(1) span,
.included-item:nth-of-type(1) h3,
.included-item:nth-of-type(1) p,
.included-item:nth-of-type(7) span,
.included-item:nth-of-type(7) h3,
.included-item:nth-of-type(7) p {
  color: var(--ink);
}

.included-item:nth-of-type(1) span,
.included-item:nth-of-type(7) span {
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.14);
}

.included-showcase {
  padding: 74px 0;
  background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
  color: var(--text);
}

.included-showcase .included-shell {
  position: relative;
  width: min(1280px, calc(100% - 80px));
  max-width: none;
  padding: 56px 52px 58px;
  background:
    radial-gradient(circle at 96% 12%, rgba(201, 255, 53, 0.28), transparent 18%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.98) 78%, rgba(241, 255, 213, 0.88) 100%);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.11);
}

.included-showcase .included-head {
  margin-bottom: 42px;
}

.included-showcase .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #58b200;
  font-size: 14px;
  letter-spacing: 0;
}

.included-showcase .eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 32px;
  height: 4px;
  background: #58b200;
  border-radius: 999px;
}

.included-showcase h2 {
  max-width: 1060px;
  margin: 0;
  color: #1d232a;
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: 0;
}

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

.included-showcase .included-item,
.included-showcase .included-item:nth-of-type(1),
.included-showcase .included-item:nth-of-type(2),
.included-showcase .included-item:nth-of-type(3),
.included-showcase .included-item:nth-of-type(6),
.included-showcase .included-item:nth-of-type(7),
.included-showcase .included-item:nth-of-type(8) {
  grid-column: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  align-self: start;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.included-showcase .included-item::before,
.included-showcase .included-item:nth-of-type(7)::before {
  content: none;
  display: none;
}

.included-showcase .included-item::after {
  display: none;
}

.included-showcase .included-item:hover,
.included-showcase .included-item.is-open {
  transform: translateY(-2px);
  border-color: rgba(126, 211, 33, 0.5);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

.included-showcase .included-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(150px, 1fr) 38px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 138px;
  padding: 24px 24px 24px 22px;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.included-showcase .included-toggle:focus-visible {
  outline: 3px solid rgba(126, 211, 33, 0.34);
  outline-offset: -6px;
}

.included-showcase .included-item .included-symbol {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(126, 211, 33, 0.16), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(126, 211, 33, 0.38);
  border-radius: 14px;
  color: #20262d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.included-showcase .included-symbol svg {
  width: 40px;
  height: 40px;
  overflow: visible;
}

.included-showcase .included-symbol .icon-base {
  fill: #20262d;
}

.included-showcase .included-symbol .icon-accent {
  fill: #58b200;
}

.included-showcase .included-symbol .icon-cutout {
  fill: #ffffff;
}

.included-showcase .included-item .included-title {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #20262d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
  text-transform: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.included-showcase .included-item .included-plus {
  position: relative;
  display: block;
  justify-self: end;
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin: 0;
  padding: 0;
  background: rgba(126, 211, 33, 0.1);
  border: 1px solid rgba(126, 211, 33, 0.3);
  border-radius: 50%;
  color: #58b200;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.included-showcase .included-plus::before,
.included-showcase .included-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.included-showcase .included-plus::after {
  width: 2px;
  height: 14px;
}

.included-showcase .included-item:hover .included-plus,
.included-showcase .included-item.is-open .included-plus {
  background: rgba(126, 211, 33, 0.16);
  border-color: rgba(126, 211, 33, 0.52);
  transform: scale(1.04);
}

.included-showcase .included-description {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: -8px 24px 24px 100px;
  padding-top: 14px;
  border-top: 1px solid rgba(126, 211, 33, 0.22);
  color: #5d666d;
  font-size: 15px;
  line-height: 1.5;
}

.tariffs-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 255, 53, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.tariffs-head {
  max-width: none;
}

.tariffs-head .eyebrow,
.tariffs-head h2 {
  margin-bottom: 0;
}

.tariffs-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.tariffs-title-row h2 {
  max-width: 760px;
}

.tariffs-discount {
  flex: 0 0 auto;
  padding: 11px 16px;
  background: #c9ff35;
  border: 1px solid rgba(15, 143, 131, 0.18);
  border-radius: 999px;
  color: #101410;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(126, 211, 33, 0.2);
}

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

.tariff-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tariff-card.is-featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.28), transparent 34%),
    #111111;
  border-color: rgba(201, 255, 53, 0.42);
  color: var(--white);
  box-shadow: 0 28px 72px rgba(17, 17, 17, 0.18);
}

.tariff-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 131, 0.28);
  box-shadow: var(--shadow-soft);
}

.tariff-label {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-card.is-featured .tariff-label {
  color: var(--accent);
}

.tariff-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.tariff-card strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.tariff-price span {
  color: rgba(44, 52, 58, 0.42);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.tariff-card.is-featured strong,
.tariff-card.is-featured p,
.tariff-card.is-featured dt,
.tariff-card.is-featured dd {
  color: var(--white);
}

.tariff-card.is-featured .tariff-price span {
  color: rgba(255, 255, 255, 0.48);
}

.tariff-card p {
  min-height: 54px;
  margin: 0;
  color: var(--muted);
}

.tariff-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.tariff-card.is-featured dl {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.tariff-card dl div {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.tariff-card.is-featured dl div {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.tariff-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.tariff-highlight {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 6px;
}

.tariff-highlight::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 255, 53, 0.28) 16%,
    rgba(201, 255, 53, 0.96) 50%,
    rgba(201, 255, 53, 0.28) 84%,
    transparent 100%
  );
}

.tariff-card .button {
  align-self: end;
  width: 100%;
}

.tariff-addons {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tariff-addons h3,
.tariff-addons p {
  margin: 0;
}

.tariff-addons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-addons li {
  padding: 9px 12px;
  background: #eef7f4;
  border: 1px solid #d3e7df;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
}

.tariff-addons p {
  grid-column: 2;
  color: var(--muted);
}

.quiz-section {
  background:
    radial-gradient(circle at 2% 18%, rgba(201, 255, 53, 0.2), transparent 24%),
    radial-gradient(circle at 96% 92%, rgba(201, 255, 53, 0.18), transparent 26%),
    linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.quiz-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: stretch;
  min-height: 650px;
  padding: 34px;
  background:
    radial-gradient(circle at 84% 90%, rgba(201, 255, 53, 0.2), transparent 24%),
    linear-gradient(130deg, #111111 0%, #151814 52%, #070807 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quiz-card::before,
.quiz-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(201, 255, 53, 0.44);
  border-radius: 50%;
}

.quiz-card::before {
  left: -120px;
  bottom: -250px;
  width: 640px;
  height: 380px;
  transform: rotate(-8deg);
}

.quiz-card::after {
  left: 210px;
  bottom: -320px;
  width: 620px;
  height: 420px;
  transform: rotate(-20deg);
}

.quiz-copy,
.quiz-form {
  position: relative;
  z-index: 1;
}

.quiz-copy {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0;
}

.quiz-copy h2 {
  color: var(--white);
  font-size: 48px;
}

.quiz-copy .eyebrow {
  color: var(--accent);
}

.gift-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.gift-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.gift-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(201, 255, 53, 0.1);
  border: 1px solid rgba(201, 255, 53, 0.36);
  border-radius: 50%;
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(201, 255, 53, 0.28);
}

.gift-card strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.18;
}

.gift-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.quiz-form {
  display: grid;
  grid-template-rows: auto minmax(var(--quiz-step-min-height, 0px), auto) auto auto;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid #e7ebef;
  border-radius: var(--radius);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.22);
}

.quiz-progress {
  display: grid;
  gap: 12px;
}

.quiz-counter {
  color: #697383;
  font-size: 15px;
  font-weight: 900;
}

.quiz-progress-line {
  height: 10px;
  overflow: hidden;
  background: #ecf0ed;
  border-radius: 999px;
}

.quiz-progress-line i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--accent-strong);
  border-radius: inherit;
  transition: width 260ms ease;
}

.quiz-step {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: var(--quiz-step-min-height, 0px);
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step[hidden] {
  display: none;
}

.quiz-step legend {
  margin-bottom: 12px;
  padding: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
}

.quiz-step label {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #dfe5ea;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quiz-step label:hover,
.quiz-step label:has(input:checked) {
  background: #f8ffe7;
  border-color: var(--accent-strong);
  box-shadow: 0 10px 26px rgba(166, 230, 0, 0.12);
}

.quiz-form input[type="radio"],
.quiz-form input[type="checkbox"] {
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  appearance: none;
  background: var(--white);
  border: 1.5px solid #6f7780;
  border-radius: 50%;
}

.quiz-form input[type="checkbox"] {
  border-radius: 50%;
}

.quiz-form input[type="radio"]::before,
.quiz-form input[type="checkbox"]::before {
  content: "";
  transform: scale(0);
  transition: transform 140ms ease;
}

.quiz-form input[type="radio"]::before {
  width: 10px;
  height: 10px;
  background: var(--accent-strong);
  border-radius: 50%;
}

.quiz-form input[type="checkbox"]::before {
  width: 10px;
  height: 10px;
  background: var(--accent-strong);
  border-radius: 50%;
}

.quiz-form input[type="radio"]:checked,
.quiz-form input[type="checkbox"]:checked {
  border-color: var(--accent-strong);
}

.quiz-form input[type="checkbox"]:checked {
  background: var(--white);
}

.quiz-form input[type="radio"]:checked::before {
  transform: scale(1);
}

.quiz-form input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.quiz-contact {
  gap: 12px;
}

.quiz-contact legend {
  margin-bottom: 18px;
}

.quiz-contact-note {
  max-width: 420px;
  margin: -2px 0 4px;
  color: #697383;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.quiz-contact input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #dfe5ea;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.quiz-contact input:focus {
  outline: 3px solid rgba(201, 255, 53, 0.42);
  border-color: var(--accent-strong);
}

.quiz-error {
  min-height: 22px;
  margin: 0;
  color: #b42318;
  font-weight: 800;
}

.quiz-error.is-success {
  color: var(--teal);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.quiz-actions .button {
  min-width: 170px;
  min-height: 58px;
  border-radius: var(--radius);
}

.quiz-next::after {
  content: "→";
  margin-left: 16px;
  font-size: 20px;
  line-height: 1;
}

.quiz-prev[hidden],
.quiz-next[hidden],
.quiz-submit[hidden] {
  display: none !important;
}

.home-pricing-section {
  background: var(--paper);
}

.home-pricing-head {
  margin-bottom: 28px;
}

.home-pricing-head h2 {
  margin-bottom: 0;
}

@media (min-width: 821px) {
  .home-pricing-head h2 {
    max-width: none;
    white-space: nowrap;
  }
}

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

.home-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.home-pricing-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8f9f7;
}

.home-pricing-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.home-pricing-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 18px;
  align-items: center;
  padding: 22px 26px 28px;
}

.home-pricing-card h3 {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.1;
}

.home-pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}

.home-pricing-price span {
  color: #a6a8ad;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1;
}

.home-pricing-price strong {
  color: var(--ink);
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.home-pricing-order {
  min-width: 118px;
  min-height: 48px;
  padding: 0 20px;
}

.home-pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(201, 255, 53, 0.17), transparent 28%),
    var(--ink);
  border-radius: var(--radius);
}

.home-pricing-note-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.home-pricing-note p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.home-pricing-note .button {
  min-width: 184px;
}

.problems-section {
  background:
    linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

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

.problem-card,
.platform-card,
.price-list article,
.case-card,
.page-status,
.placeholder-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(201, 255, 53, 0.2);
}

.problem-card > * {
  position: relative;
  z-index: 1;
}

.problem-card:nth-child(2),
.problem-card:nth-child(5) {
  background: #f0faf6;
  border-color: #cfe8de;
}

.problem-card:nth-child(3) {
  background: var(--ink);
  border-color: var(--ink);
}

.problem-card:nth-child(3) h3,
.problem-card:nth-child(3) p,
.problem-card:nth-child(3) .problem-index {
  color: var(--white);
}

.problem-index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.problem-card p {
  color: var(--muted);
}

.process-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 255, 53, 0.18), transparent 28%),
    var(--white);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.process-head h2,
.process-head .section-lead {
  margin-bottom: 0;
}

.process-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  grid-column: span 3;
  min-height: 212px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.process-card:nth-child(2),
.process-card:nth-child(6) {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.3), transparent 36%),
    #effaf6;
  border-color: #cfe8de;
}

.process-card:nth-child(7) {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.24), transparent 34%),
    var(--ink);
  border-color: var(--ink);
}

.process-card:nth-child(7) h3,
.process-card:nth-child(7) p,
.process-card:nth-child(7) .process-number {
  color: var(--white);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(201, 255, 53, 0.18);
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 34px;
}

.process-number,
.process-icon {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--accent);
}

.process-icon {
  min-width: 48px;
  height: 34px;
  padding: 0 10px;
  background: rgba(15, 143, 131, 0.1);
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.process-section-compact .process-card {
  min-height: 178px;
  padding: 20px;
}

.process-section-compact .process-card-top {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.process-section-compact .process-number {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.process-section-compact .process-card-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.process-section-compact .process-card p {
  font-size: 16px;
  line-height: 1.4;
}

.platform-section {
  background: #111111;
  color: var(--white);
}

.platform-section h2,
.platform-section .section-lead {
  color: var(--white);
}

.platform-section .eyebrow {
  color: var(--accent);
}

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

.platform-card {
  min-height: 184px;
  padding: 22px;
  background: #1c1d1f;
  border-color: rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.platform-card:hover {
  background: #25272a;
  transform: translateY(-2px);
  border-color: rgba(201, 255, 53, 0.35);
}

.platform-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.platform-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}

.case-card div {
  padding: 20px;
}

.case-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card p {
  color: var(--muted);
}

.cases-preview {
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 255, 53, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.cases-head h2 {
  max-width: 920px;
}

.real-case-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.real-case-card {
  grid-column: span 2;
  min-height: 100%;
}

.real-case-card:nth-child(4),
.real-case-card:nth-child(5) {
  grid-column: span 3;
}

.real-case-card .case-slider,
.real-case-card .case-slides {
  padding: 0;
}

.real-case-card img {
  display: block;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
  background: #eef2ef;
}

.case-slider {
  position: relative;
  overflow: hidden;
  background: #eef2ef;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}

.case-slider .case-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-slider img {
  width: 100%;
  border-bottom: 0;
}

.case-slider img[hidden] {
  display: none;
}

.case-slider-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(12px);
}

.real-case-card .case-slider-controls {
  padding: 5px;
}

.case-slider-controls button {
  min-height: 32px;
  padding: 0 12px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.case-slider-controls button.is-active {
  background: var(--ink);
  color: var(--white);
}

.real-case-card .case-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.real-case-card h3 {
  min-height: 2.08em;
  margin-bottom: 10px;
}

.real-case-card .case-card-body > p {
  min-height: 4.5em;
  margin-bottom: 0;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.case-tags li {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  background: #eef7f4;
  border: 1px solid #d3e7df;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.cases-preview .case-image-tag {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  margin: 0;
}

.cases-preview .case-image-tag li {
  padding: 7px 10px;
  background: rgba(17, 17, 17, 0.78);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(8px);
}

.case-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.case-link::after {
  content: " ->";
}

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

.price-list article {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-list span {
  color: var(--muted);
  font-weight: 800;
}

.price-list strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
}

.price-list p {
  margin: 0;
  color: var(--muted);
}

.included-primer-card:hover,
.included-item:hover,
.problem-card:hover,
.process-card:hover,
.case-card:hover,
.price-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 131, 0.28);
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .animate-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 520ms ease,
      transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .animate-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes imageSettle {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatShop {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(0.3deg);
  }
}

@keyframes floatResult {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.35deg);
  }
  50% {
    transform: translate3d(0, 10px, 0) rotate(-0.25deg);
  }
}

@keyframes siteSlide {
  0%,
  21% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  25%,
  95% {
    opacity: 0;
    transform: scale(1.018) translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes salesSlide {
  0%,
  28% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  33%,
  93% {
    opacity: 0;
    transform: scale(1.02) translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.final-cta {
  padding: 78px 0;
  background: var(--teal);
  color: var(--white);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 710px;
  margin-bottom: 0;
  font-size: 20px;
}

.final-cta .eyebrow {
  color: var(--accent);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.62);
  backdrop-filter: blur(10px);
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.18), transparent 34%),
    var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.34);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-close:hover {
  background: var(--ink);
  color: var(--white);
}

.lead-modal-dialog h2 {
  max-width: 420px;
  margin: 0 0 22px;
  font-size: 38px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 143, 131, 0.12);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.lead-form-alternative {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin-top: 2px;
  text-align: center;
}

.lead-form-alternative span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form-alternative strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.lead-form-alternative a {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.lead-form-alternative a:hover,
.lead-form-alternative a:focus-visible {
  color: var(--teal);
}

.lead-form-status {
  min-height: 22px;
  margin: 0;
  color: #b42318;
  font-weight: 800;
}

.lead-form-status.is-success {
  color: var(--teal);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .lead-modal:not([hidden]) .lead-modal-backdrop {
    animation: modalFade 180ms ease both;
  }

  .lead-modal:not([hidden]) .lead-modal-dialog {
    animation: modalIn 220ms cubic-bezier(0.2, 0.85, 0.24, 1) both;
  }
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-hero {
  padding: 78px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: 56px;
}

.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
}

.page-status {
  padding: 24px;
}

.page-status span {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
}

.page-status strong {
  display: block;
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.page-status p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.placeholder-section {
  padding: 80px 0;
}

.placeholder-box {
  padding: 34px;
}

.placeholder-box p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.service-hero {
  padding: 42px 0 58px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: start;
}

.service-hero .hero-copy {
  grid-area: auto;
  padding: 0;
}

.service-hero .hero-copy h1 {
  max-width: 760px;
}

.compact-price {
  margin: 22px 0 14px;
}

.compact-price strong {
  font-size: clamp(38px, 5vw, 58px);
}

.service-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.service-hero-panel {
  position: relative;
  min-height: 500px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 255, 53, 0.95), rgba(239, 255, 199, 0.92) 44%, rgba(255, 255, 255, 0.94)),
    var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-hero-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  pointer-events: none;
}

.launch-map {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  height: 100%;
}

.launch-map article,
.direct-flow span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.launch-map article {
  display: grid;
  align-content: center;
  min-height: 206px;
  padding: 26px;
}

.launch-map article:nth-child(2) {
  background: #111111;
  color: var(--white);
}

.launch-map span,
.product-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

.launch-map article:nth-child(2) span,
.launch-map article:nth-child(2) p {
  color: var(--accent);
}

.launch-map h2,
.launch-map p {
  margin: 0;
}

.launch-map p {
  margin-top: 10px;
  color: var(--muted);
}

.direct-panel {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #111111, #17201a 58%, #243216),
    #111111;
}

.direct-panel::before {
  border-color: rgba(201, 255, 53, 0.2);
}

.direct-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(420px, 100%);
}

.direct-flow span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.direct-flow span:nth-child(2),
.direct-flow span:nth-child(3) {
  margin-left: 48px;
}

.direct-flow span:last-child {
  background: var(--accent);
  color: var(--ink);
}

.product-section {
  background: var(--white);
}

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

.product-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.06);
}

.product-card.is-dark {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.26), transparent 34%),
    var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-card.is-dark h3 {
  color: var(--white);
}

.product-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-card.is-dark p,
.product-card.is-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.product-card.is-dark .product-number {
  color: var(--accent);
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 800;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: var(--accent-strong);
  border-radius: 50%;
}

.product-card .button {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
}

.section-note {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.service-feature-grid .problem-card {
  min-height: 236px;
}

.process-board-six .process-card {
  grid-column: span 4;
}

.home-case-grid .real-case-card {
  grid-column: span 3;
}

.direct-case-grid .real-case-card {
  grid-column: span 2;
}

.tariff-note {
  grid-template-columns: 1fr;
}

.tariff-note p {
  grid-column: auto;
  max-width: 980px;
  font-weight: 800;
}

.addons-section {
  padding-top: 0;
  background: linear-gradient(180deg, #f7f8f6 0%, #ffffff 100%);
}

.addons-section .tariff-addons {
  grid-template-columns: 1fr;
  gap: 18px;
}

.addons-section .tariff-addons h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
}

.addons-section .tariff-addons p {
  grid-column: auto;
  max-width: 760px;
}

.addons-section .tariff-addons ul {
  align-self: start;
}

.blog-hero {
  padding: 46px 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 32px;
  align-items: center;
}

.blog-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(36px, 4.6vw, 52px);
}

.blog-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.blog-hero-note {
  padding: 18px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-hero-note span,
.blog-card-meta,
.article-meta,
.article-back {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-note strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.blog-hero-note p {
  color: var(--muted);
  font-size: 15px;
}

.blog-section {
  padding: 52px 0 86px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 104px;
}

.blog-sidebar h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.blog-categories {
  display: grid;
  gap: 8px;
}

.blog-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
}

.blog-categories a:hover,
.blog-categories a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.blog-categories em {
  color: inherit;
  font-style: normal;
  opacity: 0.72;
}

.blog-feed {
  min-width: 0;
}

.blog-feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-feed-head h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.blog-cards {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  border-color: rgba(15, 143, 131, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.blog-card-image {
  min-height: 220px;
  background: #e9eee9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-card h3 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.12;
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.blog-card-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.blog-empty {
  padding: 34px;
  background: var(--white);
  border: 1px dashed #c8d5d2;
  border-radius: var(--radius);
}

.blog-empty p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.article-hero {
  padding: 42px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.article-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
}

.article-hero h1 {
  max-width: 760px;
  margin: 12px 0;
  font-size: clamp(34px, 4.6vw, 52px);
}

.article-hero-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.article-cover {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e9eee9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.article-shell {
  padding: 54px 0 88px;
}

.article-content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 38px 0 14px;
  line-height: 1.14;
}

.article-content h2 {
  font-size: 34px;
}

.article-content h3 {
  font-size: 26px;
}

.article-content p,
.article-content li,
.article-content blockquote {
  color: #30363a;
  font-size: 19px;
  line-height: 1.78;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin: 0 0 22px;
}

.article-content a {
  color: var(--teal);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-content blockquote {
  padding: 18px 22px;
  background: #f2f7f5;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(920px, 100%);
  margin: 62px auto 0;
  padding: 28px;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
}

.article-cta h2 {
  max-width: 640px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 34px;
}

.article-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.site-footer {
  background: #080808;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  gap: 36px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.footer-brand {
  color: var(--white);
}

.footer-about {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.footer-about .footer-brand {
  margin-right: 3px;
}

.footer-top p,
.footer-map a,
.footer-contacts a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-map a:hover,
.footer-contacts a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contacts {
  display: grid;
  align-content: start;
  gap: 10px;
  font-weight: 800;
}

.footer-mail {
  justify-self: start;
  padding: 10px 12px;
  background: rgba(201, 255, 53, 0.1);
  border: 1px solid rgba(201, 255, 53, 0.24);
  border-radius: 999px;
  color: var(--accent) !important;
}

.footer-mail:hover {
  background: rgba(201, 255, 53, 0.16);
  border-color: rgba(201, 255, 53, 0.42);
  color: var(--accent) !important;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 8px;
  }

  .site-nav > a,
  .nav-solutions > summary,
  .nav-solutions-trigger {
    justify-content: space-between;
    width: 100%;
    border-radius: var(--radius);
  }

  .nav-solutions {
    width: 100%;
  }

  .nav-solutions::after {
    display: none;
  }

  .solutions-panel {
    position: static;
    width: 100%;
    gap: 8px;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-solutions:hover > .solutions-panel,
  .nav-solutions:focus-within > .solutions-panel {
    display: none;
  }

  .nav-solutions.is-open > .solutions-panel,
  .nav-solutions[open] > .solutions-panel {
    display: grid;
  }

  .solutions-panel a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    background: #f1f5f4;
    border-radius: var(--radius);
  }

  .solutions-panel strong {
    font-size: 14px;
    line-height: 1.1;
  }

  .solutions-panel span {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .platform-grid,
  .pricing-grid,
  .tariffs-head,
  .tariff-grid,
  .tariff-addons,
  .page-hero-grid,
  .quiz-card,
  .process-head,
  .final-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "showcase"
      "offer";
    gap: 30px;
  }

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

  .process-head {
    gap: 16px;
  }

  .cases-head {
    grid-template-columns: 1fr;
  }

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

  .real-case-card,
  .real-case-card:nth-child(4),
  .real-case-card:nth-child(5) {
    grid-column: auto;
  }

  .tariff-addons p {
    grid-column: auto;
  }

  .process-card,
  .process-card:nth-child(-n + 3) {
    grid-column: span 6;
  }

  .process-card:nth-child(7) {
    grid-column: 1 / -1;
  }

  .final-grid {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding: 0 16px;
    gap: 10px;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .brand-copy small,
  .menu-toggle em,
  .header-cta {
    display: none;
  }

  .site-nav {
    inset: 68px 16px auto 16px;
  }

  .section,
  .placeholder-section {
    padding: 58px 0;
  }

  .hero-section {
    padding: 22px 0 44px;
  }

  h1 {
    font-size: 46px;
  }

  h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-lead,
  .section-lead,
  .page-hero p,
  .final-cta p {
    font-size: 18px;
  }

  .source-strip {
    display: flex;
  }

  .hero-gift-mobile {
    display: flex;
  }

  .hero-gift-desktop {
    display: none;
  }

  .home-hero-offer {
    transform: none;
  }

  .hero-gift-mobile {
    width: 100%;
    padding: 12px 14px;
  }

  .hero-gift-mobile strong {
    white-space: nowrap;
    font-size: 14px;
  }

  .included-grid,
  .problem-grid,
  .platform-map,
  .case-grid,
  .footer-map {
    grid-template-columns: 1fr;
  }

  .real-case-card .case-card-body {
    flex: 0 0 auto;
  }

  .real-case-card h3,
  .real-case-card .case-card-body > p {
    min-height: 0;
  }

  .case-tags {
    margin-top: 14px;
    margin-bottom: 12px;
  }

  .case-link {
    margin-top: 0;
  }

  .included-item:nth-of-type(1),
  .included-item:nth-of-type(2),
  .included-item:nth-of-type(7),
  .included-item:nth-of-type(8) {
    grid-column: auto;
  }

  .included-item:nth-of-type(7),
  .included-item:nth-of-type(8) {
    margin-top: 0;
  }

  .included-primer {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .included-primer-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }

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

  .hero-showcase {
    min-height: 0;
    padding-top: 8px;
  }

  .hero-showcase::before {
    inset: 28px 0 42px 34px;
  }

  .site-slider {
    width: 100%;
    border-width: 8px;
  }

  .sales-float {
    width: calc(100% - 20px);
    margin: -22px auto 0;
    padding: 12px;
  }

  .sales-copy {
    display: grid;
    gap: 4px;
  }

  .sales-slider {
    aspect-ratio: 16 / 8;
  }

  .quiz-card,
  .quiz-form {
    padding: 20px;
  }

  .quiz-card {
    gap: 24px;
    min-height: 0;
  }

  .quiz-copy h2 {
    font-size: 36px;
  }

  .gift-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 96px;
  }

  .gift-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .gift-card strong {
    font-size: 18px;
  }

  .quiz-form {
    min-height: 0;
  }

  .lead-modal {
    padding: 14px;
  }

  .lead-modal-dialog {
    padding: 24px;
  }

  .lead-modal-dialog h2 {
    font-size: 32px;
  }

  .quiz-step legend {
    font-size: 24px;
  }

  .quiz-contact legend {
    font-size: 23px;
  }

  .quiz-contact-note {
    max-width: none;
    font-size: 14px;
  }

  .quiz-contact input {
    min-height: 54px;
  }

  .quiz-step {
    min-height: 0;
  }

  .tariffs-title-row {
    align-items: flex-start;
  }

  .tariffs-discount {
    flex-basis: auto;
  }

  .tariff-card strong {
    font-size: 34px;
  }

  .tariff-price span {
    font-size: 18px;
  }

  .home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-pricing-card {
    min-height: 0;
  }

  .home-pricing-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-pricing-note-icon {
    width: 52px;
    height: 52px;
  }

  .home-pricing-note .button {
    width: 100%;
  }

  .process-board {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(-n + 3),
  .process-card:nth-child(7) {
    grid-column: auto;
    min-height: 0;
  }

  .process-section-compact .process-card {
    min-height: 0;
  }

  .price-list strong {
    font-size: 28px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .quiz-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-actions .button {
    width: 100%;
    min-width: 0;
  }

  .quiz-next,
  .quiz-submit {
    order: 1;
  }

  .quiz-prev {
    order: 2;
  }

  .home-pricing-card {
    padding: 0;
  }

  .home-pricing-copy {
    padding: 20px;
  }

  .home-pricing-note {
    padding: 20px;
  }

  .home-pricing-note p {
    font-size: 17px;
  }

  .container,
  .footer-top,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .brand-logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .menu-toggle em {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .page-hero h1 {
    font-size: 31px;
  }

  .hero-price strong {
    font-size: 38px;
  }

  .direct-entry-hero .compact-price strong {
    font-size: 38px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

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

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list span {
    min-height: 68px;
  }
}


/* Single-page launch: compact header and footer without section navigation. */
.site-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

@media (min-width: 821px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.footer-bottom {
  justify-content: flex-start;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 24px;
  }

  .footer-about {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-about .footer-brand {
    font-size: 21px;
  }

  .footer-contacts {
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-contacts a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-contacts a:first-child {
    color: var(--white);
    font-size: 18px;
  }

  .footer-contacts .footer-mail {
    justify-self: stretch;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.68) !important;
  }

  .footer-contacts .footer-mail:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white) !important;
  }

  .footer-bottom {
    padding: 16px 0 24px;
  }
}

@media (max-width: 520px) {
  .site-header .header-cta {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}



/* FAQ on the main landing page */
.faq-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-intro h2 {
  margin: 10px 0 16px;
  max-width: 420px;
}

.faq-intro .section-lead {
  max-width: 410px;
  margin: 0;
}

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

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

.faq-item.is-open {
  border-color: rgba(20, 145, 135, 0.42);
  box-shadow: 0 12px 28px rgba(14, 23, 25, 0.06);
}

.faq-trigger {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 82px;
  padding: 18px 18px 18px 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-trigger:hover {
  background: #f8fbfa;
}

.faq-trigger:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: -4px;
}

.faq-number {
  align-self: start;
  padding-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.faq-question {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.23;
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.faq-toggle::before {
  content: "+";
  transform: translateY(-1px);
}

.faq-item.is-open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::before {
  content: "−";
}

.faq-answer {
  padding: 0 66px 24px 74px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

@media (max-width: 820px) {
  .faq-section {
    padding: 64px 0 68px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    margin-bottom: 12px;
  }

  .faq-trigger {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 72px;
    padding: 17px 16px;
  }

  .faq-answer {
    padding: 0 16px 20px 56px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .faq-section {
    padding: 52px 0 56px;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-item {
    border-radius: 15px;
  }

  .faq-trigger {
    grid-template-columns: 26px minmax(0, 1fr) 28px;
    gap: 9px;
    min-height: 0;
    padding: 17px 14px;
  }

  .faq-number {
    padding-top: 2px;
    font-size: 11px;
  }

  .faq-question {
    font-size: 17px;
    line-height: 1.28;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 14px 18px 49px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.55;
  }
}


/* Catalog parsing service page */
.catalog-hero {
  overflow: hidden;
}

.catalog-hero .hero-copy {
  align-self: end;
}

.catalog-hero .hero-lead {
  margin-bottom: 0;
}

.catalog-showcase {
  display: flex;
  align-items: center;
}

.catalog-showcase::before {
  inset: 38px 18px 62px 66px;
  background:
    radial-gradient(circle at 36% 14%, rgba(201, 255, 53, 0.25), transparent 36%),
    linear-gradient(145deg, #111111 0%, #10231f 58%, #080908 100%);
}

.catalog-sheet-wrap {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  margin-left: auto;
  padding: 38px 0 72px;
}

.catalog-sheet {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: var(--white);
  border: 12px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  animation: floatShop 7s ease-in-out infinite;
}

.catalog-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(201, 255, 53, 0.18) 46%, transparent 62%);
  transform: translateX(-120%);
  animation: sheetSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.sheet-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px 10px;
}

.sheet-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfe5e1;
}

.sheet-toolbar span:first-child {
  background: #ff6868;
}

.sheet-toolbar span:nth-child(2) {
  background: #ffcb45;
}

.sheet-toolbar span:nth-child(3) {
  background: var(--accent);
}

.sheet-toolbar strong {
  margin-left: 8px;
  color: var(--ink);
  font-size: 13px;
}

.sheet-toolbar em {
  margin-left: auto;
  padding: 5px 8px;
  background: #effaf6;
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.sheet-grid {
  --sheet-col-1: 16.505%;
  --sheet-col-2: 30.097%;
  --sheet-col-4: 17.476%;
  --sheet-col-5: 15.534%;
  --sheet-left-1: 0%;
  --sheet-left-2: 16.505%;
  --sheet-left-4: 66.99%;
  --sheet-left-5: 84.466%;
  --sheet-head-height: 40px;
  --sheet-row-height: 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid #dce6df;
  border-radius: var(--radius);
}

.sheet-row {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr 1.05fr 0.9fr 0.8fr;
}

.sheet-row span {
  min-width: 0;
  min-height: 44px;
  padding: 12px 10px;
  overflow: hidden;
  border-right: 1px solid #e5ece8;
  border-bottom: 1px solid #e5ece8;
  color: #35403b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-row span:last-child {
  border-right: 0;
}

.sheet-row:last-child span {
  border-bottom: 0;
}

.sheet-head span {
  min-height: 40px;
  background: var(--ink);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.sheet-row.is-live span {
  background: #effaf6;
  animation: sheetLive 2.7s ease-in-out infinite;
}

.sheet-cursor {
  position: absolute;
  left: var(--sheet-left-1);
  top: var(--sheet-head-height);
  z-index: 3;
  width: var(--sheet-col-1);
  height: var(--sheet-row-height);
  border: 2px solid var(--teal);
  border-radius: 5px;
  box-shadow: 0 0 0 4px rgba(15, 143, 131, 0.14);
  animation: sheetCursor 5.8s steps(1, end) infinite;
  pointer-events: none;
}

.sheet-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sheet-summary div {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: #f5faf7;
  border: 1px solid #dcebe3;
  border-radius: var(--radius);
}

.sheet-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-summary strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
}

.sheet-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: floatResult 6.2s ease-in-out infinite;
}

.sheet-badge-left {
  left: 0;
  bottom: 22px;
}

.sheet-badge-right {
  right: 8px;
  top: 14px;
  animation-delay: -1.4s;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.fit-board {
  display: grid;
  gap: 14px;
}

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

.fit-card {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 246, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.34), transparent 38%);
  border: 1px solid #d4e7df;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.05);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.fit-divider {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 143, 131, 0.55) 18%, rgba(201, 255, 53, 0.76) 50%, rgba(15, 143, 131, 0.55) 82%, transparent 100%);
}

.fit-wide {
  justify-items: start;
  min-height: 72px;
  text-align: left;
}

.seo-fit {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(201, 255, 53, 0.22), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(15, 143, 131, 0.26), transparent 28%),
    linear-gradient(145deg, #0b0d0c 0%, #121812 58%, #07110f 100%);
}

.seo-fit::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 255, 53, 0.14);
  border-radius: calc(var(--radius) + 10px);
  pointer-events: none;
}

.seo-fit .fit-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.seo-fit .fit-intro {
  display: grid;
  gap: 18px;
}

.seo-fit .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(201, 255, 53, 0.12);
  border: 1px solid rgba(201, 255, 53, 0.26);
  border-radius: 999px;
  color: var(--accent);
}

.seo-fit h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--white);
}

.seo-fit .fit-intro p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.seo-fit .fit-board {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.seo-fit .fit-card {
  position: relative;
  place-items: stretch;
  min-height: 112px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 242, 0.92));
  border-color: rgba(201, 255, 53, 0.26);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.seo-fit .fit-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 999px;
}

.seo-fit .fit-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.seo-fit .fit-divider {
  height: 2px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 143, 131, 0.7) 20%, var(--accent) 50%, rgba(15, 143, 131, 0.7) 80%, transparent 100%);
}

.seo-fit .fit-wide {
  min-height: 92px;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
}

.seo-fit .fit-wide small {
  margin-bottom: 0;
}

.catalog-fit:not(.seo-fit),
.intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(201, 255, 53, 0.22), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(15, 143, 131, 0.26), transparent 28%),
    linear-gradient(145deg, #0b0d0c 0%, #121812 58%, #07110f 100%);
}

.catalog-fit:not(.seo-fit)::before,
.intro-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 255, 53, 0.14);
  border-radius: calc(var(--radius) + 10px);
  pointer-events: none;
}

.catalog-fit:not(.seo-fit) .fit-grid,
.intro-section .intro-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.catalog-fit:not(.seo-fit) .fit-grid > div:first-child,
.intro-section .intro-grid > div:first-child {
  display: grid;
  gap: 18px;
}

.catalog-fit:not(.seo-fit) .eyebrow,
.intro-section .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  background: rgba(201, 255, 53, 0.12);
  border: 1px solid rgba(201, 255, 53, 0.26);
  border-radius: 999px;
  color: var(--accent);
}

.catalog-fit:not(.seo-fit) h2,
.intro-section h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--white);
}

.catalog-fit:not(.seo-fit) .fit-board,
.intro-section .intro-grid > div:last-child {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.catalog-fit:not(.seo-fit) .fit-card,
.intro-section .audience-list span {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: start;
  min-height: 112px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 242, 0.92));
  border-color: rgba(201, 255, 53, 0.26);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

.catalog-fit:not(.seo-fit) .fit-card::after,
.intro-section .audience-list span::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 999px;
}

.catalog-fit:not(.seo-fit) .fit-divider {
  height: 2px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 143, 131, 0.7) 20%, var(--accent) 50%, rgba(15, 143, 131, 0.7) 80%, transparent 100%);
}

.catalog-fit:not(.seo-fit) .fit-wide {
  min-height: 92px;
  align-content: center;
}

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

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

.task-card {
  position: relative;
  grid-column: span 4;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.16), transparent 36%),
    #171c19;
  border: 1px solid rgba(201, 255, 53, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.task-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 255, 53, 0.08);
}

.task-card > * {
  position: relative;
  z-index: 1;
}

.task-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  background: rgba(201, 255, 53, 0.1);
  border: 1px solid rgba(201, 255, 53, 0.26);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 900;
}

.task-card h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.task-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.task-card-full {
  grid-column: 1 / -1;
  min-height: 218px;
}

.task-card-full p {
  max-width: 840px;
}

.task-separator {
  position: relative;
  grid-column: 1 / -1;
  min-height: 48px;
}

.task-separator::before,
.task-separator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.task-separator::before {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 143, 131, 0.5) 18%, rgba(201, 255, 53, 0.9) 50%, rgba(15, 143, 131, 0.5) 82%, transparent 100%);
}

.task-separator::after {
  width: 92px;
  height: 10px;
  background: linear-gradient(90deg, rgba(15, 143, 131, 0.1), rgba(201, 255, 53, 0.82), rgba(15, 143, 131, 0.1));
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(201, 255, 53, 0.28);
}

.task-card:nth-of-type(1),
.task-card:nth-of-type(5) {
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 17, 17, 0.12), transparent 34%),
    linear-gradient(135deg, var(--accent), #efffc7);
  border-color: rgba(201, 255, 53, 0.85);
}

.task-card:nth-of-type(1) span,
.task-card:nth-of-type(1) h3,
.task-card:nth-of-type(1) p,
.task-card:nth-of-type(5) span,
.task-card:nth-of-type(5) h3,
.task-card:nth-of-type(5) p {
  color: var(--ink);
}

.task-card:nth-of-type(1) span,
.task-card:nth-of-type(5) span {
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.14);
}

.task-card:nth-of-type(3),
.task-card:nth-of-type(7) {
  background:
    linear-gradient(150deg, rgba(15, 143, 131, 0.9), rgba(16, 64, 58, 0.96)),
    #0f4d46;
  border-color: rgba(119, 230, 209, 0.34);
}

.task-card-wide {
  grid-column: span 6;
}

.task-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 131, 0.36);
  box-shadow: var(--shadow-soft);
}

.catalog-process-board .process-card,
.catalog-process-board .process-card:nth-child(-n + 3) {
  grid-column: span 3;
}

.catalog-process-board .process-card:nth-child(4) {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.24), transparent 34%),
    var(--ink);
  border-color: var(--ink);
}

.catalog-process-board .process-card:nth-child(4) h3,
.catalog-process-board .process-card:nth-child(4) p,
.catalog-process-board .process-card:nth-child(4) .process-number {
  color: var(--white);
}

.quiz-copy .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes sheetSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  76%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes sheetLive {
  0%,
  100% {
    background: #effaf6;
  }
  50% {
    background: #e3f8ee;
  }
}

@keyframes sheetCursor {
  0%,
  24% {
    left: var(--sheet-left-1);
    top: var(--sheet-head-height);
    width: var(--sheet-col-1);
  }
  25%,
  49% {
    left: var(--sheet-left-2);
    top: calc(var(--sheet-head-height) + var(--sheet-row-height));
    width: var(--sheet-col-2);
  }
  50%,
  74% {
    left: var(--sheet-left-4);
    top: calc(var(--sheet-head-height) + var(--sheet-row-height) + var(--sheet-row-height));
    width: var(--sheet-col-4);
  }
  75%,
  100% {
    left: var(--sheet-left-5);
    top: calc(var(--sheet-head-height) + var(--sheet-row-height) + var(--sheet-row-height) + var(--sheet-row-height));
    width: var(--sheet-col-5);
  }
}

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

  .task-card,
  .task-card-wide {
    grid-column: span 6;
  }

  .task-card-full,
  .task-separator {
    grid-column: 1 / -1;
  }

  .catalog-process-board .process-card,
  .catalog-process-board .process-card:nth-child(-n + 3) {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .catalog-showcase {
    min-height: 0;
  }

  .catalog-showcase::before {
    inset: 26px 0 34px 28px;
  }

  .catalog-sheet-wrap {
    padding: 20px 0 52px;
  }

  .catalog-sheet {
    border-width: 8px;
  }

  .sheet-grid {
    --sheet-col-1: 17.094%;
    --sheet-col-2: 28.846%;
    --sheet-col-4: 17.521%;
    --sheet-col-5: 16.239%;
    --sheet-left-1: 0%;
    --sheet-left-2: 17.094%;
    --sheet-left-4: 66.239%;
    --sheet-left-5: 83.761%;
    --sheet-head-height: 40px;
    --sheet-row-height: 40px;
  }

  .sheet-row {
    grid-template-columns: 0.8fr 1.35fr 0.95fr 0.82fr 0.76fr;
  }

  .sheet-row span {
    min-height: 40px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .fit-pair-grid,
  .sheet-summary,
  .task-grid {
    grid-template-columns: 1fr;
  }

  .task-card,
  .task-card-wide,
  .catalog-process-board .process-card,
  .catalog-process-board .process-card:nth-child(-n + 3) {
    grid-column: auto;
    min-height: 0;
  }

  .sheet-badge {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .catalog-hero .hero-lead {
    font-size: 17px;
  }

  .catalog-sheet-wrap {
    padding-bottom: 42px;
  }

  .catalog-showcase::before {
    inset: 18px 0 28px 18px;
  }

  .sheet-toolbar strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sheet-row {
    grid-template-columns: 0.72fr 1.35fr 0.76fr 0.7fr 0.64fr;
  }

  .sheet-row span {
    min-height: 36px;
    padding: 9px 6px;
    font-size: 10px;
  }

  .sheet-grid {
    --sheet-col-1: 17.266%;
    --sheet-col-2: 32.374%;
    --sheet-col-4: 16.787%;
    --sheet-col-5: 15.348%;
    --sheet-left-1: 0%;
    --sheet-left-2: 17.266%;
    --sheet-left-4: 67.866%;
    --sheet-left-5: 84.652%;
    --sheet-head-height: 36px;
    --sheet-row-height: 36px;
    font-size: 11px;
  }

  .sheet-summary div {
    padding: 10px;
  }

  .sheet-badge-left {
    left: 8px;
    bottom: 8px;
  }

  .sheet-badge-right {
    right: 8px;
    top: 4px;
  }

  .fit-card {
    min-height: 68px;
    font-size: 16px;
  }

  .seo-fit::before {
    inset: 12px;
  }

  .seo-fit .fit-board {
    padding: 14px;
  }

  .seo-fit .fit-card {
    min-height: 92px;
    padding: 18px;
  }

  .seo-fit .fit-wide {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .catalog-fit:not(.seo-fit)::before,
  .intro-section::before {
    inset: 12px;
  }

  .catalog-fit:not(.seo-fit) .fit-board,
  .intro-section .intro-grid > div:last-child {
    padding: 14px;
  }

  .catalog-fit:not(.seo-fit) .fit-card,
  .intro-section .audience-list span {
    min-height: 92px;
    padding: 18px;
  }
}

/* Navigation for service pages */
.site-header.has-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  justify-content: stretch;
}

.site-header.has-nav .site-nav {
  gap: 2px;
  min-width: 0;
  justify-self: center;
}

.site-header.has-nav .site-nav > a,
.site-header.has-nav .nav-solutions > summary,
.site-header.has-nav .nav-solutions-trigger {
  padding: 0 10px;
  font-size: 13px;
  white-space: nowrap;
}

.site-header.has-nav .header-actions {
  margin-left: 0;
}

@media (max-width: 1180px) and (min-width: 1121px) {
  .site-header.has-nav {
    gap: 12px;
    padding-inline: 20px;
  }

  .site-header.has-nav .site-nav > a,
  .site-header.has-nav .nav-solutions > summary,
  .site-header.has-nav .nav-solutions-trigger {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }
}

@media (max-width: 1120px) {
  .site-header.has-nav {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-header.has-nav .site-nav {
    justify-self: stretch;
  }

  .site-header.has-nav .menu-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .site-header.has-nav .header-actions {
    grid-column: 4;
  }
}

@media (max-width: 820px) {
  .site-header.has-nav {
    grid-template-columns: auto 1fr auto;
    padding-inline: 16px;
  }

  .site-header.has-nav .menu-toggle {
    grid-column: 3;
  }

  .site-header.has-nav .header-actions {
    display: none;
  }
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .blog-layout,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

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

  .article-cover {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .blog-hero {
    padding: 38px 0 32px;
  }

  .blog-section {
    padding: 42px 0 62px;
  }

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

  .blog-card-image {
    min-height: 210px;
  }

  .article-hero {
    padding: 32px 0;
  }

  .article-shell {
    padding: 40px 0 64px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-content h3 {
    font-size: 23px;
  }

  .article-content p,
  .article-content li,
  .article-content blockquote {
    font-size: 17px;
    line-height: 1.68;
  }

  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .article-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .blog-categories {
    grid-template-columns: 1fr;
  }

  .blog-feed-head {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-card-body,
  .blog-empty,
  .article-cta {
    padding: 22px;
  }

  .blog-card h3 {
    font-size: 23px;
  }

  .article-cta h2 {
    font-size: 27px;
  }
}

/* SEO page */
.seo-hero .hero-copy {
  align-self: end;
}

.seo-showcase {
  display: flex;
  align-items: center;
}

.seo-showcase::before {
  inset: 34px 16px 58px 60px;
  background:
    radial-gradient(circle at 26% 18%, rgba(201, 255, 53, 0.24), transparent 36%),
    linear-gradient(145deg, #111111 0%, #0f2b27 56%, #070908 100%);
}

.seo-serp {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  margin-left: auto;
  padding: 38px 0 72px;
}

.serp-browser {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: var(--white);
  border: 12px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  animation: floatShop 7s ease-in-out infinite;
}

.serp-browser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(201, 255, 53, 0.16) 46%, transparent 62%);
  transform: translateX(-120%);
  animation: serpSweep 6.2s ease-in-out infinite;
  pointer-events: none;
}

.serp-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px 10px;
}

.serp-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfe5e1;
}

.serp-toolbar span:first-child {
  background: #ff6868;
}

.serp-toolbar span:nth-child(2) {
  background: #ffcb45;
}

.serp-toolbar span:nth-child(3) {
  background: var(--accent);
}

.serp-toolbar strong {
  margin-left: 8px;
  color: var(--ink);
  font-size: 13px;
}

.serp-toolbar em {
  margin-left: auto;
  padding: 5px 8px;
  background: #effaf6;
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.serp-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  margin-bottom: 12px;
  padding: 0 18px;
  overflow: hidden;
  background: #f5faf7;
  border: 1px solid #dcebe3;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
}

.serp-search::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px var(--teal);
}

.serp-search span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.serp-search i {
  width: 2px;
  height: 24px;
  background: var(--teal);
  animation: serpCaret 1s steps(1, end) infinite;
}

.serp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.serp-tabs span {
  padding: 8px 12px;
  background: #f4f7f5;
  border: 1px solid #e1e9e5;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.serp-tabs .is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--accent);
}

.serp-results {
  display: grid;
  gap: 10px;
}

.serp-card {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e0e8e4;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.serp-card h3 {
  margin: 0;
  color: #1a45a5;
  font-size: 17px;
  line-height: 1.24;
}

.serp-card p {
  margin: 0;
  color: #4e5b64;
  font-size: 13px;
}

.serp-label {
  width: fit-content;
  padding: 4px 8px;
  background: #f1f5f4;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.serp-card-client {
  border: 2px solid var(--accent);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.36), transparent 42%),
    #fbfff1;
  box-shadow: 0 18px 46px rgba(117, 170, 0, 0.22);
  animation: serpPulse 2.8s ease-in-out infinite;
}

.serp-card-client .serp-label {
  background: var(--ink);
  color: var(--accent);
}

.serp-card-client::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(201, 255, 53, 0.5);
  border-radius: calc(var(--radius) + 7px);
  pointer-events: none;
}

.serp-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: floatResult 6.2s ease-in-out infinite;
}

.serp-badge-left {
  left: 0;
  bottom: 22px;
}

.serp-badge-right {
  right: 8px;
  top: 14px;
  animation-delay: -1.4s;
}

.seo-problems {
  background: var(--white);
}

.seo-problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-problem-card {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 246, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.26), transparent 38%);
  border: 1px solid #d4e7df;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.05);
}

.seo-problem-card.is-open {
  border-color: rgba(15, 143, 131, 0.38);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.seo-problem-card .faq-trigger {
  min-height: 112px;
  padding: 22px;
}

.seo-problem-card .faq-answer {
  padding: 0 22px 22px 78px;
}

.seo-problem-card .faq-answer p {
  max-width: none;
}

.seo-work .section-head h2 {
  max-width: 960px;
}

.seo-work-grid .task-card:nth-of-type(5) {
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 17, 17, 0.12), transparent 34%),
    linear-gradient(135deg, var(--accent), #efffc7);
  border-color: rgba(201, 255, 53, 0.85);
}

@keyframes serpSweep {
  0%,
  48% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes serpCaret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes serpPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 46px rgba(117, 170, 0, 0.2);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(117, 170, 0, 0.3);
  }
}

@media (max-width: 1120px) {
  .seo-problem-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .seo-showcase {
    min-height: 0;
  }

  .seo-showcase::before {
    inset: 26px 0 34px 28px;
  }

  .seo-serp {
    padding: 20px 0 52px;
  }

  .serp-browser {
    border-width: 8px;
  }

  .serp-search {
    min-height: 50px;
    padding: 0 14px;
    font-size: 13px;
  }

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

  .serp-badge {
    font-size: 12px;
  }

  .seo-problem-card .faq-trigger {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .seo-serp {
    padding-bottom: 42px;
  }

  .seo-showcase::before {
    inset: 18px 0 28px 18px;
  }

  .serp-toolbar strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .serp-tabs {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .serp-card {
    padding: 14px;
  }

  .serp-badge-left {
    left: 8px;
    bottom: 8px;
  }

  .serp-badge-right {
    right: 8px;
    top: 4px;
  }

  .seo-problem-card .faq-answer {
    padding: 0 18px 20px;
  }
}

/* White background for the "Кому подходит" sections on the homepage and catalogue parsing page. */
.intro-section,
.catalog-fit:not(.seo-fit) {
  background: var(--white);
}

.intro-section::before,
.catalog-fit:not(.seo-fit)::before {
  border-color: rgba(15, 143, 131, 0.16);
}

.intro-section h2,
.catalog-fit:not(.seo-fit) h2 {
  color: var(--ink);
}

.intro-section .eyebrow,
.catalog-fit:not(.seo-fit) .eyebrow {
  background: #f1f7f4;
  border-color: #d4e7df;
  color: var(--teal);
}

.intro-section .intro-grid > div:last-child,
.catalog-fit:not(.seo-fit) .fit-board {
  background: #f5f9f7;
  border-color: #d4e7df;
  box-shadow: 0 20px 52px rgba(17, 17, 17, 0.07);
  backdrop-filter: none;
}


@media (max-width: 1080px) {
  .included-showcase .included-shell {
    width: min(980px, calc(100% - 40px));
    padding: 42px 36px;
  }

  .included-showcase h2 {
    font-size: 44px;
  }

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

  .included-showcase .included-toggle {
    grid-template-columns: 60px minmax(0, 1fr) 64px;
  }
}

@media (max-width: 820px) {
  .included-showcase {
    padding: 56px 0;
  }

  .included-showcase .included-shell {
    width: min(680px, calc(100% - 28px));
    padding: 30px 22px;
    border-radius: 18px;
  }

  .included-showcase .included-head {
    margin-bottom: 28px;
  }

  .included-showcase h2 {
    font-size: 36px;
    line-height: 1.16;
  }

  .included-showcase .included-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-showcase .included-toggle {
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    gap: 14px;
    min-height: 116px;
    padding: 20px 18px;
  }

  .included-showcase .included-item .included-symbol {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .included-showcase .included-symbol svg {
    width: 36px;
    height: 36px;
  }

  .included-showcase .included-item .included-plus {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .included-showcase .included-description {
    margin: -2px 18px 22px 90px;
  }
}

@media (max-width: 520px) {
  .intro-section .intro-grid > div:first-child {
    padding-inline: 10px;
  }

  .included-showcase .included-shell {
    width: calc(100% - 28px);
    padding: 24px 14px;
    border-radius: 16px;
  }

  .included-showcase .eyebrow {
    gap: 12px;
    font-size: 12px;
  }

  .included-showcase .eyebrow::before {
    width: 26px;
    height: 3px;
  }

  .included-showcase h2 {
    font-size: 30px;
  }

  .included-showcase .included-toggle {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    gap: 12px;
    min-height: 108px;
    padding: 18px 14px;
  }

  .included-showcase .included-item .included-symbol {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
  }

  .included-showcase .included-symbol svg {
    width: 32px;
    height: 32px;
  }

  .included-showcase .included-item .included-title {
    font-size: 16px;
  }

  .included-showcase .included-item .included-plus {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .included-showcase .included-description {
    margin: -2px 14px 20px 74px;
    font-size: 14px;
  }
}

/* Sellers landing page */
.sellers-header .header-phone {
  display: inline-flex;
}

.brand-mobile-phone {
  display: none;
}

.sellers-showcase {
  display: grid;
  place-items: center;
  min-height: 570px;
  padding-top: 30px;
  isolation: isolate;
}

.sellers-showcase::before {
  inset: 30px 18px 58px 48px;
  background:
    radial-gradient(circle at 24% 24%, rgba(201, 255, 53, 0.24), transparent 31%),
    radial-gradient(circle at 78% 74%, rgba(37, 99, 235, 0.2), transparent 28%),
    linear-gradient(145deg, #111111 0%, #171d1a 58%, #0c0e0d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 90px rgba(17, 17, 17, 0.16);
}

.commerce-scene {
  position: relative;
  z-index: 2;
  width: min(560px, 94%);
  min-height: 472px;
  animation: sellersSceneFloat 7s ease-in-out infinite;
}

.commerce-window {
  position: relative;
  width: min(500px, 92%);
  margin-left: auto;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 247, 0.98)),
    var(--white);
  border: 10px solid #111111;
  border-radius: var(--radius);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
  transform: rotate(-1deg);
}

.commerce-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(201, 255, 53, 0.24) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: sellersWindowSweep 4.6s ease-in-out infinite;
}

.commerce-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.commerce-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfe6e3;
}

.commerce-topbar span:nth-child(1) {
  background: #ff5f57;
}

.commerce-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.commerce-topbar span:nth-child(3) {
  background: #28c840;
}

.commerce-search {
  position: relative;
  height: 46px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #eef4f1;
  border: 1px solid #d8e5df;
  border-radius: 999px;
}

.commerce-search::before,
.commerce-search::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.commerce-search::before {
  left: 18px;
  width: 56%;
  height: 10px;
  background: #c8d8d0;
  border-radius: 999px;
}

.commerce-search::after {
  right: 8px;
  width: 74px;
  height: 30px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(201, 255, 53, 0.38);
  animation: sellersSearchPulse 2.8s ease-in-out infinite;
}

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

.commerce-grid span {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 12px;
  background: var(--white);
  border: 1px solid #dce7e2;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  animation: sellersProductLift 5.4s ease-in-out infinite;
}

.commerce-grid span:nth-child(2) {
  animation-delay: -1.2s;
}

.commerce-grid span:nth-child(3) {
  animation-delay: -2.4s;
}

.commerce-grid span:nth-child(4) {
  animation-delay: -3.6s;
}

.commerce-grid i {
  min-height: 54px;
  background:
    linear-gradient(135deg, rgba(201, 255, 53, 0.58), rgba(15, 143, 131, 0.22)),
    #edf5f1;
  border-radius: var(--radius);
}

.commerce-grid b,
.commerce-grid em {
  position: relative;
  z-index: 1;
  font-style: normal;
  line-height: 1.1;
}

.commerce-grid b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.commerce-grid em {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.commerce-cart {
  position: absolute;
  left: 4px;
  top: 242px;
  z-index: 5;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(262px, 66%);
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(14px);
  animation: sellersCartPop 4.8s ease-in-out infinite;
}

.commerce-cart span {
  position: relative;
  width: 44px;
  height: 44px;
  background: #111111;
  border-radius: 50%;
}

.commerce-cart span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 18px;
  height: 14px;
  border: 3px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.commerce-cart span::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 10px;
  height: 8px;
  border: 3px solid var(--accent);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.commerce-cart strong,
.commerce-cart small {
  display: block;
}

.commerce-cart strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.commerce-cart small {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.order-stream {
  position: absolute;
  inset: 78px 72px 98px 54px;
  z-index: 1;
  pointer-events: none;
}

.order-stream span {
  position: absolute;
  left: 0;
  top: 48%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), #ffffff 70%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 30px rgba(201, 255, 53, 0.2);
  opacity: 0;
  animation: sellersOrderFlow 4.8s linear infinite;
}

.order-stream span:nth-child(2) {
  top: 24%;
  animation-delay: 1.6s;
}

.order-stream span:nth-child(3) {
  top: 68%;
  animation-delay: 3.2s;
}

.market-orbit {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.market-badge {
  position: absolute;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  padding: 14px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.22);
  animation: sellersBadgeFloat 5.8s ease-in-out infinite;
}

.market-badge-ozon {
  top: 26px;
  right: 0;
  background: #005bff;
  color: #ffffff;
}

.market-badge-wb {
  left: 0;
  bottom: 82px;
  width: 132px;
  height: 132px;
  background: linear-gradient(135deg, #cb11ab, #5f2eea);
  color: #ffffff;
  animation-delay: -1.8s;
}

.market-badge-ym {
  right: 8px;
  bottom: 30px;
  width: 126px;
  height: 126px;
  background:
    radial-gradient(circle at 30% 30%, #ffd426 0 22%, transparent 23%),
    radial-gradient(circle at 70% 70%, #fc3f1d 0 18%, transparent 19%),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: #111111;
  font-size: 14px;
  animation-delay: -3s;
}

@keyframes sellersSceneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.25deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.25deg);
  }
}

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

@keyframes sellersSearchPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 255, 53, 0.38);
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 255, 53, 0);
    transform: translateY(-50%) scale(1.04);
  }
}

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

@keyframes sellersCartPop {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  42% {
    transform: translate3d(8px, -8px, 0) scale(1.03);
  }
}

@keyframes sellersOrderFlow {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.68);
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translate3d(245px, -8px, 0) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate3d(340px, -18px, 0) scale(0.58);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .commerce-scene,
  .commerce-window::after,
  .commerce-search::after,
  .commerce-grid span,
  .commerce-cart,
  .order-stream span,
  .market-badge {
    animation: none;
  }
}

@media (max-width: 820px) {
  .sellers-header {
    min-height: 0;
    padding-block: 10px;
    flex-wrap: wrap;
  }

  .sellers-header .header-actions {
    gap: 10px;
  }

  .sellers-header .header-phone {
    font-size: 13px;
  }

  .sellers-showcase {
    min-height: 468px;
    padding-top: 8px;
  }

  .sellers-showcase::before {
    inset: 22px 0 38px 24px;
  }

  .commerce-scene {
    width: 100%;
    min-height: 410px;
  }

  .commerce-window {
    width: 88%;
    padding: 14px;
    border-width: 8px;
  }

  .commerce-grid span {
    min-height: 108px;
  }

  .commerce-cart {
    top: 224px;
    width: min(242px, 72%);
  }

  .market-badge {
    width: 92px;
    height: 92px;
    font-size: 13px;
  }

  .market-badge-wb {
    width: 104px;
    height: 104px;
    bottom: 64px;
  }

  .market-badge-ym {
    width: 102px;
    height: 102px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .sellers-header {
    flex-wrap: nowrap;
    gap: 9px;
  }

  .sellers-header .brand {
    flex: 0 0 auto;
    order: 1;
  }

  .sellers-header .brand-copy {
    display: none;
  }

  .sellers-header .brand-mobile-phone {
    display: inline-flex;
    align-items: center;
    order: 3;
    min-height: 38px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .sellers-header .header-actions {
    flex: 1 1 auto;
    order: 2;
    min-width: 0;
    width: auto;
    justify-content: flex-end;
    margin-left: 0;
  }

  .sellers-header .header-actions .header-phone {
    display: none;
  }

  .sellers-header .header-cta {
    width: 100%;
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .commerce-window {
    width: 100%;
  }

  .commerce-cart {
    left: 8px;
    top: 238px;
    width: calc(100% - 70px);
  }

  .market-badge-ozon {
    right: -2px;
    top: 4px;
  }

  .market-badge-wb {
    left: 2px;
    bottom: 48px;
  }

  .market-badge-ym {
    right: 2px;
    bottom: 14px;
  }

  .order-stream {
    display: none;
  }
}

@media (max-width: 520px) {
  .sellers-header {
    padding-inline: 12px;
  }

  .sellers-showcase {
    min-height: 432px;
  }

  .commerce-scene {
    min-height: 392px;
  }

  .commerce-grid {
    gap: 9px;
  }

  .commerce-grid span {
    min-height: 96px;
    padding: 10px;
  }

  .commerce-grid i {
    min-height: 42px;
  }

  .commerce-cart {
    grid-template-columns: 38px minmax(0, 1fr);
    top: 220px;
    padding: 12px;
  }

  .commerce-cart span {
    width: 38px;
    height: 38px;
  }

  .commerce-cart strong {
    font-size: 14px;
  }

  .market-badge {
    width: 82px;
    height: 82px;
    padding: 10px;
    font-size: 12px;
  }

  .market-badge-wb {
    width: 94px;
    height: 94px;
    font-size: 11px;
  }

  .market-badge-ym {
    width: 92px;
    height: 92px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .sellers-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .sellers-header .brand-mobile-phone {
    font-size: 12px;
  }

  .sellers-header .header-cta {
    min-height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }
}

.marketplace-control-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 255, 53, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.marketplace-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.marketplace-control-grid h2 {
  max-width: 560px;
  margin-bottom: 0;
}

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

.marketplace-problem-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.2), transparent 34%),
    var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.06);
}

.marketplace-problem-card .faq-trigger {
  grid-template-columns: minmax(0, 1fr) 38px;
  min-height: 78px;
  padding: 18px 20px;
}

.marketplace-problem-card .faq-question {
  font-size: 21px;
  font-weight: 900;
}

.marketplace-problem-card .faq-answer {
  padding: 0 72px 22px 20px;
}

.marketplace-problem-card .faq-answer p {
  max-width: 620px;
  color: #4f5961;
}

/* Sellers hero v2: real marketplace logos and live sync animation. */
.sellers-showcase {
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: 18px 0;
  overflow: visible;
  isolation: isolate;
}

.sellers-showcase::before {
  inset: 22px 10px 54px 42px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 26% 22%, rgba(201, 255, 53, 0.28), transparent 28%),
    radial-gradient(circle at 84% 34%, rgba(0, 91, 255, 0.28), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(203, 17, 171, 0.22), transparent 28%),
    linear-gradient(145deg, #111111 0%, #17201d 52%, #0b0d0c 100%);
  background-size: 36px 36px, 36px 36px, auto, auto, auto, auto;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 90px rgba(17, 17, 17, 0.16);
}

.seller-animation {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  min-height: 560px;
}

.seller-animation::before,
.seller-animation::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.seller-animation::before {
  inset: 86px 74px 76px;
  border: 1px dashed rgba(201, 255, 53, 0.28);
  animation: sellerOrbit 18s linear infinite;
}

.seller-animation::after {
  left: 50%;
  top: 52%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 255, 53, 0.14), transparent 64%);
  transform: translate(-50%, -50%);
}

.seller-core {
  position: absolute;
  left: 50%;
  top: 118px;
  z-index: 5;
  width: 420px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 10px solid #111111;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) rotate(-0.8deg);
  animation: sellerCoreFloat 7s ease-in-out infinite;
}

.seller-core::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(201, 255, 53, 0.26) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: sellerScreenSweep 4.8s ease-in-out infinite;
}

.seller-core-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 16px;
  background: #111111;
  color: var(--white);
}

.seller-core-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 5px 9px;
  background: rgba(201, 255, 53, 0.14);
  border: 1px solid rgba(201, 255, 53, 0.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.seller-core-head span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201, 255, 53, 0.48);
  animation: sellerLivePulse 1.6s ease-in-out infinite;
}

.seller-core-head strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.1;
}

.seller-core-head small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.seller-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 255, 53, 0.16), transparent 34%),
    #f2f7f4;
}

.product-stack {
  display: grid;
  gap: 10px;
}

.product-stack article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  background: var(--white);
  border: 1px solid #dce7e2;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  animation: sellerProductTick 4.8s ease-in-out infinite;
}

.product-stack article:nth-child(2) {
  animation-delay: -1.5s;
}

.product-stack article:nth-child(3) {
  animation-delay: -3s;
}

.product-thumb {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.product-thumb-green {
  background: linear-gradient(135deg, #c9ff35, #7ed321);
}

.product-thumb-blue {
  background: linear-gradient(135deg, #005bff, #7bb7ff);
}

.product-thumb-pink {
  background: linear-gradient(135deg, #cb11ab, #ff8adf);
}

.product-stack b,
.product-stack em,
.product-stack strong {
  display: block;
  line-height: 1.1;
}

.product-stack b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.product-stack em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.product-stack strong {
  grid-column: 2;
  width: max-content;
  padding: 5px 8px;
  background: rgba(15, 143, 131, 0.1);
  border-radius: 999px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
}

.order-widget {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: 12px;
  background: #111111;
  border-radius: 14px;
  color: var(--white);
  text-align: center;
}

.order-widget span {
  color: var(--accent);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.order-widget strong {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1;
}

.order-widget small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.order-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
  margin-top: 14px;
}

.order-bars i {
  width: 9px;
  border-radius: 999px;
  background: var(--accent);
  animation: sellerBars 1.8s ease-in-out infinite;
}

.order-bars i:nth-child(1) {
  height: 15px;
}

.order-bars i:nth-child(2) {
  height: 28px;
  animation-delay: -0.4s;
}

.order-bars i:nth-child(3) {
  height: 21px;
  animation-delay: -0.8s;
}

.sync-strip {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  background: #f2f7f4;
}

.sync-strip span {
  flex: 1;
  min-width: 0;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dce7e2;
  border-radius: 999px;
  color: #59636a;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}

.market-node {
  position: absolute;
  z-index: 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 134px;
  height: 134px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  animation: marketplaceNodeFloat 6.2s ease-in-out infinite;
}

.market-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 255, 53, 0.34);
  border-radius: inherit;
  opacity: 0.8;
  animation: marketplaceRingPulse 2.8s ease-in-out infinite;
}

.market-node img {
  display: block;
  max-width: 94px;
  max-height: 38px;
  object-fit: contain;
}

.market-node span {
  position: relative;
  z-index: 1;
  padding: 5px 8px;
  background: #111111;
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.market-node-ozon {
  right: 2px;
  top: 28px;
}

.market-node-ozon img {
  max-width: 96px;
}

.market-node-wb {
  left: 0;
  bottom: 82px;
  width: 150px;
  height: 150px;
  animation-delay: -1.7s;
}

.market-node-wb img {
  max-width: 108px;
}

.market-node-ym {
  right: 14px;
  bottom: 28px;
  width: 146px;
  height: 146px;
  animation-delay: -3.2s;
}

.market-node-ym img {
  max-width: 106px;
}

.sync-route {
  position: absolute;
  z-index: 3;
  height: 3px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(201, 255, 53, 0.92), transparent);
  border-radius: 999px;
  filter: drop-shadow(0 0 10px rgba(201, 255, 53, 0.3));
}

.sync-route i {
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 255, 53, 0.7);
  transform: translateY(-50%);
  animation: sellerRouteDot 2.8s linear infinite;
}

.sync-route i:nth-child(2) {
  animation-delay: 1.4s;
}

.route-ozon {
  left: 324px;
  top: 210px;
  width: 190px;
  transform: rotate(-28deg);
}

.route-wb {
  left: 280px;
  top: 386px;
  width: 206px;
  transform: rotate(154deg);
}

.route-ym {
  left: 330px;
  top: 400px;
  width: 178px;
  transform: rotate(32deg);
}

.flying-order {
  position: absolute;
  z-index: 10;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  opacity: 0;
}

.flying-order::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.flying-order-1 {
  left: 270px;
  top: 300px;
  animation: flyToOzon 5.4s ease-in-out infinite;
}

.flying-order-2 {
  left: 230px;
  top: 350px;
  animation: flyToWb 5.8s ease-in-out infinite;
  animation-delay: -1.9s;
}

.flying-order-3 {
  left: 310px;
  top: 362px;
  animation: flyToYm 6.2s ease-in-out infinite;
  animation-delay: -3.4s;
}

@keyframes sellerOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sellerCoreFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-0.8deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(0.4deg);
  }
}

@keyframes sellerScreenSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes sellerLivePulse {
  50% {
    box-shadow: 0 0 0 8px rgba(201, 255, 53, 0);
  }
}

@keyframes sellerProductTick {
  0%,
  100% {
    transform: translateY(0);
    border-color: #dce7e2;
  }
  46% {
    transform: translateY(-4px);
    border-color: rgba(15, 143, 131, 0.32);
  }
}

@keyframes sellerBars {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.08);
  }
}

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

@keyframes marketplaceRingPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}

@keyframes sellerRouteDot {
  0% {
    opacity: 0;
    transform: translate(0, -50%) scale(0.6);
  }
  18%,
  76% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--route-travel, 100%) - 12px), -50%) scale(0.8);
  }
}

@keyframes flyToOzon {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  32% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate3d(164px, -172px, 0) scale(0.94);
  }
  100% {
    opacity: 0;
    transform: translate3d(198px, -198px, 0) scale(0.72);
  }
}

@keyframes flyToWb {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  32% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate3d(-162px, 98px, 0) scale(0.94);
  }
  100% {
    opacity: 0;
    transform: translate3d(-196px, 120px, 0) scale(0.72);
  }
}

@keyframes flyToYm {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  32% {
    opacity: 1;
  }
  78% {
    opacity: 1;
    transform: translate3d(146px, 108px, 0) scale(0.94);
  }
  100% {
    opacity: 0;
    transform: translate3d(178px, 132px, 0) scale(0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seller-animation::before,
  .seller-core,
  .seller-core::after,
  .seller-core-head span::before,
  .product-stack article,
  .order-bars i,
  .market-node,
  .market-node::before,
  .sync-route i,
  .flying-order {
    animation: none;
  }

  .flying-order {
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .marketplace-control-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-control-grid h2 {
    max-width: 680px;
  }

  .marketplace-problem-card .faq-trigger {
    min-height: 72px;
  }

  .sellers-showcase {
    min-height: 540px;
    padding-top: 8px;
  }

  .sellers-showcase::before {
    inset: 18px 0 36px 24px;
    border-radius: 16px;
  }

  .seller-animation {
    width: 100%;
    min-height: 500px;
  }

  .seller-core {
    top: 106px;
    width: min(380px, calc(100% - 34px));
    border-width: 8px;
  }

  .market-node {
    width: 104px;
    height: 104px;
    padding: 16px;
  }

  .market-node img {
    max-width: 76px;
    max-height: 30px;
  }

  .market-node-wb,
  .market-node-ym {
    width: 112px;
    height: 112px;
  }

  .market-node-wb {
    bottom: 54px;
  }

  .market-node-ym {
    bottom: 16px;
  }

  .sync-route,
  .flying-order {
    display: none;
  }
}

@media (max-width: 640px) {
  .sellers-page h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .sellers-page h1 span {
    padding: 0 9px 5px;
  }

  .sellers-page .hero-gift-mobile strong {
    white-space: normal;
  }

  .marketplace-problem-card .faq-trigger {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 16px;
  }

  .marketplace-problem-card .faq-question {
    font-size: 18px;
  }

  .marketplace-problem-card .faq-answer {
    padding: 0 16px 18px;
  }

  .marketplace-problem-card .faq-answer p {
    font-size: 15px;
  }

  .sellers-showcase {
    min-height: 500px;
  }

  .seller-animation {
    min-height: 466px;
  }

  .seller-animation::before {
    inset: 92px 36px 54px;
  }

  .seller-core {
    top: 102px;
    width: min(342px, calc(100% - 18px));
  }

  .seller-core-head {
    padding: 13px;
  }

  .seller-core-head strong {
    font-size: 15px;
  }

  .seller-dashboard {
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 9px;
    padding: 12px;
  }

  .product-stack {
    gap: 8px;
  }

  .product-stack article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    min-height: 62px;
    padding: 8px;
  }

  .product-thumb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .product-stack b {
    font-size: 12px;
  }

  .product-stack em,
  .product-stack strong {
    font-size: 10px;
  }

  .order-widget {
    padding: 9px;
  }

  .order-widget span {
    font-size: 30px;
  }

  .order-widget strong {
    font-size: 12px;
  }

  .sync-strip {
    gap: 6px;
    padding: 0 12px 12px;
  }

  .sync-strip span {
    padding: 7px 4px;
    font-size: 10px;
  }

  .market-node {
    width: 84px;
    height: 84px;
    padding: 12px;
    gap: 5px;
  }

  .market-node::before {
    inset: -5px;
  }

  .market-node img {
    max-width: 62px;
    max-height: 24px;
  }

  .market-node span {
    padding: 4px 6px;
    font-size: 8px;
  }

  .market-node-ozon {
    right: 2px;
    top: 8px;
  }

  .market-node-wb {
    left: 2px;
    bottom: 42px;
    width: 94px;
    height: 94px;
  }

  .market-node-wb img {
    max-width: 72px;
  }

  .market-node-ym {
    right: 0;
    bottom: 2px;
    width: 96px;
    height: 96px;
  }

  .market-node-ym img {
    max-width: 72px;
  }
}

@media (max-width: 420px) {
  .sellers-page h1 {
    font-size: 31px;
  }

  .sellers-page .hero-lead {
    font-size: 17px;
  }
}

/* Sellers hero v3: marketplace feed turns into a standalone store. */
.sellers-showcase {
  min-height: 620px;
  padding: 14px 0 24px;
  overflow: visible;
  isolation: isolate;
}

.sellers-showcase::before {
  inset: 20px 6px 48px 36px;
  background:
    linear-gradient(rgba(15, 143, 131, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 143, 131, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(201, 255, 53, 0.28), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(0, 91, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 250, 246, 0.96) 100%);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  border: 1px solid rgba(15, 143, 131, 0.14);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.08);
}

.seller-hub-scene {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  min-height: 560px;
  color: var(--ink);
}

.market-feed-panel {
  position: absolute;
  left: 0;
  top: 76px;
  z-index: 7;
  display: grid;
  gap: 12px;
  width: 190px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hub-kicker {
  color: #69737a;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.market-feed-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px;
  background: var(--white);
  border: 1px solid #dce7e2;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
  animation: hubFeedPulse 5.8s ease-in-out infinite;
}

.market-feed-wb {
  animation-delay: -1.6s;
}

.market-feed-ym {
  animation-delay: -3.2s;
}

.market-feed-card img {
  display: block;
  max-width: 100px;
  max-height: 34px;
  object-fit: contain;
}

.market-feed-wb img,
.market-feed-ym img {
  max-width: 108px;
}

.transfer-rail {
  --packet-travel: 186px;
  position: absolute;
  left: 156px;
  top: 234px;
  z-index: 5;
  width: 214px;
  height: 154px;
  pointer-events: none;
}

.transfer-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 74px;
  height: 72px;
  border-top: 3px solid rgba(201, 255, 53, 0.76);
  border-right: 3px solid rgba(201, 255, 53, 0.76);
  border-radius: 0 42px 0 0;
  filter: drop-shadow(0 0 12px rgba(201, 255, 53, 0.28));
}

.transfer-line::before,
.transfer-line::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 255, 53, 0.74);
}

.transfer-line::before {
  left: -4px;
  top: -7px;
}

.transfer-line::after {
  right: -7px;
  bottom: -2px;
}

.transfer-packet {
  position: absolute;
  left: 0;
  top: 52px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  align-items: center;
  width: 58px;
  height: 42px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: hubPacketMove 4.8s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.transfer-packet i,
.transfer-packet b {
  display: block;
  border-radius: 6px;
}

.transfer-packet i {
  width: 20px;
  height: 22px;
  background: linear-gradient(135deg, #c9ff35, #0f8f83);
}

.transfer-packet b {
  height: 8px;
  background: #c8d8d0;
}

.transfer-packet-2 {
  top: 80px;
  animation-delay: -1.6s;
}

.transfer-packet-2 i {
  background: linear-gradient(135deg, #005bff, #7bb7ff);
}

.transfer-packet-3 {
  top: 108px;
  animation-delay: -3.2s;
}

.transfer-packet-3 i {
  background: linear-gradient(135deg, #cb11ab, #ff8adf);
}

.transfer-caption {
  position: absolute;
  left: 20px;
  top: 18px;
  padding: 8px 11px;
  background: rgba(201, 255, 53, 0.94);
  border-radius: 999px;
  color: #111411;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(201, 255, 53, 0.2);
}

.storefront-device {
  position: absolute;
  right: 0;
  top: 58px;
  z-index: 6;
  width: 404px;
  overflow: hidden;
  padding: 14px;
  background: #f4f8f6;
  border: 10px solid #111111;
  border-radius: 22px;
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.32);
  animation: hubStoreFloat 7s ease-in-out infinite;
}

.storefront-device::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 0%, rgba(201, 255, 53, 0.24) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: hubScreenSweep 5s ease-in-out infinite;
}

.storefront-topbar {
  display: grid;
  grid-template-columns: repeat(3, 10px) minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-bottom: 14px;
}

.storefront-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfe6e3;
}

.storefront-topbar span:nth-child(1) {
  background: #ff5f57;
}

.storefront-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.storefront-topbar span:nth-child(3) {
  background: #28c840;
}

.storefront-topbar strong,
.storefront-topbar em {
  min-width: 0;
  font-size: 12px;
  line-height: 1;
}

.storefront-topbar strong {
  margin-left: 6px;
  color: #4a555b;
  font-weight: 950;
}

.storefront-topbar em {
  padding: 6px 8px;
  background: rgba(15, 143, 131, 0.1);
  border-radius: 999px;
  color: var(--teal);
  font-style: normal;
  font-weight: 950;
}

.storefront-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 116px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(201, 255, 53, 0.46), rgba(15, 143, 131, 0.18)),
    #ffffff;
  border: 1px solid #dce7e2;
  border-radius: 16px;
}

.storefront-banner b,
.storefront-banner span {
  display: block;
}

.storefront-banner b {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.storefront-banner span {
  margin-top: 6px;
  color: #4d5961;
  font-size: 12px;
  font-weight: 850;
}

.storefront-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  background: #111111;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
}

.storefront-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.storefront-products article {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid #dce7e2;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  animation: hubProductPop 4.8s ease-in-out infinite;
}

.storefront-products article:nth-child(2) {
  animation-delay: -1.5s;
}

.storefront-products article:nth-child(3) {
  animation-delay: -3s;
}

.storefront-products article span {
  min-height: 72px;
  border-radius: 12px;
}

.store-product-1 {
  background: linear-gradient(135deg, #c9ff35, #7ed321);
}

.store-product-2 {
  background: linear-gradient(135deg, #005bff, #7bb7ff);
}

.store-product-3 {
  background: linear-gradient(135deg, #cb11ab, #ff8adf);
}

.storefront-products b,
.storefront-products em {
  min-width: 0;
  overflow: hidden;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-products b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.storefront-products em {
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.storefront-footer {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.storefront-footer span {
  flex: 1;
  min-width: 0;
  padding: 9px 8px;
  background: rgba(17, 17, 17, 0.92);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.direct-order-card {
  position: absolute;
  right: 34px;
  bottom: 46px;
  z-index: 9;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  width: 226px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.24);
  animation: hubOrderPop 5.6s ease-in-out infinite;
}

.direct-order-card span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

.direct-order-card strong,
.direct-order-card small {
  min-width: 0;
  line-height: 1.1;
}

.direct-order-card strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.direct-order-card small {
  color: #657079;
  font-size: 11px;
  font-weight: 850;
}

@keyframes hubFeedPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  44% {
    transform: translateX(7px);
  }
}

@keyframes hubPacketMove {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }
  16%,
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--packet-travel), 36px, 0) scale(0.92);
  }
}

@keyframes hubStoreFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
  }
  50% {
    transform: translate3d(0, -9px, 0) rotate(0.35deg);
  }
}

@keyframes hubScreenSweep {
  0%,
  48% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes hubProductPop {
  0%,
  100% {
    transform: translateY(0);
    border-color: #dce7e2;
  }
  48% {
    transform: translateY(-5px);
    border-color: rgba(15, 143, 131, 0.34);
  }
}

@keyframes hubOrderPop {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  42% {
    transform: translate3d(-8px, -8px, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-feed-card,
  .transfer-packet,
  .storefront-device,
  .storefront-device::after,
  .storefront-products article,
  .direct-order-card {
    animation: none;
  }
}

@media (max-width: 820px) {
  .sellers-showcase {
    min-height: 560px;
  }

  .sellers-showcase::before {
    inset: 18px 0 36px 24px;
  }

  .seller-hub-scene {
    min-height: 510px;
  }

  .market-feed-panel {
    left: 0;
    top: 44px;
    width: 168px;
    padding: 12px;
  }

  .market-feed-card {
    min-height: 56px;
    padding: 10px;
  }

  .market-feed-card img {
    max-width: 82px;
    max-height: 28px;
  }

  .transfer-rail {
    --packet-travel: 148px;
    left: 136px;
    top: 224px;
    width: 176px;
  }

  .storefront-device {
    right: 0;
    top: 78px;
    width: min(374px, calc(100% - 160px));
    border-width: 8px;
  }

  .direct-order-card {
    right: 22px;
    bottom: 24px;
  }
}

@media (max-width: 640px) {
  .sellers-showcase {
    min-height: 540px;
    padding-top: 0;
  }

  .sellers-showcase::before {
    inset: 16px 0 32px 16px;
  }

  .seller-hub-scene {
    min-height: 500px;
  }

  .market-feed-panel {
    left: 10px;
    right: 10px;
    top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    padding: 10px;
  }

  .hub-kicker {
    display: none;
  }

  .market-feed-card {
    justify-content: center;
    min-height: 58px;
    padding: 8px;
  }

  .market-feed-card img,
  .market-feed-wb img,
  .market-feed-ym img {
    max-width: 76px;
    max-height: 25px;
  }

  .transfer-rail {
    --packet-travel: calc(100vw - 178px);
    left: 48px;
    right: 48px;
    top: 95px;
    width: auto;
    height: 72px;
  }

  .transfer-line {
    top: 34px;
    height: 28px;
    border-radius: 0 24px 0 0;
  }

  .transfer-caption {
    display: none;
  }

  .transfer-packet {
    top: 18px;
    width: 44px;
    height: 34px;
    grid-template-columns: 16px 1fr;
    gap: 5px;
    padding: 7px;
  }

  .transfer-packet i {
    width: 16px;
    height: 18px;
  }

  .transfer-packet-2 {
    top: 28px;
  }

  .transfer-packet-3 {
    top: 38px;
  }

  .storefront-device {
    left: 10px;
    right: 10px;
    top: 158px;
    width: auto;
    padding: 12px;
  }

  .storefront-banner {
    min-height: 96px;
    padding: 13px;
  }

  .storefront-banner b {
    font-size: 18px;
  }

  .storefront-banner span {
    font-size: 11px;
  }

  .storefront-banner button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .storefront-products article {
    padding: 8px;
  }

  .storefront-products article span {
    min-height: 54px;
  }

  .storefront-footer span {
    font-size: 10px;
  }

  .direct-order-card {
    right: 18px;
    bottom: 18px;
    width: 214px;
    padding: 12px;
  }

  .direct-order-card span {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .storefront-device {
    top: 150px;
  }

  .storefront-products {
    gap: 7px;
  }

  .storefront-products b {
    font-size: 11px;
  }

  .storefront-products em {
    font-size: 10px;
  }

  .direct-order-card {
    width: calc(100% - 36px);
  }
}

/* Sellers hero v4: card file with real storefront screenshots. */
.sellers-showcase {
  min-height: 600px;
  padding: 10px 0 24px;
  overflow: visible;
}

.sellers-showcase::before {
  display: none;
}

.seller-cardfile {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  min-height: 548px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.seller-cardfile::before,
.seller-cardfile::after {
  content: "";
  position: absolute;
  display: none;
  left: 7%;
  right: 7%;
  height: 78%;
  border: 1px solid rgba(15, 143, 131, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.seller-cardfile::before {
  top: 64px;
  background: rgba(255, 255, 255, 0.58);
  transform: rotate(-5deg);
}

.seller-cardfile::after {
  top: 82px;
  background: rgba(239, 250, 246, 0.72);
  transform: rotate(4deg);
}

.site-file-card {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 3;
  width: min(590px, 92%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.18);
  transform-origin: 50% 70%;
  will-change: transform, opacity, filter;
}

.site-file-card::before {
  content: "";
  position: absolute;
  display: none;
  left: 34px;
  top: -1px;
  z-index: 2;
  width: 118px;
  height: 18px;
  background: rgba(201, 255, 53, 0.92);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 24px rgba(201, 255, 53, 0.16);
}

.site-file-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.site-file-card {
  opacity: 0;
  visibility: hidden;
  filter: saturate(1) brightness(1);
  transform: translate3d(-50%, 0, 0) rotate(0deg) scale(1);
  animation: cardfileCycle 28s steps(1, end) infinite;
  animation-delay: calc(var(--card-index, 0) * -4s);
}

.site-file-fashion {
  --card-index: 0;
  --front-rotate: -2deg;
  --back-rotate: 4deg;
}

.site-file-vita {
  --card-index: 6;
  --front-rotate: 2deg;
  --back-rotate: -5deg;
}

.site-file-beauty {
  --card-index: 5;
  --front-rotate: -1deg;
  --back-rotate: 5deg;
}

.site-file-home {
  --card-index: 4;
  --front-rotate: 1.5deg;
  --back-rotate: -4deg;
}

.site-file-kids {
  --card-index: 3;
  --front-rotate: -1.5deg;
  --back-rotate: 4deg;
}

.site-file-drive {
  --card-index: 2;
  --front-rotate: 2deg;
  --back-rotate: -5deg;
}

.site-file-fitmax {
  --card-index: 1;
  --front-rotate: -1deg;
  --back-rotate: 5deg;
}

.site-file-vita::before,
.site-file-drive::before,
.site-file-fitmax::before {
  background: rgba(17, 17, 17, 0.9);
}

.site-file-beauty::before {
  background: rgba(255, 99, 160, 0.86);
}

.site-file-home::before {
  background: rgba(179, 117, 78, 0.84);
}

.site-file-kids::before {
  background: rgba(68, 150, 232, 0.84);
}

@keyframes cardfileCycle {
  0%,
  14.285% {
    z-index: 8;
    opacity: 1;
    visibility: visible;
    filter: saturate(1) brightness(1);
    transform: translate3d(-50%, 0, 0) rotate(var(--front-rotate, -2deg)) scale(1);
  }
  14.286%,
  100% {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    filter: saturate(1) brightness(1);
    transform: translate3d(-50%, 0, 0) rotate(var(--front-rotate, -2deg)) scale(1);
  }
}

@media (max-width: 820px) {
  .sellers-showcase {
    min-height: 500px;
  }

  .seller-cardfile {
    min-height: 454px;
  }

  .site-file-card {
    top: 34px;
    width: min(540px, 94%);
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .sellers-page .hero-grid {
    gap: 12px;
  }

  .sellers-showcase {
    min-height: 346px;
    padding-top: 0;
    padding-bottom: 4px;
  }

  .seller-cardfile {
    min-height: 332px;
  }

  .seller-cardfile::before,
  .seller-cardfile::after {
    left: 8%;
    right: 8%;
    height: 72%;
  }

  .site-file-card {
    top: 10px;
    width: min(430px, 96%);
    border-radius: 16px;
    box-shadow: 0 24px 62px rgba(17, 17, 17, 0.16);
  }

  .site-file-card::before {
    left: 22px;
    width: 86px;
    height: 14px;
  }
}

@media (max-width: 420px) {
  .sellers-page .hero-grid {
    gap: 8px;
  }

  .sellers-showcase {
    min-height: 288px;
    padding-bottom: 0;
  }

  .seller-cardfile {
    min-height: 280px;
  }

  .site-file-card {
    top: 6px;
    width: 98%;
  }
}

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

  .service-hero-panel {
    min-height: 420px;
  }

  .direct-case-grid .real-case-card,
  .home-case-grid .real-case-card {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .service-hero {
    padding: 34px 0 44px;
  }

  .service-hero-grid {
    gap: 26px;
  }

  .service-hero-panel {
    min-height: 340px;
    padding: 20px;
  }

  .service-hero-panel::before {
    inset: 18px;
  }

  .launch-map article {
    min-height: 142px;
    padding: 20px;
  }

  .direct-flow span {
    min-height: 64px;
    font-size: 18px;
  }

  .direct-flow span:nth-child(2),
  .direct-flow span:nth-child(3) {
    margin-left: 24px;
  }

  .product-grid,
  .problem-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 22px;
  }

  .product-card .button {
    width: 100%;
  }

  .process-board-six .process-card {
    grid-column: span 6;
  }

  .direct-case-grid .real-case-card,
  .home-case-grid .real-case-card {
    grid-column: span 6;
  }

  .tariff-note,
  .addons-section .tariff-addons {
    grid-template-columns: 1fr;
  }

  .addons-section .tariff-addons p,
  .tariff-note p {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .service-hero-panel {
    min-height: 300px;
  }

  .launch-map {
    gap: 12px;
  }

  .launch-map article {
    min-height: 122px;
    padding: 16px;
  }

  .launch-map span,
  .product-number {
    margin-bottom: 10px;
  }

  .direct-flow span {
    min-height: 58px;
    padding: 0 16px;
    font-size: 16px;
  }

  .direct-flow span:nth-child(2),
  .direct-flow span:nth-child(3) {
    margin-left: 0;
  }

  .process-board-six .process-card {
    grid-column: 1 / -1;
  }
}

.unified-case-grid .real-case-card,
.unified-case-grid .real-case-card:nth-child(4),
.unified-case-grid .real-case-card:nth-child(5),
.home-case-grid.unified-case-grid .real-case-card,
.direct-case-grid.unified-case-grid .real-case-card {
  grid-column: span 2;
}

.case-preview-static .case-slides {
  aspect-ratio: 16 / 9;
}

.case-preview-placeholder {
  display: flex;
  aspect-ratio: 16 / 9;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(201, 255, 53, 0.24), rgba(255, 255, 255, 0.88) 44%),
    radial-gradient(circle at 78% 20%, rgba(17, 17, 17, 0.12), transparent 32%),
    #f2f4ef;
}

.case-preview-placeholder span {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-preview-placeholder strong {
  color: var(--ink);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1;
  word-break: break-word;
}

.case-link.is-disabled {
  color: var(--muted);
  cursor: default;
}

.case-link.is-disabled::after {
  content: "";
}

@media (max-width: 1120px) {
  .unified-case-grid .real-case-card,
  .unified-case-grid .real-case-card:nth-child(4),
  .unified-case-grid .real-case-card:nth-child(5),
  .home-case-grid.unified-case-grid .real-case-card,
  .direct-case-grid.unified-case-grid .real-case-card {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  .unified-case-grid .real-case-card,
  .unified-case-grid .real-case-card:nth-child(4),
  .unified-case-grid .real-case-card:nth-child(5),
  .home-case-grid.unified-case-grid .real-case-card,
  .direct-case-grid.unified-case-grid .real-case-card {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .tariffs-section .tariff-addons ul {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .tariffs-section .tariff-addons li {
    width: 100%;
  }

  .mobile-stack {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .mobile-stack > .future-feature-card,
  .mobile-stack > .approach-card,
  .mobile-stack > .home-pricing-card,
  .mobile-stack > .tariff-card,
  .mobile-stack > .process-card,
  .mobile-stack > .real-case-card {
    position: sticky;
    top: calc(84px + var(--stack-offset, 0px));
    grid-column: 1 / -1;
    align-self: start;
    min-height: 0;
    margin-bottom: 18px;
    transform: none;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
  }

  .mobile-stack > :nth-child(1) {
    --stack-offset: 0px;
    z-index: 1;
  }

  .mobile-stack > :nth-child(2) {
    --stack-offset: 7px;
    z-index: 2;
  }

  .mobile-stack > :nth-child(3) {
    --stack-offset: 14px;
    z-index: 3;
  }

  .mobile-stack > :nth-child(4) {
    --stack-offset: 21px;
    z-index: 4;
  }

  .mobile-stack > :nth-child(5) {
    --stack-offset: 28px;
    z-index: 5;
  }

  .mobile-stack > :nth-child(6) {
    --stack-offset: 35px;
    z-index: 6;
  }

  .mobile-stack > :nth-child(7) {
    --stack-offset: 42px;
    z-index: 7;
  }

  .mobile-stack > :nth-child(8) {
    --stack-offset: 49px;
    z-index: 8;
  }

  .mobile-stack > :nth-child(9) {
    --stack-offset: 56px;
    z-index: 9;
  }

  .mobile-stack > :nth-child(10) {
    --stack-offset: 63px;
    z-index: 10;
  }

  .mobile-stack > :nth-child(11) {
    --stack-offset: 70px;
    z-index: 11;
  }

  .mobile-stack > :nth-child(12) {
    --stack-offset: 77px;
    z-index: 12;
  }
}
