.instruction-label {
  width: fit-content;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-secondary);
  background-color: var(--color-gray-50);
  color: var(--color-gray-800);
  font: var(--font-caption);
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

/*START HERO SECTION */
.section-hero {
  background: linear-gradient(to right, var(--color-blue-200) 0%, var(--color-blue-500) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-hero .gradient {
  position: absolute;
  left: -1000%;
  right: -1000%;
  bottom: 0;
  height: 60%;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--color-blue-500) 0%, transparent) 0%,
    color-mix(in srgb, var(--color-blue-500) 70%, transparent) 47%,
    var(--color-blue-500) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.section-hero .central-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.2rem;
  padding-bottom: 0;
}

.section-hero .central-container h1 br {
  display: block;
}

.section-hero .central-container .visual {
  position: relative;
}

.section-hero .central-container .visual .image-wrapper {
  max-width: 812px;
  aspect-ratio: 812/510;
  overflow: hidden;
  width: 100%;
  pointer-events: none;
  z-index: 4;
  position: relative;
}

.section-hero .central-container .visual .image-wrapper img {
  width: 100%;
  height: auto;
  position: relative;
}

.section-hero .central-container .visual .results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 304px;
  position: absolute;
  z-index: 1;
  top: -3%;
  left: -10%;
}

.section-hero .central-container .visual .results .result-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: color-mix(in srgb, var(--color-white) 12%, transparent);
  backdrop-filter: blur(10px);
  border-radius: 1.7rem;
  position: relative;
}

.section-hero .central-container .visual .results .result-card p {
  font-size: 14.36px;
  line-height: 140%;
  font-weight: 700;
}

.section-hero .central-container .visual .results .result-card .content {
  display: flex;
  gap: 1.4rem;
  align-items: flex-end;
}

.section-hero .central-container .visual .results .result-card .content .description p {
  font-size: 18.5px;
  line-height: 125%;
  font-weight: 700;
}

.section-hero .central-container .visual .results .result-card .content .description span {
  font-size: 11px;
  line-height: 140%;
  font-weight: 600;
}

.section-hero .central-container .visual .results .result-card .content .tag {
  display: inline-block;
  padding: 0.34rem 0.67rem;
  border-radius: 99px;
  background-color: var(--color-white);
}

.section-hero .central-container .visual .results .result-card .content .tag p {
  font-size: 10.1px;
  line-height: 140%;
  font-weight: 700;
}

.section-hero .central-container .visual .results .result-card .content .schema img {
  width: 100%;
  max-width: 125px;
  height: auto;
}

.section-hero .central-container .visual .results .result-card .content .plus-icon {
  width: 13.5px;
  height: 13.5px;
  position: absolute;
  top: 13.5px;
  right: 13.5px;
}

.section-hero .central-container .visual .messages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: absolute;
  right: -20%;
  bottom: 20%;
  z-index: 10;
}

.section-hero .central-container .visual .messages .message {
  display: flex;
  gap: 1.5rem;
  max-width: 300px;
  padding: 1.45rem;
  border-radius: 1.45rem;
  background-color: color-mix(in srgb, var(--color-white) 10%, transparent);
  backdrop-filter: blur(10px);
}

.section-hero .central-container .visual .messages .message:last-child {
  max-width: 325px;
}

.section-hero .central-container .visual .messages .message .content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.section-hero .central-container .visual .messages .message:first-child {
  margin-left: 114px;
}

.section-hero .central-container .visual .messages .message .read {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.section-hero .central-container .visual .messages .message .read img {
  width: 17px;
  height: 17px;
  opacity: 0.4;
}

.section-hero .central-container .visual .messages .message img {
  width: 49px;
  height: 49px;
  object-fit: cover;
  border-radius: 99rem;
}

.section-hero .central-container .visual .messages .message p {
  color: var(--color-white);
  font-size: 12px;
  line-height: 150%;
  font-weight: 600;
  opacity: 0.4;
}

.section-hero .central-container .visual .messages .message .title {
  font-size: 13.7px;
  line-height: 130%;
  font-weight: 600;
  opacity: 1;
}

@media all and (max-width: 1200px) {
  .section-hero .central-container .visual .messages {
    right: 0%;
    bottom: 10%;
  }

  .section-hero .central-container .visual .results {
    top: -3%;
    left: 0%;
  }
}

@media all and (max-width: 810px) {
  .section-hero .central-container .visual .image-wrapper {
    aspect-ratio: 812/520;
    max-width: 550px;
  }

  .section-hero .central-container .visual .image-wrapper img {
    min-width: 360px;
  }

  .section-hero .central-container .visual .results {
    top: -20%;
    left: 0%;
  }

  .section-hero .central-container .visual .results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 165px;
    position: absolute;
    z-index: -2;
  }

  .section-hero .central-container .visual .results .result-card {
    padding: 1.1rem;
    border-radius: 0.9rem;
  }

  .section-hero .central-container .visual .results .result-card p {
    font-size: 7.8px;
  }

  .section-hero .central-container .visual .results .result-card .content .description p {
    font-size: 10px;
  }

  .section-hero .central-container .visual .results .result-card .content .description span {
    font-size: 6px;
  }

  .section-hero .central-container .visual .results .result-card .content .schema img {
    max-width: 68px;
  }

  .section-hero .central-container .visual .results .result-card .content .tag p {
    font-size: 6px;
  }

  .section-hero .central-container .visual .results .result-card .content .plus-icon {
    top: 7.2px;
    right: 7.2px;
    width: 7.2px;
    height: 7.2px;
  }

  .section-hero .central-container .visual .messages {
    right: 0;
    bottom: 5%;
    gap: 0.23rem;
  }

  .section-hero .central-container .visual .messages .message {
    max-width: 160px;
    gap: 0.6rem;
    padding: 0.7rem;
    border-radius: 0.8rem;
  }

  .section-hero .central-container .visual .messages .message:last-child {
    max-width: 175px;
  }

  .section-hero .central-container .visual .messages .message .content {
    gap: 0.4rem;
  }

  .section-hero .central-container .visual .messages .message:first-child {
    margin-left: 35px;
  }

  .section-hero .central-container .visual .messages .message .read {
    gap: 0.3rem;
  }

  .section-hero .central-container .visual .messages .message .read img {
    width: 9px;
    height: 9px;
  }

  .section-hero .central-container .visual .messages .message img {
    width: 26px;
    height: 26px;
  }

  .section-hero .central-container .visual .messages .message p {
    font-size: 6.3px;
  }

  .section-hero .central-container .visual .messages .message .title {
    font-size: 8px;
  }
}

/* END HERO SECTION */

/* START WHY CHOOSE SECTION */
.section-why-choose .central-container {
  padding: 8.2rem 0.8rem;
  width: 1440px;
}

.section-why-choose .central-container h2,
.section-why-choose .central-container .subheading,
.section-why-choose .central-container .disclaimer {
  padding: 0 1.2rem;
}

.section-why-choose .central-container .benefits-cards {
  display: flex;
  gap: 0.8rem;
}

.section-why-choose .central-container .benefits-cards .benefit-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  border-radius: var(--radius-primary);
  gap: 2.4rem;
  align-items: flex-start;
  align-items: center;
  padding: 4.6rem;
}

.section-why-choose .central-container .benefits-cards .benefit-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-primary);
}

.section-why-choose .central-container .benefits-cards .benefit-card .image-wrapper {
  position: relative;
}

.section-why-choose .central-container .benefits-cards .benefit-card p {
  color: var(--color-gray-800);
  font: var(--font-sm);
}

@media all and (max-width: 810px) {
  .section-why-choose .central-container {
    padding: 6rem 0.8rem;
  }

  .section-why-choose .central-container .benefits-cards {
    flex-direction: column;
  }

  .section-why-choose .central-container .benefits-cards .benefit-card {
    padding: 3.2rem 2rem;
    gap: 1.8rem;
  }

  .section-why-choose .central-container .benefits-cards .benefit-card .title {
    max-width: none;
  }

  .section-why-choose .central-container .benefits-cards .benefit-card .image-wrapper {
    width: 90%;
  }
}
/* END WHY CHOOSE SECTION */

/* START COLLECTION GUIDE SECTION */
.section-collection-guide .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1038px;
}

.section-collection-guide .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-primary);
}

.section-collection-guide .video-control {
  position: absolute;
  inset: 0;
  margin: auto;
  padding: 1.4rem 2.2rem;
  width: fit-content;
  height: fit-content;
  border-radius: var(--radius-primary);
  border: none;
  font: var(--font-lg-button);
  color: var(--color-white);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 3;
  overflow: hidden;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  backdrop-filter: blur(70px);
  background: transparent;
}

.section-collection-guide .video-fit-container {
  width: fit-content;
  border-radius: var(--radius-primary);
  overflow: hidden;
}

.section-collection-guide .video-wrapper:hover .video-control {
  transform: scale(1.15);
}

.section-collection-guide .video-wrapper.playing .video-control {
  opacity: 0;
  pointer-events: none;
}

.section-collection-guide video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.section-collection-guide video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
/* END OCOLLECTION GUIDE SECTION */

/* START INSTRUCTION STEP 1 SECTION */
.section-instruction-step-1 .central-container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.section-instruction-step-1.slick-list {
  margin-bottom: 0;
}

.section-instruction-step-1 .slick-slide {
  transform: translateX(-3px);
}

.section-instruction-step-1 .kit-item {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.section-instruction-step-1 .kit-item .image-wrapper {
  border-radius: var(--radius-primary);
  background-color: var(--color-gray-50);
}

.section-instruction-step-1 .kit-item .image-wrapper img {
  max-height: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media all and (max-width: 1200px) {
  .section-instruction-step-1 .slick-slide {
    transform: translateX(-2px);
  }
}

@media all and (max-width: 810px) {
  .section-instruction-step-1 .central-container {
    padding-left: 2rem;
  }

  .section-instruction-step-1 .central-container > h2,
  .section-instruction-step-1 .central-container > p {
    padding-right: 2rem;
  }

  .section-instruction-step-1 .slick-track .slick-slide {
    transform: translateX(-1%);
  }
}

@media all and (max-width: 600px) {
  .section-instruction-step-1 .slick-track .slick-slide {
    transform: translateX(-11%);
  }
}

@media all and (max-width: 500px) {
  .section-instruction-step-1 .slick-track .slick-slide {
    transform: translateX(-13%);
  }
}

@media all and (max-width: 430px) {
  .section-instruction-step-1 .slick-track .slick-slide {
    transform: translateX(-21%);
  }
}
/* END INSTRUCTION STEP 1 SECTION */

/* START INSTRUCTION STEP 2 SECTION */
.section-instruction-step-2 {
  overflow: visible;
}

.section-instruction-step-2 .central-container {
  display: flex;
  gap: 11.2rem;
  align-items: flex-start;
  overflow: visible;
}

.section-instruction-step-2 .content {
  max-width: 306px;
  flex: 1;
  position: sticky;
  top: 120px;
}

.section-instruction-step-2 .instruction-label {
  margin-left: 0;
}

.section-instruction-step-2 .steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-instruction-step-2 .step-item {
  display: flex;
  gap: 3.2rem;
  padding: 0.8rem 3.2rem 0.8rem 0.8rem;
  border-radius: var(--radius-primary);
  background-color: var(--color-gray-50);
}

.section-instruction-step-2 .step-item .image-wrapper {
  flex: 1;
  height: fit-content;
  background-color: var(--color-gray-100);
  border-radius: var(--radius-primary);
  overflow: hidden;
}

.section-instruction-step-2 .step-item .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-instruction-step-2 .step-item .text-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-self: stretch;
  justify-content: space-between;
  padding: 2.4rem 0;
}

@media all and (max-width: 1200px) {
  .section-instruction-step-2 .central-container {
    gap: 6rem;
  }

  .section-instruction-step-2 .content {
    max-width: 250px;
  }
}

@media all and (max-width: 1023px) {
  .section-instruction-step-2  .step-item {
    flex-direction: column;
    gap: 0;
  }

  .section-instruction-step-2 .steps .step-item .image-wrapper {
    max-width: 350px;
  }

  .section-instruction-step-2 .step-item .text-wrapper {
    gap: 2.4rem;
    padding: 2.4rem;
  }
}

@media all and (max-width: 810px) {
  .section-instruction-step-2 .central-container {
    flex-direction: column;
    gap: 3.2rem;
  }

  .section-instruction-step-2 .content {
    max-width: 900px;
    position: relative;
    top: 0;
  }

  .section-instruction-step-2 .step-item {
    padding: 0.8rem;
    gap: 2.4rem;
  }

  .section-instruction-step-2 .step-item .image-wrapper {
    max-width: 400px;
  }

  .section-instruction-step-2 .step-item .text-wrapper {
    padding: 1.2rem;
    gap: 1.2rem;
  }
}
/* END INSTRUCTION STEP 2 SECTION */

/* START INSTRUCTION STEP 3 SECTION */
.section-instruction-step-3 .checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.section-instruction-step-3 .checklist-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 300px;
  padding: 3.2rem;
  border-radius: var(--radius-primary);
  background-color: var(--color-gray-50);
}

.section-instruction-step-3 .checklist-card .image-wrapper {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background-color: var(--color-gray-200);
}

.section-instruction-step-3 .checklist-card .image-wrapper img {
  width: 24px;
  height: 24px;
}

@media all and (max-width: 1200px) {
  .section-instruction-step-3 .checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 600px) {
  .section-instruction-step-3 .checklist {
    display: flex;
    flex-direction: column;
  }

  .section-instruction-step-3 .checklist-card {
    min-height: 240px;
  }
}
/* END INSTRUCTION STEP 3 SECTION */
