/* landing.css — index.html 전용 (Toss 스타일 재구성) */

/* ===== 스크롤 페이드업 애니메이션 (Toss 특유의 섹션 등장 동작) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 순차 등장 지연 */
[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== 1. 히어로 개편 ===== */
.hero {
  text-align: left;
  padding: 140px 0 120px;
  /* 번호판/로드 방향 — 아스팔트 그레이 + 중앙 차선 */
  background: linear-gradient(180deg, #e9eaec 0%, #d6d8dc 100%);
  overflow: hidden;
  position: relative;
}
/* 중앙 차선(옐로 파선) */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(#f4c400 0 42px, transparent 42px 82px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ===== 번호판 락업 (시그니처) ===== */
.hero-plate {
  display: inline-flex;
  align-items: stretch;
  border: 3px solid #14171c;
  border-radius: 9px;
  overflow: hidden;
  background: #f7f8f5;
  box-shadow:
    0 3px 0 #14171c,
    0 10px 24px -8px rgba(0, 0, 0, 0.4);
  margin-bottom: 28px;
}
.plate-region {
  background: #14171c;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.plate-num {
  font-family: "Black Han Sans", sans-serif;
  font-size: 24px;
  color: #14171c;
  padding: 6px 16px 3px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plate-num small {
  font-family:
    "SUIT",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-block;
  background: rgba(47, 93, 159, 0.1);
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: "Black Han Sans", sans-serif;
  font-size: 62px;
  font-weight: 400; /* Black Han Sans는 자체가 굵음 */
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  color: #161a20;
}
.hero-title .plate-hl {
  color: var(--color-primary);
}
.hero-subtitle {
  font-size: 19px;
  color: #4a4f57;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.6;
}
/* CTA — 번호판 방향(다크 버튼 + 옐로 태그) */
.btn-plate {
  display: inline-flex;
  align-items: center;
  background: #14171c;
  border-color: #14171c;
}
.btn-plate:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 8px 20px rgba(20, 23, 28, 0.28);
}
.btn-plate .btn-tk {
  background: #f4c400;
  color: #14171c;
  font-size: 13px;
  font-weight: 800;
  border-radius: 5px;
  padding: 3px 8px;
  margin-right: 8px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

/* 히어로 비주얼 (우측 PC + 모바일 목업) */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  perspective: 1000px;
  padding-right: 20px;
}

/* PC 웹사이트 목업 */
.mockup-window {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: rotateY(-10deg) rotateX(5deg) translateZ(0);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
  z-index: 1;
}

.mockup-window:hover {
  transform: rotateY(-4deg) rotateX(2deg) translateY(-8px) translateZ(10px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.12),
    0 6px 24px rgba(0, 0, 0, 0.06);
}

.window-header {
  height: 36px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  position: relative;
}
.window-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.window-header .dot.red {
  background: #ff5f56;
}
.window-header .dot.yellow {
  background: #ffbd2e;
}
.window-header .dot.green {
  background: #27c93f;
}
.window-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--color-text-light);
  background: #ffffff;
  padding: 4px 24px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  font-family: monospace;
}

.window-content {
  flex: 1;
  background: var(--color-bg-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 11px;
}

/* 목업 웹사이트 디테일 */
.mock-header {
  height: 40px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.mock-logo {
  font-weight: 800;
  color: var(--color-primary);
}
.mock-nav {
  display: flex;
  gap: 12px;
}
.mock-nav-item {
  color: var(--color-text-light);
  font-weight: 500;
}
.mock-nav-item.active {
  color: var(--color-primary);
  font-weight: 700;
}

.mock-hero-banner {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.mock-banner-text h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2px;
}
.mock-banner-text p {
  font-size: 10px;
  color: var(--color-text-muted);
}

.mock-car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  flex: 1;
  overflow: hidden;
}
.mock-car-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.mock-car-image-container {
  aspect-ratio: 1.6 / 1;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.mock-car-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.mock-car-tag.new {
  background: #10b981;
}
.mock-car-svg {
  width: 80%;
  height: auto;
}
.mock-car-info {
  padding: 10px;
}
.mock-car-title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-car-meta {
  color: var(--color-text-light);
  font-size: 9px;
  margin-bottom: 6px;
}
.mock-car-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-car-price {
  font-weight: 800;
  color: var(--color-text);
}
.mock-car-badge {
  background: #f1f5f9;
  color: var(--color-text-light);
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
}
.mock-car-badge.text-blue {
  background: rgba(47, 93, 159, 0.08);
  color: var(--color-primary);
}

/* 모바일 화면 목업 */
.mockup-phone {
  position: absolute;
  right: -10px;
  bottom: -40px;
  width: 200px;
  aspect-ratio: 9 / 18.5;
  background: #000000;
  border: 7px solid #191f28;
  border-radius: 28px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: rotateY(12deg) rotateX(4deg) translateZ(20px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.mockup-phone:hover {
  transform: rotateY(4deg) rotateX(1deg) translateY(-12px) translateZ(40px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.22),
    0 15px 30px rgba(0, 0, 0, 0.12);
}

/* 마우스가 히어로 비주얼 전체 위에 있을 때도 약간의 반응형 움직임 */
.hero-visual:hover .mockup-window {
  transform: rotateY(-6deg) rotateX(3deg) translateY(-4px);
}
.hero-visual:hover .mockup-phone {
  transform: rotateY(8deg) rotateX(2deg) translateY(-8px) translateZ(30px);
}

.phone-screen {
  flex: 1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 10px;
  position: relative;
}

.phone-status-bar {
  height: 24px;
  background: #ffffff;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid #f1f5f9;
}
.phone-time {
  font-family: sans-serif;
}
.phone-icons {
  letter-spacing: 1px;
}

.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}
.phone-mock-header {
  height: 36px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}
.phone-title {
  font-size: 11px;
  color: var(--color-text);
}
.back-btn,
.menu-btn {
  font-size: 12px;
  color: var(--color-text-light);
  cursor: pointer;
}

.phone-car-detail {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-car-img {
  aspect-ratio: 1.6 / 1;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}
.phone-car-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-car-badge {
  align-self: flex-start;
  background: #fee2e2;
  color: #ef4444;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}
.phone-car-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-text);
}
.phone-car-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.phone-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.phone-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-spec-item span {
  font-size: 8px;
  color: var(--color-text-light);
}
.phone-spec-item strong {
  font-size: 9px;
  color: var(--color-text);
}
.phone-btn {
  display: block;
  background: var(--color-primary);
  color: #ffffff;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 10px;
  margin-top: 6px;
}

/* ===== 섹션 공통 (Toss 큰 타이포/여백) ===== */
.section {
  padding: 130px 0;
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.section-eyebrow1 {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 60px;
}

/* ===== 2. 문제제기 ===== */
.problem {
  background: var(--color-bg-gray);
  text-align: center;
}
.comparison-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  width: 100%;
}
.comparison-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
  position: relative;
  text-align: left;
}
.comparison-card.card-traditional {
  background-color: #041627;
  color: #ffffff;
  transform: rotate(-2deg);
  border: 1px solid rgba(196, 198, 205, 0.2);
}
.comparison-card.card-traditional:hover {
  transform: rotate(0deg);
}
.comparison-card.card-autosite {
  background-color: #ffffff;
  color: #191c1d;
  transform: rotate(2deg);
  border: 2px solid #0058bc;
  box-shadow: 0 25px 50px -12px rgba(0, 88, 188, 0.15);
}
.comparison-card.card-autosite:hover {
  transform: rotate(0deg);
}
.comparison-card .card-badge {
  position: absolute;
  top: -16px;
  right: 32px;
  background-color: #0058bc;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
}
.comparison-card .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}
.comparison-card.card-traditional .card-title {
  color: rgba(255, 255, 255, 0.6);
}
.comparison-card.card-autosite .card-title {
  color: #0058bc;
}
.comparison-card .card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comparison-card .card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.comparison-card .card-item .material-symbols-outlined {
  font-size: 24px;
  flex-shrink: 0;
}
.comparison-card.card-traditional .card-item .material-symbols-outlined {
  color: #ba1a1a;
}
.comparison-card.card-autosite .card-item .material-symbols-outlined {
  color: #0058bc;
}
.comparison-card .card-item .item-text {
  font-size: 18px;
  line-height: 1.5;
}
.comparison-card.card-autosite .card-item .item-text.highlight {
  font-weight: 700;
  color: #0058bc;
}

/* ===== 3. 주요 기능 개편 (캐러셀) ===== */
.features {
  background: var(
    --color-bg-gray
  ); /* 섹션 교차 리듬: 문제제기(흰) 다음 회색 — 흰 카드가 떠 보이게 */
}

/* 기존 기능 그리드 스타일 (주석 처리) */
/*
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.feature-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}
*/

/* 신규 피킹 캐러셀 슬라이더 */
.features-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
}
.carousel-viewport {
  width: 100%;
  overflow: visible;
}
.carousel-track {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  width: 100vw;
  max-width: 1080px; /* 헤더 유효 너비(1120px - 양옆 패딩 40px)인 1080px에 맞춰 조정 */
  /*width: 860px;*/ /* PC default slide width */
  height: 440px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.92);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s,
    box-shadow 0.6s;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

/* 브랜드 톤 그라데이션 슬라이드 (사진 대신) */
.slide-tone {
  background: #16233f;
}
.slide-tone.grad-1 {
  background: linear-gradient(135deg, #1b3a6b 0%, #2f6ff0 100%);
}
.slide-tone.grad-2 {
  background: linear-gradient(135deg, #123a5e 0%, #2b7de9 55%, #1aa5b8 100%);
}
.slide-tone.grad-3 {
  background: linear-gradient(135deg, #16233f 0%, #2c4a8c 60%, #3182f6 100%);
}
.slide-tone.grad-4 {
  background: linear-gradient(135deg, #123a5e 0%, #2b7de9 55%, #40b8e6 100%);
}
/* 은은한 하이라이트 오버레이 (질감) */
.slide-tone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0) 45%
    );
  z-index: 1;
  pointer-events: none;
}
/* 우측 대형 워터마크 아이콘 */
.slide-visual {
  position: absolute;
  right: 24px;
  bottom: -28px;
  font-size: 300px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.13);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  cursor: default;
  box-shadow: 0 24px 60px rgba(47, 93, 159, 0.28);
}

.slide-content {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
  pointer-events: none;
}
.carousel-slide.active .slide-content {
  pointer-events: auto;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-size: 30px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}
.slide-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.slide-desc {
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 500;
}
.slide-btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.slide-btn:hover {
  background: #191f28;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 컨트롤러 스타일 */
.controls-container {
  max-width: var(--container);
  margin: 0 auto;
}
.carousel-controls {
  display: flex;
  justify-content: flex-end; /* Align to the right */
  align-items: center;
  gap: 28px; /* Space between dots and arrows */
  margin-top: 36px;
  padding: 0 20px;
}
.carousel-dots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px; /* spacing: o - o - o - o */
}
.carousel-dot-line {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  background: var(--color-border);
  transform: translateY(-50%);
  z-index: 1;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg-gray);
  border: 2px solid var(--color-border);
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(47, 93, 159, 0.4);
  transform: scale(1.15);
}
.carousel-arrows {
  display: flex;
  gap: 12px;
}
.carousel-arrow {
  background: #ffffff;
  border: 1px solid var(--color-border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.carousel-arrow svg {
  transition: stroke 0.2s;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(47, 93, 159, 0.3);
}
.carousel-arrow:hover svg {
  stroke: #ffffff;
}
.carousel-arrow:active {
  transform: scale(0.95);
}

/* ===== 4. 요금제 ===== */
.pricing {
  background: var(--color-bg-gray);
}
.attached-pricing-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.left-plan-card {
  flex: 1;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  text-align: center;
  z-index: 2;
}
.card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}
.plan-name {
  font-size: 14px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}
.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
}
.vat-info {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 24px;
}
.divider {
  height: 1px;
  background-color: #f1f5f9;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 14px;
}
.feature-item:last-child {
  margin-bottom: 0;
}
.icon-box {
  width: 22px;
  height: 22px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}
.icon-box svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.45);
}
.cta-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.guarantee-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
}
.right-promise-panel {
  flex: 1;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-left: none;
  border-radius: 0 28px 28px 0;
  padding: 40px 36px;
  margin-left: -1px;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.promise-header svg {
  width: 22px;
  height: 22px;
  color: #2563eb;
  stroke-width: 2.2;
}
.promise-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.5;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  word-break: keep-all;
  gap: 20px;
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
}
.promise-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.promise-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.promise-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.promise-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ===== 5. FAQ ===== */
.faq {
  background: var(
    --color-bg-gray
  ); /* 섹션 교차 리듬: 요금제(흰) 다음 회색 → 다크 CTA로 연결 */
}
.faq-accordion {
  /* max-width: 760px; */
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
  font-family: inherit;
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-q-text {
  flex: 1;
  padding-right: 20px;
}
.faq-toggle-icon {
  font-size: 26px;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.25s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-content {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== 6. CTA ===== */
.cta {
  background: var(--color-primary);
  color: #fff;
  text-align: left;
  padding: 130px 0;
  overflow: visible;
}
.cta-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 19px;
  opacity: 0.92;
  margin-bottom: 40px;
  font-weight: 500;
}
.cta .btn-primary {
  background: #fff;
  color: var(--color-primary);
}
.cta .btn-primary:hover {
  background: #f0f6ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* CTA 비주얼 (우측 어드민 + 폰 알림 목업) */
.cta-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  perspective: 1000px;
  padding-right: 20px;
}

/* 관리자 대시보드 PC 목업 (글래스모피즘) */
.cta-mockup-window {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg) translateZ(0);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
  z-index: 1;
}

.cta-mockup-window:hover {
  transform: rotateY(-3deg) rotateX(2deg) translateY(-8px) translateZ(10px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.25),
    0 6px 24px rgba(0, 0, 0, 0.08);
}

.cta-window-header {
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  position: relative;
}
.cta-window-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cta-window-header .dot.red {
  background: rgba(255, 95, 86, 0.85);
}
.cta-window-header .dot.yellow {
  background: rgba(255, 189, 46, 0.85);
}
.cta-window-header .dot.green {
  background: rgba(39, 201, 63, 0.85);
}
.cta-window-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: monospace;
}

.cta-window-content {
  flex: 1;
  display: flex;
  overflow: hidden;
  background: rgba(25, 31, 40, 0.55);
  font-size: 11px;
  color: #ffffff;
}

.cta-mock-sidebar {
  width: 110px;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-sidebar-logo {
  font-weight: 800;
  font-size: 12px;
  color: #ffffff;
}
.cta-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-sidebar-nav .nav-item {
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}
.cta-sidebar-nav .nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
}

.cta-mock-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-mock-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}
.cta-header-title {
  font-weight: 800;
  font-size: 13px;
}
.cta-header-profile {
  color: rgba(255, 255, 255, 0.7);
}

.cta-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cta-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}
.stat-val {
  font-size: 13px;
  font-weight: 800;
}
.stat-val.text-blue {
  color: #60a5fa;
}

.cta-mock-chart-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chart-title {
  font-weight: 700;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-mock-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}
.chart-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background 0.3s;
}
.chart-bar.active {
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}
.chart-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* 관리자 모바일 목업 */
.cta-mockup-phone {
  position: absolute;
  right: -10px;
  bottom: -30px;
  width: 190px;
  aspect-ratio: 9 / 18.5;
  background: #000000;
  border: 7px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: rotateY(12deg) rotateX(4deg) translateZ(20px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.cta-mockup-phone:hover {
  transform: rotateY(4deg) rotateX(1deg) translateY(-12px) translateZ(40px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.cta-phone-screen {
  flex: 1;
  background: #111827;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 9px;
  color: #ffffff;
}
.cta-phone-status-bar {
  height: 22px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-phone-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-phone-notification {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.notif-app {
  font-weight: 700;
}
.notif-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.notif-title {
  font-weight: 800;
  font-size: 9px;
  color: #ffffff;
}
.notif-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.cta-phone-dashboard-preview {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-dash-title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
}
.phone-dash-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-dash-item .status {
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
}
.phone-dash-item .status.confirm {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
.phone-dash-item .status.delay {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
  .hero {
    padding: 88px 0 76px;
    overflow: hidden;
  }
  .hero::before {
    display: none; /* 모바일: 중앙 정렬 텍스트와 겹치는 차선 숨김 */
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    min-width: 0;
  }
  /* 번호판이 grid 컬럼을 넘겨 잘리지 않도록 모바일 축소 */
  .hero-plate {
    max-width: 100%;
  }
  .plate-num {
    font-size: 20px;
    min-width: 0;
    padding: 6px 14px 3px;
  }
  .plate-num small {
    display: none; /* 모바일: 폭 확보 위해 도메인 숨김 (번호판=CAR·MY·SHOP) */
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
    padding-right: 0;
    margin-top: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .mockup-window {
    transform: none !important;
  }
  .mockup-phone {
    right: -10px;
    bottom: -30px;
    width: 170px;
    transform: none !important;
  }
  .section {
    padding: 84px 0;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .comparison-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 16px;
  }
  .comparison-card {
    max-width: 100%;
    transform: none !important;
  }
  .comparison-card:hover {
    transform: translateY(-8px) !important;
  }
  /* 기존 기능 그리드 모바일 스타일 (주석 처리) */
  /*
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 32px 28px;
  }
  */

  /* 신규 캐러셀 모바일 스타일 */
  .features-carousel {
    padding: 10px 0 30px;
  }
  .carousel-slide {
    width: 320px;
    height: 380px;
    border-radius: 20px;
  }
  .slide-content {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 270px;
  }
  .slide-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .slide-desc {
    font-size: 13px;
    margin-bottom: 22px;
    line-height: 1.5;
  }
  .slide-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
  }
  .carousel-controls {
    margin-top: 24px;
    padding: 0 16px;
    gap: 18px;
  }
  .carousel-dots {
    gap: 12px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .attached-pricing-box {
    flex-direction: column;
    align-items: center;
  }
  .left-plan-card {
    width: 100%;
    padding: 36px 28px;
  }
  .right-promise-panel {
    width: 100%;
    margin-left: 0;
    margin-top: -1px;
    border-left: 1px solid #e2e8f0;
    border-top: none;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    border-top-right-radius: 0;
    padding: 36px 28px;
  }
  .cta {
    padding: 88px 0;
    overflow: hidden;
  }
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-content {
    align-items: center;
  }
  .cta-title {
    font-size: 30px;
  }
  .cta-visual {
    justify-content: center;
    padding-right: 0;
    margin-top: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-mockup-window {
    transform: none !important;
  }
  .cta-mockup-phone {
    right: -10px;
    bottom: -30px;
    width: 160px;
    transform: none !important;
  }
}

/* ============================================================
   Features — 3카드 애니메이션 그리드 (fx-*)
   재정의 톤: 쉬움 · 저비용 · 내 자산 / 브랜드 블루 계열
   ============================================================ */
.fx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.fx-card {
  min-width: 0;
  text-align: center;
  /* 회색 섹션 배경 위에서 카드 경계가 읽히도록 흰 카드 + 테두리 */
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 20px 20px 32px;
  box-shadow: 0 2px 10px rgba(25, 31, 40, 0.04);
}
.fx-stage {
  position: relative;
  min-width: 0;
  height: 260px;
  border-radius: 16px; /* 카드(24px) 안쪽이므로 한 단계 작게 */
  background: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
}
.fx-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 8px;
}
.fx-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  word-break: keep-all;
}

/* --- 카드 1: 떠다니는 블록 --- */
.fx-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fx-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.fx-pill--light {
  background: #ffffff;
  color: #191f28;
  box-shadow: 0 8px 22px rgba(25, 31, 40, 0.1);
}
.fx-pill--dark {
  background: #191f28;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(25, 31, 40, 0.3);
}
.fx-pill .material-symbols-outlined {
  font-size: 22px;
}
.fx-pill-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}
.fx-pill-ico.ico-green {
  background: #22c55e;
}
@keyframes fxFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fx-float-a {
  animation: fxFloat 3.4s ease-in-out infinite;
}
.fx-float-b {
  animation: fxFloat 3.4s ease-in-out infinite;
  animation-delay: -1.7s;
}

/* --- 카드 2: 숫자 롤링 → 0원 --- */
.fx-roll {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fx-roll-window {
  height: 150px;
  overflow: hidden;
  display: inline-block;
}
.fx-roll-strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}
.fx-roll-digit {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "SUIT", sans-serif;
  font-size: 150px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  padding-right: 0.05em;
  color: #191f28;
}
.fx-won {
  align-self: flex-end;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #191f28;
}
@keyframes fxRoll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1350px); /* 마지막 숫자 0(10번째)에 정지 */
  }
}
.fx-card.is-visible .fx-roll-strip {
  animation: fxRoll 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- 카드 3: 매물 카드 가로 티커 --- */
.fx-ticker {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.fx-ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 0;
  animation: fxScroll 20s linear infinite;
}
.fx-listing {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 6px 18px rgba(25, 31, 40, 0.07);
  white-space: nowrap;
}
.fx-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  flex-shrink: 0;
}
.fx-thumb.grad-a {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}
.fx-thumb.grad-b {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.fx-thumb.grad-c {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.fx-listing-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.fx-listing-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #191f28;
}
.fx-listing-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}
@keyframes fxScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --- 반응형 --- */
@media (max-width: 768px) {
  .fx-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .fx-stage {
    height: 220px;
  }
  .fx-roll-window {
    height: 120px;
  }
  .fx-roll-digit {
    height: 120px;
    font-size: 120px;
  }
  .fx-won {
    font-size: 32px;
    margin-bottom: 20px;
  }
  @keyframes fxRoll {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-1080px); /* 120px * 9 */
    }
  }
}

/* --- 모션 최소화 존중 --- */
@media (prefers-reduced-motion: reduce) {
  .fx-float-a,
  .fx-float-b,
  .fx-ticker-track {
    animation: none !important;
  }
  .fx-roll-strip,
  .fx-card.is-visible .fx-roll-strip {
    animation: none !important;
    transform: translateY(-1350px) !important;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .fx-roll-strip,
  .fx-card.is-visible .fx-roll-strip {
    transform: translateY(-1080px) !important;
  }
}
