:root {
  --pp-ink: #0b1020;
  --pp-copy: #44516b;
  --pp-muted: #7b879e;
  --pp-line: #e5eaf1;
  --pp-surface: #ffffff;
  --pp-surface-soft: #f7f9fb;
  --pp-accent: #11bb70;
  --pp-accent-strong: #07a85f;
  --pp-accent-soft: #e9fbf1;
  --pp-glow: rgba(17, 187, 112, 0.18);
  --pp-shadow: 0 24px 80px rgba(24, 35, 59, 0.11);
  --pp-radius-lg: 32px;
  --pp-radius-md: 22px;
  --pp-radius-sm: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.product-page {
  margin: 0;
  color: var(--pp-ink);
  background: #fff;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.product-page--blue {
  --pp-accent: #2789ff;
  --pp-accent-strong: #106fe3;
  --pp-accent-soft: #edf6ff;
  --pp-glow: rgba(39, 137, 255, 0.18);
}

.product-page--violet {
  --pp-accent: #7957ec;
  --pp-accent-strong: #6540db;
  --pp-accent-soft: #f1edff;
  --pp-glow: rgba(121, 87, 236, 0.17);
}

.product-page a {
  color: inherit;
  text-decoration: none;
}

.product-page a:focus-visible,
.product-page summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pp-accent) 42%, white);
  outline-offset: 4px;
}

.product-page img {
  max-width: 100%;
}

.product-shell {
  width: min(1216px, calc(100% - 48px));
  margin-inline: auto;
}

.product-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(224, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.product-header__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.product-header__logo,
.product-header__logo img {
  display: block;
}

.product-header__logo img {
  width: 142px;
  height: auto;
}

.product-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #354159;
  font-size: 14px;
  font-weight: 650;
}

.product-header__nav a,
.product-header__login {
  transition: color 160ms ease;
}

.product-header__nav a:hover,
.product-header__login:hover {
  color: var(--pp-accent-strong);
}

.product-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-header__login {
  padding: 12px 15px;
  color: #344057;
  font-size: 14px;
  font-weight: 700;
}

.product-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.product-button:hover {
  transform: translateY(-2px);
}

.product-button i {
  font-size: 18px;
}

.product-button--dark {
  color: #fff !important;
  background: #0c1220;
  box-shadow: 0 10px 24px rgba(12, 18, 32, 0.18);
}

.product-button--dark:hover {
  background: #171f30;
  box-shadow: 0 14px 30px rgba(12, 18, 32, 0.23);
}

.product-button--primary {
  color: #fff !important;
  background: var(--pp-accent);
  box-shadow: 0 14px 30px var(--pp-glow);
}

.product-button--primary:hover {
  background: var(--pp-accent-strong);
  box-shadow: 0 18px 38px var(--pp-glow);
}

.product-button--secondary {
  border-color: #dce2ea;
  color: #28344a;
  background: rgba(255, 255, 255, 0.86);
}

.product-button--secondary:hover {
  border-color: #c8d0dc;
  background: #fff;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 78px;
  background:
    radial-gradient(circle at 12% 28%, var(--pp-glow), transparent 31%),
    radial-gradient(circle at 88% 52%, rgba(58, 213, 218, 0.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfdfc 74%, #f7fbf9 100%);
}

.product-hero__glow {
  position: absolute;
  inset: auto auto -210px 50%;
  width: 720px;
  height: 420px;
  border-radius: 50%;
  background: var(--pp-glow);
  filter: blur(90px);
  transform: translateX(-50%);
  pointer-events: none;
}

.product-hero .product-shell {
  position: relative;
}

.product-breadcrumbs {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  color: #7a869b;
  font-size: 13px;
  white-space: nowrap;
}

.product-breadcrumbs a:hover {
  color: var(--pp-accent-strong);
}

.product-breadcrumbs i {
  flex: 0 0 auto;
  font-size: 13px;
}

.product-breadcrumbs span:last-child {
  overflow: hidden;
  color: #354159;
  text-overflow: ellipsis;
}

.product-hero__copy {
  max-width: 850px;
  margin: 66px auto 54px;
  text-align: center;
}

.product-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid color-mix(in srgb, var(--pp-accent) 18%, white);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--pp-accent-strong);
  background: color-mix(in srgb, var(--pp-accent-soft) 78%, white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-eyebrow i {
  font-size: 18px;
}

.product-hero h1 {
  max-width: 930px;
  margin: 23px auto 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 820;
  letter-spacing: -0.054em;
  line-height: 1.02;
}

.product-hero__lead {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--pp-copy);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.product-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.product-hero__facts {
  display: flex;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: #627087;
  font-size: 13px;
  font-weight: 650;
}

.product-hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-hero__facts i {
  color: var(--pp-accent);
  font-size: 17px;
}

.product-hero__visual {
  position: relative;
  margin-top: 16px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(209, 217, 228, 0.88);
  border-radius: 24px;
  background: #edf0f3;
  box-shadow: var(--pp-shadow);
}

.product-window__bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid #e3e7ed;
  background: rgba(255, 255, 255, 0.96);
}

.product-window__bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dde6;
}

.product-window__bar > span:first-child {
  background: #ff6b63;
}

.product-window__bar > span:nth-child(2) {
  background: #f6bd4f;
}

.product-window__bar > span:nth-child(3) {
  background: #52c66d;
}

.product-window__bar div {
  min-width: 240px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 5px 14px;
  color: #929dae;
  background: #f1f3f6;
  font-size: 11px;
  text-align: center;
}

.product-window > img {
  width: 100%;
  height: auto;
  display: block;
}

.product-window__traffic {
  display: grid;
  gap: 15px;
  padding: 18px;
  background: #f3f5f7;
}

.product-window__traffic-card {
  overflow: hidden;
  border: 1px solid #e2e7ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 42, 66, 0.06);
}

.product-window__traffic-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-answer {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 72px 0 32px;
}

.product-answer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
  border: 1px solid #dfe7e4;
  border-radius: var(--pp-radius-md);
  padding: 30px 34px;
  background: linear-gradient(125deg, var(--pp-accent-soft), #fff 76%);
}

.product-answer__icon,
.product-card__icon,
.product-related__icon {
  display: grid;
  place-items: center;
  color: var(--pp-accent-strong);
  background: color-mix(in srgb, var(--pp-accent-soft) 84%, white);
}

.product-answer__icon {
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--pp-accent) 18%, white);
  border-radius: 14px;
}

.product-answer__icon i {
  font-size: 24px;
}

.product-answer__inner > div:last-child > span,
.product-section__heading > span,
.product-final-cta__inner > div > span {
  display: block;
  color: var(--pp-accent-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-answer h2 {
  margin: 5px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.product-answer p {
  max-width: 960px;
  margin: 13px 0 0;
  color: var(--pp-copy);
  font-size: 16px;
  line-height: 1.72;
}

.product-section {
  padding: 94px 0;
}

.product-section__heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-section__heading--wide {
  max-width: 900px;
}

.product-section__heading--compact {
  margin-bottom: 28px;
}

.product-section__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 810;
  letter-spacing: -0.047em;
  line-height: 1.08;
}

.product-section__heading > p {
  margin: 15px 0 0;
  color: var(--pp-copy);
}

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

.product-card {
  min-height: 250px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-md);
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(26, 37, 59, 0.055);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.product-card__icon i {
  font-size: 24px;
}

.product-card h3,
.product-use-cases__grid h3,
.product-related__grid h3 {
  margin: 22px 0 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.product-card p,
.product-use-cases__grid p,
.product-related__grid p {
  margin: 10px 0 0;
  color: var(--pp-copy);
  font-size: 14px;
  line-height: 1.68;
}

.product-stories {
  background: var(--pp-surface-soft);
}

.product-stories__list {
  display: grid;
  gap: 26px;
}

.product-story {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 30px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-lg);
  padding: 40px 0 40px 42px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(24, 35, 59, 0.065);
}

.product-story--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  padding: 40px 42px 40px 0;
}

.product-story--reverse .product-story__copy {
  order: 2;
}

.product-story--reverse .product-story__visual {
  order: 1;
}

.product-story__copy {
  padding: 8px 0;
}

.product-story__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pp-accent-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.product-story__kicker i {
  font-size: 18px;
}

.product-story h3 {
  margin: 14px 0 0;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.product-story__copy > p {
  margin: 16px 0 0;
  color: var(--pp-copy);
  font-size: 15px;
  line-height: 1.72;
}

.product-story ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #303c52;
  font-size: 14px;
  font-weight: 650;
}

.product-story li {
  position: relative;
  padding-left: 18px;
}

.product-story li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pp-accent);
  transform: translateY(-50%);
}

.product-story__visual {
  overflow: hidden;
  border: 1px solid #e0e6ed;
  border-right: 0;
  border-radius: 22px 0 0 22px;
  background: #f2f4f7;
  box-shadow: 0 15px 45px rgba(24, 35, 59, 0.09);
}

.product-story--reverse .product-story__visual {
  border-right: 1px solid #e0e6ed;
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.product-story__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.product-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-md);
  background: var(--pp-line);
  list-style: none;
}

.product-steps__grid li {
  min-height: 245px;
  padding: 30px;
  background: #fff;
}

.product-steps__grid li > span {
  color: var(--pp-accent);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.product-steps__grid h3 {
  margin: 40px 0 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.product-steps__grid p {
  margin: 10px 0 0;
  color: var(--pp-copy);
  font-size: 14px;
  line-height: 1.65;
}

.product-comparison {
  background: #f7f9fb;
}

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

.product-comparison__card {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-md);
  padding: 32px;
}

.product-comparison__card--muted {
  background: #fff;
}

.product-comparison__card--accent {
  border-color: color-mix(in srgb, var(--pp-accent) 22%, white);
  background: linear-gradient(140deg, var(--pp-accent-soft), #fff 78%);
}

.product-comparison__card > span {
  color: var(--pp-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-comparison__card--accent > span {
  color: var(--pp-accent-strong);
}

.product-comparison__card h3 {
  margin: 8px 0 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.product-comparison__card ul {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--pp-line);
  list-style: none;
}

.product-comparison__card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--pp-line);
  color: #3f4c62;
  font-size: 14px;
}

.product-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.product-use-cases__grid article {
  border: 1px solid var(--pp-line);
  border-radius: 20px;
  padding: 25px;
  background: #fff;
}

.product-use-cases__grid article > i {
  color: var(--pp-accent);
  font-size: 29px;
}

.product-use-cases__grid h3 {
  margin-top: 18px;
}

.product-faq {
  background: #f7f9fb;
}

.product-faq__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.product-faq__heading {
  position: sticky;
  top: 124px;
  margin: 0;
  text-align: left;
}

.product-faq__heading h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.product-faq__list {
  display: grid;
  gap: 10px;
}

.product-faq details {
  border: 1px solid var(--pp-line);
  border-radius: 17px;
  background: #fff;
}

.product-faq summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

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

.product-faq summary i {
  flex: 0 0 auto;
  color: #7d899d;
  font-size: 19px;
  transition: transform 180ms ease;
}

.product-faq details[open] summary i {
  color: var(--pp-accent);
  transform: rotate(180deg);
}

.product-faq details p {
  margin: 0;
  padding: 0 20px 21px;
  color: var(--pp-copy);
  font-size: 14px;
  line-height: 1.7;
}

.product-related {
  padding-bottom: 72px;
}

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

.product-related__grid > a {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 1px solid var(--pp-line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-related__grid > a:hover {
  border-color: color-mix(in srgb, var(--pp-accent) 35%, white);
  box-shadow: 0 15px 35px rgba(24, 35, 59, 0.08);
  transform: translateY(-3px);
}

.product-related__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.product-related__icon i {
  font-size: 23px;
}

.product-related__grid h3 {
  margin-top: 0;
}

.product-related__grid p {
  margin-top: 6px;
}

.product-related__arrow {
  color: #8792a5;
  font-size: 20px;
}

.product-final-cta {
  padding: 0 0 88px;
}

.product-final-cta__inner {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 30px;
  padding: 52px 56px;
  background:
    radial-gradient(circle at 12% 20%, var(--pp-glow), transparent 42%),
    radial-gradient(circle at 85% 100%, rgba(51, 210, 211, 0.14), transparent 35%),
    #f4f8f6;
}

.product-final-cta__inner > div {
  max-width: 770px;
}

.product-final-cta h2 {
  margin: 9px 0 0;
  font-size: clamp(33px, 4.2vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.product-final-cta p {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--pp-copy);
  font-size: 16px;
}

.product-final-cta .product-button {
  flex: 0 0 auto;
}

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

.product-footer__inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.product-footer img {
  display: block;
  width: 125px;
  height: auto;
}

.product-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #526078;
  font-size: 13px;
  font-weight: 650;
}

.product-footer nav a:hover {
  color: var(--pp-accent-strong);
}

.product-footer__inner > span {
  color: #8a95a7;
  font-size: 12px;
}

@media (max-width: 1020px) {
  .product-header__nav {
    display: none;
  }

  .product-header__inner {
    grid-template-columns: 1fr auto;
  }

  .product-card-grid,
  .product-steps__grid {
    grid-template-columns: 1fr;
  }

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

  .product-story,
  .product-story--reverse {
    grid-template-columns: 1fr;
    padding: 36px 0 0 36px;
  }

  .product-story--reverse .product-story__copy,
  .product-story--reverse .product-story__visual {
    order: initial;
  }

  .product-story__copy {
    padding: 0 36px 0 0;
  }

  .product-story__visual,
  .product-story--reverse .product-story__visual {
    border-right: 0;
    border-left: 1px solid #e0e6ed;
    border-bottom: 0;
    border-radius: 22px 0 0 0;
  }

  .product-faq__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-faq__heading {
    position: static;
    max-width: 700px;
  }

  .product-final-cta__inner {
    display: grid;
  }

  .product-final-cta .product-button {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .product-shell {
    width: min(100% - 28px, 1216px);
  }

  .product-header__inner {
    min-height: 68px;
  }

  .product-header__logo img {
    width: 116px;
  }

  .product-header__login {
    display: none;
  }

  .product-header__cta {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .product-hero {
    padding: 20px 0 54px;
  }

  .product-breadcrumbs {
    font-size: 11px;
  }

  .product-breadcrumbs span:nth-of-type(1),
  .product-breadcrumbs i:nth-of-type(1) {
    display: none;
  }

  .product-hero__copy {
    margin: 48px 0 36px;
    text-align: left;
  }

  .product-eyebrow {
    font-size: 11px;
  }

  .product-hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 11.5vw, 54px);
    letter-spacing: -0.052em;
  }

  .product-hero__lead {
    margin-top: 19px;
    font-size: 16px;
  }

  .product-hero__actions {
    display: grid;
    justify-content: stretch;
  }

  .product-hero__actions .product-button {
    width: 100%;
  }

  .product-hero__facts {
    display: grid;
    justify-content: start;
    gap: 9px;
  }

  .product-window {
    border-radius: 16px;
  }

  .product-window__bar {
    min-height: 36px;
    padding: 0 10px;
  }

  .product-window__bar div {
    min-width: 128px;
    font-size: 9px;
  }

  .product-window__traffic {
    gap: 8px;
    padding: 8px;
  }

  .product-answer {
    padding-top: 52px;
  }

  .product-answer__inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-section {
    padding: 68px 0;
  }

  .product-section__heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .product-section__heading h2 {
    font-size: 34px;
  }

  .product-card-grid,
  .product-comparison__grid,
  .product-related__grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-comparison__card {
    padding: 24px;
  }

  .product-story,
  .product-story--reverse {
    border-radius: 22px;
    padding: 27px 0 0 24px;
  }

  .product-story__copy {
    padding-right: 24px;
  }

  .product-story h3 {
    font-size: 29px;
  }

  .product-steps__grid li {
    min-height: auto;
    padding: 24px;
  }

  .product-steps__grid h3 {
    margin-top: 24px;
  }

  .product-faq__layout {
    gap: 24px;
  }

  .product-final-cta {
    padding-bottom: 60px;
  }

  .product-final-cta__inner {
    min-height: 0;
    border-radius: 23px;
    padding: 34px 24px;
  }

  .product-final-cta h2 {
    font-size: 35px;
  }

  .product-final-cta .product-button {
    width: 100%;
  }

  .product-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0;
  }

  .product-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-button,
  .product-related__grid > a,
  .product-faq summary i {
    transition: none;
  }
}
