  :root {
    --green: #15c47e;
    --green-dark: #0fa066;
    --green-soft: #e8f9f1;
    --ink: #18211c;
    --ink-soft: #5e6b64;
    --line: #eaeef0;
    --bg: #ffffff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: inherit;
    overflow-wrap: inherit;
    line-break: inherit;
  }
  html {
    scroll-behavior: smooth;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
  }

  body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.02em;
    padding-top: 60px;
  }

  h1, h2, h3, p, li, span, button, .feat-body, .target-item, .push-msg,
  .price-row, .push-item, .pt-row, .browser-body, .ha-card {
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
  }

  input, .success-desc strong, .amt, .pt-real, .pt-base, .pt-size, .stock-y, .stock-n {
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: auto;
  }

  .wrap {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
  }

  section { padding: 72px 0; }

  /* ── 헤더 ── */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    display: flex;
    align-items: center;
  }
  .site-header .inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .site-header .logo-icon {
    width: 28px;
    height: 28px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .logo-icon svg { display: block; }
  .site-header .logo-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
  }
  .site-header .start-btn {
    height: 36px;
    padding: 0 18px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, transform .1s;
    letter-spacing: -0.02em;
  }
  .site-header .start-btn:hover { background: var(--green-dark); }
  .site-header .start-btn:active { transform: scale(0.97); }

  /* ── 타이포 ── */
  h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
  }
  h1 .hl { color: var(--green); }

  h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
  }

  .sub {
    font-size: 16px;
    color: var(--ink-soft);
    margin-top: 16px;
    line-height: 1.65;
  }

  /* ── 히어로 ── */
  .hero {
    padding: 80px 0 48px;
    background: linear-gradient(180deg, rgba(21,196,126,0.20) 0%, rgba(21,196,126,0.08) 45%, #fff 78%);
  }

  /* ── 히어로 할인 애니메이션 ── */
  .hero-anim { margin-top: 32px; }
  .ha-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    padding: 22px 22px 24px;
    position: relative;
    overflow: hidden;
  }
  .ha-top { display: flex; align-items: center; gap: 14px; }
  .ha-thumb {
    width: 56px; height: 56px; border-radius: 12px;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--line); background: #f5f5f7;
  }
  .ha-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ha-name { font-size: 16px; font-weight: 700; color: var(--ink); }
  .ha-base { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
  .ha-base s { color: #aab4ae; }

  .ha-price {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 18px;
    transition: transform 0.18s ease;
  }
  .ha-price-main {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--green-dark);
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  .ha-saving {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 8px;
    padding: 4px 8px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    align-self: flex-end;
    margin-bottom: 13px;
  }
  .ha-saving.show {
    opacity: 1;
    transform: translateY(0);
  }
  .ha-price.pop { animation: haPricePop 0.4s ease; }
  .ha-won { font-size: 22px; font-weight: 700; }
  @keyframes haPricePop {
    0% { transform: scale(1); }
    35% { transform: scale(1.12); }
    100% { transform: scale(1); }
  }

  .ha-chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ha-chip {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-soft);
    border-radius: 999px;
    padding: 7px 13px;
    opacity: 0;
    transform: scale(0.4);
  }
  .ha-chip.show { animation: haChipPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  @keyframes haChipPop {
    0% { opacity: 0; transform: scale(0.4); }
    60% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* 팡! 버스트 */
  .ha-burst {
    position: absolute;
    pointer-events: none;
    font-size: 13px;
    font-weight: 800;
    color: var(--green);
    opacity: 0;
  }
  .ha-burst.go { animation: haBurst 0.6s ease forwards; }
  @keyframes haBurst {
    0% { opacity: 0; transform: translateY(0) scale(0.6); }
    25% { opacity: 1; transform: translateY(-6px) scale(1.1); }
    100% { opacity: 0; transform: translateY(-22px) scale(1); }
  }

  /* 🎉 컨페티 파티클 */
  .ha-confetti-particle {
    position: absolute;
    pointer-events: none;
    border-radius: 2px;
    opacity: 0;
  }

  /* ── 히어로 일러스트 ── */
  .hero-illust {
    margin-top: 32px;
  }
  .product-table-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--line);
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    overflow: hidden;
  }
  .pt-header {
    display: grid;
    grid-template-columns: 0.6fr 2fr 0.9fr 0.7fr 1.4fr 1.4fr;
    padding: 13px 18px;
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    gap: 4px;
  }
  .pt-header > *, .pt-row > * { align-self: center; }
  .pt-header span, .pt-row span { text-align: right; }
  .pt-header span:first-child { text-align: center; }
  .pt-header span:nth-child(2) { text-align: center; }
  .pt-header span:last-child { color: var(--green-dark); font-weight: 700; }
  .pt-row .pt-product { text-align: left; }
  .pt-row {
    display: grid;
    grid-template-columns: 0.6fr 2fr 0.9fr 0.7fr 1.4fr 1.4fr;
    padding: 18px 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    gap: 4px;
    font-size: 13px;
    color: #3a443e;
  }
  .pt-platform { display: flex; align-items: center; justify-content: center; }
  .pt-plogo { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .pt-plogo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pt-row:last-child { border-bottom: none; }
  .pt-product { display: flex; align-items: center; gap: 10px; }
  .pt-thumb { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); background: #f5f5f7; }
  .pt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pt-name { font-size: 13px; font-weight: 400; color: var(--ink); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .pt-mobile-size { display: none; }
  .pt-size { color: #6b7b72; }
  .stock-y { color: #6b7b72; font-weight: 400; }
  .stock-n { color: #ccc; }
  .pt-base { color: #aab4ae; text-decoration: line-through; font-size: 12px; }
  .pt-real { color: var(--green-dark); font-weight: 700; font-size: 14px; }

  /* ── 플랫폼 로고 마퀴 ── */
  .platform-band {
    padding: 56px 0;
    overflow: hidden;
  }
  .platforms {
    max-width: 480px;
    margin: 0 auto;
    padding: 28px 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeRight 38s linear infinite;
  }
  @keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  .platform {
    flex-shrink: 0;
    margin: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .platform .plogo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .platform .plogo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .platform .pname { display: none; }

  /* ── 이메일 폼 ── */
  .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }
  .form input {
    width: 100%;
    height: 56px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 0 18px;
    font-size: 16px;
    font-family: inherit;
    color: var(--ink);
    outline: none;
    transition: border-color .15s;
  }
  .form input:focus { border-color: var(--green); }
  .form input::placeholder { color: #aab4ae; }
  .form button {
    width: 100%;
    height: 56px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, transform .1s;
  }
  .form button:hover { background: var(--green-dark); }
  .form button:active { transform: scale(0.98); }
  .micro {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 14px;
    text-align: center;
  }

  /* ── 문제 리스트 ── */
  .problem { background: #fafbfb; }
  .problem-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
  .problem-item {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: #3a443e;
    line-height: 1.55;
  }
  .problem-item .x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: #ff5a5a;
    color: transparent;
    font-size: 0;
    flex-shrink: 0;
  }
  .problem-item .x::before,
  .problem-item .x::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 1.2px;
    border-radius: 999px;
    background: #fff;
  }
  .problem-item .x::before { transform: rotate(45deg); }
  .problem-item .x::after { transform: rotate(-45deg); }
  .punch { margin-top: 24px; font-size: 15px; font-weight: 700; color: var(--ink-soft); line-height: 1.65; }

  /* ── 브라우저 탭 도식 ── */
  .browser-stack {
    margin-top: 28px;
    position: relative;
    height: 190px;
  }
  .browser-win {
    position: absolute;
    width: 80%;
    background: #fff;
    border: 1.5px solid #d0d0d5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }
  .browser-win:nth-child(1) { top: 0px;  left: 0px;  z-index: 3; }
  .browser-win:nth-child(2) { top: 26px; left: 26px; z-index: 2; }
  .browser-win:nth-child(3) { top: 52px; left: 52px; z-index: 1; }

  /* 탭 스트립 */
  .browser-tabs {
    display: flex;
    align-items: center;
    background: #e8e8ed;
    padding: 6px 8px 0;
    gap: 2px;
  }
  .browser-tabs .browser-dots {
    margin-right: 6px;
    margin-bottom: 0;
    padding-bottom: 5px;
    flex-shrink: 0;
  }
  .browser-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 7px 7px 0 0;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    color: var(--ink);
    white-space: nowrap;
  }
  .browser-tab .favicon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .browser-tab .favicon img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* 주소창 바 */
  .browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #f5f5f7;
    border-bottom: 1px solid #e0e0e5;
  }
  .browser-dots { display: flex; gap: 4px; }
  .browser-dots span { width: 8px; height: 8px; border-radius: 50%; }
  .browser-dots span:nth-child(1) { background: #ff5f57; }
  .browser-dots span:nth-child(2) { background: #febc2e; }
  .browser-dots span:nth-child(3) { background: #28c840; }
  .browser-url {
    flex: 1;
    background: #fff;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 10px;
    color: #999;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 창 내용 */
  .browser-body {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .browser-thumb {
    width: 32px; height: 32px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: #f5f5f7;
  }
  .browser-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .browser-info { flex: 1; min-width: 0; }
  .browser-site { font-size: 12px; font-weight: 700; color: var(--ink); }
  .browser-price { font-size: 11px; color: var(--ink-soft); margin-top: 1px; }

  /* ── 기능 ── */
  .solution-section,
  .alert-section {
    background: #fff;
  }
  .price-section {
    background: #fafbfb;
  }
  .feat-tag { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
  .feat-body { font-size: 16px; color: var(--ink-soft); }

  /* ── 가격 비교 카드 ── */
  .price-card {
    margin-top: 28px;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(21,196,126,0.06);
  }
  .price-card .pname {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 14px;
  }
  .pname-main {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
  }
  .pname-meta {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }
  .price-row:last-child { border-bottom: none; }
  .price-row .store-col { display: flex; flex-direction: column; gap: 3px; }
  .price-row .store { font-size: 15px; color: #3a443e; }
  .price-row .benefits { font-size: 12px; color: #aab4ae; }
  .price-row .amt { font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
  .price-row.best .store, .price-row.best .amt { color: var(--green-dark); }
  .price-row.best .benefits { color: #56b989; font-weight: 600; }
  .best-tag {
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
  }
  .price-note { font-size: 12.5px; color: #7f8b85; font-weight: 500; margin-top: 14px; }

  /* ── 푸시 알림 UI ── */
  .push-list { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
  .push-item {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .push-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #f2f2f2;
  }
  .push-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .push-body { flex: 1; min-width: 0; }
  .push-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }
  .push-app { font-size: 12px; font-weight: 700; color: var(--ink); }
  .push-time { font-size: 12px; color: #aab4ae; }
  .push-msg { font-size: 13.5px; color: #3a443e; line-height: 1.55; }
  .push-msg strong { color: var(--ink); font-weight: 700; }
  .push-price-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
  }
  .push-price-change .old { color: #aab4ae; text-decoration: line-through; font-weight: 400; }
  .push-price-change .arrow { color: #aab4ae; }

  /* ── 소셜 증거 ── */
  .proof { background: var(--ink); color: #fff; text-align: center; }
  .proof h2 { color: #fff; }
  .stats { margin-top: 36px; display: flex; justify-content: space-between; gap: 12px; }
  .stat { flex: 1; min-width: 0; }
  .stat .num { font-size: 26px; font-weight: 800; color: var(--green); letter-spacing: -0.03em; white-space: nowrap; }
  .stat .lbl { font-size: 12.5px; color: #9aa6a0; margin-top: 6px; line-height: 1.4; }
  .proof-note { font-size: 14px; color: #9aa6a0; margin-top: 32px; }

  /* ── 사용 대상 ── */
  .target-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
  .target-item {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 20px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
  }
  .target-item .ic {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .target-item .ic::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
  }

  /* ── 최종 CTA ── */
  .final {
    text-align: center;
    background: linear-gradient(0deg, rgba(21,196,126,0.20) 0%, rgba(21,196,126,0.08) 45%, #fff 78%);
  }
  .final h2 { font-size: 27px; }
  .final .form { margin-top: 28px; }
  .gift { font-size: 14px; color: var(--green-dark); font-weight: 600; margin-top: 18px; text-align: center; }

  /* ── 푸터 ── */
  footer {
    padding: 40px 0 56px;
    text-align: center;
    font-size: 13px;
    color: #aab4ae;
    border-top: 1px solid var(--line);
  }
  footer .logo { font-weight: 800; color: var(--ink); font-size: 16px; margin-bottom: 8px; letter-spacing: -0.03em; }

  /* ── 제출 완료 모달 ── */
  .success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .success-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
  .success-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px 32px;
    width: min(340px, calc(100vw - 48px));
    text-align: center;
    transform: scale(0.88) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }
  .success-overlay.show .success-card {
    transform: scale(1) translateY(0);
  }
  .success-icon {
    width: 64px;
    height: 64px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
  }
  .success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin-bottom: 10px;
  }
  .success-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .success-desc strong { color: var(--green-dark); font-weight: 700; }
  .success-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    letter-spacing: -0.02em;
    transition: background 0.15s;
  }
  .success-btn:hover { background: var(--green-dark); }
  .success-confetti-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 10000;
  }

  /* ── 브릿지 섹션 ── */
  .bridge-section {
    padding: 48px 0;
    text-align: center;
    background: rgba(21, 196, 126, 0.07);
  }
  .bridge-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
  .bridge-icons span {
    font-size: 28px;
    line-height: 1;
    display: inline-block;
    animation: bridgeFloat 3s ease-in-out infinite;
  }
  .bridge-icons span:nth-child(1) { animation-delay: 0s; }
  .bridge-icons span:nth-child(2) { animation-delay: 0.3s; }
  .bridge-icons span:nth-child(3) { animation-delay: 0.6s; }
  .bridge-icons span:nth-child(4) { animation-delay: 0.9s; }
  .bridge-icons span:nth-child(5) { animation-delay: 1.2s; }
  .bridge-icons span:nth-child(6) { animation-delay: 1.5s; }
  @keyframes bridgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  .bridge-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
    letter-spacing: -0.03em;
  }
  .bridge-hl {
    color: var(--green);
    font-weight: 700;
  }

  @media (max-width: 480px) {
    body { padding-top: 56px; }
    .wrap { padding: 0 22px; }
    section { padding: 64px 0; }

    .site-header { height: 56px; }
    .site-header .inner { padding: 0 22px; }
    .site-header .logo-icon {
      width: 26px;
      height: 26px;
      border-radius: 8px;
    }
    .site-header .logo-name { font-size: 16px; }
    .site-header .start-btn {
      height: 34px;
      padding: 0 16px;
      border-radius: 10px;
      font-size: 14px;
    }

    .hero { padding: 70px 0 44px; }
    h1 {
      font-size: 30px;
      line-height: 1.28;
    }
    .sub {
      font-size: 16px;
      line-height: 1.72;
    }
    .hero-anim { margin-top: 30px; }
    .ha-card {
      border-radius: 18px;
      padding: 20px;
      overflow: visible;
    }
    .ha-top {
      gap: 12px;
      align-items: center;
    }
    .ha-thumb {
      width: 52px;
      height: 52px;
      border-radius: 12px;
    }
    .ha-name { font-size: 16px; }
    .ha-price {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-top: 20px;
    }
    .ha-price-main {
      font-size: 36px;
      line-height: 1.05;
    }
    .ha-won { font-size: 20px; }
    .ha-saving {
      align-self: flex-start;
      min-height: 31px;
      margin-bottom: 0;
      max-width: 100%;
      white-space: nowrap;
      line-height: 1;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ha-chips {
      gap: 8px;
      margin-top: 16px;
    }
    .ha-chip {
      font-size: 13px;
      padding: 7px 12px;
    }

    .pt-header,
    .pt-row {
      grid-template-columns: 0.72fr 2.1fr 0.65fr 1.35fr;
      padding-left: 14px;
      padding-right: 14px;
      gap: 4px;
    }
    .pt-header span:nth-child(3),
    .pt-header span:nth-child(5),
    .pt-base,
    .pt-size {
      display: none;
    }
    .pt-mobile-size {
      display: inline;
      color: var(--ink-soft);
      font-weight: 400;
    }
    .pt-thumb {
      width: 34px;
      height: 34px;
      border-radius: 8px;
    }
    .pt-plogo {
      width: 30px;
      height: 30px;
    }
    .pt-name {
      font-size: 12.5px;
    }
    .stock-y {
      font-size: 12.5px;
    }
    .pt-real {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-size: 13.5px;
      line-height: 1.25;
      white-space: nowrap;
    }
    .pt-real::before {
      color: #aab4ae;
      font-size: 11.5px;
      font-weight: 400;
      text-decoration: line-through;
    }
    .pt-row:nth-child(2) .pt-real::before { content: '119,000'; }
    .pt-row:nth-child(3) .pt-real::before { content: '139,000'; }
    .pt-row:nth-child(4) .pt-real::before { content: '129,000'; }
    .pt-row:nth-child(5) .pt-real::before { content: '159,000'; }

    .stats { gap: 8px; }
    .stat .num {
      font-size: clamp(20px, 6.2vw, 26px);
      line-height: 1.12;
      white-space: normal;
      word-break: keep-all;
    }
  }

  @media (min-width: 481px) {
    .form { flex-direction: row; }
    .form input { flex: 1; }
    .form button { width: auto; padding: 0 28px; white-space: nowrap; }
  }
