.home-page {
  overflow: hidden;
  background: #ffffff;
}

/* =========================
   Common
========================= */

:root {
  --eth-max: 1440px;
  --eth-pad: 64px;
}

.eth-container {
  width: min(calc(100% - var(--eth-pad)), var(--eth-max));
  margin: 0 auto;
}

.eth-section {
  padding: 120px 0;
}

.section-eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.card-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading--center {
  max-width: 880px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading--between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.07em;
  color: var(--color-navy);
}

.section-heading p:not(.section-eyebrow) {
  /*max-width: 760px;*/
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-muted);
  word-break: keep-all;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--color-blue);
  font-weight: 900;
  text-decoration: none;
}

/*.text-link::after,*/
/*.card-link::after {*/
/*  content: "→";*/
/*  transition: transform 0.2s ease;*/
/*}*/
.text-link::after,
.card-link::after {
  content: "";
  display: inline-block;

  width: 14px;
  height: 14px;
  flex: 0 0 14px;

  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='m13 5 7 7-7 7'/></svg>");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m13 5 7 7-7 7"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  transition: transform 0.2s ease;
}

.text-link:hover::after,
.card-link:hover::after {
  transform: translateX(4px);
}

.pc-only {
  display: inline;
}

/* =========================
   0. Hero Art
========================= */

/*.hero-art {*/
/*  height: 40svh;*/
/*  position: relative;*/
/*  padding: 56px 0 10px;*/
/*  background-image: url("/site/images/home/banner_new.png");*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*}*/
.hero-art {
  height: var(--hero-art-height, 40svh);
  position: relative;
  padding: 56px 0 10px;
  background-image: url("/site/images/home/banner_new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =========================
   1. Hero
========================= */

.home-hero {
  padding: 48px 0;
  background: #ffffff;
  text-align: center;
}

.home-hero__inner {
  max-width: 1050px;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.075em;
  color: var(--color-navy);
}

.home-hero__lead {
  max-width: 900px;
  margin: 30px auto 0;
  font-size: 21px;
  line-height: 1.78;
  color: var(--color-muted);
  word-break: keep-all;
}

.home-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* =========================
   2. Metrics
========================= */

.home-metrics {
  background: linear-gradient(
          to bottom,
          #ffffff 0%,
          #fbfdff 45%,
          #f7fbff 100%
  );
}

.home-metrics__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 96px;
  align-items: center;
}

.home-metrics__copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.075em;
  color: var(--color-navy);
}

.home-metrics__copy p {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.78;
  color: var(--color-muted);
  word-break: keep-all;
}

.metrics-side {
  display: flex;
  flex-direction: column;
  /*gap: 20px;*/
  padding-left: 6rem;
  border-left: 1px solid #e2e8f0;
}

.metric-line {
  display: grid;
  grid-template-columns: 28px auto;
  column-gap: 16px;
  row-gap: 8px;
  align-items: center;
  padding: 24px 0;
}

.metric-icon {
  grid-column: 1;
  grid-row: 1;

  width: 32px;
  height: 32px;
}

.metric-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.metric-line strong {
  grid-column: 2;
  grid-row: 1;

  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.metric-line span {
  grid-column: 2;
  grid-row: 2;

  font-size: 16px;
  line-height: 1.4;
  color: #178bff;
}

.count-temperature {
  display: inline-block;
  min-width: 4.8em;
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   Explore KQSF Swiper
   PC: left copy / right visual + floating cards
   Mobile: image -> copy -> cards -> controls
========================================================= */

.home-explore {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
  background: #fff;
}

.kqsf-explore-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kqsf-explore-swiper .swiper-wrapper {
  align-items: stretch;
}

.kqsf-explore-slide {
  position: relative;
  height: auto;
}

.kqsf-explore-slide__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  grid-template-areas: "copy visual";
  gap: 72px;
  align-items: center;
  min-height: 640px;
  padding-bottom: 5rem;
}

.kqsf-explore-slide__copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.kqsf-explore-slide__copy .section-eyebrow {
  margin-bottom: 18px;
}

/*.kqsf-explore-slide__copy h2 {*/
/*  margin: 0 0 36px;*/
/*  font-size: clamp(48px, 5.4vw, 78px);*/
/*  line-height: 1.08;*/
/*  letter-spacing: -0.065em;*/
/*  color: #111;*/
/*}*/

/*.kqsf-explore-slide__copy p {*/
/*  max-width: 680px;*/
/*  margin: 0 0 28px;*/
/*  font-size: 22px;*/
/*  line-height: 1.75;*/
/*  letter-spacing: -0.035em;*/
/*  color: #5f6368;*/
/*}*/
.kqsf-explore-slide__copy h2 {
  margin: 0 0 30px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  color: #111;
}

.kqsf-explore-slide__copy p {
  max-width: 680px;
  margin: 0;
  font-size: 20px;
  line-height: 1.72;
  letter-spacing: -0.035em;
  color: #5f6368;
  word-break: keep-all;
}

.kqsf-explore-slide__copy p + p {
  margin-top: 18px;
}

.kqsf-explore-slide__copy p:last-of-type {
  margin-bottom: 28px;
}

.kqsf-explore-slide__copy .text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.kqsf-explore-slide__visual {
  grid-area: visual;
  position: relative;
  min-height: 660px;
}

.kqsf-visual-frame {
  position: absolute;
  top: 0;
  right: 0;
  /*width: min(100%, 620px);*/
  /*height: 520px;*/
  border-radius: 34px;
  overflow: hidden;
  background: #eef4ff;
  aspect-ratio: 1100 / 1400;
  height: 100%;
}

.visual-frame--product {
  background: url("/site/images/home/explore/explore-product.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.visual-frame--lng {
  background: url("/site/images/home/explore/explore-lng.png");
  background-size: cover;
  background-position: center center%;
  background-repeat: no-repeat;
}
.visual-frame--qsf {
  background: url("/site/images/home/explore/explore-qsf.png");
  background-size: cover;
  background-position: center center%;
  background-repeat: no-repeat;
}

.kqsf-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating comparison cards */
.kqsf-explore-cards {
  position: absolute;
  z-index: 4;
  /*right: 140px;*/
  /*bottom: 56px;*/
  /*width: 430px;*/
  right: 15% !important;
  bottom: 15% !important;
  pointer-events: none;
}

.kqsf-info-card {
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.kqsf-info-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.kqsf-info-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.kqsf-info-card--white {
  width: 360px;
  margin-left: 28px;
  padding: 16px;
  background: #fff;
  color: #111;
}

.kqsf-info-card--white span {
  color: #777;
}

.kqsf-info-card--primary {
  width: 390px;
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #1e3a8a, #2563eb);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.kqsf-info-card--primary span {
  color: rgba(255, 255, 255, 0.82);
}

/* Controls */
.kqsf-explore-controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  /*background: rgba(15, 23, 42, 0.04);*/
  transform: translateX(-50%);
}

.kqsf-explore-button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2563eb;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.kqsf-explore-button.swiper-button-disabled {
  color: #a3a3a3;
  cursor: default;
}

.kqsf-explore-pagination {
  position: static;
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /*padding-top: 4px;*/
}

.kqsf-explore-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #c7d2fe;
  opacity: 1;
}

.kqsf-explore-pagination .swiper-pagination-bullet-active {
  background: #2563eb;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1180px) {
  .kqsf-explore-slide__inner {
    gap: 48px;
  }

  .kqsf-visual-frame {
    width: min(100%, 540px);
    /*height: 470px;*/
  }

  .kqsf-explore-cards {
    right: 48px;
    bottom: 96px;
  }

  .kqsf-explore-slide__copy h2 {
    font-size: clamp(44px, 5vw, 64px);
  }

  .kqsf-explore-slide__copy p {
    font-size: 19px;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 900px) {
  .home-explore {
    padding: 0 0 80px;
  }

  .kqsf-explore-swiper {
    overflow: hidden;
  }

  .kqsf-explore-slide__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "cards";
    gap: 28px;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .kqsf-explore-slide__visual {
    grid-area: visual;
    min-height: auto;
    width: 100%;
  }

  .kqsf-visual-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 24px
  }
  .visual-frame--product {
    /*background: url("/site/images/home/explore/explore-product.png");*/
    /*background-size: cover;*/
    background-position: center 65%;
    /*background-repeat: no-repeat;*/
  }

  .visual-frame--lng {
    background: url("/site/images/home/explore/explore-lng.png");
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
  }
  .visual-frame--qsf {
    background: url("/site/images/home/explore/explore-qsf.png");
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
  }

  .kqsf-explore-slide__copy {
    grid-area: copy;
    padding: 0;
  }

  .kqsf-explore-slide__copy .section-eyebrow {
    margin-bottom: 18px;
    text-align: left;
  }

  /*.kqsf-explore-slide__copy h2 {*/
  /*  margin: 0 0 20px;*/
  /*  font-size: clamp(34px, 10vw, 48px);*/
  /*  line-height: 1.12;*/
  /*  letter-spacing: -0.065em;*/
  /*}*/

  /*.kqsf-explore-slide__copy p {*/
  /*  margin: 0 0 22px;*/
  /*  font-size: 15px;*/
  /*  line-height: 1.75;*/
  /*  letter-spacing: -0.035em;*/
  /*}*/
  .kqsf-explore-slide__copy h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 9vw, 44px);
  }

  .kqsf-explore-slide__copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .kqsf-explore-slide__copy p + p {
    margin-top: 12px;
  }

  .kqsf-explore-slide__copy p:last-of-type {
    margin-bottom: 22px;
  }

  .kqsf-explore-slide__copy .text-link {
    font-size: 14px;
  }

  .kqsf-explore-cards {
    grid-area: cards;
    position: static;
    width: auto;
    padding: 0;
    pointer-events: auto;
  }

  .kqsf-info-card {
    box-shadow: none;
  }

  .kqsf-info-card--white,
  .kqsf-info-card--primary {
    width: 100%;
    margin: 0;
    border-radius: 16px;
  }

  .kqsf-info-card--white {
    padding: 20px 22px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
  }

  .kqsf-info-card--primary {
    margin-top: 12px;
    padding: 20px 22px;
  }

  .kqsf-info-card span {
    font-size: 12px;
  }

  .kqsf-info-card strong {
    font-size: 22px;
  }

  .kqsf-explore-controls {
    position: static;
    width: fit-content;
    margin: 30px auto 0;
    transform: none;
    display: flex;
  }
}
/* =========================
   4. Product Story
========================= */

.home-product-story {
  position: relative;
  background: #f7fbff;
}

.product-story__inner {
  display: grid;
  grid-template-columns:
    minmax(460px, 0.95fr)
    minmax(0, 1fr);
  gap: clamp(64px, 7vw, 120px);
  align-items: center;
}

.product-story__visual {
  position: relative;
  min-width: 0;
}

.product-visual-card {
  position: relative;
  width: 100%;
  min-height: 700px;
  aspect-ratio: 1100 / 1400;
  overflow: visible;
  border-radius: 44px;

  background-image:
          url("/site/images/home/tuna/tuna_final.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid rgba(6, 27, 51, 0.08);
  box-shadow:
          0 32px 90px rgba(6, 27, 51, 0.12);
}

/*
 * 실제 이미지만 둥근 모서리 안에서 잘리도록
 * 별도 가상 요소를 사용한다.
 */
.product-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* =========================
   Product Floating Cards
========================= */

.product-floating-card {
  position: absolute;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 230px;
  min-height: 132px;
  padding: 24px 26px;

  border: 1px solid rgba(6, 27, 51, 0.12);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(6, 27, 51, 0.16);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-floating-card strong {
  display: block;

  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.055em;

  color: var(--color-navy);
}

.product-floating-card span {
  display: block;
  margin-top: 16px;

  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.025em;

  color: var(--color-muted);
  white-space: nowrap;
}

.product-floating-card--operation {
  top: 72px;
  left: -24px;
}

.product-floating-card--operation span {
  color: #10a451;
}

.product-floating-card--operation span::before {
  content: "✓";
  margin-right: 6px;
}

.product-floating-card--qsf {
  right: -24px;
  bottom: 64px;
}

.product-floating-card--qsf span {
  color: var(--color-blue);
}

@media (max-width: 1180px) {
  .product-floating-card {
    width: 205px;
    min-height: 118px;
    padding: 21px 22px;
  }

  .product-floating-card strong {
    font-size: 28px;
  }

  .product-floating-card span {
    margin-top: 13px;
    font-size: 14px;
  }

  .product-floating-card--operation {
    top: 62px;
    left: -16px;
  }

  .product-floating-card--qsf {
    right: -16px;
    bottom: 58px;
  }
}

/* =========================
   Content
========================= */

.product-story__content {
  width: auto;
  min-width: 0;
}

.product-story__content .section-eyebrow {
  margin-bottom: 18px;
}

.product-story__content h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.075em;
  color: var(--color-navy);
  word-break: keep-all;
}

.product-story__description {
  margin-top: 40px;
}

.product-story__description p {
  max-width: 720px;
  margin: 0;
  font-size: 20px;
  line-height: 1.78;
  letter-spacing: -0.025em;
  color: var(--color-muted);
  word-break: keep-all;
}

.product-story__description p + p {
  margin-top: 24px;
}

.product-story__content .text-link {
  margin-top: 36px;
}


/* =========================
   5. QSF Certified Browser Layout
========================= */

.home-qsf {
  position: relative;
  overflow: hidden;
  color: var(--color-navy);
  background:
          radial-gradient(circle at 76% 18%, rgba(112, 200, 255, 0.18), transparent 30%),
          linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.home-qsf::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
          linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 78%, transparent 100%);
}

.qsf-browser {
  position: relative;
  z-index: 1;
}

.qsf-browser__heading {
  margin-bottom: 72px;
}

.qsf-browser__heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.075em;
  color: var(--color-navy);
}

.qsf-browser__heading p:not(.section-eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-muted);
  word-break: keep-all;
}

.qsf-browser__body {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 0 4rem;
}

.qsf-browser__copy {
  /*max-width: 620px;*/
  /*padding-left: clamp(0px, 3vw, 56px);*/
  flex: 1;
  align-self: flex-start;
  padding-top: 4rem;
}

.qsf-browser__copy h3 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.065em;
  color: var(--color-navy);
}

.qsf-browser__copy p:not(.section-eyebrow) {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.78;
  color: var(--color-muted);
  word-break: keep-all;
}

.qsf-browser__list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.qsf-browser__list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  color: #29445f;
}

.qsf-browser__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.qsf-browser__visual {
  position: relative;
  /*min-height: 620px;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /*flex: .75;*/
}

.qsf-cert-device {
  position: relative;
  /*width: min(100%, 390px);*/
  width: 350px;
}
.qsf-cert-device img {
  filter: drop-shadow(0 20px 10px rgba(6, 27, 51, 0.3))
}

.qsf-cert-device__top {
  width: 84px;
  height: 6px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(6, 27, 51, 0.14);
}

.qsf-cert-card {
  padding: 22px 22px 24px;
  border-radius: 34px;
  text-align: center;
  background:
          radial-gradient(circle at 50% 12%, rgba(157, 234, 255, 0.28), transparent 42%),
          linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232, 246, 255, 0.92));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 22px 54px rgba(37, 99, 235, 0.13);
}

.qsf-cert-card__eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.qsf-cert-card img {
  display: block;
  width: min(78%, 230px);
  margin: 0 auto 22px;
  filter: drop-shadow(0 24px 42px rgba(6, 31, 56, 0.28));
}

.qsf-cert-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.045em;
  color: var(--color-navy);
}

.qsf-cert-card p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-blue);
}

.qsf-cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(6, 27, 51, 0.08);
  box-shadow: 0 12px 28px rgba(6, 31, 56, 0.07);
}

.qsf-cert-row span {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-blue);
}

.qsf-cert-row strong {
  font-size: 15px;
  color: var(--color-navy);
}

.qsf-browser-bubble {
  position: absolute;
  width: 230px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(6, 27, 51, 0.9);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 31, 56, 0.22);
  backdrop-filter: blur(14px);
}

.qsf-browser-bubble strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.qsf-browser-bubble span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.qsf-browser-bubble--left {
  left: 4%;
  top: 42%;
}

.qsf-browser-bubble--right {
  right: 2%;
  bottom: 23%;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.qsf-text-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 1100px) {
  .qsf-browser__body {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .qsf-browser__copy {
    /*max-width: 760px;*/
    padding-left: 0;
    margin: 0 auto;
    /*text-align: center;*/
  }

  .qsf-browser__list {
    width: fit-content;
    /*margin-left: auto;*/
    margin-right: auto;
    text-align: left;
  }

  .qsf-browser__visual {
    /*min-height: 560px;*/
  }

  .qsf-browser-bubble--left {
    left: 10%;
  }

  .qsf-browser-bubble--right {
    right: 10%;
  }
}

@media (max-width: 760px) {
  .qsf-browser__heading {
    text-align: center;
    margin-bottom: 42px;
  }

  .qsf-browser__heading h2 {
    font-size: 36px;
  }

  .qsf-browser__heading p:not(.section-eyebrow),
  .qsf-browser__copy p:not(.section-eyebrow) {
    font-size: 14px;
  }

  .qsf-browser__list li {
    font-size: 14px;
  }

  .qsf-browser__body {
    gap: 24px;
  }

  .qsf-browser__copy {
    text-align: left;
  }

  .qsf-browser__copy h3 {
    font-size: 32px;
  }

  .qsf-browser__list {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .qsf-browser__visual {
    /*min-height: 460px;*/
    justify-content: center;
  }

  .qsf-cert-device {
    width: min(100%, 320px);
    /*min-height: 460px;*/
    /*padding: 22px 18px;*/
    border-radius: 38px;
  }

  .qsf-cert-card {
    padding: 18px;
    border-radius: 28px;
  }

  .qsf-cert-card img {
    width: min(76%, 190px);
  }

  .qsf-cert-card strong {
    font-size: 20px;
  }

  .qsf-cert-row {
    padding: 15px 16px;
  }

  .qsf-browser-bubble {
    display: none;
  }
}

/* =========================
   6. LNG Difference
========================= */

.lng-difference {
  background: #f6fbff;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.difference-card {
  grid-column: span 4;
  min-height: 265px;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 56, 0.08);
  box-shadow: 0 18px 44px rgba(6, 31, 56, 0.07);
  position: relative;
  overflow: hidden;
}

.difference-card--primary {
  grid-column: span 7;
  min-height: 400px;
  color: #ffffff;
  background:
          radial-gradient(circle at 84% 18%, rgba(118, 224, 255, 0.36), transparent 34%),
          linear-gradient(135deg, #08233d 0%, #0c4d7a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/*.white-logo {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  position: relative;*/
/*  border-radius: 12px;*/
/*  background-color: white;*/
/*  margin-bottom: 16px;*/
/*  z-index: 1;*/
/*}*/
.white-logo {
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 12px;
  margin-bottom: 16px;
  z-index: 1;

  background: linear-gradient(
          145deg,
          #ffffff 0%,
          #f5fbff 55%,
          #e3f2ff 100%
  );

  border: 1px solid rgba(195, 225, 245, 0.45);
  box-shadow: 0 8px 18px rgba(4, 37, 67, 0.12);
}


.white-logo::before {
  content: "";
  position: absolute;
  inset: 4px;
  background-image: url("/site/images/logo/icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 5;
}

.difference-card img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 66%;
  object-fit: cover;
  z-index: 0;
  transform: translate(20%, 20%);
  opacity: 0.25;
}

.difference-card::before {
  /*content: "";*/
  position: absolute;
  bottom: 0;
  right: 0;
  height: 75%;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.25;
  transform: translate(20%, 20%);
  z-index: 1;
}

.difference-card--primary::before {
  background-image: url("/site/images/home/difference/frozen_tuna_new.png");
}


.difference-card--secondary {
  grid-column: span 5;
  min-height: 400px;
  background:
          radial-gradient(circle at 84% 18%, rgba(112, 200, 255, 0.22), transparent 34%),
          #ffffff;
}

.difference-card--secondary::before {
  background-image: url("/site/images/home/difference/frozen_lng_new.png");
  opacity: 0.5;
}

.difference-card:nth-child(3)::before {
  background-image: url("/site/images/home/difference/frozen_something_new.png");
  opacity: 0.5;
}

.difference-card:nth-child(4)::before {
  background-image: url("/site/images/home/difference/frozen_cube_new.png");
  opacity: 0.5;
}

.difference-card:nth-child(5) {
  border: 1px solid rgba(6, 31, 56, 0.25);
  background-color: transparent;
}

.difference-card:nth-child(5)::before {
  display: none;
  background-image: url("/site/images/home/difference/frozen_truck.png");
  opacity: 0.5;
}

.difference-card--primary .card-eyebrow {
  color: var(--color-sky);
}

.difference-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: -0.045em;
  color: inherit;
}

.difference-card--primary h3,
.difference-card--secondary h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.difference-card p:not(.card-eyebrow) {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.72;
  color: #5a7083;
  word-break: keep-all;
  position: relative;
  z-index: 10;
}

.difference-card--primary p:not(.card-eyebrow) {
  color: rgba(255,255,255,0.76);
}

.difference-metric {
  margin-top: 40px;
  /*padding: 26px;*/
  /*border-radius: 26px;*/
  /*background: rgba(255,255,255,0.11);*/
  /*border: 1px solid rgba(157,234,255,0.22);*/
}

.difference-metric strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.difference-metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
}

.difference-cta {
  margin-top: 42px;
  text-align: center;
}

/* =========================
   7. News
========================= */

.home-news {
  background: #ffffff;
}

.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(6, 27, 51, 0.12);
}

.news-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.news-row {
  display: grid;
  grid-template-columns: 130px minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(6, 27, 51, 0.12);
  color: var(--color-navy);
  text-decoration: none;
}

.news-row span {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-blue);
}

.news-row strong {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.news-row p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

/* =========================
   8. Start
========================= */

.home-start {
  background:
          radial-gradient(circle at 80% 18%, rgba(112, 200, 255, 0.2), transparent 32%),
          linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.start-card {
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(6, 27, 51, 0.08);
  box-shadow: 0 18px 44px rgba(6, 31, 56, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.start-card__media {
  height: 190px;
  /*margin: 0 -32px;*/
  background:
          radial-gradient(circle at 78% 18%, rgba(112, 200, 255, 0.28), transparent 32%),
          linear-gradient(135deg, #eef8ff, #ffffff);
  /*border-bottom: 1px solid rgba(6, 27, 51, 0.06);*/
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 300 / 200;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(6, 31, 56, 0.25);
}

.start-card:nth-child(1) .start-card__media {
  background-image: url("/site/images/home/start/inquiry_final.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.start-card:nth-child(2) .start-card__media {
  background-image: url("/site/images/home/start/login_final.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.start-card:nth-child(3) .start-card__media {
  background-image: url("/site/images/home/start/partner_final.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*.start-card .card-eyebrow {*/
/*  margin-top: 16px;*/
/*}*/

/*.start-card h3 {*/
/*  margin: 0;*/
/*  font-size: 24px;*/
/*  line-height: 1.24;*/
/*  letter-spacing: -0.045em;*/
/*  color: var(--color-navy);*/
/*}*/

/*.start-card p:not(.card-eyebrow) {*/
/*  min-height: 116px;*/
/*  margin: 16px 0 0;*/
/*  font-size: 16px;*/
/*  line-height: 1.72;*/
/*  color: var(--color-muted);*/
/*  word-break: keep-all;*/
/*}*/
.start-card {
  min-height: 575px;
}

.start-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.start-card__title h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.045em;
  color: var(--color-navy);
}

.start-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.start-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.start-card__icon--contact {
  color: #1688ff;
  background: #eaf4ff;
}

.start-card__icon--member {
  color: #7554f6;
  background: #f0ebff;
}

.start-card__icon--partner {
  color: #00a878;
  background: #e6faf4;
}

.start-card p {
  min-height: auto;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.72;
  color: var(--color-muted);
  word-break: keep-all;
}

.start-card__list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.start-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #53687f;
}

.start-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1688ff;
  transform: translateY(-50%);
}

.start-card:nth-child(2) .start-card__list li::before {
  background: #7554f6;
}

.start-card:nth-child(3) .start-card__list li::before {
  background: #00a878;
}

.start-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 30px;
}

.start-card__button span {
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.start-card__button:hover span {
  transform: translateX(4px);
}

.start-card .button {
  margin-top: 24px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  :root {
    --eth-pad: 44px;
  }

  .home-metrics__inner,
  .explore-layout,
  .product-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .metrics-side {
    border-left: none;
    padding-left: 0;
  }
  .metric-line {
    padding: 12px 0;
  }

  .explore-copy {
    position: static;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .difference-card,
  .difference-card--primary,
  .difference-card--secondary {
    grid-column: auto;
    min-height: auto;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }

  .qsf-floating-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .kqsf-explore-slide__inner {
    padding-bottom: 0;
  }
}

@media (max-width: 1000px) {
  .home-metrics__inner,
  .explore-layout {
    flex-direction: column;
  }

  /*.qsf-browser__body {*/
  /*  flex-direction: column;*/
  /*}*/

  .product-story__visual {
    width: 100%;
  }
  .product-story__content {
    width: 100%;
  }
  .product-visual-card {
    aspect-ratio: 650 / 400;
    width: 100%;
    min-height: auto;
    background-position: center 75%;
  }



  .qsf-browser__body {
    padding: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --eth-pad: 32px;
  }

  .eth-section {
    padding: 82px 0;
  }

  .pc-only {
    display: none;
  }

  .section-heading,
  .section-heading--center {
    /*text-align: left;*/
    text-align: center;
    margin-bottom: 38px;
    margin-top: 5rem;
  }

  .section-heading--between {
    display: block;
  }

  .section-heading--between .button {
    margin-top: 22px;
  }

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

  .section-heading p:not(.section-eyebrow) {
    font-size: 16px;
  }

  .hero-art {
    padding: 28px 0 0;
  }

  .hero-art__canvas {
    width: min(calc(100% - 24px), 100%);
    height: 260px;
    border-radius: 26px;
  }

  .hero-art__sun {
    width: 138px;
  }

  .hero-art__mark {
    font-size: 26px;
  }

  .hero-art__ring--one {
    width: 270px;
    height: 270px;
  }

  .hero-art__ring--two {
    width: 430px;
    height: 430px;
  }

  .hero-art__ice {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .hero-art__line {
    display: none;
  }

  .home-hero {
    padding: 36px 0;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-metrics__copy h2,
  .explore-copy h2,
  .product-story__content h2,
  .qsf-app__copy h2 {
    font-size: 36px;
  }

  .home-metrics__copy p,
  .explore-copy p:not(.section-eyebrow),
  .product-story__content p:not(.section-eyebrow),
  .qsf-app__copy p:not(.section-eyebrow) {
    font-size: 16px;
  }

  .metric-line {
    /*padding: 24px 0;*/
    /*padding: 0;*/
  }

  .metric-line strong {
    font-size: 36px;
  }

  .explore-card {
    min-height: 340px;
    padding: 30px;
    border-radius: 30px;
  }

  .explore-card::after {
    background:
            linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.78) 55%, rgba(255,255,255,0.42) 100%);
  }

  .explore-card h3 {
    font-size: 32px;
  }

  .explore-card p:not(.card-eyebrow) {
    font-size: 16px;
  }

  .home-product-story {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .product-story__inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: min(calc(100% - 32px), var(--eth-max));
  }

  .product-story__visual {
    width: 100%;
  }

  .product-visual-card {
    width: calc(100% - 24px);
    min-height: auto;
    margin: 0 auto;
    aspect-ratio: 0.82;
    border-radius: 30px;
    background-position: center;
  }

  .product-story__inner {
    display: flex;
    flex-direction: column;
    gap: 64px;

    width: min(calc(100% - 32px), var(--eth-max));
  }

  .product-story__visual {
    width: 100%;
  }

  .product-visual-card {
    width: calc(100% - 20px);
    min-height: auto;
    margin: 0 auto;

    aspect-ratio: 0.82;
    border-radius: 30px;
    background-position: center;

    box-shadow: 0 22px 60px rgba(6, 27, 51, 0.13);
  }

  .product-floating-card {
    width: auto;
    min-height: 0;
    padding: 14px 16px;

    border-radius: 17px;
    box-shadow: 0 10px 26px rgba(6, 27, 51, 0.14);
  }

  .product-floating-card strong {
    font-size: 21px;
    line-height: 1;
  }

  .product-floating-card span {
    margin-top: 8px;

    font-size: 11px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .product-floating-card--operation {
    top: 42px;
    left: -4px;
    right: auto;
    bottom: auto;

    min-width: 148px;
  }

  .product-floating-card--qsf {
    top: auto;
    left: auto;
    right: -4px;
    bottom: 46px;

    min-width: 138px;
  }

  .product-story__content {
    width: 100%;
  }

  .product-story__content .section-eyebrow {
    margin-bottom: 18px;
  }

  .product-story__content h2 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.07em;
  }

  .product-story__description {
    margin-top: 36px;
  }

  .product-story__description p {
    font-size: 17px;
    line-height: 1.8;
  }

  .product-story__description p + p {
    margin-top: 22px;
  }

  .product-story__content .text-link {
    margin-top: 30px;
  }

  .qsf-browser__body {
    flex-direction: column;
  }

  .qsf-browser__copy {
    padding-top: 0;
  }

  .qsf-browser__copy h3 {
    font-size: 24px;
  }

  .qsf-browser__copy p:not(.section-eyebrow) {
    font-size: 14px;
  }

  .qsf-phone-wrap {
    min-height: 390px;
    margin-top: 46px;
  }

  .qsf-phone {
    width: min(100%, 320px);
    min-height: 390px;
    border-radius: 36px 36px 0 0;
  }

  .qsf-phone img {
    width: min(82%, 250px);
  }

  .difference-card {
    padding: 24px;
    border-radius: 24px;
  }

  .difference-card h3,
  .difference-card--primary h3,
  .difference-card--secondary h3 {
    font-size: 26px;
  }

  .difference-metric strong {
    font-size: 42px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-row strong {
    font-size: 20px;
  }

  .start-card {
    /*padding: 0 24px 26px;*/
    border-radius: 26px;
  }
  .start-card__media {
    /*height: 150px;*/
    margin: 0 0 22px;
    aspect-ratio: 250 / 200;
  }

  .start-card {
    min-height: auto;
  }

  .start-card__title {
    margin-top: 0;
  }

  .start-card__title h3 {
    font-size: 22px;
  }

  .start-card__icon {
    width: 40px;
    height: 40px;
  }

  .start-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .start-card__list {
    gap: 10px;
  }

  .start-card__list li {
    font-size: 14px;
  }

  .start-card p:not(.card-eyebrow) {
    min-height: auto;
  }
}

.home-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
          radial-gradient(
                  circle at 12% 18%,
                  rgba(109, 207, 255, 0.07),
                  transparent 28%
          ),
          radial-gradient(
                  circle at 88% 42%,
                  rgba(100, 175, 255, 0.055),
                  transparent 32%
          ),
          radial-gradient(
                  circle at 32% 78%,
                  rgba(184, 232, 255, 0.06),
                  transparent 30%
          ),
          linear-gradient(
                  180deg,
                  #ffffff 0%,
                  #fbfdff 45%,
                  #ffffff 100%
          );
}

.home-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
          linear-gradient(
                  115deg,
                  transparent 0%,
                  rgba(255, 255, 255, 0.4) 42%,
                  rgba(158, 218, 255, 0.055) 49%,
                  rgba(255, 255, 255, 0.22) 56%,
                  transparent 66%
          ),
          radial-gradient(
                  ellipse at center,
                  rgba(176, 229, 255, 0.045) 0%,
                  transparent 68%
          );

  background-size:
          720px 960px,
          520px 520px;

  opacity: 0.65;
  filter: blur(0.2px);
}

.home-hero,
.home-metrics,
.home-explore,
.home-product-story,
.home-qsf,
.lng-difference,
.home-news,
.home-start {
  background: transparent;
}

.home-product-story {
  position: relative;
}

.home-product-story::before {
  content: "";
  position: absolute;
  inset: 32px 0;
  z-index: -1;
  background: rgba(235, 247, 255, 0.28);
  border-top: 1px solid rgba(131, 195, 230, 0.07);
  border-bottom: 1px solid rgba(131, 195, 230, 0.07);
  backdrop-filter: blur(2px);
}

.home-start > .eth-container {
  position: relative;
  overflow: visible;
  background: transparent;
  z-index: 1;
  padding: 4rem;
}

.home-start .eth-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 36px;
  background:
    /* 오른쪽 위의 아주 은은한 냉기 */
          radial-gradient(
                  ellipse 58% 38% at 76% 4%,
                  rgba(79, 170, 255, 0.13) 0%,
                  rgba(130, 205, 255, 0.07) 38%,
                  transparent 72%
          ),

            /* 중앙에만 남고 좌우로 옅어지는 파란 영역 */
          radial-gradient(
                  ellipse 88% 48% at 50% 0%,
                  rgba(178, 224, 255, 0.72) 0%,
                  rgba(203, 235, 255, 0.46) 34%,
                  rgba(229, 246, 255, 0.18) 62%,
                  transparent 84%
          ),

            /* 위에서 아래로 빠르게 사라지는 기본 그라데이션 */
          linear-gradient(
                  to bottom,
                  rgba(201, 233, 255, 0.64) 0%,
                  rgba(218, 240, 255, 0.38) 15%,
                  rgba(238, 249, 255, 0.12) 34%,
                  transparent 56%
          );
}

.home-start .section-heading { position: relative; }
.home-start .start-grid { position: relative; }

@media (max-width: 1000px) {
  .home-start > .eth-container {
    padding: 2rem;
  }
}

@media (max-width: 760px) {
  .home-start > .eth-container {
    padding: 1rem;
  }

  .home-start .eth-container::before {
    border-radius: 28px;

    background:
            radial-gradient(
                    ellipse 70% 28% at 78% 3%,
                    rgba(75, 165, 255, 0.11) 0%,
                    transparent 72%
            ),
            radial-gradient(
                    ellipse 96% 34% at 50% 0%,
                    rgba(180, 225, 255, 0.66) 0%,
                    rgba(211, 239, 255, 0.34) 38%,
                    rgba(239, 249, 255, 0.1) 66%,
                    transparent 88%
            ),
            linear-gradient(
                    to bottom,
                    rgba(201, 233, 255, 0.56) 0%,
                    rgba(224, 243, 255, 0.25) 14%,
                    rgba(244, 251, 255, 0.07) 28%,
                    transparent 43%
            );
  }
}

.kqsf-explore-controls {
  align-items: center;
}

.kqsf-explore-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  padding: 0;

  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #2563eb;

  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.kqsf-explore-button svg {
  display: block;
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}

.kqsf-explore-button.swiper-button-disabled {
  color: #a3a3a3;
  cursor: default;
  opacity: 1;
}

.kqsf-explore-pagination {
  position: static;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: auto !important;
  height: 30px;
  gap: 8px;
  line-height: 0;
}

.kqsf-explore-pagination .swiper-pagination-bullet {
  flex: 0 0 auto;
  display: block;

  width: 9px;
  height: 9px;
  margin: 0 !important;
  padding: 0;

  border: 0;
  border-radius: 50%;
  background-color: #c7d2fe;
  opacity: 1;
  transform: none;
}

.kqsf-explore-pagination
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2563eb;
  opacity: 1;
}

@media (max-width: 420px) {
  .product-floating-card {
    padding: 12px 14px;
    border-radius: 15px;
  }

  .product-floating-card strong {
    font-size: 19px;
  }

  .product-floating-card span {
    margin-top: 7px;
    font-size: 10px;
  }

  .product-floating-card--operation {
    top: 34px;
    min-width: 136px;
  }

  .product-floating-card--qsf {
    bottom: 38px;
    min-width: 126px;
  }
}