.product-detail-page {
  --product-ink: #172033;
  --product-text: #4f5b6d;
  --product-muted: #5c687a;
  --product-line: #d8e3f2;
  --product-surface: #f7faff;
  --product-surface-strong: #eaf2ff;
  --product-blue: #165dff;
  --product-blue-deep: #0a3d9c;
  --product-orange: #b94a00;
  --product-orange-hover: #963c00;
  margin: 0;
  overflow-x: hidden;
  background: #fbfdff;
  color: var(--product-ink);
  font-family: "Segoe UI", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial,
    sans-serif;
}

.product-detail-page :where(h1, h2, h3, p, dl, figure) {
  margin-top: 0;
}

.product-detail-page :where(#overview, #views, #workflow, #data, #download, #faq) {
  scroll-margin-top: 150px;
}

.product-detail-page :where(a, summary):focus-visible {
  outline: 3px solid rgba(22, 93, 255, 0.52);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--product-blue-deep);
  color: #f8fbff;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.product-detail-page .header-cta,
.product-detail-page .btn-orange {
  background: var(--product-orange);
  color: #ffffff;
}

.product-detail-page .header-phone {
  color: var(--product-orange);
}

.product-detail-page .header-cta:hover,
.product-detail-page .btn-orange:hover {
  background: var(--product-orange-hover);
}

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

.product-subnav {
  position: sticky;
  z-index: 16;
  top: 80px;
  height: 54px;
  margin-top: 80px;
  border-bottom: 1px solid rgba(22, 93, 255, 0.13);
  background: rgba(251, 253, 255, 0.96);
  backdrop-filter: blur(16px);
}

.product-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.product-subnav-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--product-ink);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.product-subnav-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.product-subnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
  color: #445064;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.product-subnav-links a {
  position: relative;
}

.product-subnav-links a::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 2px;
  background: var(--product-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-subnav-links a:hover {
  color: var(--product-blue);
}

.product-subnav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-hero {
  display: grid;
  align-items: start;
  min-height: calc(100dvh - 134px);
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 80% 18%, rgba(22, 93, 255, 0.1), transparent 27%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: 56px;
  align-items: center;
}

.product-hero-copy {
  position: relative;
  z-index: 1;
}

.product-eyebrow {
  margin-bottom: 17px;
  color: var(--product-blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-hero h1 {
  max-width: 9.5em;
  margin-bottom: 24px;
  color: var(--product-ink);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.product-hero-lead {
  max-width: 31em;
  margin-bottom: 30px;
  color: var(--product-text);
  font-size: 19px;
  line-height: 1.72;
}

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

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease,
    transform 0.22s ease, box-shadow 0.22s ease;
}

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

.product-btn:active {
  transform: translateY(0) scale(0.98);
}

.product-btn-primary,
.product-btn-contact {
  background: var(--product-orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(168, 66, 0, 0.2);
}

.product-btn-primary:hover,
.product-btn-contact:hover {
  background: var(--product-orange-hover);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(138, 52, 0, 0.24);
}

.product-btn-secondary {
  border-color: rgba(22, 93, 255, 0.42);
  background: rgba(255, 255, 255, 0.76);
  color: var(--product-blue-deep);
}

.product-btn-secondary:hover {
  border-color: var(--product-blue);
  background: #edf4ff;
  color: var(--product-blue-deep);
}

.product-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 93, 255, 0.2);
  border-radius: 8px;
  background: #d9ebff;
  box-shadow: 0 28px 62px rgba(20, 70, 142, 0.18);
}

.product-hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 34 / 21;
  object-fit: cover;
}

.product-proof {
  border-top: 1px solid rgba(22, 93, 255, 0.08);
  border-bottom: 1px solid rgba(22, 93, 255, 0.12);
  background: #ffffff;
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-proof dl {
  margin: 0;
  padding: 28px 30px;
}

.product-proof dl + dl {
  border-left: 1px solid var(--product-line);
}

.product-proof dt {
  margin-bottom: 5px;
  color: var(--product-ink);
  font-size: 17px;
  font-weight: 800;
}

.product-proof dd {
  margin: 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.product-section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 48px;
  text-align: center;
}

.product-section-heading.align-left {
  align-items: flex-start;
  margin-inline: 0;
  text-align: left;
}

.product-section-heading h2 {
  max-width: 17em;
  margin-bottom: 15px;
  color: var(--product-ink);
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.product-section-heading p {
  max-width: 45em;
  margin-bottom: 0;
  color: var(--product-text);
  font-size: 17px;
  line-height: 1.75;
}

.desktop-capability-section {
  background: #ffffff;
}

.desktop-capability-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 58px;
  align-items: stretch;
}

.desktop-capability-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 340px;
  padding: 38px;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 15%, rgba(22, 93, 255, 0.15), transparent 28%),
    #edf4ff;
}

.desktop-capability-mark img {
  width: 82px;
  height: 82px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(22, 93, 255, 0.19);
}

.desktop-capability-mark strong {
  margin-bottom: 12px;
  color: var(--product-ink);
  font-size: 24px;
  line-height: 1.35;
}

.desktop-capability-mark p {
  margin-bottom: 0;
  color: var(--product-text);
  font-size: 15.5px;
  line-height: 1.7;
}

.desktop-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
}

.desktop-capability-list article {
  padding: 30px 0;
  border-top: 1px solid var(--product-line);
}

.desktop-capability-list article:nth-child(-n + 2) {
  border-top-color: var(--product-blue);
}

.desktop-capability-list h3,
.view-mode-notes h3,
.workflow-grid h3,
.data-assurance-grid h3 {
  margin-bottom: 9px;
  color: var(--product-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.desktop-capability-list p,
.view-mode-notes p,
.workflow-grid p,
.data-assurance-grid p {
  margin-bottom: 0;
  color: var(--product-text);
  font-size: 15px;
  line-height: 1.7;
}

.compatibility-note {
  margin: 32px 0 0 388px;
  padding: 14px 18px;
  border-left: 3px solid var(--product-blue);
  border-radius: 0 8px 8px 0;
  background: var(--product-surface);
  color: #49566a;
  font-size: 14px;
  line-height: 1.65;
}

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

.view-showcase {
  position: relative;
  min-height: 760px;
  margin-bottom: 56px;
}

.view-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(23, 61, 113, 0.12);
}

.view-figure img {
  width: 100%;
  height: auto;
}

.view-figure figcaption {
  padding: 14px 18px 16px;
  color: #536075;
  font-size: 14px;
  line-height: 1.5;
}

.view-figure-primary {
  width: 73%;
}

.view-figure-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 59%;
}

.view-mode-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.view-mode-notes > div {
  padding-top: 21px;
  border-top: 2px solid var(--product-line);
}

.view-mode-notes > div:first-child {
  border-top-color: var(--product-blue);
}

.workflow-section {
  background: #ffffff;
}

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

.workflow-grid figure,
.workflow-grid article {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 93, 255, 0.17);
  border-radius: 8px;
}

.workflow-grid figure {
  background: #e8eef7;
}

.workflow-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-task-visual {
  grid-column: 1 / span 8;
  min-height: 440px;
}

.workflow-reminder {
  grid-column: 9 / span 4;
  padding: 36px;
  background:
    radial-gradient(circle at 90% 8%, rgba(22, 93, 255, 0.13), transparent 30%),
    var(--product-surface-strong);
}

.workflow-reminder h3 {
  margin-bottom: 22px;
  font-size: 25px;
}

.workflow-reminder p + p {
  margin-top: 18px;
}

.workflow-note-visual {
  grid-column: 1 / span 5;
  min-height: 365px;
}

.workflow-detail {
  display: grid;
  grid-column: 6 / span 7;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 34px;
  background: #ffffff;
}

.workflow-detail > div {
  padding: 36px 24px;
}

.workflow-detail > div + div {
  border-left: 1px solid var(--product-line);
}

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

.productivity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.productivity-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(20, 63, 127, 0.13);
}

.productivity-visual img {
  width: 100%;
  height: auto;
}

.productivity-copy .product-section-heading {
  margin-bottom: 30px;
}

.productivity-index {
  margin: 0;
}

.productivity-index > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--product-line);
}

.productivity-index dt {
  color: var(--product-ink);
  font-weight: 800;
}

.productivity-index dd {
  margin: 0;
  color: var(--product-text);
  font-size: 14.5px;
  line-height: 1.65;
}

.data-section {
  background: #ffffff;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  align-items: center;
}

.data-copy .product-section-heading {
  margin-bottom: 30px;
}

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

.data-assurance-grid article {
  padding: 21px 0;
  border-top: 1px solid var(--product-line);
}

.data-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: #edf4ff;
  box-shadow: 0 24px 50px rgba(20, 63, 127, 0.13);
}

.data-visual img {
  width: 100%;
  height: auto;
}

.local-data-note {
  margin: 26px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--product-blue);
  background: var(--product-surface);
  color: #46546a;
  font-size: 14px;
  line-height: 1.65;
}

.download-section {
  border-top: 1px solid rgba(22, 93, 255, 0.08);
  background: var(--product-surface);
}

.download-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 22px;
}

.download-choice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  min-height: 280px;
  padding: 36px;
  border: 1px solid rgba(22, 93, 255, 0.19);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(21, 60, 114, 0.08);
}

.download-choice-recommended {
  border-color: rgba(22, 93, 255, 0.58);
  background:
    radial-gradient(circle at 90% 8%, rgba(22, 93, 255, 0.12), transparent 28%),
    #ffffff;
}

.download-choice h3 {
  margin-bottom: 12px;
  color: var(--product-ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.25;
}

.download-choice p {
  max-width: 38em;
  margin-bottom: 24px;
  color: var(--product-text);
  font-size: 15.5px;
  line-height: 1.72;
}

.system-requirements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--product-line);
  border-bottom: 1px solid var(--product-line);
}

.system-requirements > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 28px;
}

.system-requirements > div + div {
  border-left: 1px solid var(--product-line);
}

.system-requirements strong {
  color: var(--product-ink);
  font-size: 15px;
}

.system-requirements span {
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.55;
}

.trial-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: #eaf2ff;
}

.trial-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--product-ink);
  font-size: 18px;
}

.trial-notice p {
  margin-bottom: 0;
  color: var(--product-text);
  font-size: 14.5px;
  line-height: 1.65;
}

.faq-section {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.faq-layout .product-section-heading {
  position: sticky;
  top: 164px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--product-line);
}

.faq-list details {
  border-bottom: 1px solid var(--product-line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--product-ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--product-blue);
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 58em;
  margin-bottom: 23px;
  padding-right: 48px;
  color: var(--product-text);
  font-size: 15.5px;
  line-height: 1.8;
}

.product-footer {
  margin-top: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .product-hero-copy {
    animation: product-hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes product-hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .product-subnav-inner,
  .product-shell {
    width: min(100% - 40px, 980px);
  }

  .product-subnav-links {
    gap: 17px;
  }

  .product-hero-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(440px, 1.22fr);
    gap: 34px;
  }

  .view-showcase {
    min-height: 660px;
  }

  .workflow-task-visual {
    min-height: 390px;
  }

  .workflow-detail {
    padding: 0 16px;
  }

  .workflow-detail > div {
    padding-inline: 18px;
  }

  .productivity-layout,
  .data-layout {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .product-subnav-brand span {
    display: none;
  }

  .product-hero {
    min-height: auto;
    padding-block: 64px 74px;
  }

  .product-hero-grid,
  .desktop-capability-layout,
  .productivity-layout,
  .data-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    gap: 42px;
  }

  .product-hero h1 {
    max-width: 15em;
  }

  .product-hero-lead {
    max-width: 38em;
  }

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

  .product-proof dl:nth-child(3) {
    border-left: 0;
  }

  .product-proof dl:nth-child(n + 3) {
    border-top: 1px solid var(--product-line);
  }

  .desktop-capability-mark {
    min-height: 0;
  }

  .compatibility-note {
    margin-left: 0;
  }

  .view-showcase {
    display: grid;
    gap: 22px;
    min-height: 0;
  }

  .view-figure-primary,
  .view-figure-secondary {
    position: static;
    width: 100%;
  }

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

  .workflow-task-visual,
  .workflow-reminder,
  .workflow-note-visual,
  .workflow-detail {
    grid-column: auto;
  }

  .workflow-task-visual {
    grid-column: 1 / -1;
  }

  .workflow-reminder,
  .workflow-note-visual {
    min-height: 360px;
  }

  .workflow-detail {
    grid-column: 1 / -1;
  }

  .data-visual {
    grid-row: 1;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-layout .product-section-heading {
    position: static;
  }

  .download-choice-grid {
    grid-template-columns: 1fr;
  }

  .download-choice {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .product-detail-page .site-nav {
    flex: 0 0 100%;
  }

  .product-subnav {
    position: relative;
    top: auto;
    height: 52px;
    margin-top: 0;
  }

  .product-subnav-inner,
  .product-shell {
    width: min(100% - 32px, 720px);
  }

  .product-subnav-inner {
    gap: 14px;
  }

  .product-subnav-links {
    justify-content: flex-start;
    flex: 1;
    overflow-x: auto;
    padding: 6px 2px;
    scrollbar-width: thin;
  }

  .product-subnav-links a::after {
    bottom: -10px;
  }

  .product-detail-page :where(#overview, #views, #workflow, #data, #download, #faq) {
    scroll-margin-top: 28px;
  }

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

  .product-section-heading {
    margin-bottom: 38px;
  }

  .view-mode-notes {
    gap: 24px;
  }

  .productivity-visual,
  .data-visual {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .product-detail-page .header-cta {
    width: auto;
  }

  .product-subnav-brand {
    display: none;
  }

  .product-subnav-links {
    width: 100%;
  }

  .product-hero {
    padding-block: 48px 58px;
  }

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

  .product-hero h1 {
    margin-bottom: 19px;
    font-size: clamp(36px, 11vw, 46px);
    letter-spacing: -0.04em;
  }

  .product-hero-lead {
    margin-bottom: 25px;
    font-size: 17px;
  }

  .product-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-btn {
    width: 100%;
  }

  .product-proof-grid,
  .desktop-capability-list,
  .view-mode-notes,
  .workflow-grid,
  .workflow-detail,
  .data-assurance-grid,
  .system-requirements {
    grid-template-columns: 1fr;
  }

  .product-proof dl + dl {
    border-top: 1px solid var(--product-line);
    border-left: 0;
  }

  .product-proof dl {
    padding: 22px 4px;
  }

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

  .product-section-heading h2 {
    font-size: 31px;
  }

  .product-section-heading p {
    font-size: 16px;
  }

  .desktop-capability-mark {
    padding: 28px;
  }

  .desktop-capability-list {
    margin-top: 12px;
  }

  .desktop-capability-list article:nth-child(2) {
    border-top-color: var(--product-line);
  }

  .workflow-task-visual,
  .workflow-reminder,
  .workflow-note-visual,
  .workflow-detail {
    grid-column: 1;
    min-height: 0;
  }

  .workflow-reminder {
    padding: 28px;
  }

  .workflow-detail {
    padding: 0 24px;
  }

  .workflow-detail > div {
    padding: 26px 0;
  }

  .workflow-detail > div + div {
    border-top: 1px solid var(--product-line);
    border-left: 0;
  }

  .productivity-index > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .download-choice {
    min-height: 0;
    padding: 28px;
  }

  .download-choice .product-btn {
    width: 100%;
  }

  .system-requirements {
    padding: 0;
  }

  .system-requirements > div {
    padding: 20px 0;
  }

  .system-requirements > div + div {
    border-top: 1px solid var(--product-line);
    border-left: 0;
  }

  .trial-notice {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .product-shell,
  .product-subnav-inner {
    width: calc(100% - 28px);
  }

  .productivity-index > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .view-figure figcaption {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-page {
    scroll-behavior: auto;
  }

  .product-detail-page *,
  .product-detail-page *::before,
  .product-detail-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
