:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f5f5f7;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: inherit;
  letter-spacing: 0;
}

body.trapez-landing-body.has-site-header {
  padding-top: 0;
}

body.trapez-landing-body .site-header,
body.trapez-landing-body .pv-header {
  position: fixed;
}

body.trapez-product-modal-open {
  overflow: hidden;
}

body.trapez-calculator-modal-open {
  overflow: hidden;
}

.trapez-product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.44);
}

.trapez-product-modal-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.trapez-product-modal-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 28px;
  width: min(92vw, 1040px);
  min-height: min(78vh, 660px);
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.24);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.trapez-product-modal-loading.is-hiding {
  visibility: hidden;
  opacity: 0;
}

.trapez-product-modal-loading-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 480px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(241, 245, 249, 0.85), rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.85));
}

.trapez-product-modal-spinner {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(0, 113, 227, 0.14);
  border-top-color: #0071e3;
  border-radius: 50%;
  animation: trapezProductModalSpin 0.82s linear infinite;
}

.trapez-product-modal-loading-text {
  min-height: 24px;
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.trapez-product-modal-loading-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
}

.trapez-product-modal-loading-line,
.trapez-product-modal-loading-field {
  border-radius: 999px;
  background: #f2f2f7;
}

.trapez-product-modal-loading-line--title {
  width: 68%;
  height: 36px;
  margin: 0 auto;
}

.trapez-product-modal-loading-line--price {
  width: 42%;
  height: 26px;
  margin: 0 auto 12px;
}

.trapez-product-modal-loading-field {
  width: 100%;
  height: 64px;
  border-radius: 18px;
}

@keyframes trapezProductModalSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trapez-product-modal-spinner {
    animation-duration: 1.8s;
  }
}

.trapez-cart-added-toast {
  position: fixed;
  top: calc(82px + env(safe-area-inset-top, 0px));
  right: 28px;
  z-index: 10030;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.28);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(-14px) scale(0.98);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trapez-cart-added-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.trapez-cart-added-toast:focus-visible {
  outline: none;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.28), 0 0 0 3px rgba(250, 204, 21, 0.55);
}

.trapez-cart-added-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
}

.trapez-cart-added-toast-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.trapez-cart-added-toast-copy strong {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

.trapez-cart-added-toast-copy span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trapez-cart-confetti {
  position: fixed;
  inset: 0;
  z-index: 10020;
  overflow: hidden;
  pointer-events: none;
}

.trapez-cart-confetti span {
  position: absolute;
  top: 34%;
  left: 50%;
  width: 8px;
  height: 14px;
  border-radius: 3px;
  background: var(--c, #facc15);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: trapez-cart-confetti-pop 1180ms cubic-bezier(0.15, 0.72, 0.22, 1) forwards;
}

@keyframes trapez-cart-confetti-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 260px))) scale(0.92) rotate(var(--r, 360deg));
  }
}

button {
  font: inherit;
}

.trapez-page {
  min-height: 100vh;
  overflow: hidden;
  background: #f5f5f7;
}

.trapez-highlights {
  width: 100%;
  background: var(--section-bg, #f5f5f7);
  padding: 70px 0 46px;
}

body.trapez-landing-body.has-site-header .trapez-page > .trapez-highlights:first-child {
  padding-top: calc(var(--site-header-offset, 122px) + 70px);
}

.trapez-highlights-inner {
  width: 100%;
}

.trapez-highlights-title {
  width: min(100% - 46px, 1440px);
  margin: 0 auto 92px;
  color: var(--section-title-color, #1d1d1f);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.trapez-slider-shell {
  width: 100%;
}

.trapez-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(500px, 39vw, 760px);
  gap: 32px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 56px;
  padding: 0 56px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.trapez-slider-track::-webkit-scrollbar {
  display: none;
}

.trapez-highlight-card {
  position: relative;
  height: 640px;
  min-height: 640px;
  overflow: hidden;
  border-radius: 40px;
  background: #ffffff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transform: translateZ(0);
  cursor: pointer;
}

.trapez-highlight-image {
  --slide-image-x: var(--slide-image-x-desktop, 50%);
  --slide-image-y: var(--slide-image-y-desktop, 50%);
  --slide-image-scale: var(--slide-image-scale-desktop, 1);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-image-x) var(--slide-image-y);
  opacity: 0.78;
  transform-origin: var(--slide-image-x) var(--slide-image-y);
  transform: scale(calc(var(--slide-image-scale) + 0.018));
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.trapez-highlight-card.is-active .trapez-highlight-image {
  opacity: 1;
  transform: scale(var(--slide-image-scale));
}

.trapez-highlight-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.trapez-highlight-copy {
  position: absolute;
  z-index: 1;
  left: clamp(26px, 3vw, 42px);
  right: clamp(26px, 3vw, 42px);
  display: grid;
  gap: 12px;
  min-width: 0;
  color: var(--slide-title-color, #000000);
  text-align: var(--slide-text-align, center);
  pointer-events: none;
  opacity: 1;
  --copy-y: 0;
  transform: translate3d(0, var(--copy-y), 0);
  transition:
    opacity 360ms ease 180ms,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms;
  will-change: opacity, transform;
}

.trapez-slider-track.is-ready .trapez-highlight-copy {
  opacity: 1;
  transform: translate3d(-10px, var(--copy-y), 0);
}

.trapez-highlight-card.is-active.is-revealed .trapez-highlight-copy {
  opacity: 1;
  transform: translate3d(0, var(--copy-y), 0);
}

.trapez-highlight-copy--top-center,
.trapez-highlight-copy--top-left,
.trapez-highlight-copy--top-right {
  top: 72px;
}

.trapez-highlight-copy--center,
.trapez-highlight-copy--center-center {
  top: 50%;
  --copy-y: -50%;
}

.trapez-highlight-copy--bottom-center,
.trapez-highlight-copy--bottom-left,
.trapez-highlight-copy--bottom-right {
  bottom: 72px;
}

.trapez-highlight-copy--top-left,
.trapez-highlight-copy--center-left,
.trapez-highlight-copy--bottom-left {
  text-align: left;
}

.trapez-highlight-copy--top-right,
.trapez-highlight-copy--center-right,
.trapez-highlight-copy--bottom-right {
  text-align: right;
}

.trapez-highlight-copy h2 {
  margin: 0;
  max-width: 100%;
  color: var(--slide-title-color, #000000);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  font-weight: var(--slide-title-weight, 750);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.trapez-highlight-copy p {
  margin: 0;
  max-width: 100%;
  color: var(--slide-subtitle-color, var(--slide-title-color, #000000));
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  font-weight: var(--slide-subtitle-weight, 650);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.trapez-slider-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: max-content;
  min-height: 78px;
  margin: 82px auto 0;
  padding: 18px 28px;
  border-radius: 999px;
  background: rgba(232, 232, 237, 0.92);
}

.trapez-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #727276;
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.trapez-slider-dot.is-active {
  width: 44px;
  background: #727276;
  transform: translateZ(0);
}

.trapez-slider-dot:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.45);
  outline-offset: 5px;
}

.trapez-hero-image {
  width: 100%;
  min-height: 100vh;
  background: var(--hero-bg, #ffffff);
  padding: 150px 24px 160px;
}

.trapez-hero-image-inner {
  width: min(100%, 1180px);
  min-height: calc(100vh - 310px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.trapez-landing-body.has-site-header .trapez-hero-image {
  min-height: 100vh;
  padding-top: 195px;
  padding-bottom: 130px;
}

body.trapez-landing-body.has-site-header .trapez-hero-image-inner {
  min-height: calc(100vh - 325px);
}

body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:first-child {
  padding-top: calc(var(--site-header-offset, 122px) + 68px);
  padding-bottom: 42px;
}

body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:first-child .trapez-hero-image-inner {
  min-height: calc(100vh - var(--site-header-offset, 122px) - 110px);
}

body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:not(:first-child) {
  padding-top: 145px;
  padding-bottom: 96px;
}

body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:not(:first-child) .trapez-hero-image-inner {
  min-height: calc(100vh - 241px);
}

.trapez-hero-image.is-text-only {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.trapez-hero-image.is-text-only .trapez-hero-image-inner {
  min-height: auto;
  gap: 18px;
}

body.trapez-landing-body.has-site-header .trapez-hero-image.is-text-only,
body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:first-child,
body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:not(:first-child) {
  min-height: auto;
  padding-top: 130px;
  padding-bottom: 110px;
}

body.trapez-landing-body.has-site-header .trapez-hero-image.is-text-only .trapez-hero-image-inner,
body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:first-child .trapez-hero-image-inner,
body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:not(:first-child) .trapez-hero-image-inner {
  min-height: auto;
}

.trapez-hero-image.is-text-only .trapez-hero-copy--top,
.trapez-hero-image.is-text-only .trapez-hero-copy--bottom {
  margin: 0;
}

.trapez-hero-image.is-text-only .trapez-hero-cta {
  margin-top: 8px;
}

.trapez-hero-copy {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.trapez-hero-copy--top {
  margin-bottom: 54px;
}

.trapez-hero-copy--bottom {
  margin-top: 58px;
}

.trapez-hero-line {
  margin: 0;
  color: var(--hero-line-color, #1d1d1f);
  font-size: clamp(18px, var(--hero-line-size, 34px), 96px);
  line-height: 1.04;
  font-weight: var(--hero-line-weight, 750);
  letter-spacing: 0;
}

.trapez-hero-media {
  display: block;
  width: min(100%, var(--hero-image-max, 620px));
  height: auto;
  object-fit: contain;
}

.trapez-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.trapez-hero-cta--blue {
  background: #0071e3;
  color: #ffffff;
}

.trapez-hero-cta--yellow {
  background: #ffd60a;
  color: #1d1d1f;
}

.trapez-hero-cta--dark {
  background: #1d1d1f;
  color: #ffffff;
}

.trapez-hero-cta--light {
  background: #f5f5f7;
  color: #1d1d1f;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.14);
}

.trapez-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  color: #1d1d1f;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trapez-section-eyebrow span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #050505;
}

.trapez-seo-text {
  background: var(--seo-section-bg, #ffffff);
  padding: 96px 24px;
}

.trapez-seo-text-inner,
.trapez-faq-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.trapez-seo-text h2,
.trapez-faq h2,
.trapez-reviews h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.03;
  font-weight: 850;
  letter-spacing: 0;
}

.trapez-seo-lead {
  max-width: 980px;
  margin: 30px 0 0;
  color: #2b2b2d;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.25;
  font-weight: 650;
}

.trapez-seo-body {
  display: grid;
  gap: 20px;
  max-width: 940px;
  margin-top: 38px;
}

.trapez-seo-body p {
  margin: 0;
  color: #4f4f52;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.58;
  font-weight: 450;
}

.trapez-seo-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.trapez-seo-benefits li {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #f5f5f7;
}

.trapez-seo-benefits strong,
.trapez-seo-benefits span {
  display: block;
}

.trapez-seo-benefits strong {
  color: #111827;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.trapez-seo-benefits span {
  margin-top: 10px;
  color: #5f6268;
  font-size: 16px;
  line-height: 1.45;
}

.trapez-quiz {
  background: var(--quiz-section-bg, #ffffff);
  padding: 96px 24px;
}

.trapez-quiz-inner,
.trapez-calculator-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.trapez-quiz-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.trapez-quiz h2,
.trapez-calculator-cta h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.03;
  font-weight: 850;
  letter-spacing: 0;
}

.trapez-quiz-title-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.trapez-quiz-title-row .trapez-section-eyebrow {
  grid-column: 1 / -1;
  justify-self: center;
}

.trapez-quiz-title-row h2 {
  grid-column: 2;
}

.trapez-quiz-title-back {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.trapez-quiz-title-back:hover,
.trapez-quiz-title-back:focus-visible {
  border-color: rgba(17, 24, 39, 0.36);
  outline: none;
}

.trapez-quiz-title-back svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.trapez-quiz-header > p:not(.trapez-section-eyebrow),
.trapez-calculator-copy > p:not(.trapez-section-eyebrow) {
  max-width: 920px;
  margin: 28px 0 0;
  color: #4f4f52;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.5;
}

.trapez-quiz-shell {
  margin-top: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trapez-quiz-progress {
  display: none;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.12);
}

.trapez-quiz-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #111827;
  transition: width 280ms ease;
}

.trapez-quiz-status {
  display: none;
  margin-top: 16px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.trapez-quiz-stage {
  min-height: 0;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 240ms ease;
}

.trapez-quiz-stage.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.trapez-quiz-question h3,
.trapez-quiz-result h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}

.trapez-quiz-question h3 {
  margin: 0;
  text-align: left;
}

.trapez-quiz-question-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.trapez-quiz-intro {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 0;
}

.trapez-quiz-start,
.trapez-quiz-ai {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: min(100%, 360px);
  padding: 0 32px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
}

.trapez-quiz-start {
  border: 1px solid #d9a900;
  background: #ffd60a;
  color: #1d1d1f;
  box-shadow: 0 12px 24px rgba(255, 214, 10, 0.2);
}

.trapez-quiz-start:hover,
.trapez-quiz-start:focus-visible {
  background: #facc15;
  outline: none;
}

.trapez-quiz-ai {
  border: 1px solid rgba(29, 29, 31, 0.22);
  background: #ffffff;
  color: #1d1d1f;
}

.trapez-quiz-ai:hover,
.trapez-quiz-ai:focus-visible {
  background: #f5f5f7;
  outline: none;
}

.trapez-quiz-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trapez-quiz-choice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1.5px solid rgba(17, 24, 39, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.trapez-quiz-choice:hover,
.trapez-quiz-choice:focus-visible {
  border-color: rgba(17, 24, 39, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.trapez-quiz-choice.is-selected {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: scale(0.985);
}

.trapez-quiz-choice:disabled {
  cursor: default;
  opacity: 0.76;
}

.trapez-quiz-choice-label {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 500;
}

.trapez-quiz-choice-swatch {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--quiz-swatch, #e5e7eb);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.18);
}

.trapez-quiz-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.trapez-quiz-back:hover,
.trapez-quiz-back:focus-visible {
  border-color: rgba(17, 24, 39, 0.34);
  background: #f5f5f7;
  outline: none;
}

.trapez-quiz-back svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform: translateX(1.5px);
}

.trapez-quiz-loading {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: #4f4f52;
  font-size: 20px;
  font-weight: 750;
}

.trapez-quiz-result {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 38px);
  border: 2px solid rgba(17, 24, 39, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}

.trapez-quiz-result-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
}

.trapez-quiz-result-media img,
.trapez-quiz-result-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.trapez-quiz-result-media img {
  padding: clamp(14px, 2vw, 28px);
  box-sizing: border-box;
}

.trapez-quiz-result-placeholder {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(255, 214, 10, 0.22)),
    #eef2f7;
}

.trapez-quiz-result-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
}

.trapez-quiz-result-kicker {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  background: transparent;
  color: #4f4f52;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  font-weight: 850;
  text-transform: none;
}

.trapez-quiz-result h3 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.trapez-quiz-result-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 680px);
  margin: 0;
}

.trapez-quiz-result-specs div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  align-items: center;
  min-height: 86px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.trapez-quiz-result-specs dt,
.trapez-quiz-result-price span {
  color: #6b7280;
  font-size: 15px;
  font-weight: 800;
}

.trapez-quiz-result-specs dd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.08;
}

.trapez-quiz-result-color-swatch {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--quiz-swatch, #e5e7eb);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.18);
}

.trapez-quiz-result-price {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #111827;
  line-height: 1.1;
}

.trapez-quiz-price-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2px;
}

.trapez-quiz-result-price strong {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
}

.trapez-quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.trapez-quiz-buy,
.trapez-calculator-button,
.trapez-quiz-restart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.trapez-quiz-buy,
.trapez-calculator-button {
  padding: 0 32px;
  background: #111827;
  color: #ffffff;
}

.trapez-quiz-buy {
  min-height: 54px;
  background: #ffd60a;
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 500;
  box-shadow: none;
}

.trapez-quiz-buy:hover,
.trapez-quiz-buy:focus-visible {
  background: #facc15;
  color: #1d1d1f;
  outline: none;
}

.trapez-quiz-restart {
  width: 52px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: #ffffff;
  color: #111827;
}

.trapez-quiz-restart:hover,
.trapez-quiz-restart:focus-visible {
  border-color: rgba(17, 24, 39, 0.34);
  background: #f5f5f7;
  outline: none;
}

.trapez-quiz-restart svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trapez-calculator-cta {
  background: var(--calculator-section-bg, #f5f5f7);
  padding: 96px 24px;
}

.trapez-calculator-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.trapez-calculator-copy {
  min-width: 0;
}

.trapez-calculator-button {
  margin-top: 30px;
  background: #ffd60a;
  color: #111827;
}

.trapez-calculator-visual {
  min-width: 0;
}

.trapez-roof-diagram {
  width: 100%;
  aspect-ratio: 12 / 7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.trapez-roof-diagram svg {
  display: block;
  width: 100%;
  height: 100%;
}

.trapez-calculator-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.54);
}

.trapez-calculator-modal-panel {
  position: relative;
  width: min(100%, 1100px);
  height: min(86vh, 780px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
}

.trapez-calculator-modal-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.trapez-calculator-modal-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(0, 113, 227, 0.14);
  border-top-color: #0071e3;
  border-radius: 50%;
  animation: trapezCalculatorModalSpin 0.82s linear infinite;
}

.trapez-calculator-modal-overlay.is-loaded .trapez-calculator-modal-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.trapez-calculator-modal-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

@keyframes trapezCalculatorModalSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trapez-calculator-modal-spinner {
    animation-duration: 1.8s;
  }
}

.trapez-faq {
  background: var(--faq-section-bg, #fbf7f4);
  padding: 104px 24px;
}

.trapez-faq-list {
  display: grid;
  gap: 28px;
  margin-top: 58px;
}

.trapez-faq-item {
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.04);
}

.trapez-faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 118px;
  padding: 28px 46px 28px 52px;
  border: 0;
  background: transparent;
  color: #080808;
  text-align: left;
  cursor: pointer;
}

.trapez-faq-question span:first-child {
  min-width: 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 850;
  overflow-wrap: break-word;
}

.trapez-faq-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #050505;
  transition: background-color 180ms ease, transform 220ms ease;
}

.trapez-faq-item.is-open .trapez-faq-icon {
  background: #808080;
  transform: rotate(180deg);
}

.trapez-faq-icon::before,
.trapez-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.trapez-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.trapez-faq-item.is-open .trapez-faq-icon::after {
  opacity: 0;
}

.trapez-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 52px;
  transform: translateY(-8px);
  transition:
    max-height 300ms ease,
    opacity 220ms ease,
    padding 300ms ease,
    transform 300ms ease;
}

.trapez-faq-item.is-open .trapez-faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 42px;
  transform: translateY(0);
}

.trapez-faq-answer p {
  max-width: 980px;
  margin: 0;
  color: #5a5a5d;
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: 1.55;
  font-weight: 450;
}

.trapez-faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
}

.trapez-reviews {
  background: var(--reviews-section-bg, #ffffff);
  padding: 100px 0 92px;
}

.trapez-reviews-header {
  width: min(100% - 48px, 1220px);
  margin: 0 auto 54px;
}

.trapez-reviews-header p {
  max-width: 900px;
  margin: 26px 0 0;
  color: #52555b;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.5;
}

.trapez-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(420px, 48vw, 680px);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 56px;
  padding: 0 56px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.trapez-review-track::-webkit-scrollbar {
  display: none;
}

.trapez-review-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #f5f5f7;
  scroll-snap-align: start;
}

.trapez-review-image,
.trapez-review-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  background: #e5e7eb;
  object-fit: cover;
}

.trapez-review-image-placeholder {
  background:
    linear-gradient(135deg, rgba(118, 189, 47, 0.16), rgba(17, 24, 39, 0.08)),
    #eef2f7;
}

.trapez-review-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trapez-review-platform {
  width: max-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
}

.trapez-review-copy p {
  margin: 22px 0 0;
  color: #111827;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 650;
}

.trapez-review-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 26px;
}

.trapez-review-meta strong {
  color: #111827;
  font-size: 17px;
  line-height: 1.2;
}

.trapez-review-meta span {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.25;
}

.trapez-review-cta {
  width: max-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

body.trapez-review-modal-open {
  overflow: hidden;
}

.trapez-review-modal {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.52);
}

.trapez-review-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  width: min(100%, 920px);
  max-height: min(82vh, 720px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
}

.trapez-review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.trapez-review-modal-image {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

.trapez-review-modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-right: 44px;
}

.trapez-review-modal-copy span {
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.trapez-review-modal-copy p {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.4;
  font-weight: 600;
}

.trapez-review-modal-copy strong,
.trapez-review-modal-copy small {
  display: block;
}

.trapez-review-modal-copy small {
  margin-top: 4px;
  color: #6b7280;
}

@media (max-width: 760px) {
  .trapez-product-modal-loading {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100vw - 40px);
    min-height: min(88vh, 820px);
    padding: 24px;
    border-radius: 28px;
  }

  .trapez-product-modal-loading-media {
    min-height: 46vh;
  }

  .trapez-product-modal-loading-content {
    padding-top: 0;
  }

  .trapez-cart-added-toast {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(360px, calc(100vw - 36px));
    transform: translate(-50%, calc(-50% - 12px)) scale(0.98);
  }

  .trapez-cart-added-toast.is-visible {
    transform: translate(-50%, -50%) scale(1);
  }

  .trapez-highlight-image {
    --slide-image-x: var(--slide-image-x-mobile, var(--slide-image-x-desktop, 50%));
    --slide-image-y: var(--slide-image-y-mobile, var(--slide-image-y-desktop, 50%));
    --slide-image-scale: var(--slide-image-scale-mobile, var(--slide-image-scale-desktop, 1));
  }

  .trapez-highlights {
    padding: 38px 0 30px;
  }

  body.trapez-landing-body.has-site-header .trapez-page > .trapez-highlights:first-child {
    padding-top: calc(var(--site-header-offset, 88px) + 24px);
  }

  .trapez-highlights-title {
    width: calc(100% - 46px);
    margin-bottom: 34px;
    font-size: 40px;
  }

  .trapez-slider-track {
    grid-auto-columns: 85vw;
    gap: 24px;
    scroll-padding-inline: 23px;
    padding-inline: 23px;
  }

  .trapez-highlight-card {
    height: min(64vh, 640px);
    min-height: 490px;
    border-radius: 34px;
  }

  .trapez-highlight-copy {
    left: 36px;
    right: 36px;
    gap: 10px;
  }

  .trapez-highlight-copy--top-center,
  .trapez-highlight-copy--top-left,
  .trapez-highlight-copy--top-right {
    top: 50px;
  }

  .trapez-highlight-copy--bottom-center,
  .trapez-highlight-copy--bottom-left,
  .trapez-highlight-copy--bottom-right {
    bottom: 44px;
  }

  .trapez-highlight-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .trapez-highlight-copy p {
    max-width: 86%;
    justify-self: center;
    font-size: clamp(17px, 4.8vw, 21px);
  }

  .trapez-slider-indicator {
    min-height: 56px;
    margin-top: 22px;
    padding: 12px 22px;
    gap: 16px;
  }

  .trapez-hero-image {
    min-height: 100vh;
    padding: 118px 22px 126px;
  }

  body.trapez-landing-body.has-site-header .trapez-hero-image {
    min-height: 100vh;
    padding-top: 231px;
    padding-bottom: 104px;
  }

  .trapez-hero-image-inner {
    min-height: calc(100vh - 244px);
  }

  body.trapez-landing-body.has-site-header .trapez-hero-image-inner {
    min-height: calc(100vh - 335px);
  }

  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:first-child {
    padding-top: calc(var(--site-header-offset, 88px) + 34px);
    padding-bottom: 34px;
  }

  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:first-child .trapez-hero-image-inner {
    min-height: calc(100vh - var(--site-header-offset, 88px) - 68px);
  }

  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:not(:first-child) {
    padding-top: 170px;
    padding-bottom: 78px;
  }

  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image:not(:first-child) .trapez-hero-image-inner {
    min-height: calc(100vh - 248px);
  }

  .trapez-hero-image.is-text-only,
  body.trapez-landing-body.has-site-header .trapez-hero-image.is-text-only,
  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:first-child,
  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:not(:first-child) {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 82px;
  }

  .trapez-hero-image.is-text-only .trapez-hero-image-inner,
  body.trapez-landing-body.has-site-header .trapez-hero-image.is-text-only .trapez-hero-image-inner,
  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:first-child .trapez-hero-image-inner,
  body.trapez-landing-body.has-site-header .trapez-page > .trapez-hero-image.is-text-only:not(:first-child) .trapez-hero-image-inner {
    min-height: auto;
    gap: 14px;
  }

  .trapez-hero-image.is-text-only .trapez-hero-copy--top,
  .trapez-hero-image.is-text-only .trapez-hero-copy--bottom {
    margin: 0;
  }

  .trapez-hero-image.is-text-only .trapez-hero-cta {
    margin-top: 6px;
  }

  .trapez-hero-copy--top {
    margin-bottom: 42px;
  }

  .trapez-hero-copy--bottom {
    margin-top: 46px;
  }

  .trapez-hero-line {
    font-size: clamp(17px, calc(var(--hero-line-size, 34px) * 0.72), 58px);
  }

  .trapez-hero-cta {
    min-height: 48px;
    padding: 0 28px;
    font-size: 20px;
  }

  .trapez-seo-text,
  .trapez-faq,
  .trapez-quiz,
  .trapez-calculator-cta {
    padding: 68px 22px;
  }

  .trapez-quiz-shell {
    margin-top: 28px;
    padding: 0;
  }

  .trapez-quiz-stage {
    min-height: 0;
  }

  .trapez-quiz-choices,
  .trapez-quiz-result,
  .trapez-calculator-inner {
    grid-template-columns: 1fr;
  }

  .trapez-quiz-choice {
    min-height: 70px;
    padding: 16px;
  }

  .trapez-quiz-result-media,
  .trapez-quiz-result-media img,
  .trapez-quiz-result-placeholder {
    min-height: 230px;
    height: 230px;
  }

  .trapez-quiz-result-specs div {
    gap: 5px;
    text-align: center;
  }

  .trapez-quiz-result-specs dd {
    justify-content: center;
  }

  .trapez-calculator-inner {
    gap: 30px;
  }

  .trapez-roof-diagram {
    aspect-ratio: 1 / 0.72;
  }

  .trapez-calculator-modal-overlay {
    padding: 0;
  }

  .trapez-calculator-modal-panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .trapez-seo-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trapez-faq-list {
    gap: 18px;
    margin-top: 34px;
  }

  .trapez-faq-item {
    border-radius: 24px;
  }

  .trapez-faq-question {
    grid-template-columns: minmax(0, 1fr) 54px;
    min-height: 86px;
    padding: 20px 18px 20px 24px;
  }

  .trapez-faq-icon {
    width: 52px;
    height: 52px;
  }

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

  .trapez-faq-item.is-open .trapez-faq-answer {
    padding-bottom: 28px;
  }

  .trapez-reviews {
    padding: 72px 0 58px;
  }

  .trapez-review-track {
    grid-auto-columns: 86vw;
    gap: 18px;
    scroll-padding-inline: 23px;
    padding-inline: 23px;
  }

  .trapez-review-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .trapez-review-image,
  .trapez-review-image-placeholder {
    min-height: 220px;
    height: 220px;
  }

  .trapez-review-modal-panel {
    grid-template-columns: 1fr;
    max-height: 86vh;
    padding: 20px;
  }

  .trapez-review-modal-image {
    min-height: 220px;
    height: 220px;
  }

  .trapez-review-modal-copy {
    padding-right: 0;
  }
}

@media (max-width: 390px) {
  .trapez-slider-track {
    grid-auto-columns: 85vw;
    gap: 20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .trapez-highlight-card {
    border-radius: 34px;
  }

  .trapez-slider-indicator {
    gap: 18px;
  }
}

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

  .trapez-highlight-image,
  .trapez-highlight-copy,
  .trapez-slider-dot,
  .trapez-faq-icon,
  .trapez-faq-answer,
  .trapez-quiz-stage,
  .trapez-quiz-progress span,
  .trapez-quiz-choice {
    transition: none;
  }

  .trapez-highlight-image,
  .trapez-highlight-card.is-active .trapez-highlight-image {
    opacity: 1;
    transform: scale(var(--slide-image-scale));
  }

  .trapez-highlight-copy,
  .trapez-highlight-card.is-active .trapez-highlight-copy {
    opacity: 1;
    transform: translate3d(0, var(--copy-y), 0);
  }
}
