/* =========================================
   reviews/index.html 페이지 전용 스타일
   고객후기 페이지 디자인
   ========================================= */

/* === 메인 콘텐츠 === */
:root {
  --accent: #FF4D00;
  --accent-bg: #FFF0EB;
  --black: #111111;
  --white: #FFFFFF;
  --gray-400: #CCCCCC;
  --gray-500: #AAAAAA;
  --gray-600: #888888;
  --star: #FFB400;
}
* { box-sizing: border-box; }
html, body {
  background: var(--black) !important;
  height: auto;
  min-height: 100%;
}
body {
  color: var(--white);
  font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
main { padding-top: 60px; }

/* Hero */
.reviews-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Rating summary */
.rating-summary {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 60px;
  display: flex;
  justify-content: center;
}
.rating-box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-num-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 32px;
  border-right: 1px solid #2a2a2a;
}
.rating-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rating-stars {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}
.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--star);
}
.rating-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
}
.rating-meta-item strong {
  color: var(--white);
  font-weight: 700;
}

/* Review list */
.reviews-list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 32px;
  transition: border-color 0.3s;
}
.review-item:hover {
  border-color: var(--accent);
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.review-user {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.review-user-meta {
  font-size: 12px;
  color: var(--gray-600);
}
.review-type-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--star);
}
.review-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.5;
}
.review-body {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.85;
  word-break: keep-all;
  white-space: pre-line;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}
.review-date {
  font-size: 12px;
  color: var(--gray-600);
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #4CAF50;
  font-weight: 600;
}
.review-verified svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA */
.reviews-cta {
  background: var(--accent);
  padding: 80px;
  text-align: center;
}
.cta-urgency {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  word-break: keep-all;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-btn svg {
  width: 18px; height: 18px; fill: currentColor;
}

/* Cross link */
.cross-link {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 80px;
  text-align: center;
}
.cross-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid #333;
  border-radius: 9999px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.cross-link a:hover { border-color: var(--accent); color: var(--accent); }

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .reviews-hero, .rating-summary, .reviews-list, .reviews-cta, .cross-link {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .reviews-hero { padding: 48px 24px; }
  .rating-summary { padding: 0 24px 48px; }
  .rating-box {
    flex-direction: column;
    padding: 28px 32px;
    gap: 20px;
  }
  .rating-num-block {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .reviews-list { padding: 0 24px 60px; }
  .review-item { padding: 24px 20px; }
  .review-head { flex-direction: column; }
  .reviews-cta { padding: 48px 24px; }
  .cross-link { padding: 48px 24px; }
}

/* === 추가 스타일 === */
  :root {
    --bar-h: 48px;
    --nav-h: 50px;
  }
  .top-fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #0b1420;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-wrap { top: var(--bar-h) !important; }
  .top-fixed-bar__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
  }
  br.mo-only { display: none; }
  .top-fixed-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF4D00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 9999px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .top-fixed-bar__btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }
  .top-fixed-bar:hover .top-fixed-bar__btn {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,77,0,0.4);
  }
  body { padding-top: calc(var(--bar-h) + var(--nav-h)); }
  main { padding-top: 0 !important; }
  
