.cpl-warranty-page {
  min-height: 720px;
  background: var(--cpl-warranty-bg);
  color: var(--cpl-warranty-text);
}

.cpl-warranty-page *,
.cpl-warranty-page *::before,
.cpl-warranty-page *::after {
  box-sizing: border-box;
}

.cpl-warranty-page .container {
  width: min(var(--cpl-warranty-container), calc(100% - 80px));
  margin: 0 auto;
}

.cpl-warranty-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cpl-warranty-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #04142f;
}

.cpl-warranty-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cpl-warranty-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 34, 0.98) 0%, rgba(3, 17, 48, 0.9) 37%, rgba(3, 17, 48, 0.24) 69%, rgba(3, 17, 48, 0.04) 100%);
}

.cpl-warranty-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: flex;
  align-items: center;
}

.cpl-warranty-hero__content {
  width: min(660px, 52vw);
  padding: 34px 0 38px;
}

.cpl-warranty-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.cpl-warranty-hero p {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
}

.cpl-warranty-overview {
  padding: 36px 0 0;
  background: #fff;
}

.cpl-warranty-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 670px);
  gap: 54px;
  align-items: center;
}

.cpl-warranty-section-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  color: var(--cpl-warranty-ink);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.cpl-warranty-section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: var(--cpl-warranty-blue);
}

.cpl-warranty-overview__copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--cpl-warranty-text);
  font-size: 14px;
  line-height: 1.72;
}

.cpl-warranty-overview__media {
  margin: 0;
  justify-self: center;
  width: min(670px, 100%);
  aspect-ratio: 67 / 34;
}

.cpl-warranty-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cpl-warranty-rules {
  padding: 28px 0 0;
}

.cpl-warranty-rules__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
}

.cpl-warranty-card {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  border: 1px solid var(--cpl-warranty-border);
  border-radius: var(--cpl-warranty-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(32, 68, 118, 0.04);
}

.cpl-warranty-card--covered {
  padding: 24px 28px 30px;
  border-color: rgba(43, 158, 82, 0.22);
  background: linear-gradient(135deg, rgba(240, 250, 243, 0.92), #fff 70%);
}

.cpl-warranty-card--excluded {
  padding: 24px 30px 24px;
  border-color: rgba(234, 61, 69, 0.22);
  background: linear-gradient(135deg, rgba(255, 245, 244, 0.92), #fff 70%);
}

.cpl-warranty-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cpl-warranty-card__header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.cpl-warranty-card--covered h2 {
  color: var(--cpl-warranty-green);
}

.cpl-warranty-card--excluded h2 {
  color: var(--cpl-warranty-red);
}

.cpl-warranty-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
}

.cpl-warranty-card__header img.cpl-warranty-card__icon {
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.cpl-warranty-card__header img.cpl-warranty-card__icon::before,
.cpl-warranty-card__header img.cpl-warranty-card__icon::after {
  content: none;
}

.cpl-warranty-card__icon::before {
  content: "";
  width: 28px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 15px 15px 18px 18px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.cpl-warranty-card__icon--covered {
  background: #43a95e;
}

.cpl-warranty-card__icon--covered::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(1px, -1px) rotate(-45deg);
}

.cpl-warranty-card__icon--excluded {
  background: #d9534f;
}

.cpl-warranty-card__icon--excluded::after {
  content: "×";
  position: absolute;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.cpl-warranty-card p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--cpl-warranty-text);
  font-size: 14px;
  line-height: 1.62;
}

.cpl-warranty-exclusion-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 18px 0 0 74px;
  padding: 0;
  color: var(--cpl-warranty-text);
  list-style: none;
  font-size: 14px;
  line-height: 1.35;
}

.cpl-warranty-exclusion-list li {
  position: relative;
  padding-left: 24px;
}

.cpl-warranty-exclusion-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cpl-warranty-red);
}

.cpl-warranty-card__watermark {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 112px;
  height: 92px;
  opacity: 0.18;
  pointer-events: none;
}

.cpl-warranty-card__watermark--box {
  border: 4px solid var(--cpl-warranty-green);
  transform: skewY(-28deg) rotate(30deg);
}

.cpl-warranty-card__watermark--box::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 48px;
  height: 48px;
  border: 4px solid var(--cpl-warranty-green);
  border-radius: 999px;
}

.cpl-warranty-card__watermark--alert {
  width: 120px;
  height: 104px;
}

.cpl-warranty-card__watermark--alert::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  border: 5px solid var(--cpl-warranty-red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cpl-warranty-card__watermark--alert::after {
  content: "!";
  position: absolute;
  inset: 36px 0 auto;
  color: var(--cpl-warranty-red);
  text-align: center;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.cpl-warranty-custom {
  padding: 14px 0 0;
}

.cpl-warranty-custom__box {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid rgba(247, 184, 60, 0.42);
  border-radius: var(--cpl-warranty-radius);
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.96), #fff 72%);
}

.cpl-warranty-custom__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--cpl-warranty-amber);
  border: 4px solid currentColor;
  border-radius: 999px;
}

.cpl-warranty-custom__box img.cpl-warranty-custom__icon {
  display: block;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.cpl-warranty-custom__box img.cpl-warranty-custom__icon::before {
  content: none;
}

.cpl-warranty-custom__icon::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  transform: rotate(30deg) skewY(-28deg);
}

.cpl-warranty-custom h2 {
  margin: 0;
  color: var(--cpl-warranty-amber);
  font-size: 22px;
  line-height: 1.14;
  font-weight: 800;
}

.cpl-warranty-custom p {
  margin: 3px 0 0;
  color: var(--cpl-warranty-text);
  font-size: 14px;
  line-height: 1.42;
}

.cpl-warranty-coverage {
  padding: 24px 0 0;
}

.cpl-warranty-table-wrap {
  margin-top: 4px;
  overflow-x: auto;
  border-radius: var(--cpl-warranty-radius);
}

.cpl-warranty-table {
  width: 100%;
  min-width: 1260px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--cpl-warranty-text);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.cpl-warranty-table th,
.cpl-warranty-table td {
  border-right: 1px solid var(--cpl-warranty-border);
  border-bottom: 1px solid var(--cpl-warranty-border);
  background: #fff;
}

.cpl-warranty-table thead th {
  padding: 12px 14px 14px;
  color: var(--cpl-warranty-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.cpl-warranty-table thead th:first-child {
  width: 250px;
  color: var(--cpl-warranty-ink);
  background: #fff;
  border-left: 1px solid var(--cpl-warranty-border);
}

.cpl-warranty-table thead th:nth-child(2) {
  border-top-left-radius: var(--cpl-warranty-radius);
}

.cpl-warranty-table thead th:last-child {
  border-top-right-radius: var(--cpl-warranty-radius);
}

.cpl-warranty-table tbody th {
  width: 250px;
  padding: 12px 14px;
  border-left: 1px solid var(--cpl-warranty-border);
  color: var(--cpl-warranty-ink);
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  vertical-align: middle;
  white-space: normal;
}

.cpl-warranty-table tbody th > span:not(.cpl-warranty-row-icon) {
  display: inline-block;
  width: calc(100% - 70px);
  vertical-align: middle;
  line-height: 1.25;
}

.cpl-warranty-table tbody tr:first-child th {
  border-top-left-radius: 0;
}

.cpl-warranty-table tbody tr:last-child th {
  border-bottom-left-radius: var(--cpl-warranty-radius);
}

.cpl-warranty-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--cpl-warranty-radius);
}

.cpl-warranty-table td {
  height: 58px;
  padding: 12px;
  font-weight: 400;
}

.cpl-warranty-product-icon,
.cpl-warranty-row-icon {
  display: block;
  margin: 8px auto 0;
  color: currentColor;
}

.cpl-warranty-product-icon {
  width: 38px;
  height: 18px;
  opacity: 0.95;
}

.cpl-warranty-table thead th img.cpl-warranty-product-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 8px;
  opacity: 1;
}

.cpl-warranty-table img.cpl-warranty-product-icon::before,
.cpl-warranty-table img.cpl-warranty-product-icon::after,
.cpl-warranty-table img.cpl-warranty-row-icon::before,
.cpl-warranty-table img.cpl-warranty-row-icon::after {
  content: none;
}

.cpl-warranty-product-icon::before,
.cpl-warranty-product-icon::after,
.cpl-warranty-row-icon::before,
.cpl-warranty-row-icon::after {
  content: "";
  display: block;
}

.cpl-warranty-product-icon--module::before,
.cpl-warranty-product-icon--gpu::before {
  width: 34px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.cpl-warranty-product-icon--cable::before,
.cpl-warranty-product-icon--fiber::before {
  width: 38px;
  height: 15px;
  border: 4px solid currentColor;
  border-radius: 999px;
}

.cpl-warranty-product-icon--switch::before {
  width: 40px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 6px);
}

.cpl-warranty-product-icon--gear::before,
.cpl-warranty-product-icon--refresh::before {
  width: 22px;
  height: 22px;
  margin: -2px auto 0;
  border: 4px solid currentColor;
  border-radius: 999px;
}

.cpl-warranty-row-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin: 0 14px 0 0;
  color: #4f80dc;
  vertical-align: middle;
}

.cpl-warranty-table tbody th img.cpl-warranty-row-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  margin: 0 14px 0 0;
  object-fit: contain;
  vertical-align: middle;
}

.cpl-warranty-row-icon::before {
  width: 22px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 11px 11px 14px 14px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.cpl-warranty-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.cpl-warranty-status--yes {
  color: var(--cpl-warranty-green);
}

.cpl-warranty-status--no {
  color: var(--cpl-warranty-red);
}

.cpl-warranty-process {
  padding: 24px 0 34px;
}

.cpl-warranty-process .cpl-warranty-section-heading h2::after {
  background: var(--cpl-brand);
}

.cpl-warranty-process__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 44px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.cpl-warranty-process__step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  color: var(--cpl-warranty-ink);
  text-align: center;
}

.cpl-warranty-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 43px;
  left: calc(50% + 58px);
  width: calc(100% - 18px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 123, 26, 0.62) 0 8px, transparent 8px 14px);
}

.cpl-warranty-process__step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 36px;
  right: -30px;
  width: 13px;
  height: 13px;
  border-right: 4px solid var(--cpl-brand);
  border-bottom: 4px solid var(--cpl-brand);
  transform: rotate(-45deg);
}

.cpl-warranty-process__number {
  display: none;
}

.cpl-warranty-process__icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(15, 105, 223, 0.42);
  border-radius: 999px;
  color: var(--cpl-warranty-blue);
  background: #fff;
}

.cpl-warranty-process__step img.cpl-warranty-process__icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.cpl-warranty-process__step img.cpl-warranty-process__icon::before {
  content: none;
}

.cpl-warranty-process__icon::before {
  content: "";
  width: 34px;
  height: 38px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.cpl-warranty-process__icon--review::before {
  border-radius: 3px;
  box-shadow: 14px 14px 0 -8px currentColor;
}

.cpl-warranty-process__icon--package::before {
  width: 36px;
  height: 36px;
  transform: rotate(30deg) skewY(-28deg);
}

.cpl-warranty-process__icon--inspect::before {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  box-shadow: 16px 16px 0 -10px currentColor;
}

.cpl-warranty-process__icon--tools::before {
  width: 40px;
  height: 40px;
  border-radius: 999px 999px 2px 2px;
  clip-path: polygon(35% 0, 65% 0, 65% 44%, 100% 44%, 100% 70%, 65% 70%, 65% 100%, 35% 100%, 35% 70%, 0 70%, 0 44%, 35% 44%);
}

.cpl-warranty-process__icon--shipment::before {
  width: 42px;
  height: 28px;
  border-radius: 3px;
}

.cpl-warranty-process__label {
  display: block;
  margin-top: 13px;
  color: var(--cpl-warranty-ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .cpl-warranty-hero h1 {
    font-size: 52px;
  }

  .cpl-warranty-overview__grid,
  .cpl-warranty-rules__grid {
    grid-template-columns: 1fr;
  }

  .cpl-warranty-process__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .cpl-warranty-process__step::before,
  .cpl-warranty-process__step::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .cpl-warranty-page .container {
    width: min(var(--cpl-warranty-container), calc(100% - 28px));
  }

  .cpl-warranty-hero,
  .cpl-warranty-hero__inner {
    min-height: 300px;
  }

  .cpl-warranty-hero__content {
    width: 100%;
  }

  .cpl-warranty-hero h1 {
    font-size: 44px;
  }

  .cpl-warranty-hero p {
    font-size: 16px;
    line-height: 1.58;
  }

  .cpl-warranty-section-heading h2 {
    font-size: 25px;
  }

  .cpl-warranty-card--covered,
  .cpl-warranty-card--excluded {
    padding: 22px 18px;
  }

  .cpl-warranty-card__header {
    align-items: flex-start;
    gap: 14px;
  }

  .cpl-warranty-card__header h2,
  .cpl-warranty-custom h2 {
    font-size: 21px;
  }

  .cpl-warranty-exclusion-list {
    margin-left: 0;
  }

  .cpl-warranty-custom__box {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .cpl-warranty-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
}
