/* ===================================================
   TOP PAGE STYLES - Shelflow
   トンマナ: --primary #19b3c7 / --secondary #f39800
             ダーク #0f172a / グレー #64748b
=================================================== */

/* -------------------------
   共通ユーティリティ
------------------------- */



/* ===================================================
   Section 1: HERO
=================================================== */
.top-hero {
  position: relative;
  padding: 10px 0 30px;
  background:
    radial-gradient(circle at top right, rgba(62, 121, 239, 0.08) 0%, rgba(62, 121, 239, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.top-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 25%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      rgba(255, 255, 255, 0) 100%),
    url("../image/picking/fv.jpeg") center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(100%);
  /* オレンジ色を消し、背景のシアン・ブルーに美しく溶け込ませる */
}

.top-hero .container {
  position: relative;
  z-index: 1;
}

.top-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1.1fr);
  gap: 0px;
  align-items: center;
}

.top-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #19b3c7;
  background: #eefafc;
  border: 1px solid #d1f0f4;
  border-radius: 999px;
}

.top-hero__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 750;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.top-hero__title-highlight {
  font-size: 1.15em;
  font-weight: 900;
  background: linear-gradient(90deg, #19b3c7 0%, #0082c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.top-hero__lead {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 28px;
}

.top-hero__lead-block {
  display: block;
}

.top-hero__lead-block+.top-hero__lead-block {
  margin-top: 10px;
}

/* CTA ボタン */
.top-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.top-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-hero__btn:hover {
  transform: translateY(-2px);
}

.top-hero__btn--primary {
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(32, 121, 148, 0.28);
}

.top-hero__btn--primary:hover {
  box-shadow: 0 18px 36px rgba(32, 121, 148, 0.36);
}

.top-hero__btn--secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.top-hero__btn--secondary:hover {
  border-color: #19b3c7;
  color: #19b3c7;
}

/* サブCTA */
.top-hero__sub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-hero__sub-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.top-hero__sub-btn:hover {
  background: #e2f8fb;
  color: #19b3c7;
}

/* 特徴バッジ */
.top-hero__features {
  display: flex;
  flex-wrap: nowrap;
  /* 1行に固定 */
  gap: 12px;
  margin-top: 24px;
  overflow-x: auto;
  /* はみ出し時にスクロール可能にする */
  width: 100%;
  scrollbar-width: none;
  /* スクロールバー非表示 */
}

.top-hero__features::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari用スクロールバー非表示 */
}

.top-hero__feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  /* 縮小を防止 */
  white-space: nowrap;
  /* 改行を防止 */
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-svg {
  stroke: #19b3c7;
}

.feature-text {
  font-size: 14px;
  font-weight: 800;
  color: #0b4a75;
  letter-spacing: -0.02em;
}

/* ヒーロー画像表示 */
.top-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.top-hero__imageWrap {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.top-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 120%;
  /* 元のサイズに戻す */
  height: auto;
  max-height: 640px;
  object-fit: contain;
  margin-top: -40px;
  /* 上部の余白を詰める */
  margin-bottom: -40px;
  /* 下部の余白を詰める */
}



/* FVアニメーション */
.js-fv-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fv-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   Section 2: ISSUES (sorting layout)
=================================================== */
.sorting-issues {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 12% 12%, rgba(40, 120, 167, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}



.sorting-issues__inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  z-index: 1;
}

.sorting-issues__head {
  text-align: center;
  margin-bottom: 54px;
}

.sorting-issues__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #2878a7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sorting-issues__eyebrow::before,
.sorting-issues__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(40, 120, 167, 0.35);
}

.sorting-issues__head h2 {
  color: #061b33;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  font-weight: 750;
}

.sorting-issues__head p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.9;
}

/* list area */
.sorting-issues__listWrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 54px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    0 24px 50px rgba(31, 41, 51, 0.06);
}

.sorting-issues__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.sorting-issues__col {
  display: flex;
  flex-direction: column;
}

.sorting-issues__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(6, 27, 51, 0.22);
}

.sorting-issues__item:first-child {
  padding-top: 0;
}

.sorting-issues__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  justify-self: center;
  flex-shrink: 0;
}

.sorting-issues__item p {
  color: #061b33;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sorting-issues__item p span {
  color: #061b33;
  font-weight: 900;
  background: linear-gradient(transparent 64%, rgba(40, 120, 167, 0.18) 0);
}

/* corner */
.sorting-issues__corner {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.sorting-issues__corner--leftTop {
  top: -6px;
  left: -6px;
  border-top: 6px solid #58acd5;
  border-left: 6px solid #58acd5;
}

.sorting-issues__corner--rightTop {
  top: -6px;
  right: -6px;
  border-top: 6px solid #061b33;
  border-right: 6px solid #061b33;
}

.sorting-issues__corner--leftBottom {
  bottom: -6px;
  left: -6px;
  border-bottom: 6px solid #061b33;
  border-left: 6px solid #061b33;
}

.sorting-issues__corner--rightBottom {
  bottom: -6px;
  right: -6px;
  border-bottom: 6px solid #58acd5;
  border-right: 6px solid #58acd5;
}

.sorting-issues__message {
  position: relative;
  z-index: 1;
  margin: 34px auto 0;
  padding: 20px 24px;
  max-width: 680px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(210, 226, 236, 0.9);
  color: #34495e;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.055);
}

.sorting-issues__message span {
  color: #2878a7;
  font-weight: 900;
}

/* responsive */
@media (max-width: 820px) {
  .sorting-issues__listWrap {
    padding: 22px 28px 30px;
  }

  .sorting-issues__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sorting-issues__col:first-child .sorting-issues__item:last-child {
    border-bottom: 1px solid rgba(6, 27, 51, 0.22);
  }
}

@media (max-width: 640px) {
  .sorting-issues {
    padding: 72px 0 80px;
  }

  .sorting-issues__inner {
    width: min(100% - 28px, 1120px);
  }

  .sorting-issues__head {
    margin-bottom: 38px;
  }

  .sorting-issues__listWrap {
    padding: 18px 12px 28px;
  }

  .sorting-issues__corner {
    width: 30px;
    height: 30px;
  }

  .sorting-issues__item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .sorting-issues__icon {
    width: 32px;
    height: 32px;
  }

  .sorting-issues__item p {
    font-size: 15px;
  }

  .sorting-issues__message {
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.8;
  }
}


/* ===================================================
   Section 3: USE CASES
=================================================== */
.top-usecases {
  padding: 80px 0;
  background: #ffffff;
}

.top-usecases__head {
  text-align: center;
  margin-bottom: 48px;
}

.top-usecases__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.top-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

/* カード共通 */
.usecase-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s, border-color 0.3s;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #19b3c7, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s;
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.usecase-card:hover::before {
  opacity: 1;
}

.usecase-card__image-holder {
  height: 200px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.3s ease;
}

.usecase-card--featured .usecase-card__image-holder {
  background: #eef9fb;
}

.usecase-card__mockup {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 8px 8px 0 0;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
}

/* 個別サイズ微調整 */
.usecase-card__mockup--sorting {
  width: 75%;
  transform: translateY(12px);
}

.usecase-card:hover .usecase-card__mockup--sorting {
  transform: translateY(2px);
}

.usecase-card__mockup--picking {
  width: 125%;
  height: 195px;
  transform: translateY(12px) scale(1.2);
}

.usecase-card:hover .usecase-card__mockup--picking {
  transform: translateY(2px) scale(1.2);
}

.usecase-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* おすすめカード */
.usecase-card--featured {
  background: linear-gradient(160deg, #ffffff 0%, #fcfefe 100%);
  border-color: #b8e9f0;
  box-shadow: 0 8px 24px rgba(25, 179, 199, 0.08);
}

.usecase-card--featured::before {
  opacity: 1;
}

.usecase-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, #19b3c7 0%, #0f99af 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(25, 179, 199, 0.22);
}

.usecase-card__num {
  font-size: 11px;
  font-weight: 800;
  color: #19b3c7;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.usecase-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.usecase-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #64748b;
  flex-grow: 1;
  margin-bottom: 24px;
}

.usecase-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #0f172a;
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.3s, transform 0.3s;
}

.usecase-card:hover .usecase-card__action {
  background: #19b3c7;
  transform: translateX(4px);
}

.usecase-card__action--prep {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: default;
}

.usecase-card:hover .usecase-card__action--prep {
  background: #e2e8f0;
  color: #94a3b8;
  transform: none;
}

/* ===================================================
   Section 4: COMPARISON
=================================================== */
.top-compare {
  padding: 80px 0;
  background: #f8fafc;
}

.top-compare__head {
  text-align: center;
  margin-bottom: 48px;
}

.top-compare__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.top-compare__table-wrap {
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead tr {
  background: #0f172a;
}

.compare-table thead th {
  padding: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.compare-table__item-col {
  text-align: left !important;
  width: 28%;
}

.compare-table__das-col {
  color: #94a3b8 !important;
  width: 36%;
  background: #1e293b; /* DAS/GASヘッダーも少し変える */
}

.compare-table__sf-col {
  width: 36%;
  vertical-align: middle;
  padding-top: 28px !important;
  padding-bottom: 14px !important;
  background: #0f172a;
  position: relative;
  border-left: 2px solid #e0f2fe;
  border-right: 2px solid #e0f2fe;
}

.compare-table__sf-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #19b3c7;
  color: #ffffff;
  font-size: 9px;
  font-weight: 750;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(25, 179, 199, 0.2);
}

.compare-table__logo {
  display: block;
  margin: 0 auto;
  height: 38px;
  width: auto;
  object-fit: contain;
}

.compare-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}

.compare-table tbody td:first-child {
  font-weight: 700;
  color: #0f172a;
  text-align: left;
}

.compare-table tbody td:nth-child(2) {
  background: #f8fafc; /* DAS/GASの背景を少し沈める */
}

.compare-table__sf {
  color: #0f172a !important;
  font-weight: 700 !important;
  background: #ffffff !important;
  border-left: 2px solid #e0f2fe;
  border-right: 2px solid #e0f2fe;
}

.compare-table tbody tr:last-child .compare-table__sf {
  border-bottom: 2px solid #e0f2fe;
}

.compare-table__sf-val {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.compare-table__icon {
  width: 18px;
  height: 18px;
  color: #19b3c7;
  flex-shrink: 0;
}

.top-compare__note {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-left: 4px solid #19b3c7;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.top-compare__note-icon {
  width: 22px;
  height: 22px;
  color: #19b3c7;
  flex-shrink: 0;
  margin-top: 2px;
}

.top-compare__note-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.top-compare__note-content {
  flex: 1;
}

.top-compare__note-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.top-compare__note-content p+p {
  margin-top: 8px;
}

/* ===================================================
   Section 5: INTRO FLOW
=================================================== */
.top-flow {
  padding: 80px 0;
  background: #ffffff;
}

.top-flow__head {
  text-align: center;
  margin-bottom: 56px;
}

.top-flow__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.top-flow__steps {
  max-width: 700px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.top-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s;
}

.top-flow__step:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(25, 179, 199, 0.1);
  border-color: #b8e9f0;
}

.top-flow__step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(32, 121, 148, 0.25);
}

.top-flow__step-body {
  flex: 1;
}

.top-flow__step-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.top-flow__step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}

.top-flow__connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, #19b3c7, #3b82f6);
  margin: 0 0 0 50px;
  border-radius: 2px;
}

.top-flow__cta {
  text-align: center;
}

.top-flow__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(32, 121, 148, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}

.top-flow__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 121, 148, 0.36);
}

/* ===================================================
   Section 6: PRICING
=================================================== */
.top-price {
  padding: 80px 0;
  background: #f8fafc;
}

.top-price__head {
  text-align: center;
  margin-bottom: 48px;
}

.top-price__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 750;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.top-price__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.top-price__main {
  display: contents;
}

/* 価格カード */
.price-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #19b3c7;
  margin-bottom: 20px;
}

.price-card__price {
  margin-bottom: 14px;
}

.price-card__amount {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.price-card__unit {
  font-size: 16px;
  font-weight: 700;
  color: #94a3b8;
}

.price-card__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

/* 詳細 */
.top-price__details {
  display: contents;
}

.top-price__col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
}

.top-price__col-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #19b3c7;
}

.top-price__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-price__list li {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-price__list li:last-child {
  border-bottom: none;
}

.top-price__list li::before {
  content: '✓';
  font-weight: 700;
  color: #19b3c7;
  flex-shrink: 0;
}

.top-price__list--prep li::before {
  content: '□';
  color: #94a3b8;
}

.top-price__cta {
  margin-top: 40px;
  text-align: center;
}

.top-price__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(32, 121, 148, 0.28);
  transition: transform 0.25s, box-shadow 0.25s;
}

.top-price__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 121, 148, 0.36);
}

/* ===================================================
   RESPONSIVE — Tablet (≤ 991px)
=================================================== */
@media screen and (max-width: 991px) {
  .top-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top-hero__imageWrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .top-hero__image {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
  }

  .top-price__body {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-width: auto;
  }
}

/* ===================================================
   RESPONSIVE — SP (≤ 768px)
=================================================== */
@media screen and (max-width: 768px) {
  .sp-only {
    display: initial;
  }

  .top-hero {
    padding: 56px 0 56px;
  }

  .top-hero__title {
    font-size: 28px;
  }

  .top-hero__cta {
    flex-direction: column;
  }

  .top-hero__btn {
    width: 100%;
    min-height: 52px;
  }

  .top-hero__features {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
  }

  .top-hero__features::-webkit-scrollbar {
    display: none;
  }

  .top-hero__feature-item {
    padding: 6px 12px;
    gap: 8px;
  }

  .feature-text {
    font-size: 12px;
  }

  .feature-svg {
    width: 18px;
    height: 18px;
  }

  .top-hero__imageWrap {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .top-hero__image {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
  }

  .top-usecases {
    padding: 60px 0;
  }

  .top-usecases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-compare {
    padding: 60px 0;
  }

  .top-compare__table-wrap {
    border-radius: 0;
    overflow-x: visible;
  }

  .compare-table {
    min-width: auto;
    width: 100%;
    table-layout: fixed;
  }

  .compare-table thead th {
    padding: 12px 6px;
    font-size: 11px;
  }

  .compare-table__item-col {
    width: 28%;
  }

  .compare-table__das-col {
    width: 36%;
  }

  .compare-table__sf-col {
    width: 36%;
    padding-top: 20px !important;
    padding-bottom: 8px !important;
  }

  .compare-table__sf-badge {
    font-size: 7.5px;
    padding: 1px 5px;
    top: 4px;
  }

  .compare-table__logo {
    height: 20px;
  }

  .compare-table tbody td {
    padding: 12px 6px;
    font-size: 10.5px;
    word-break: break-all;
  }

  .compare-table__sf-val {
    gap: 4px;
  }

  .compare-table__icon {
    width: 13px;
    height: 13px;
  }

  .top-compare__note {
    padding: 20px 18px;
    flex-direction: column;
    gap: 12px;
  }

  .top-compare__note-icon {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }

  .top-flow {
    padding: 60px 0;
  }

  .top-flow__step {
    padding: 18px 18px;
  }

  .top-flow__connector {
    margin: 0 0 0 40px;
  }

  .top-price {
    padding: 60px 0;
  }

  .top-price__body {
    gap: 16px;
  }

  .top-price__cta-btn {
    width: 100%;
  }
}