/* ========================
   PC V2 - FHD (1920x1080)
   ======================== */
:root {
  --primary: #009178;
  --primary-dark: #007a64;
  --orange: #ff5e00;
  --text-primary: #111;
  --text-secondary: #555;
  --text-muted: #999;
  --bg-gray: #f7f8fa;
  --border: #e8e8e8;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-variant-emoji: text;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.6;
}

.pc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ========================
   Header
   ======================== */
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 76px;
}

.pc-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.pc-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pc-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pc-logo {
  height: 32px;
}

.pc-header-x {
  color: rgba(0,0,0,0.3);
  font-size: 20px;
  margin: 0 15px;
}

.pc-logo-autoone {
  height: 40px;
  object-fit: contain;
}

.pc-logo-x {
  color: rgba(0,0,0,0.3);
  font-size: 18px;
  margin: 0 10px;
  font-weight: 300;
}

.pc-logo-hana {
  height: 32px;
  object-fit: contain;
}

.pc-gnb {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pc-gnb-item {
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.pc-gnb-item:hover {
  background: rgba(0,145,120,0.06);
  color: var(--primary);
}

.pc-gnb-item.active {
  color: var(--primary);
  background: rgba(0,145,120,0.08);
}

.pc-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pc-header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pc-consult-btn {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.pc-consult-btn:hover {
  background: var(--primary-dark);
}

/* ========================
   Banner
   ======================== */
.pc-banner {
  margin-top: 92px;
  position: relative;
  height: 480px;
  overflow: hidden;
}

.pc-banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.pc-banner-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-banner-content {
  text-align: center;
  color: #fff;
}

.pc-banner-sub {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pc-banner-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}

.pc-banner-desc {
  font-size: 18px;
  opacity: 0.7;
}

.pc-banner-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.3);
  padding: 6px 16px;
  border-radius: 20px;
}

.pc-banner-prev,
.pc-banner-next {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.pc-banner-counter {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.pc-banner-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.pc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.pc-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* ========================
   Sections
   ======================== */
.pc-section {
  padding: 20px 0;
}

.pc-section-gray {
  background: var(--bg-gray);
}

/* 상품안내 */
.pc-product-info {
  margin-top: 20px;
  margin-bottom: 40px;
}

.pc-product-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}

.pc-product-info-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.pc-product-info-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f6f8fa;
  border-radius: 12px;
  padding: 20px 24px;
}

.pc-product-info-icon {
  flex-shrink: 0;
}

.pc-product-info-label {
  font-size: 15px;
  color: #888;
  flex-shrink: 0;
}

.pc-product-info-value {
  font-size: 16px;
  color: var(--text);
}

.pc-product-steps {
  display: flex;
  gap: 16px;
}

.pc-product-step {
  flex: 1;
  background: #f6f8fa;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  position: relative;
}

.pc-product-step-badge {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.pc-product-step-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.pc-product-step-icon {
  align-self: flex-end;
  margin-top: 12px;
  opacity: 0.7;
}

.pc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.pc-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.pc-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.pc-section-desc {
  font-size: 15px;
  color: var(--text-muted);
}

.pc-section-condition {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ========================
   Car Grid
   ======================== */
.pc-car-filters {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pc-search-wrap {
  position: relative;
}

.pc-search-wrap .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.pc-search-input {
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  width: 220px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.pc-search-input:focus {
  border-color: var(--primary);
}

.pc-brand-chips,
.pc-chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pc-chip {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pc-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pc-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pc-car-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pc-car-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pc-car-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pc-car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pc-car-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-car-thumb img {
  max-width: 90%;
  max-height: 130px;
  object-fit: contain;
}

.pc-car-brand-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 4px;
}

.pc-car-rating-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #ffd700;
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 10px;
}

.pc-car-wish-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #ff6b81;
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  border-radius: 10px;
}

.pc-car-body {
  padding: 14px 16px;
}

.pc-car-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pc-car-original-row {
  display: flex;
  align-items: center;
}
.pc-car-review-count {
  font-size: 11px;
  margin-left: auto;
}
.pc-car-review-label {
  color: #999;
}
.pc-car-review-num {
  color: #009178;
  font-weight: 600;
}

.pc-car-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}

.pc-car-price-label {
  font-size: 12px;
  color: var(--text-muted);
}

.pc-car-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.pc-car-price-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.pc-car-original {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================
   Review Car Search
   ======================== */
.pc-car-search-bar {
  margin-bottom: 28px;
}

.pc-search-wrap-lg {
  position: relative;
  max-width: 480px;
}

.pc-search-wrap-lg .pc-search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  font-size: 15px;
  border-radius: 10px;
}

.pc-search-wrap-lg .search-icon {
  left: 14px;
}

.pc-search-clear-inline {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  z-index: 2;
}
.pc-search-clear-inline:hover {
  color: #333;
}

.pc-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pc-search-dropdown.open {
  display: block;
}

.pc-search-dropdown-item {
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}

.pc-search-dropdown-item:hover {
  background: rgba(0,145,120,0.06);
}

.pc-search-dropdown-item .sdi-brand {
  font-size: 12px;
  color: var(--text-muted);
}

.pc-search-dropdown-item .sdi-name {
  font-weight: 600;
}

.pc-search-dropdown-item .sdi-price {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.pc-search-result-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 18px;
  background: rgba(0,145,120,0.06);
  border: 1px solid rgba(0,145,120,0.15);
  border-radius: 10px;
}

.pc-search-car-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.pc-search-car-stats {
  font-size: 13px;
  color: var(--text-secondary);
}

.pc-search-clear {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.pc-search-clear:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

/* ========================
   Reviews
   ======================== */
.pc-review-stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-stat {
  font-size: 15px;
  color: var(--text-secondary);
}

.pc-stat strong {
  font-size: 18px;
  color: var(--text-primary);
}

.pc-stat-star {
  color: var(--orange);
  font-size: 16px;
}

.pc-stat-divider {
  width: 1px;
  height: 16px;
  background: #ddd;
}

.pc-review-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.pc-review-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.pc-sidebar-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.pc-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pc-sidebar-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pc-sidebar-kw-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.pc-sidebar-kw-rank {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-sidebar-kw-count {
  font-size: 11px;
  color: var(--text-muted);
}

.pc-keyword-list {
  list-style: none;
}

.pc-keyword-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin-bottom: 4px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
}
.pc-ranking-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #009178;
  border-radius: 8px;
  z-index: 0;
  transition: width 0.4s ease;
  pointer-events: none;
}
.pc-ranking-bar-item > *:not(.pc-ranking-bar-fill) {
  position: relative;
  z-index: 1;
}

.pc-keyword-list li:hover {
  background: rgba(0,145,120,0.04);
}

.pc-keyword-list li.active {
  font-weight: 700;
  color: var(--primary);
}

.pc-keyword-rank {
  width: 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.pc-keyword-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================
   PC Photo Hero
   ======================== */
.pc-review-hero-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.pc-review-hero-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.pc-review-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
}

.pc-review-hero-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pc-review-hero-price strong {
  font-size: 28px;
  font-weight: 800;
  color: #ff5e00;
}
.pc-review-hero-price-base {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.pc-photo-hero {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pc-photo-hero-main {
  grid-row: 1 / 3;
  grid-column: 1 / 3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 16px 0 0 16px;
}
.pc-photo-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pc-photo-hero-main:hover img {
  transform: scale(1.03);
}
.pc-photo-hero-sub {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.pc-photo-hero-sub:nth-child(2) {
  border-radius: 0;
}
.pc-photo-hero-sub:nth-child(3) {
  border-radius: 0 16px 0 0;
}
.pc-photo-hero-sub:nth-child(4) {
  border-radius: 0;
}
.pc-photo-hero-sub:last-child {
  border-radius: 0 0 16px 0;
}
.pc-photo-hero-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pc-photo-hero-sub:hover img {
  transform: scale(1.03);
}
.pc-photo-hero-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  gap: 4px;
  cursor: pointer;
}
.pc-photo-hero-more span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}

/* Filmstrip (차량 선택 시) */
.pc-photo-filmstrip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pc-filmstrip-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.pc-filmstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pc-filmstrip-item:hover img {
  transform: scale(1.05);
}

.pc-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}

.pc-photo-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.pc-photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.pc-photo-grid-item:hover img {
  transform: scale(1.05);
}

.pc-photo-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}

/* Car Gallery */
.pc-car-gallery {
  margin-bottom: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  gap: 12px;
  height: 280px;
}
.pc-car-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 100px;
}
.pc-gallery-thumb {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #f5f5f5;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pc-gallery-thumb.active {
  border-color: #009178;
}
.pc-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.pc-gallery-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 13px;
  color: #555;
  font-weight: 600;
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 6px;
}
.pc-car-gallery-main {
  flex: 1;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pc-car-gallery-main img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Review toolbar */
.pc-review-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pc-sort-btns {
  display: flex;
  gap: 4px;
}

.pc-sort {
  padding: 6px 16px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.pc-sort.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pc-review-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* Review card */
.pc-review-card {
  padding: 24px;
  border-bottom: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pc-review-card:hover {
  transform: scale(1.015);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

.pc-review-card:first-child {
  padding-top: 24px;
}

.pc-rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pc-rc-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.pc-rc-name {
  font-size: 14px;
  font-weight: 700;
}

.pc-rc-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.pc-rc-rating {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
}

.pc-rc-stars {
  display: inline-flex;
  gap: 1px;
  vertical-align: middle;
  margin-right: 4px;
}

.pc-star {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 1;
  color: #ddd;
}

.pc-star::before {
  content: '★';
}

.pc-star.full {
  color: var(--orange);
}

.pc-star.half {
  color: #ddd;
  overflow: hidden;
}

.pc-star.half::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--orange);
}

.pc-rc-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pc-rc-tag {
  font-size: 12px;
  color: var(--primary);
  background: rgba(0,145,120,0.08);
  padding: 3px 10px;
  border-radius: 12px;
}

.pc-rc-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pc-rc-more {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.pc-rc-photos-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.pc-rc-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
}
.pc-rc-detail-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
  align-self: center;
}
.pc-rc-detail-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pc-rc-photo {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.pc-rc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.pc-rc-photo:hover img {
  transform: scale(1.05);
}

.pc-rc-like {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pc-rc-like:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pc-rc-like.liked {
  border-color: #ff4d6a;
  background: rgba(255,77,106,0.06);
  color: #ff4d6a;
}

.pc-rc-like.liked .pc-like-heart {
  color: #ff4d6a;
}

.pc-load-more {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.pc-load-more:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========================
   Quote
   ======================== */
.pc-quote-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.pc-quote-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pc-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.pc-step-label {
  font-size: 16px;
  font-weight: 700;
}

.pc-quote-field {
  margin-bottom: 18px;
}

.pc-quote-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pc-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  outline: none;
}

.pc-select:focus {
  border-color: var(--primary);
}

.pc-quote-result {
  position: sticky;
  top: 96px;
}

.pc-result-card {
  background: linear-gradient(145deg, #f0faf7, #e4f5ef);
  border: 1px solid #c8ece4;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 16px;
}

.pc-result-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pc-result-badge {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.pc-result-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.pc-result-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
}

.pc-result-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pc-result-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.pc-result-detail span {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(0,145,120,0.08);
  border-radius: 4px;
  margin: 2px;
}

.pc-result-notice {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
}

.pc-result-cta {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.pc-result-cta:hover {
  background: var(--primary-dark);
}

/* ========================
   Info
   ======================== */
.pc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pc-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.pc-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,145,120,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pc-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pc-info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pc-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pc-step-item {
  flex: 1;
  text-align: center;
}

.pc-step-item span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pc-step-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.pc-step-item p {
  font-size: 11px;
  color: var(--text-muted);
}

.pc-step-arrow {
  color: #ccc;
  font-size: 18px;
  margin-top: 6px;
}

.pc-faq {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.pc-faq summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
}

.pc-faq p {
  margin-top: 8px;
  font-size: 13px;
}

/* ========================
   CTA Section
   ======================== */
.pc-cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #009178, #00b894);
  text-align: center;
  color: #fff;
}

.pc-cta-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pc-cta-section p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}

.pc-cta-btn {
  padding: 16px 48px;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========================
   Floating Pill CTA
   ======================== */
.pc-floating-pill {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(110deg, #ff5e00 0%, #ff7b2e 35%, #ffa552 50%, #ff7b2e 65%, #ff5e00 100%);
  background-size: 220% 100%;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 94, 0, 0.32), 0 0 0 0 rgba(255, 94, 0, 0.5);
  overflow: hidden;
  isolation: isolate;
  animation: pcPillGradient 3.5s linear infinite, pcPillPulse 2.4s ease-in-out infinite;
  transition: transform 0.15s ease;
}
.pc-floating-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: pcPillShine 3.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.pc-floating-pill > * {
  position: relative;
  z-index: 2;
}
.pc-floating-pill:hover {
  transform: translateX(-50%) translateY(-3px);
}
.pc-floating-pill:active {
  transform: translateX(-50%) scale(0.98);
}
.pc-floating-pill-icon {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

@keyframes pcPillGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}
@keyframes pcPillPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(255, 94, 0, 0.32), 0 0 0 0 rgba(255, 94, 0, 0.45);
  }
  50% {
    box-shadow: 0 6px 22px rgba(255, 94, 0, 0.42), 0 0 0 8px rgba(255, 94, 0, 0);
  }
}
@keyframes pcPillShine {
  0% { left: -60%; }
  60%, 100% { left: 120%; }
}

/* ========================
   Floating CTA
   ======================== */
.pc-floating-cta {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
}

.pc-floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 56px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(0,145,120,0.35), 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pc-floating-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,145,120,0.4), 0 4px 12px rgba(0,0,0,0.12);
}

/* ========================
   Notice Section
   ======================== */
.pc-notice-section {
  padding: 32px 60px;
  border-bottom: 1px solid #444;
}

.pc-notice-title {
  font-size: 15px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 12px;
}

.pc-notice-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.pc-notice-list li {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
}

.pc-notice-compliance {
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}

.pc-notice-delegation p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 8px;
}

.pc-notice-delegation ul {
  list-style: disc;
  padding-left: 20px;
}

.pc-notice-delegation ul li {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}

/* ========================
   Footer
   ======================== */
.pc-footer {
  background: #2a2a2a;
  color: #aaa;
}

body.has-floating-cta .pc-footer {
  padding-bottom: 40px;
}

.pc-footer-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 32px;
}

.pc-footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pc-footer-company-block .pc-footer-logo-hana {
  height: 28px;
  margin-bottom: 12px;
}

.pc-footer-logo {
  height: 52px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.pc-footer-company {
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 8px;
}

.pc-footer-info {
  font-size: 12px;
  line-height: 1.8;
}

.pc-footer-right {
  display: flex;
  gap: 48px;
}

.pc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.pc-footer-contact strong {
  font-size: 20px;
  color: #fff;
}

.pc-footer-bottom {
  border-top: 1px solid #444;
}

.pc-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 12px;
}

.pc-footer-links {
  display: flex;
  gap: 20px;
}

.pc-footer-links a {
  color: #aaa;
  text-decoration: none;
}

.pc-footer-links a:hover {
  color: #fff;
}

/* ========================
   Modal
   ======================== */
.pc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}

.pc-modal-overlay.open {
  display: flex;
}

.pc-modal {
  background: #fff;
  border-radius: 16px;
  width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px 0;
}

.pc-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
}

.pc-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-modal-body {
  padding: 24px 28px;
}

.pc-modal-field {
  margin-bottom: 16px;
}

.pc-modal-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pc-modal-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.pc-modal-field input:focus {
  border-color: var(--primary);
}

.pc-agree {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #666;
  cursor: pointer;
}

.pc-agree input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.pc-agree a {
  color: var(--primary);
}

.pc-modal-footer {
  padding: 0 28px 24px;
}

.pc-modal-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.pc-modal-submit:hover {
  background: var(--primary-dark);
}

/* ========================
   Photo Viewer
   ======================== */
.pc-viewer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.pc-viewer-overlay.open {
  display: flex;
}

.pc-viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.pc-viewer-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-viewer-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  position: relative;
}

.pc-viewer-img-wrap {
  position: relative;
  max-width: 900px;
  max-height: calc(100vh - 200px);
}

.pc-viewer-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  display: block;
}

.pc-viewer-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px 20px 16px;
  color: #fff;
}

.pc-viewer-caption .vc-car {
  font-size: 16px;
  font-weight: 700;
}

.pc-viewer-caption .vc-trim {
  font-size: 12px;
  opacity: 0.6;
}

.pc-viewer-caption .vc-meta {
  font-size: 12px;
  opacity: 0.6;
  margin: 4px 0;
}

.pc-viewer-caption .vc-body {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-viewer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.pc-viewer-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.pc-viewer-prev { left: 32px; }
.pc-viewer-next { right: 32px; }

.pc-viewer-thumbs {
  display: flex;
  gap: 6px;
  padding: 16px 32px;
  justify-content: center;
  overflow-x: auto;
}

.pc-viewer-thumb {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.4;
  transition: all 0.2s;
}

.pc-viewer-thumb.active {
  border-color: #fff;
  opacity: 1;
}

.pc-viewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================
   PC Home - Hero
   ======================== */
.pc-hero {
  margin-top: 92px;
  background: linear-gradient(135deg, #009178, #00b894);
  position: relative;
  overflow: hidden;
}

.pc-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.pc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.pc-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.pc-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.pc-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.pc-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.pc-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.pc-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.pc-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-hero-visual {
  position: relative;
  width: 580px;
  height: 340px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-hero-glow {
  position: absolute;
  width: 520px;
  height: 240px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 40%, rgba(255,255,255,0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

.pc-hero-star {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 80px;
  top: -30px;
  transform: rotate(-10deg);
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  z-index: 0;
  pointer-events: none;
}

.pc-hero-car {
  position: absolute;
  left: -100px;
  bottom: -70px;
  width: 520px;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
  z-index: 1;
}

/* ========================
   PC Home - Trust Bar
   ======================== */
.pc-trust-bar {
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.pc-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 0;
}

.pc-trust-item {
  flex: 1;
  text-align: center;
}

.pc-trust-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
}

.pc-trust-unit {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.pc-trust-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pc-trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========================
   PC Home - Best Reviews
   ======================== */
.pc-best-review-list {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-left: -60px;
  margin-right: -60px;
  padding: 0 60px 8px;
  scroll-padding-left: 60px;
}

.pc-best-review-list::-webkit-scrollbar { display: none; }

.pc-best-review-list::after {
  content: '';
  min-width: 36px;
  flex-shrink: 0;
}

.pc-best-review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 520px;
  max-width: 520px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}

.pc-best-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pc-best-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pc-best-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.pc-best-review-info {
  flex: 1;
  min-width: 0;
}

.pc-best-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.pc-best-review-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.pc-best-review-rating {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.pc-best-review-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.pc-best-review-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pc-best-review-photos img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.pc-best-review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-best-review-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pc-best-review-tags span {
  font-size: 12px;
  color: var(--primary);
  background: rgba(0,145,120,0.08);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.pc-best-review-likes {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.pc-best-review-heart {
  color: var(--orange);
}

.pc-best-nav {
  display: flex;
  gap: 8px;
}

.pc-best-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.pc-best-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pc-best-review-more {
  min-width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.pc-best-review-more-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pc-best-review-more-circle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

.pc-best-review-more-circle:hover .pc-best-review-more-arrow,
.pc-best-review-more-circle:hover .pc-best-review-more-text {
  color: var(--primary);
}

.pc-best-review-more-arrow {
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1;
}

.pc-best-review-more-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========================
   PC Home - Keywords
   ======================== */
.pc-home-keywords-wrap {
  position: relative;
}

.pc-home-keywords-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to left, var(--bg-gray), transparent);
  pointer-events: none;
  z-index: 1;
}

.pc-home-keywords {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.pc-home-keywords::-webkit-scrollbar { display: none; }

.pc-home-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 200px;
  width: 200px;
}

.pc-home-keyword-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.pc-home-keyword-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================
   PC Home - Car Ranking
   ======================== */
.pc-car-ranking-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}
.pc-car-ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.15s;
}
.pc-car-ranking-item:hover {
  background: rgba(0,145,120,0.06);
}
.pc-car-ranking-rank {
  width: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  flex-shrink: 0;
}
.pc-car-ranking-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  min-width: 120px;
  flex-shrink: 0;
}
.pc-car-ranking-bar-wrap {
  flex: 1;
  height: 8px;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
}
.pc-car-ranking-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #00d4aa);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.pc-car-ranking-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  min-width: 40px;
  text-align: right;
  flex-shrink: 0;
}

/* ========================
   PC Home - Popular Cars
   ======================== */
.pc-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.pc-popular-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.pc-popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pc-popular-thumb {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.pc-popular-thumb img {
  max-width: 85%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.pc-popular-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,94,0,0.08);
  padding: 4px 12px;
  border-radius: 12px;
}

.pc-popular-body {
  padding: 16px 20px 20px;
}

.pc-popular-brand {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.pc-popular-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pc-popular-price {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pc-popular-price strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.pc-popular-photos {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
}
.pc-popular-photos img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}
.pc-popular-photos-more {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-popular-photos-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 6px;
}
.pc-popular-photos-more span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pc-popular-review {
  font-size: 13px;
  color: var(--text-muted);
}

.pc-popular-review span {
  color: var(--orange);
  font-weight: 600;
}

.pc-more-btn {
  display: inline-block;
  padding: 12px 36px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.pc-more-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========================
   PC Home - All Reviews Grid
   ======================== */
.pc-all-review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.pc-all-review-card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.pc-all-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pc-all-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pc-all-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.pc-all-review-info {
  flex: 1;
  min-width: 0;
}

.pc-all-review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.pc-all-review-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.pc-all-review-rating {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.pc-all-review-body-wrap {
  position: relative;
  margin-bottom: 12px;
}

.pc-all-review-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pc-all-review-more {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  cursor: pointer;
}

.pc-all-review-more:hover {
  color: var(--primary);
}

.pc-all-review-photos {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: auto;
}

.pc-all-review-photos img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.pc-all-review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-all-review-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pc-all-review-tags span {
  font-size: 11px;
  color: var(--primary);
  background: rgba(0,145,120,0.08);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
}

.pc-all-review-likes {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================
   PC Home - Quote CTA
   ======================== */
.pc-quote-cta {
  padding: 40px 0;
}

.pc-quote-cta-inner {
  background: linear-gradient(135deg, #1a2a3a 0%, #0d3b5e 100%);
  border-radius: 16px;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-quote-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.pc-quote-cta-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.pc-quote-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,145,120,0.3);
  flex-shrink: 0;
}

.pc-quote-cta-btn:hover {
  transform: translateY(-2px);
}

/* ========================
   PC Scroll Top
   ======================== */
/* ========================
   PC Privacy Modal
   ======================== */
.pc-privacy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.pc-privacy-overlay.open {
  display: flex;
}

.pc-privacy-modal {
  background: #fff;
  border-radius: 16px;
  width: 520px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.pc-privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.pc-privacy-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.pc-privacy-close:hover {
  color: var(--text-primary);
}

.pc-privacy-body {
  padding: 24px 28px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pc-privacy-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 6px;
}

.pc-privacy-body h4:first-of-type {
  margin-top: 14px;
}

.pc-privacy-body p {
  margin: 0 0 4px;
}

.pc-scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.2s;
  color: var(--text-muted);
}

.pc-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.pc-scroll-top:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ========================
   PC Phone Slider (서비스안내)
   ======================== */
.pc-info-card-wide {
  margin-bottom: 24px;
}

.pc-phone-slider-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 16px;
}

.pc-phone-slider-left {
  flex: 1;
  padding-top: 8px;
}

.pc-mockup-wrap {
  flex-shrink: 0;
}

.pc-mockup-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Desktop mockup */
.desktop-mockup {
  position: relative;
  width: 480px;
  height: 330px;
  background: linear-gradient(165deg, #f8f9fb 0%, #edf0f4 40%, #e2e6ec 100%);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.18),
    0 8px 20px -6px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.desktop-mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #f0f1f3, #e8eaed);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.desktop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.desktop-dot:first-child { background: #ff5f57; }
.desktop-dot:nth-child(2) { background: #ffbd2e; }
.desktop-dot:nth-child(3) { background: #28c840; }

.desktop-screen {
  position: relative;
  width: 100%;
  height: calc(100% - 30px);
  background: #fff;
  overflow: hidden;
}

.desktop-screen .phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.desktop-screen .phone-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.desktop-screen .phone-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.desktop-screen .ps-cars {
  background: #fff; height: 100%; display: flex; flex-direction: column; gap: 8px;
}
.desktop-screen .ps-cars-header {
  font-size: 15px; font-weight: 800; color: #1a1d23; margin-bottom: 4px;
}
.desktop-screen .ps-car-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: #f5f6f8; border-radius: 10px; font-size: 13px;
}
.desktop-screen .ps-car-row.selected {
  background: rgba(0, 145, 120, 0.08); border: 1.5px solid var(--primary);
}
.desktop-screen .ps-car-thumb {
  width: 44px; height: 32px; background: #d8dee6; border-radius: 6px; flex-shrink: 0;
}
.desktop-screen .ps-car-name { flex: 1; font-weight: 700; color: #1a1d23; }
.desktop-screen .ps-car-check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px;
}

.desktop-screen .ps-conditions {
  background: #fff; height: 100%; display: flex; flex-direction: column; gap: 14px;
}
.desktop-screen .ps-cond-label {
  font-size: 12px; color: #6b7280; font-weight: 600; margin-bottom: 6px;
}
.desktop-screen .ps-cond-pills { display: flex; gap: 8px; margin-bottom: 4px; }
.desktop-screen .ps-cond-pill {
  flex: 1; padding: 9px 0; background: #f1f3f5; border-radius: 8px;
  font-size: 12px; text-align: center; font-weight: 700; color: #6b7280;
}
.desktop-screen .ps-cond-pill.active { background: var(--primary); color: #fff; }

.desktop-screen .ps-result {
  background: #fff; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.desktop-screen .ps-result-label { font-size: 13px; color: #6b7280; font-weight: 600; }
.desktop-screen .ps-result-amount {
  font-size: 36px; font-weight: 900; color: var(--primary); letter-spacing: -0.04em;
}
.desktop-screen .ps-result-amount .unit { font-size: 18px; font-weight: 700; color: #1a1d23; margin-left: 2px; }
.desktop-screen .ps-result-sub { font-size: 12px; color: #6b7280; margin-top: 4px; }
.desktop-screen .ps-result-bars {
  display: flex; gap: 6px; margin-top: 16px; align-items: flex-end; height: 70px;
}
.desktop-screen .ps-result-bar {
  width: 24px; background: linear-gradient(180deg, #38d9b3, var(--primary)); border-radius: 4px 4px 0 0;
}

.desktop-screen .ps-counsel {
  background: #fff; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 60px 20px 20px; text-align: center;
}
.desktop-screen .ps-counsel-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #38d9b3, var(--primary));
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  box-shadow: 0 10px 24px rgba(0, 145, 120, 0.3);
}
.desktop-screen .ps-counsel-title { font-size: 16px; font-weight: 800; color: #1a1d23; }
.desktop-screen .ps-counsel-btn {
  width: 60%; padding: 12px; background: var(--primary); color: #fff;
  border-radius: 10px; font-size: 14px; font-weight: 800; text-align: center; margin-top: 8px;
}

.pc-phone-slider-text {
  flex: 1;
  transition: opacity 0.35s;
}

.pc-phone-slider-text.fading {
  opacity: 0;
}

.pc-phone-slide-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pc-phone-slide-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.pc-phone-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pc-phone-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all 0.25s;
  cursor: pointer;
}

.pc-phone-slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary);
}

/* Phone mockup (shared with mobile) */
.pc-info-card-wide .phone-mockup {
  position: relative;
  width: 200px;
  height: 410px;
  flex-shrink: 0;
  background: linear-gradient(165deg, #f8f9fb 0%, #edf0f4 40%, #e2e6ec 100%);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.2),
    0 8px 20px -6px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.06);
}

.pc-info-card-wide .phone-mockup::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 110px;
  width: 3px;
  height: 56px;
  background: linear-gradient(180deg, #d0d4da, #c0c5cc);
  border-radius: 2px 0 0 2px;
}

.pc-info-card-wide .phone-mockup::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 140px;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, #d0d4da, #c0c5cc);
  border-radius: 0 2px 2px 0;
}

.pc-info-card-wide .phone-mockup {
  border-radius: 32px;
  padding: 8px;
}

.pc-info-card-wide .phone-screen {
  border-radius: 24px;
}

.pc-info-card-wide .phone-mockup-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 16px;
  background: #1a1a1a;
  border-radius: 14px;
  z-index: 3;
}

.pc-info-card-wide .phone-mockup-notch::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a2a2a;
}

.pc-info-card-wide .phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.08);
}

.pc-info-card-wide .phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 34px 12px 12px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pc-info-card-wide .phone-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.pc-info-card-wide .phone-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.pc-info-card-wide .ps-cars {
  background: #fff; height: 100%; display: flex; flex-direction: column; gap: 6px;
}
.pc-info-card-wide .ps-cars-header {
  font-size: 10px; font-weight: 800; color: #1a1d23; margin-bottom: 2px;
}
.pc-info-card-wide .ps-car-row {
  display: flex; align-items: center; gap: 8px; padding: 7px 8px;
  background: #f5f6f8; border-radius: 8px; font-size: 9px;
}
.pc-info-card-wide .ps-car-row.selected {
  background: rgba(0, 145, 120, 0.08); border: 1px solid var(--primary);
}
.pc-info-card-wide .ps-car-thumb {
  width: 28px; height: 20px; background: #d8dee6; border-radius: 4px; flex-shrink: 0;
}
.pc-info-card-wide .ps-car-name {
  flex: 1; font-weight: 700; color: #1a1d23;
}
.pc-info-card-wide .ps-car-check {
  width: 13px; height: 13px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 8px;
}
.pc-info-card-wide .ps-conditions {
  background: #fff; height: 100%; display: flex; flex-direction: column; gap: 8px;
}
.pc-info-card-wide .ps-cond-label {
  font-size: 9px; color: #6b7280; font-weight: 600; margin-bottom: 2px;
}
.pc-info-card-wide .ps-cond-pills {
  display: flex; gap: 4px; margin-bottom: 4px;
}
.pc-info-card-wide .ps-cond-pill {
  flex: 1; padding: 5px 0; background: #f1f3f5; border-radius: 6px;
  font-size: 8px; text-align: center; font-weight: 700; color: #6b7280;
}
.pc-info-card-wide .ps-cond-pill.active {
  background: var(--primary); color: #fff;
}
.pc-info-card-wide .ps-result {
  background: #fff; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; text-align: center;
}
.pc-info-card-wide .ps-result-label {
  font-size: 9px; color: #6b7280; font-weight: 600;
}
.pc-info-card-wide .ps-result-amount {
  font-size: 20px; font-weight: 900; color: var(--primary); letter-spacing: -0.04em;
}
.pc-info-card-wide .ps-result-amount .unit {
  font-size: 10px; font-weight: 700; color: #1a1d23; margin-left: 2px;
}
.pc-info-card-wide .ps-result-sub {
  font-size: 8px; color: #6b7280; margin-top: 2px;
}
.pc-info-card-wide .ps-result-bars {
  display: flex; gap: 3px; margin-top: 10px; align-items: flex-end; height: 40px;
}
.pc-info-card-wide .ps-result-bar {
  width: 12px; background: linear-gradient(180deg, #38d9b3, var(--primary)); border-radius: 2px 2px 0 0;
}
.pc-info-card-wide .ps-counsel {
  background: #fff; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; padding: 50px 12px 20px; text-align: center;
}
.pc-info-card-wide .ps-counsel-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #38d9b3, var(--primary));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 6px 16px rgba(0, 145, 120, 0.3);
}
.pc-info-card-wide .ps-counsel-title {
  font-size: 10px; font-weight: 800; color: #1a1d23;
}
.pc-info-card-wide .ps-counsel-btn {
  width: 100%; padding: 8px; background: var(--primary); color: #fff;
  border-radius: 8px; font-size: 9px; font-weight: 800; text-align: center; margin-top: auto;
}
