.ai-review-wrap {
    --bg: #f2f4f8;
    --card: #ffffff;
    --ink: #15181f;
    --ink-sub: #3d4657;
    --muted: #7a8498;
    --line: #e8ecf2;
    --brand: #1f3d66;
    --brand-soft: #eaf0fa;
    --accent: #dd8b3a;
    --warn-soft: #fdecec;
    --warn: #b34444;
    --hl: #fff3b8;
  }
.ai-review-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15,25,40,0.07);
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 42px 40px 36px;
    background:
      radial-gradient(120% 80% at 10% 0%, rgba(255,255,255,0.10) 0%, transparent 60%),
      linear-gradient(135deg,#13294a 0%, #1f3d66 45%, #2a5a8a 100%);
    color: #fff;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    right: -90px; top: -90px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,139,58,0.25) 0%, transparent 70%);
  }
  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
  }
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    letter-spacing: 2.5px;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
  }
  .hero-kicker .dot { width:6px; height:6px; border-radius:50%; background: var(--accent); }
  .hero-cat {
    font-size: 12px;
    opacity: 0.72;
    letter-spacing: 1px;
  }
  .hero-product {
    font-size: 15px;
    opacity: 0.82;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
  }
  .hero-model {
    font-size: 11.5px;
    opacity: 0.55;
    margin-bottom: 22px;
    font-family: ui-monospace,Menlo,Consolas,monospace;
    letter-spacing: 0.3px;
  }
  .hero-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: -0.4px;
    position: relative;
    z-index: 1;
  }

  /* QUICK SPEC BAR */
  .quickspec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
  }
  .qs {
    background: #fbfcfe;
    padding: 18px 16px;
    text-align: center;
  }
  .qs-lbl {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .qs-val {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.2px;
  }
  .qs-val small { font-size: 12px; color: var(--ink-sub); font-weight: 600; }

  /* INDEX */
  .index {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 40px 6px;
    border-bottom: 1px solid var(--line);
    background: #fafbfd;
  }
  .index-item {
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-sub);
    font-weight: 600;
  }
  .index-item b { color: var(--brand); margin-right: 6px; }

  /* SECTIONS */
  .sections { padding: 14px 40px 32px; }
  .section {
    padding: 30px 0 26px;
    border-bottom: 1px solid var(--line);
  }
  .section:last-of-type { border-bottom: none; }
  .section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .section-ic {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .section-ic svg { width: 18px; height: 18px; }
  .section-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 2px;
  }
  .section-title-wrap { flex: 1; }
  .section-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.25px;
    color: var(--ink);
  }
  .section-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
  }
  .section-body {
    font-size: 15px;
    color: var(--ink-sub);
    line-height: 1.88;
    letter-spacing: -0.1px;
  }
  .section-body strong {
    color: var(--ink);
    font-weight: 700;
    background: linear-gradient(transparent 62%, var(--hl) 62%);
    padding: 0 2px;
  }

  /* SPEC CHIPS */
  .chips {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .chip {
    font-size: 12.5px;
    padding: 6px 11px;
    border-radius: 8px;
    background: #f3f6fb;
    color: var(--ink-sub);
    border: 1px solid #e4eaf3;
    font-weight: 500;
  }
  .chip b { color: var(--brand); font-weight: 700; }

  /* RECOMMEND */
  .section.pick .section-ic {
    background: #e6f4ea;
    color: #2a7f4a;
  }
  .section.pick .section-body {
    background: linear-gradient(180deg, #f5fbf7 0%, transparent 100%);
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid #d7eadd;
  }
  .section.pick .section-body strong {
    background: linear-gradient(transparent 62%, #cfeddb 62%);
  }
  .pick-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pick-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #dcecdf;
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink-sub);
    line-height: 1.6;
  }
  .pick-row .pick-ic {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: #2a7f4a;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-top: 1px;
  }
  .pick-row b { color: var(--ink); font-weight: 700; }

  /* VERDICT */
  .verdict {
    margin-top: 28px;
    padding: 28px 28px;
    background: linear-gradient(135deg, #f8faff 0%, #fdf7ed 100%);
    border: 1px solid #e6ecf5;
    border-radius: 14px;
    position: relative;
  }
  .verdict::before {
    content: '"';
    position: absolute;
    left: 18px; top: -6px;
    font-size: 72px;
    color: var(--accent);
    opacity: 0.35;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .verdict-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--brand);
    margin-bottom: 10px;
  }
  .verdict-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.72;
    letter-spacing: -0.15px;
  }

  /* FOOTER */
  .footer {
    padding: 20px 40px 26px;
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
    background: #f9fafc;
    border-top: 1px solid var(--line);
  }

  @media (max-width: 680px) {
.hero { padding: 30px 22px 26px; }
    .hero-headline { font-size: 20px; }
    .quickspec { grid-template-columns: repeat(2, 1fr); }
    .index, .sections, .footer { padding-left: 22px; padding-right: 22px; }
    .section-title { font-size: 16px; }
    .section-body { font-size: 14.5px; line-height: 1.82; }
  }
  .section-num { display: none; }
  .verdict::before { display: none; }
  .hero-top { display: none; }
  .section-ic { display: none; }
  .section-head { gap: 0; }

/* === 페이지 CSS specificity 격리 (hero 텍스트 색 고정) === */
.ai-review-wrap .hero,
.ai-review-wrap .hero .hero-kicker,
.ai-review-wrap .hero .hero-cat,
.ai-review-wrap .hero .hero-product,
.ai-review-wrap .hero .hero-model,
.ai-review-wrap .hero .hero-headline { color: #fff !important; }

/* 섹션/칩/추천박스/총평 텍스트 색도 명시 */
.ai-review-wrap .section-title { color: #15181f !important; }
.ai-review-wrap .section-sub   { color: #7a8498 !important; }
.ai-review-wrap .section-body  { color: #3d4657 !important; }
.ai-review-wrap .section-body strong { color: #15181f !important; }
.ai-review-wrap .chip  { color: #3d4657 !important; }
.ai-review-wrap .chip b{ color: #1f3d66 !important; }
.ai-review-wrap .pick-row       { color: #3d4657 !important; }
.ai-review-wrap .pick-row b     { color: #15181f !important; }
.ai-review-wrap .pick-ic        { color: #fff !important; }
.ai-review-wrap .verdict-label  { color: #1f3d66 !important; }
.ai-review-wrap .verdict-text   { color: #15181f !important; }
.ai-review-wrap .qs-lbl { color: #7a8498 !important; }
.ai-review-wrap .qs-val { color: #15181f !important; }
.ai-review-wrap .qs-val small { color: #3d4657 !important; }
.ai-review-wrap .index-item   { color: #3d4657 !important; }
.ai-review-wrap .index-item b { color: #1f3d66 !important; }
.ai-review-wrap .footer { color: #7a8498 !important; }
