.cvtr-page,
.cvtr-page * {
  box-sizing: border-box;
}

.cvtr-page {
  --cvtr-bg: #050505;
  --cvtr-panel: #0d0d0d;
  --cvtr-panel-2: #151515;
  --cvtr-line: #2a2a2a;
  --cvtr-text: #f5f5f5;
  --cvtr-muted: #bdbdbd;
  width: 100%;
  margin: 0;
  padding: 28px 0 54px;
  color: var(--cvtr-text);
  background: var(--cvtr-bg);
  font-family: inherit;
}

.cvtr-page button,
.cvtr-page input,
.cvtr-page a {
  font: inherit;
}

.cvtr-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.cvtr-section {
  margin: 0 0 24px;
  padding: 34px 28px;
  border: 1px solid #202020;
  border-radius: 10px;
  background: linear-gradient(145deg, #111, #090909);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.cvtr-heading {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.cvtr-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.cvtr-heading p {
  margin: 12px auto 0;
  color: var(--cvtr-muted);
  font-size: 14px;
  line-height: 1.7;
}

.cvtr-carousel {
  position: relative;
}

.cvtr-carousel-viewport {
  overflow: hidden;
}

.cvtr-test-track {
  display: flex;
  gap: 10px;
  width: 100%;
  transition: transform .38s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
  touch-action: pan-y;
}

.cvtr-test-card {
  flex: 0 0 calc((100% - 60px) / 7);
  min-width: 0;
  min-height: 276px;
  padding: 18px 13px 20px;
  border: 1px solid #242424;
  border-radius: 7px;
  background: linear-gradient(180deg, #1b1b1b, #111);
  text-align: center;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.cvtr-test-card:hover,
.cvtr-test-card:focus-visible {
  outline: none;
  transform: translateY(-4px);
  border-color: #606060;
  background: linear-gradient(180deg, #222, #151515);
}

.cvtr-card-number {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.cvtr-card-icon,
.cvtr-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cvtr-card-icon {
  width: 48px;
  height: 48px;
  margin: 2px auto 13px;
}

.cvtr-card-icon svg,
.cvtr-accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cvtr-card-icon svg text,
.cvtr-accordion-icon svg text {
  fill: currentColor;
  stroke: none;
  font-size: 20px;
  font-family: Arial, sans-serif;
}

.cvtr-test-card h3 {
  min-height: 44px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.cvtr-test-card h3 span {
  color: #e7e7e7;
}

.cvtr-test-card p {
  margin: 0;
  color: #c5c5c5;
  font-size: 11px;
  line-height: 1.72;
}

.cvtr-carousel-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -18px;
  padding: 0;
  border: 1px solid #606060;
  border-radius: 50%;
  color: #fff;
  background: #0a0a0a;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.cvtr-carousel-btn:hover:not(:disabled),
.cvtr-carousel-btn:focus-visible:not(:disabled) {
  color: #050505;
  background: #fff;
  outline: none;
}

.cvtr-carousel-btn:disabled {
  opacity: .25;
  cursor: default;
}

.cvtr-carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cvtr-prev { left: -18px; }
.cvtr-next { right: -18px; }

.cvtr-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  min-height: 8px;
  margin-top: 18px;
}

.cvtr-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #4a4a4a;
  cursor: pointer;
}

.cvtr-dot.is-active {
  background: #fff;
}

.cvtr-table-wrap {
  overflow-x: auto;
  border: 1px solid #303030;
  border-radius: 7px;
  scrollbar-color: #555 #111;
}

.cvtr-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.cvtr-table th:first-child,
.cvtr-table td:first-child {
  min-width: 250px;
}

.cvtr-table th,
.cvtr-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #292929;
  text-align: left;
  white-space: nowrap;
}

.cvtr-table th {
  color: #f6f6f6;
  background: linear-gradient(180deg, #252525, #1a1a1a);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.cvtr-table td {
  color: #d8d8d8;
  background: #0b0b0b;
  font-size: 13px;
}

.cvtr-table tbody tr {
  transition: background .2s ease;
}

.cvtr-table tbody tr:hover td {
  background: #141414;
}

.cvtr-table tr:last-child td {
  border-bottom: 0;
}

.cvtr-product-cell {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.cvtr-product-image-link {
  display: inline-flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 6px;
  color: #d8d8d8;
  background: #141414;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.cvtr-product-image-link:not(.is-static):hover,
.cvtr-product-image-link:not(.is-static):focus-visible {
  border-color: #8a8a8a;
  background: #1c1c1c;
  outline: none;
  transform: translateY(-1px);
}

.cvtr-product-image,
.cvtr-product-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.cvtr-product-image {
  object-fit: cover;
}

.cvtr-product-placeholder {
  display: grid;
  place-items: center;
  color: #9d9d9d;
  background: linear-gradient(145deg, #191919, #0f0f0f);
}

.cvtr-product-placeholder svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cvtr-product-link {
  position: relative;
  display: inline-flex;
  min-width: 0;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 650;
  white-space: normal;
}

.cvtr-product-link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: #fff;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.cvtr-product-link:hover,
.cvtr-product-link:focus-visible {
  color: #fff;
  outline: none;
}

.cvtr-product-link:hover::after,
.cvtr-product-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cvtr-product-name {
  min-width: 0;
  color: #dedede;
  font-weight: 650;
  white-space: normal;
}

.cvtr-report-link,
.cvtr-report-pending {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cvtr-report-link {
  color: #e6e6e6;
  text-decoration: none;
  transition: color .2s ease;
}

.cvtr-report-link:hover,
.cvtr-report-link:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cvtr-report-pending {
  color: #777;
}

.cvtr-document-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cvtr-center {
  margin-top: 22px;
  text-align: center;
}

.cvtr-outline-button {
  min-width: 228px;
  padding: 13px 20px;
  border: 1px solid #aaa;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.cvtr-outline-button:hover,
.cvtr-outline-button:focus-visible {
  color: #050505;
  background: #fff;
  border-color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.cvtr-empty-state {
  padding: 30px;
  border: 1px solid #2c2c2c;
  border-radius: 7px;
  color: #bdbdbd;
  background: #0b0b0b;
  text-align: center;
}

.cvtr-empty-state p {
  margin: 6px 0;
}

.cvtr-accordion {
  overflow: hidden;
  border: 1px solid var(--cvtr-line);
  border-radius: 7px;
  background: #0d0d0d;
}

.cvtr-accordion-item + .cvtr-accordion-item {
  border-top: 1px solid var(--cvtr-line);
}

.cvtr-accordion-trigger {
  display: grid;
  grid-template-columns: 52px minmax(175px, .9fr) minmax(280px, 2fr) 24px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 20px;
  border: 0;
  color: var(--cvtr-text);
  background: linear-gradient(90deg, #181818, #121212);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}

.cvtr-accordion-trigger:hover,
.cvtr-accordion-trigger:focus-visible,
.cvtr-accordion-item.is-open .cvtr-accordion-trigger {
  background: linear-gradient(90deg, #202020, #171717);
  outline: none;
}

.cvtr-accordion-icon {
  width: 38px;
  height: 38px;
  color: #f2f2f2;
}

.cvtr-accordion-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cvtr-accordion-summary {
  color: #d0d0d0;
  font-size: 12px;
  line-height: 1.55;
}

.cvtr-chevron {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: auto;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}

.cvtr-accordion-item.is-open .cvtr-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.cvtr-accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: #0b0b0b;
  transition: max-height .32s ease;
}

.cvtr-accordion-panel-inner {
  display: grid;
  grid-template-columns: 52px minmax(175px, .9fr) minmax(280px, 2fr) 24px;
  gap: 14px;
  padding: 14px 20px 16px;
  border-top: 1px solid #242424;
}

.cvtr-accordion-panel p {
  grid-column: 3 / 4;
  margin: 0;
  color: #c7c7c7;
  font-size: 12px;
  line-height: 1.7;
}

.cvtr-disclaimer {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 0 18px;
  color: #a9a9a9;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.cvtr-report-modal[hidden] {
  display: none;
}

.cvtr-report-modal {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.cvtr-report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(3px);
}

.cvtr-report-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 96vw);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid #3b3b3b;
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.cvtr-report-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-bottom: 1px solid #292929;
}

.cvtr-report-modal-head h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.cvtr-modal-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #555;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.cvtr-modal-close:hover,
.cvtr-modal-close:focus-visible {
  color: #050505;
  background: #fff;
  outline: none;
}

.cvtr-report-modal-body {
  display: grid;
  place-items: center;
  max-height: calc(92vh - 68px);
  padding: 18px;
  overflow: auto;
  background: #060606;
}

.cvtr-report-modal-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.cvtr-modal-open {
  overflow: hidden;
}

@media (min-width: 981px) {
  .cvtr-carousel-btn,
  .cvtr-dots {
    display: none;
  }
}

@media (max-width: 980px) {
  .cvtr-test-card {
    flex-basis: calc((100% - 20px) / 3);
  }

  .cvtr-accordion-trigger,
  .cvtr-accordion-panel-inner {
    grid-template-columns: 44px minmax(150px, .9fr) minmax(220px, 1.5fr) 20px;
  }
}

@media (max-width: 720px) {
  .cvtr-page {
    padding-top: 16px;
  }

  .cvtr-shell {
    width: min(100% - 24px, 1180px);
  }

  .cvtr-section {
    padding: 28px 16px;
    border-radius: 8px;
  }

  .cvtr-test-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .cvtr-accordion-trigger {
    grid-template-columns: 40px 1fr 18px;
    gap: 12px;
    padding: 15px 14px;
  }

  .cvtr-accordion-summary {
    grid-column: 2 / 3;
    margin-top: -4px;
  }

  .cvtr-chevron {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .cvtr-accordion-panel-inner {
    grid-template-columns: 40px 1fr 18px;
    gap: 12px;
    padding: 14px;
  }

  .cvtr-accordion-panel p {
    grid-column: 2 / 3;
  }
}

@media (max-width: 560px) {
  .cvtr-heading {
    margin-bottom: 20px;
  }

  .cvtr-heading h2 {
    font-size: 25px;
  }

  .cvtr-table-wrap {
    overflow: visible;
    border: 0;
  }

  .cvtr-table,
  .cvtr-table tbody,
  .cvtr-table tr,
  .cvtr-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .cvtr-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .cvtr-table tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #2c2c2c;
    border-radius: 7px;
    background: #0b0b0b;
  }

  .cvtr-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #242424;
    white-space: normal;
  }

  .cvtr-table td::before {
    color: #858585;
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .cvtr-table tr:last-child td,
  .cvtr-table td:last-child {
    border-bottom: 0;
  }

  .cvtr-product-image-link {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .cvtr-product-cell {
    gap: 10px;
  }

  .cvtr-outline-button {
    width: 100%;
    min-width: 0;
  }

  .cvtr-disclaimer {
    padding: 0;
  }
}

@media (max-width: 460px) {
  .cvtr-test-card {
    flex-basis: 100%;
  }

  .cvtr-prev { left: -12px; }
  .cvtr-next { right: -12px; }

  .cvtr-table td {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
