/* 키오스크 홈 — 상단 티커 · 메뉴 · 중앙 견적 (와이어프레임) */

/* ── 상단 차량 뱃지 티커 (밝은 톤 · 우→좌 무한 스크롤) ── */
.home-ticker {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, var(--page-bg, #F8FAFC) 100%);
  border-bottom: 1px solid var(--border-soft, #E2E8F0);
  padding: 12px 0;
  overflow: hidden;
}

.home-ticker--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.home-ticker-viewport {
  overflow: hidden;
  width: 100%;
}

.home-ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: home-ticker-scroll var(--ticker-duration, 28s) linear infinite;
  padding: 0 12px;
}

.home-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes home-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-ticker-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.home-ticker-fade--l {
  left: 0;
  background: linear-gradient(90deg, #f8fafc, transparent);
}

.home-ticker-fade--r {
  right: 0;
  background: linear-gradient(270deg, #f8fafc, transparent);
}

.home-ticker-badge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 118px;
  padding: 8px 8px 10px;
  background: #fff;
  border: 1px solid var(--border-soft, #E2E8F0);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: #1e293b;
  transition: transform 0.15s, box-shadow 0.15s;
}

.home-ticker-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.home-ticker-badge-img {
  width: 100%;
  height: 58px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
}

.home-ticker-badge-tag {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  letter-spacing: 0.02em;
}

.home-ticker-badge-tag--pin {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.home-ticker-badge-name {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-ticker-badge-price {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--scar-blue);
}

.home-ticker-badge-dealer {
  margin-top: 2px;
  font-size: 9px;
  color: #94a3b8;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── 메인 상단 통합 블록 (티커 · 메뉴 · 키오스크) ── */
.home-public-stack {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-soft, #E2E8F0);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.home-public-stack .home-ticker {
  background: transparent;
  border-bottom: none;
  padding: 10px 0 6px;
}

.home-public-stack .home-ticker-fade--l {
  background: linear-gradient(90deg, #fff, transparent);
}

.home-public-stack .home-ticker-fade--r {
  background: linear-gradient(270deg, #f8fafc, transparent);
}

.home-public-stack .home-menu-row {
  background: transparent;
  border-bottom: none;
  padding: 4px 14px 6px;
}

/* ── 메인 메뉴 — 가로 pill (뱃지·라벨 전체 노출) ── */
.home-menu-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 16px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-bottom: 1px solid var(--border-soft, #E2E8F0);
}

.home-menu-row::-webkit-scrollbar {
  display: none;
}

.home-menu-btn {
  flex: 0 0 auto;
  min-width: max-content;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.home-menu-btn.is-active {
  border-color: var(--scar-blue);
  background: var(--scar-sky-50);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

.home-menu-btn-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
  min-width: max-content;
}

.home-menu-btn-label {
  display: inline;
  font-size: 13px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.25;
  white-space: nowrap;
}

/* ── 중앙 키오스크 ── */
.kiosk-root--stack {
  display: flex;
  flex-direction: column;
}

.home-kiosk-center {
  flex: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px 10px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.kiosk-headline-stack {
  text-align: center;
  margin-bottom: 6px;
}

.kiosk-headline-stack--compact {
  margin-bottom: 4px;
}

.kiosk-headline-h1--hero {
  font-size: 18px !important;
  margin-bottom: 0 !important;
}

.kiosk-root--stack .kiosk-headline-p {
  font-size: 10px;
  margin: 0;
  line-height: 1.3;
}

.kiosk-panel-card--hero {
  box-shadow: var(--shadow-soft, 0 4px 24px rgba(15, 23, 42, 0.06));
  border: 1px solid var(--border-soft, #E2E8F0);
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
}

/* 견적 단계 표시 */
.kiosk-progress-wrap {
  margin-bottom: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.kiosk-progress-wrap--compact {
  margin-bottom: 6px;
}

.kiosk-progress-steps {
  display: flex;
  gap: 6px;
}

.kiosk-progress-step {
  flex: 1;
  text-align: center;
}

.kiosk-progress-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: #e5e7eb;
  color: #64748b;
}

.kiosk-progress-step.is-active .kiosk-progress-dot {
  background: linear-gradient(135deg, var(--scar-blue), var(--scar-light));
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.kiosk-progress-step.is-done .kiosk-progress-dot {
  background: #22c55e;
  color: #fff;
}

.kiosk-progress-label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.kiosk-progress-step.is-active .kiosk-progress-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--scar-blue);
}

.kiosk-progress-step.is-done .kiosk-progress-label {
  font-weight: 600;
  color: #16a34a;
}

.kiosk-progress-wrap--compact .kiosk-progress-dot {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.kiosk-progress-wrap--compact .kiosk-progress-label {
  margin-top: 3px;
  font-size: 9px;
}

.kiosk-progress-wrap--compact .kiosk-progress-step.is-active .kiosk-progress-label {
  font-size: 9px;
}

.kiosk-root--stack .kiosk-panel-card--hero h2 {
  font-size: 16px !important;
  margin-bottom: 4px !important;
}

.kiosk-root--stack .kiosk-panel-card--hero p {
  margin-bottom: 8px !important;
  font-size: 11px !important;
}

.kiosk-root--stack .kiosk-panel-card--hero ul {
  margin-bottom: 10px !important;
  font-size: 11px !important;
}

.kiosk-root--stack .kiosk-panel-card--hero #k-next {
  padding: 12px !important;
  font-size: 14px !important;
}

.kiosk-root--stack .kiosk-status-link-wrap {
  margin-top: 6px;
}

@media (max-width: 640px) {
  .home-menu-row {
    padding: 6px 12px 4px;
  }

  .home-menu-btn {
    padding: 9px 16px;
  }

  .home-menu-btn-label {
    font-size: 12px;
  }

  .home-ticker-badge {
    width: 108px;
  }

  .kiosk-headline-h1--hero {
    font-size: 18px !important;
  }
}

/* 키오스크 홈 — 좌측 5뱃지 · 우측 견적 (레거시 split) */

.kiosk-root--split {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.kiosk-landing-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  min-height: 0;
  align-items: stretch;
  height: calc(100vh - 64px - 48px);
  max-height: calc(100vh - 64px - 48px);
}

.kiosk-product-rail {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.kiosk-product-rail-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.kiosk-rail-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--scar-blue);
  letter-spacing: -0.02em;
}

.kiosk-rail-sub {
  margin: 0 0 4px;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

.kiosk-rail-card {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  text-align: left;
  padding: 12px 12px 10px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kiosk-rail-card.is-active {
  border-color: var(--scar-blue);
  background: var(--scar-sky-50);
  box-shadow: 0 4px 16px rgba(26, 43, 73, 0.12);
}

.kiosk-rail-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
}

.kiosk-rail-icon {
  font-size: 22px;
  line-height: 1;
  display: block;
}

.kiosk-rail-name {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.kiosk-rail-desc {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #6b7280;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kiosk-main-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.kiosk-headline-compact {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.kiosk-headline-h1 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
  color: var(--scar-blue);
  letter-spacing: -0.03em;
}

.kiosk-headline-p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
}

.kiosk-main-panel .kiosk-panel-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}

.kiosk-panel-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.kiosk-root--split .kiosk-main-panel > div[style*="margin-bottom:28px"] {
  margin-bottom: 14px !important;
  flex-shrink: 0;
}

.kiosk-status-link-wrap {
  flex-shrink: 0;
  text-align: center;
  margin-top: 10px;
}

.kiosk-status-link {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
}

@media (max-width: 768px) {
  .kiosk-landing-layout {
    grid-template-columns: 1fr;
  }

  .kiosk-product-rail {
    position: static;
  }

  .kiosk-product-rail-inner {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 8px;
    scrollbar-width: none;
  }

  .kiosk-product-rail-inner::-webkit-scrollbar {
    display: none;
  }

  .kiosk-rail-card {
    flex: 0 0 140px;
    min-height: 120px;
    padding: 12px 10px;
  }

  .kiosk-rail-desc,
  .kiosk-rail-foot,
  .kiosk-rail-sub {
    display: none;
  }
}

/* 소비자 홈 마케팅 블록 (키오스크 하단) */

.consumer-mkt {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

.consumer-mkt-section {
  margin-top: 40px;
}

.consumer-mkt-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.consumer-mkt-sub {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.5;
}

.consumer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.consumer-stat {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.consumer-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--scar-blue);
}

.consumer-stat-label {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
}

.consumer-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.consumer-chips::-webkit-scrollbar {
  display: none;
}

.consumer-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
}

.consumer-chip:hover {
  border-color: var(--scar-blue);
  background: var(--scar-sky-50);
}

.consumer-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .consumer-value-grid,
  .consumer-stats {
    grid-template-columns: 1fr;
  }
}

.consumer-value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

.consumer-value-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--scar-blue);
}

.consumer-value-card p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
}

.consumer-reviews {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.consumer-review-card {
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
}

.consumer-review-card .who {
  font-size: 12px;
  font-weight: 700;
  color: var(--scar-blue);
}

.consumer-review-card .txt {
  font-size: 13px;
  color: #374151;
  margin-top: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.consumer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.consumer-brand-pill {
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

.consumer-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
}

.consumer-faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.consumer-faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.65;
}

.consumer-faq-item.open .consumer-faq-a {
  display: block;
}

.consumer-cta-band {
  background: linear-gradient(135deg, #DBEAFE, var(--scar-blue));
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
}

.consumer-cta-band h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.consumer-cta-band p {
  margin: 0 0 18px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.consumer-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.consumer-cta-btns a,
.consumer-cta-btns button {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.consumer-cta-primary {
  background: #fff;
  color: var(--scar-blue);
}

.consumer-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
}

.consumer-faq-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.consumer-contact-card {
  background: var(--scar-sky-50);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
}

/* 네이티브 앱 하단 탭 */
.scar-public-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

html.scar-native-app.scar-public-shell .scar-public-tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.scar-public-tabbar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px 10px;
  border: none;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
}

.scar-public-tabbar button .ico {
  font-size: 20px;
  line-height: 1;
}

.scar-public-tabbar button.active {
  color: var(--scar-blue);
}

html.scar-native-app.scar-public-shell #app {
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

html.scar-native-app.scar-public-shell .kiosk-root {
  padding-bottom: 8px;
}

/* 보험대차 비대면 접수 */
.ins-req-page {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.ins-req-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ins-req-card h1 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--scar-blue);
}

.ins-req-lead {
  margin: 0 0 20px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}

.ins-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin: 14px 0 6px;
}

.ins-label .req {
  color: #ef4444;
}

.ins-input {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

.ins-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ins-radio {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ins-plate-row {
  display: flex;
  gap: 8px;
}

.ins-plate-row .ins-input {
  flex: 1;
}

.ins-btn-secondary {
  flex: 0 0 auto;
  padding: 11px 16px;
  background: var(--scar-sky-50);
  color: var(--scar-blue);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.ins-btn-primary {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--scar-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.ins-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #374151;
  margin-top: 16px;
  cursor: pointer;
}

.ins-req-foot {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
}

/* ── Phase2 쇼케이스 (후기·4단계·알림톡·상품) ── */
.home-showcase-root {
  width: 100%;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 32px 0 48px;
}

.home-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-showcase-header {
  text-align: center;
  margin-bottom: 24px;
}

.home-showcase-h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.home-showcase-lead {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-showcase-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.home-showcase-panel-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 4px;
}

.home-showcase-panel-sub {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 14px;
}

.home-showcase-review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
  max-height: 320px;
}

.home-showcase-review {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #f1f5f9;
}

.home-showcase-review-model {
  font-size: 12px;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 4px;
}

.home-showcase-review-txt {
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 6px;
}

.home-showcase-review-who {
  font-size: 11px;
  color: #94a3b8;
}

.home-showcase-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
}

.home-showcase-step {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #f1f5f9;
}

.home-showcase-step-n {
  font-size: 11px;
  font-weight: 800;
  color: #2563EB;
  margin-bottom: 4px;
}

.home-showcase-step h4 {
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #1e293b;
}

.home-showcase-step p {
  font-size: 10px;
  color: #64748b;
  margin: 0 0 6px;
  line-height: 1.4;
}

.home-showcase-step ul {
  margin: 0;
  padding-left: 14px;
  font-size: 10px;
  color: #475569;
  line-height: 1.45;
}

.home-kakao-mock {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-kakao-phone {
  width: 100%;
  max-width: 260px;
  background: #b2c7d9;
  border-radius: 16px;
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.home-kakao-bar {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.home-kakao-profile {
  font-size: 10px;
  font-weight: 700;
  color: #3c1e1e;
  margin-bottom: 4px;
}

.home-kakao-bubble {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.45;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.home-kakao-bubble strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
}

.home-kakao-bubble p {
  margin: 0;
  color: #475569;
}

.home-kakao-time {
  display: block;
  text-align: right;
  font-size: 9px;
  color: #94a3b8;
  margin-top: 6px;
}

.home-showcase-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.home-showcase-product {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 10px;
  align-items: center;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.home-showcase-product:hover {
  border-color: #2563EB;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.home-showcase-product-badge {
  grid-row: span 2;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  align-self: start;
}

.home-showcase-product-icon {
  grid-column: 2;
  font-size: 18px;
  line-height: 1;
}

.home-showcase-product-t {
  grid-column: 2;
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
}

.home-showcase-product-d {
  grid-column: 2;
  font-size: 10px;
  color: #64748b;
}

.home-showcase-product-cta {
  grid-column: 3;
  grid-row: span 2;
  font-size: 10px;
  font-weight: 700;
  color: #2563EB;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-showcase-grid {
    grid-template-columns: 1fr;
  }
  .home-showcase-steps {
    grid-template-columns: 1fr;
  }
}
