/* ==========================================================
   landing.css — 랜딩 페이지 + 홈 공통 컴포넌트
   로드 대상: index.html, alpha-scanner.html, 랜딩 6개,
             compare.html, review.html, blog/*.html(스펙카드 재사용)
   ========================================================== */

/* ===== HERO ===== */
/* 기본값 = 모바일 */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 48px 16px 56px;
    text-align: center;
  }
  
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  
  .badge-official {
    background: var(--orange);
    color: var(--white);
  }
  
  .badge-ip64,
  .badge-weight {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
  }
  
  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  
  .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    word-break: keep-all;
  }
  
  .hero-image-wrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 36px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  
  /* ===== GUIDE STEPS (앱 연동 단계) ===== */
  .guide-section {
    background: var(--gray-100);
  }
  
  .guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* 기본값 = 모바일 */
  .step-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  
  /* 기본값 = 모바일 */
  .step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 기본값 = 모바일 */
  .step-content h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
  }
  
  /* 기본값 = 모바일 */
  .step-content p {
    color: var(--gray-800);
    font-size: 0.97rem;
  }
  
  .step-tip {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #fff3e6;
    border-left: 3px solid var(--orange);
    border-radius: 0 4px 4px 0;
    font-size: 0.88rem;
    color: var(--orange);
    font-weight: 700;
  }
  
  /* ===== SPEC CARDS ===== */
  .spec-section {
    background: var(--white);
  }
  
  /* 기본값 = 모바일: 1열 */
  .spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-card {
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27,58,107,0.18);
    transition: transform 0.2s;
  }
  
  .spec-card:hover {
    transform: translateY(-4px);
  }
  
  .spec-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }
  
  .spec-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 8px;
  }
  
  .spec-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
  }
  
  .spec-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }
  
  /* ===== SCENARIO CARDS ===== */
  .scenario-section {
    background: var(--gray-100);
  }
  
  /* 기본값 = 모바일: 1열 */
  .scenario-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .scenario-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  
  .scenario-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }
  
  .scenario-img.s1 { background: #d6e4f7; }
  .scenario-img.s2 { background: #e8f5e9; }
  .scenario-img.s3 { background: #e3f2fd; }
  
  .scenario-body {
    padding: 24px;
  }
  
  .scenario-body h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
  }
  
  .scenario-body p {
    font-size: 0.93rem;
    color: var(--gray-800);
    word-break: keep-all;
  }
  
  .scenario-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 12px;
    background: var(--navy);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
  }
  
  /* ===== COMPARE TABLE ===== */
  .compare-section {
    background: var(--white);
  }
  
  .table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
  }
  
  thead tr {
    background: var(--navy);
    color: var(--white);
  }
  
  thead th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
  }
  
  thead th:first-child {
    text-align: left;
  }
  
  thead th.col-alpha {
    background: var(--orange);
  }
  
  tbody tr {
    border-bottom: 1px solid var(--gray-200);
  }
  
  tbody tr:last-child {
    border-bottom: none;
  }
  
  tbody tr:nth-child(even) {
    background: var(--gray-100);
  }
  
  tbody td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.93rem;
  }
  
  tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--navy);
  }
  
  tbody td.col-alpha {
    background: #eef3fb;
    color: var(--navy);
    font-weight: 700;
  }
  
  .check-yes {
    color: #16a34a;
    font-weight: 700;
  }
  
  .check-partial {
    color: var(--gray-600);
  }
  
  /* ===== INTERNAL LINKS (택배사·블로그 카드 그리드) ===== */
  /* 기본값 = 모바일 */
  .internal-section {
    background: var(--white);
    padding: 40px 16px;
  }
  
  .internal-section .section-title {
    margin-bottom: 28px;
  }
  
  /* 기본값 = 모바일: 1열 */
  .internal-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .internal-link-card {
    display: block;
    border: 2px solid var(--navy);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
  }
  
  .internal-link-card:hover {
    background: var(--navy);
    color: var(--white);
  }
  
  .internal-link-card .link-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .internal-link-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.2s;
  }
  
  .internal-link-card:hover h3 {
    color: var(--white);
  }
  
  .internal-link-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-top: 4px;
    transition: color 0.2s;
  }
  
  .internal-link-card:hover p {
    color: rgba(255,255,255,0.75);
  }
  
  /* 준비 중 카드 */
  .internal-link-card--soon {
    opacity: 0.55;
    cursor: default;
    border-color: var(--gray-300);
  }
  
  .internal-link-card--soon:hover {
    background: transparent;
    color: inherit;
  }
  
  .internal-link-card--soon:hover h3 { color: var(--navy); }
  .internal-link-card--soon:hover p  { color: var(--gray-600); }
  
  .soon-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 10px;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
  }
  
  /* ===== REVIEW SECTION (랜딩 그리드형) ===== */
  .review-section {
    background: var(--gray-100);
  }
  
  /* 기본값 = 모바일: 1열 */
  .review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .review-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .review-quote {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.7;
    border-left: 3px solid var(--orange);
    padding-left: 14px;
    margin: 0;
    word-break: keep-all;
  }
  
  .review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .review-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--navy);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
  }
  
  .review-name {
    font-size: 0.85rem;
    color: var(--gray-600);
  }
  
  .review-detail {
    font-size: 0.88rem;
    color: var(--gray-800);
    line-height: 1.7;
    word-break: keep-all;
    margin: 0;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    background: var(--navy);
    color: var(--white);
    text-align: center;
  }
  
  .cta-section .section-title {
    color: var(--white);
  }
  
  .price-block {
    margin: 0 auto 36px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .price-original {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
  }
  
  .price-sale {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--orange);
  }
  
  .price-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
  }
  
  /* 기본값 = 모바일: column */
  .cta-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-btn-group .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  
  /* ===== DESKTOP — LANDING ===== */
  @media (min-width: 769px) {
    .hero {
      padding: 72px 20px 80px;
    }
  
    .internal-section {
      padding: 60px 20px;
    }
  
    .scenario-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .internal-links-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .cta-btn-group {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }
  
    .cta-btn-group .btn {
      width: auto;
      padding: 14px 32px;
      font-size: 1rem;
    }
  
    .step-item {
      padding: 24px;
      gap: 20px;
    }
  
    .step-num {
      width: 44px;
      height: 44px;
      font-size: 1.1rem;
    }
  
    .step-content h3 {
      font-size: 1.05rem;
    }
  
    .step-content p {
      font-size: 0.95rem;
    }
  
    .spec-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 901px) {
    .spec-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .review-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  
  /* ============================================================
     index.html 전용 스타일 (분리 이관 2026-03-11)
     ============================================================ */
  
  /* 선택 이유 섹션 */
  .reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
  }
  .reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-left: 5px solid #E05C00;
  }
  .reason-card .reason-num {
    font-size: 2rem;
    font-weight: 900;
    color: #E05C00;
    line-height: 1;
    margin-bottom: 8px;
  }
  .reason-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 8px;
  }
  .reason-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }
  
  /* 선택 기준 섹션 */
  .criteria-section { background: #f8f9fb; }
  .criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
  .criteria-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .criteria-card .crit-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .criteria-card .crit-rank {
    display: inline-block;
    background: #1B3A6B;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
  }
  .criteria-card h3 { font-size: 1rem; font-weight: 700; color: #1B3A6B; margin: 0 0 6px; }
  .criteria-card p  { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.6; }
  
  /* 추천 제품 박스 — 기본값 = 모바일: column */
  .recommend-box {
    background: linear-gradient(135deg, #1B3A6B 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 28px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
  }
  .recommend-box .rec-info { flex: 1; }
  .recommend-box .rec-badge {
    display: inline-block;
    background: #E05C00;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  .recommend-box h3 { font-size: 1.5rem; font-weight: 900; margin: 0 0 10px; line-height: 1.3; }
  .recommend-box p  { font-size: 0.95rem; opacity: 0.88; line-height: 1.7; margin: 0 0 20px; }
  .recommend-box .rec-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
  .recommend-box .rec-spec-item {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .rec-price-wrap { margin-bottom: 16px; }
  .recommend-box .rec-price { font-size: 1.6rem; font-weight: 900; color: #FFD166; }
  .recommend-box .rec-price-sub {
    font-size: 0.85rem;
    opacity: 0.7;
    text-decoration: line-through;
    margin-left: 8px;
  }
  /* 기본값 = 모바일 */
  .recommend-box .rec-img { flex-shrink: 0; width: 120px; margin: 0 auto; }
  .recommend-box .rec-img img { width: 100%; border-radius: 12px; }
  .recommend-box .rec-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  
  /* WHY 섹션 */
  .pain-section { background: #1B3A6B; color: #fff; }
  .pain-section .section-title { color: #fff; }
  .pain-section .section-sub  { color: rgba(255,255,255,0.75); }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
  .pain-card {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .pain-card .pain-emoji { font-size: 2rem; margin-bottom: 10px; }
  .pain-card h3 { font-size: 1rem; font-weight: 700; color: #FFD166; margin: 0 0 8px; }
  .pain-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin: 0; }
  
  /* VS 비교 박스 — 기본값 = 모바일: column */
  .vs-box {
    background: #fff3ec;
    border: 2px solid #E05C00;
    border-radius: 16px;
    padding: 28px 24px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .vs-box .vs-col   { flex: 1; text-align: center; }
  .vs-box .vs-label { font-size: 0.82rem; color: #999; margin-bottom: 6px; }
  .vs-box .vs-item  { font-size: 1rem; font-weight: 700; color: #333; }
  .vs-box .vs-item + .vs-item { margin-top: 6px; }
  .vs-box .vs-item.bad  { color: #c0392b; text-decoration: line-through; }
  .vs-box .vs-item.good { color: #27ae60; }
  .vs-box .vs-divider   { font-size: 1.5rem; font-weight: 900; color: #E05C00; padding: 0 8px; }
  
  /* 준비물 섹션 */
  .supplies-section { background: #fff; }
  .supplies-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  /* 기본값 = 모바일 */
  .supply-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8f9fb;
    border-radius: 14px;
    padding: 20px 16px;
    border-left: 5px solid #ddd;
    transition: border-color 0.2s;
  }
  .supply-item.supply-star {
    background: linear-gradient(135deg, #fff8f3 0%, #fff3e8 100%);
    border-left-color: #E05C00;
    box-shadow: 0 2px 12px rgba(224,92,0,0.08);
  }
  .supply-item .supply-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #666;
    margin-top: 2px;
  }
  .supply-item.supply-star .supply-num { background: #E05C00; color: #fff; }
  .supply-body { flex: 1; }
  .supply-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    background: #e9ecef;
    color: #666;
  }
  .supply-item.supply-star .supply-tag { background: #E05C00; color: #fff; }
  .supply-body h3 { font-size: 1.05rem; font-weight: 700; color: #1B3A6B; margin: 0 0 6px; }
  .supply-body p  { font-size: 0.92rem; color: #555; line-height: 1.7; margin: 0; }
  .supply-body .supply-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #E05C00;
    text-decoration: none;
    border-bottom: 1px solid #E05C00;
  }
  .supply-note {
    margin-top: 28px;
    background: #1B3A6B;
    color: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .supply-note strong { color: #FFD166; }
  
  /* CTA 섹션 설명 텍스트 */
  .cta-desc {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-size: 1rem;
  }
  
  /* FAQ 전화번호 링크 */
  .faq-tel-link { color: inherit; font-weight: 700; }
  
  /* ===== DESKTOP — INDEX ===== */
  @media (min-width: 769px) {
    .recommend-box { flex-direction: row; padding: 40px 36px; gap: 40px; align-items: center; }
    .recommend-box .rec-img { width: 180px; margin: 0; }
    .vs-box { flex-direction: row; gap: 24px; align-items: center; }
    .supply-item { padding: 24px; gap: 20px; }
  }
  
  /* ============================================================
     review.html 전용 스타일 (2026-03-12)
     ============================================================ */
  
  /* 다크 배경 섹션 공통 */
  .section-dark {
    background: var(--navy);
  }
  .section-dark-alt {
    background: var(--navy-dark);
  }
  .section-title--white {
    color: #fff;
  }
  .section-sub--muted {
    color: rgba(255, 255, 255, 0.65);
  }
  
  /* 후기 인용 블록 (오렌지 좌측 보더) */
  .review-quote-block {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #E05C00;
    border-radius: 8px;
    padding: 28px 32px;
    margin: 24px 0;
  }
  .review-quote-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #fff;
    word-break: keep-all;
  }
  .review-quote-block p + p {
    margin-top: 16px;
  }
  .review-quote-meta {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
  }
  
  /* 전문 리뷰어 인용 블록 (네이비 좌측 보더) */
  .review-quote-block--navy {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #1B3A6B;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 20px 0;
  }
  .review-quote-block--navy p {
    font-size: 1rem;
    line-height: 1.85;
    color: #fff;
    word-break: keep-all;
  }
  .review-quote-block--navy .review-quote-meta {
    margin-top: 12px;
  }
  
  /* 후기 그리드 */
  .store-review-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
  }
  .store-review-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px 24px;
  }
  .store-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .store-review-stars {
    color: #FFD700;
    font-size: 1rem;
  }
  .store-review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
  }
  .store-review-text {
    color: #fff;
    line-height: 1.7;
  }
  .store-review-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 8px;
  }
  
  /* 부정 후기 / 경고 블록 */
  .negative-review-block {
    background: rgba(255, 100, 50, 0.12);
    border: 1px solid rgba(255, 100, 50, 0.4);
    border-radius: 10px;
    padding: 24px 28px;
    margin-top: 24px;
  }
  .negative-review-block h3 {
    color: #ff8866;
    margin-bottom: 12px;
  }
  .negative-review-block .review-body-text {
    color: #fff;
    line-height: 1.7;
  }
  .negative-review-divider {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .negative-review-solution-title {
    color: #adf;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .negative-review-solution-text {
    color: #fff;
    line-height: 1.7;
  }
  .negative-review-seller-quote {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 8px;
  }
  
  /* 주의사항 블록 */
  .caution-block {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 16px;
  }
  .caution-block h3 {
    color: #fff;
    margin-bottom: 8px;
  }
  .caution-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
  }
  
  /* CTA 섹션 보조 텍스트 */
  .cta-sub-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .cta-note-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    font-size: 0.9rem;
  }
  .cta-price-wrap {
    margin-bottom: 36px;
  }
  .cta-link-text {
    display: inline-block;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    font-size: 0.9rem;
  }
  
  /* internal-links-grid 컬럼 오버라이드 (review.html 2열) */
  .internal-links-grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  /* hero-title (index.html H1) — 기본값 = 모바일 */
  .hero-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    word-break: keep-all;
    padding: 24px 20px 8px;
    margin: 0;
  }
  .hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0 20px 16px;
    margin: 0;
    word-break: keep-all;
  }
  
  @media (min-width: 769px) {
    .hero-title { font-size: 2rem; }
  }
  