  :root {
    --bg: #0a0e1a;
    --bg-elev: #0f1524;
    --bg-card: #131a2c;
    --border: #1f2a44;
    --text: #e8ecf4;
    --text-muted: #9aa5bd;
    --accent: #4687FF;
    --accent-hover: #2f6fe8;
    --accent-soft: rgba(70, 135, 255, 0.12);
    --success: #22c55e;
    --warning: #fbbf24;
    --danger: #ef4444;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-glow: 0 10px 40px -10px rgba(70, 135, 255, 0.45);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ---------- Sticky top bar ---------- */
  .top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #4687FF 0%, #2f6fe8 100%);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  }
  .top-bar .flash { display: inline-flex; align-items: center; gap: 6px; }
  .top-bar .flash::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.8);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  .top-bar .btn-pill {
    background: #fff;
    color: #2f6fe8;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.15s ease;
  }
  .top-bar .btn-pill:hover { transform: translateY(-1px); }

  /* ---------- Header / Nav ---------- */
  .nav {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(8px);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
  }
  .logo-mark {
    width: 26px; height: 26px;
    background: var(--accent);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
  }
  .nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  .nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 50px -10px rgba(70, 135, 255, 0.7);
  }
  .btn-lg { padding: 18px 40px; font-size: 17px; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(70,135,255,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
  .eyebrow {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(70,135,255,0.3);
  }
  .hero h1 {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
  }
  .hero h1 .highlight {
    background: linear-gradient(135deg, #4687FF 0%, #7aa8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero .sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 14px;
  }
  .trust-badges div { display: inline-flex; align-items: center; gap: 6px; }
  .trust-badges svg { color: var(--success); flex-shrink: 0; }
  .hero-cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
  }

  /* ---------- Trust bar (stats) ---------- */
  .stats {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elev);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }
  .stat-num {
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ---------- Section base ---------- */
  .section { padding: 90px 0; }
  .section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
  .section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .section-head p {
    color: var(--text-muted);
    font-size: 17px;
  }

  /* ---------- Features ---------- */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
  }
  .feature:hover {
    transform: translateY(-4px);
    border-color: rgba(70,135,255,0.5);
    box-shadow: 0 10px 30px -10px rgba(70,135,255,0.25);
  }
  .feature-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .feature p {
    color: var(--text-muted);
    font-size: 14.5px;
  }

  /* ---------- Tabs (Use cases) ---------- */
  .tabs {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
  }
  .tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .tab-btn:hover { color: var(--text); }
  .tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--accent-soft);
  }
  .tab-panel { display: none; padding: 40px; }
  .tab-panel.active { display: grid; }
  .tab-panel {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .tab-panel h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .tab-panel p { color: var(--text-muted); margin-bottom: 18px; }
  .tab-panel ul { list-style: none; }
  .tab-panel li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 15px;
  }
  .tab-panel li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
  .tab-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(70,135,255,0.18), rgba(70,135,255,0.04));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
  }

  /* ---------- Comparison table ---------- */
  .compare-wrap { overflow-x: auto; }
  .compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .compare th, .compare td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .compare th:first-child, .compare td:first-child {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
  }
  .compare thead th {
    font-weight: 700;
    font-size: 16px;
    background: var(--bg-elev);
  }
  .compare thead th.featured {
    background: linear-gradient(135deg, rgba(70,135,255,0.25), rgba(70,135,255,0.1));
    color: var(--accent);
    position: relative;
  }
  .compare thead th.featured::after {
    content: "BEST VALUE";
    position: absolute;
    top: 6px; right: 8px;
    font-size: 9px;
    background: var(--accent);
    color: #fff;
    padding: 2px 6px;
    border-radius: 999px;
    letter-spacing: 0.5px;
  }
  .compare td.featured { background: rgba(70,135,255,0.06); color: var(--text); font-weight: 600; }
  .compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
  .check { color: var(--success); }
  .cross { color: var(--danger); }

  /* ---------- Reviews ---------- */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .review {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
  }
  .stars { color: var(--warning); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
  .review blockquote {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4687FF, #7aa8ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
  }
  .reviewer-info strong { display: block; font-size: 14px; }
  .reviewer-info span { font-size: 12px; color: var(--text-muted); }

  /* ---------- FAQ ---------- */
  .faq { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--border);
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
  }
  .faq-item.open { border-color: rgba(70,135,255,0.4); }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
  }
  .faq-q .chev {
    transition: transform 0.25s ease;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 16px;
  }
  .faq-item.open .chev { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    font-size: 15px;
  }
  .faq-a-inner { padding: 0 22px 20px; }

  /* ---------- Final CTA ---------- */
  .final-cta {
    position: relative;
    text-align: center;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, var(--bg) 0%, #10192e 100%);
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(70,135,255,0.2) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .final-cta p { color: var(--text-muted); font-size: 18px; margin-bottom: 32px; }
  .guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
  }
  .price-strip {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 26px;
  }
  .price-old { color: var(--text-muted); text-decoration: line-through; font-size: 18px; }
  .price-new { color: var(--accent); font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
  .price-unit { color: var(--text-muted); font-size: 15px; }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 30px;
    background: var(--bg-elev);
    font-size: 13.5px;
    color: var(--text-muted);
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
  }
  .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
  .footer-links a { color: var(--text-muted); text-decoration: none; }
  .footer-links a:hover { color: var(--accent); }
  .disclosure {
    background: rgba(70,135,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 12.5px;
    line-height: 1.6;
  }
  .disclosure strong { color: var(--text); }

  /* ---------- Scroll animations ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .tab-panel.active { grid-template-columns: 1fr; }
    .tab-panel { padding: 28px 22px; }
    .tab-visual { order: -1; }
  }
  @media (max-width: 560px) {
    .section { padding: 60px 0; }
    .hero { padding: 50px 0 70px; }
    .features-grid { grid-template-columns: 1fr; }
    .nav-cta { padding: 8px 14px; font-size: 13px; }
    .top-bar { font-size: 13px; padding: 8px 14px; gap: 10px; }
    .btn-lg { padding: 16px 28px; font-size: 16px; }
    .final-cta { padding: 60px 0 70px; }
  }

  /* ===== 정보형 사이트 추가 스타일 ===== */
  .lede { font-size: 17px; line-height: 1.85; color: var(--text-muted); max-width: 720px; }
  .lede strong { color: var(--text); font-weight: 600; }

  .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
  .guide-card {
    display: block; padding: 22px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); text-decoration: none; transition: border-color .2s, transform .2s;
  }
  .guide-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .guide-card h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; font-weight: 700; }
  .guide-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .guide-card .more { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--accent); font-weight: 600; }

  .pick { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
  .pick-card { padding: 26px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
  .pick-card.best { border-color: var(--accent); box-shadow: var(--shadow-glow); }
  .pick-tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
    background: var(--accent-soft); color: var(--accent); margin-bottom: 12px; }
  .pick-card h3 { font-size: 22px; margin-bottom: 6px; }
  .pick-price { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; }
  .pick-price b { color: var(--text); font-size: 20px; }
  .pick-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
  .pick-card li { font-size: 14px; color: var(--text-muted); padding: 6px 0; line-height: 1.6; }
  .pick-card li:before { content: "- "; color: var(--accent); font-weight: 700; }

  .article { max-width: 760px; }
  .article h2 { font-size: 26px; margin: 44px 0 14px; }
  .article h3 { font-size: 19px; margin: 30px 0 10px; }
  .article p { font-size: 16px; line-height: 1.9; color: var(--text-muted); margin-bottom: 16px; }
  .article ul { margin: 0 0 20px 0; padding-left: 20px; }
  .article li { font-size: 16px; line-height: 1.9; color: var(--text-muted); margin-bottom: 6px; }
  .article strong { color: var(--text); font-weight: 600; }
  .note { padding: 18px 20px; background: var(--bg-card); border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0; margin: 24px 0; font-size: 15px; line-height: 1.8; color: var(--text-muted); }
  .breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--accent); }

  @media (max-width: 900px) {
    .guide-grid { grid-template-columns: 1fr 1fr; }
    .pick { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .guide-grid { grid-template-columns: 1fr; }
  }

  .btn-secondary {
    background: transparent; color: var(--text); border: 1px solid var(--border);
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

  /* ===== 빠른 결론 박스 (상단 CTA) ===== */
  .quickpick {
    margin: 36px auto 0; max-width: 760px; text-align: left;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 26px 28px;
  }
  .quickpick h2 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
  .quickpick .qp-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
  .qp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .qp-item {
    border: 1px solid var(--border); border-radius: 12px; padding: 18px 18px 16px;
    background: var(--bg-elev);
  }
  .qp-item.primary { border-color: var(--accent); background: var(--accent-soft); }
  .qp-when { font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
  .qp-item.plain .qp-when { color: var(--text-muted); }
  .qp-name { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
  .qp-why { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; min-height: 42px; }
  .qp-item .btn { width: 100%; justify-content: center; font-size: 14px; padding: 11px 16px; }
  .qp-foot { font-size: 12.5px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }

  /* ===== 하단 고정 바 ===== */
  .stickybar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(15,21,36,.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 11px 16px; display: none;
    align-items: center; justify-content: center; gap: 12px;
  }
  .stickybar.show { display: flex; }
  .stickybar span { font-size: 13.5px; color: var(--text-muted); }
  .stickybar .btn { padding: 9px 18px; font-size: 13.5px; }
  @media (max-width: 560px) {
    .stickybar span { display: none; }
    .stickybar .btn { flex: 1; justify-content: center; }
    .qp-row { grid-template-columns: 1fr; }
    .quickpick { padding: 22px 20px; }
  }

  /* 섹션 간격 정리 */
  .section + .section { padding-top: 0; }
  .hero { padding-bottom: 64px; }

  /* ===== 로고 재정의 ===== */
  .logo { gap: 9px; }
  .logo-mark {
    width: 30px; height: 30px; background: none; border-radius: 0;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  }
  .logo-mark svg { width: 30px; height: 30px; display: block; }
  .logo-text { font-weight: 800; letter-spacing: -0.03em; font-size: 20px; }
  .logo-text .sub { font-weight: 600; color: var(--text-muted); }

  /* 원페이지 목차 */
  .toc { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 30px; }
  .toc a {
    font-size: 13.5px; padding: 8px 14px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-muted); text-decoration: none; transition: all .18s;
  }
  .toc a:hover { border-color: var(--accent); color: var(--accent); }

  /* ---------- 상황별 아코디언 ---------- */
  .topic-acc .faq-q { padding: 22px 22px; align-items: flex-start; }
  .topic-acc .q-text { display: flex; flex-direction: column; gap: 6px; }
  .topic-acc .q-kicker {
    font-size: 12px; font-weight: 700; color: var(--accent);
    letter-spacing: 0.02em;
  }
  .topic-acc .faq-q { font-size: 17px; font-weight: 700; line-height: 1.45; }
  .topic-acc .chev { margin-top: 4px; }

  .topic-body { padding: 0 22px 24px; }
  .topic-body p { font-size: 15.5px; line-height: 1.9; color: var(--text-muted); margin-bottom: 15px; }
  .topic-body p:last-child { margin-bottom: 0; }
  .topic-body strong { color: var(--text); font-weight: 600; }
  .topic-body ol { margin: 0 0 16px; padding-left: 20px; }
  .topic-body ol li { font-size: 15.5px; line-height: 1.9; color: var(--text-muted); margin-bottom: 9px; }
  .topic-body .inline-cta { margin-top: 4px; }

  @media (max-width: 640px) {
    .topic-acc .faq-q { padding: 18px 16px; font-size: 16px; }
    .topic-body { padding: 0 16px 20px; }
  }
  .inline-cta {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
    font-size: 15px; font-weight: 700; color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(70,135,255,.4); padding-bottom: 2px;
  }
  .inline-cta:hover { border-bottom-color: var(--accent); }

  /* ---------- 할인 배지 ---------- */
  .promo-badge {
    display: inline-block;
    margin: 8px 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF5A3C, #FF8A3C);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(255,90,60,0.28);
  }
  .stickybar span { font-weight: 700; }
