@charset "utf-8";

/* ===== Pretendard (본문) ===== */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* ===== Paperlogy (제목) ===== */
@font-face { font-family: "Paperlogy"; src: url("../font/Paperlogy-4Regular.woff") format("woff"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Paperlogy"; src: url("../font/Paperlogy-5Medium.woff") format("woff"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Paperlogy"; src: url("../font/Paperlogy-6SemiBold.woff") format("woff"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Paperlogy"; src: url("../font/Paperlogy-7Bold.woff") format("woff"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Paperlogy"; src: url("../font/Paperlogy-8ExtraBold.woff") format("woff"); font-weight: 800; font-display: swap; }

/* ===== Design Tokens (기존 사이트 기준) ===== */
:root {
  --po: #097CFF;          /* 메인 블루 */
  --po-deep: #0a63cc;     /* 진한 블루 */
  --po-cyan: #00d9ff;     /* 시안 포인트 */
  --navy: #1D2045;        /* 다크 네이비 */
  --box-bg: #f4faff;      /* 연한 박스 배경 */
  --page-bg: #fafafa;     /* 페이지 배경 */
  --line: #e8edf3;
  --ink: #1b2430;         /* 본문 텍스트 */
  --ink-2: #5a6573;       /* 보조 텍스트 */
  --accent: #FF3c5b;      /* 강조 레드 */
  --bdrs: 15px;
  --bdrs-lg: 22px;
  --shadow: 0 18px 50px rgba(16, 42, 89, .10);
  --shadow-sm: 0 8px 24px rgba(16, 42, 89, .08);
  --maxw: 1180px;
  --trans: .28s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Pretendard', 'Paperlogy', sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, li { list-style: none; }

h1, h2, h3, .heading { font-family: 'Paperlogy', 'Pretendard', sans-serif; letter-spacing: -0.03em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.point { color: var(--po); }
.accent { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Pretendard', sans-serif; font-weight: 700; font-size: 17px;
  padding: 16px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: var(--trans); white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--po); color: #fff; box-shadow: 0 12px 26px rgba(9, 124, 255, .35); }
.btn-primary:hover { background: var(--po-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(9, 124, 255, .42); }
.btn-ghost { background: #fff; color: var(--po); border-color: #d5e6ff; }
.btn-ghost:hover { background: var(--box-bg); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--po); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,.18); }
.btn-lg { font-size: 18px; padding: 18px 38px; }

/* ===== Header ===== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: var(--trans);
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(16,42,89,.06); }
.header .inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 38px; width: auto; }
.gnb { display: flex; align-items: center; gap: 26px; }
.gnb a { font-weight: 600; font-size: 15.5px; color: #3a4655; transition: var(--trans); white-space: nowrap; }
.gnb a:hover { color: var(--po); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.tel-top { display: inline-flex; align-items: center; gap: 8px; font-family: 'Paperlogy', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); }
.tel-top svg { width: 18px; height: 18px; color: var(--po); }
.header-cta .btn { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }

/* ===== Hero ===== */
.hero {
  position: relative; padding: 150px 0 90px;
  background:
    radial-gradient(1100px 540px at 82% -8%, rgba(0,217,255,.16), transparent 60%),
    radial-gradient(900px 520px at 8% 12%, rgba(9,124,255,.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--box-bg) 100%);
  overflow: hidden;
}
.hero .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center; }

/* ===== Hero 배경 동영상 ===== */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: #0a1634; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,18,44,.92) 0%, rgba(9,26,62,.74) 36%, rgba(11,46,104,.52) 68%, rgba(9,86,168,.42) 100%); }
/* 동영상 모드에서는 기존 일러스트 숨김 (일러스트로 되돌리려면 아래 한 줄을 지우세요) */
.hero-bg .deco, .hero-bg .hb-blob { display: none !important; }

/* ===== (보관) Hero 결제/카드 일러스트 ===== */
.hero-bg .hb-blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; }
.hero-bg .hb-blob-1 { width: 420px; height: 420px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(0,217,255,.28), transparent 70%); }
.hero-bg .hb-blob-2 { width: 360px; height: 360px; left: -120px; bottom: -140px; background: radial-gradient(circle, rgba(9,124,255,.22), transparent 70%); }
.hero-bg .deco { position: absolute; filter: drop-shadow(0 24px 50px rgba(16,42,89,.16)); }

/* 스마트폰: 우측 배경, 상담카드 뒤로 일부 노출 */
.deco-phone { width: 280px; right: 4%; top: 64px; transform: rotate(7deg); animation: floatY 6s ease-in-out infinite; }
/* 떠다니는 신용카드 */
.deco-card { width: 240px; right: 5%; bottom: -26px; transform: rotate(-12deg); opacity: .96; animation: floatY 5s ease-in-out infinite .6s; }
/* 원화 코인 */
.deco-coin { width: 72px; right: 9%; top: 26px; animation: floatY 4.4s ease-in-out infinite .3s; }
/* 결제 체크 */
.deco-check { width: 58px; right: 2%; top: 38px; animation: floatY 5.2s ease-in-out infinite .9s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--r, 0deg)); }
}
.deco-phone { --r: 7deg; }
.deco-card { --r: -12deg; }
.deco-coin { --r: 0deg; }
.deco-check { --r: 0deg; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--po); background: #fff; border: 1px solid #d5e6ff;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #19c37d; box-shadow: 0 0 0 4px rgba(25,195,125,.18); }
.hero h1 { font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.18; margin: 22px 0 18px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero h1 .grad { background: linear-gradient(90deg, var(--po), var(--po-cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.9); line-height: 1.7; max-width: 520px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .t-item { }
.hero-trust strong { display: block; font-family: 'Paperlogy', sans-serif; font-weight: 800; font-size: 26px; color: #6cc8ff; }
.hero-trust span { font-size: 14px; color: rgba(255,255,255,.82); }

/* Hero card (오른쪽 상담 카드) */
.hero-card {
  background: #fff; border-radius: var(--bdrs-lg); box-shadow: var(--shadow);
  padding: 34px; border: 1px solid var(--line); position: relative;
}
.hero-card .hc-top { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hero-card .hc-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--po), var(--po-cyan)); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-card .hc-icon svg { width: 30px; height: 30px; }
.hero-card .hc-top b { font-family: 'Paperlogy', sans-serif; font-size: 23px; color: var(--navy); display: block; }
.hero-card .hc-top em { font-style: normal; font-size: 15.5px; color: #19c37d; font-weight: 700; }
.hc-list { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 17px; }
.hc-list li { display: flex; align-items: center; gap: 13px; font-size: 18.5px; color: #3a4655; font-weight: 500; }
.hc-list li svg { width: 24px; height: 24px; color: var(--po); flex-shrink: 0; }
.hero-card .btn { width: 100%; font-size: 19px; padding: 19px 30px; }
.hc-note { text-align: center; font-size: 15px; color: #9aa6b4; margin-top: 14px; }

/* ===== 상담카드 주변 결제/상품권 플로팅 아이콘 ===== */
.hc-badge { position: absolute; z-index: 4; pointer-events: none; filter: drop-shadow(0 12px 24px rgba(16,42,89,.25)); }
.hc-badge.hb-coin, .hc-badge.hb-cart, .hc-badge.hb-gift { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; }
.hc-badge.hb-coin svg, .hc-badge.hb-cart svg, .hc-badge.hb-gift svg { width: 28px; height: 28px; }
.hc-badge.hb-coin { background: linear-gradient(135deg, #5b8cff, #7a5cff); }
.hc-badge.hb-cart { background: linear-gradient(135deg, #ff89b0, #ff5a8a); }
.hc-badge.hb-gift { background: linear-gradient(135deg, #a07bff, #7c5cff); }
.hc-badge.hb-card { width: 86px; }
.hc-badge.hb-gc { width: 80px; }
/* 위치 + 둥실 애니메이션 (floatY 재사용) */
.hc-badge.hb-coin { left: -26px; top: 48px; --r: 0deg; animation: floatY 4.6s ease-in-out infinite; }
.hc-badge.hb-cart { right: -22px; top: -22px; --r: 0deg; animation: floatY 5.2s ease-in-out infinite .4s; }
.hc-badge.hb-gift { right: -30px; bottom: 104px; --r: 0deg; animation: floatY 4.8s ease-in-out infinite .8s; }
.hc-badge.hb-card { left: -36px; bottom: -22px; --r: -14deg; animation: floatY 5.6s ease-in-out infinite .2s; }
.hc-badge.hb-gc { right: -18px; bottom: -12px; --r: 11deg; animation: floatY 5s ease-in-out infinite .6s; }

/* ===== Section base ===== */
.section { padding: 92px 0; }
.section.alt { background: #fff; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-tag { display: inline-block; font-weight: 700; font-size: 14px; color: var(--po); background: var(--box-bg); border: 1px solid #d8e8ff; padding: 6px 15px; border-radius: 999px; margin-bottom: 16px; }
.sec-head h2 { font-weight: 800; font-size: clamp(26px, 3.4vw, 40px); color: var(--navy); line-height: 1.28; }
.sec-head p { margin-top: 14px; font-size: 17px; color: var(--ink-2); }

/* ===== Why / Features ===== */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--bdrs-lg); padding: 30px 26px; transition: var(--trans); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe3ff; }
.feat-card .ic { width: 58px; height: 58px; border-radius: 16px; background: var(--box-bg); color: var(--po); display: grid; place-items: center; margin-bottom: 20px; }
.feat-card .ic svg { width: 30px; height: 30px; }
.feat-card h3 { font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.feat-card p { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; }

/* ===== 구입 / 판매 방법 ===== */
.bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.bs-card { background: #fff; border: 1px solid var(--line); border-radius: var(--bdrs-lg); padding: 36px 32px; transition: var(--trans); }
.bs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfe3ff; }
.bs-tag { display: inline-block; font-weight: 700; font-size: 14px; padding: 7px 17px; border-radius: 999px; margin-bottom: 18px; }
.bs-tag.buy { color: #097CFF; background: #eaf3ff; }
.bs-tag.sell { color: #e0443d; background: #ffeceb; }
.bs-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.bs-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.bs-steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: #3a4655; font-weight: 500; line-height: 1.5; }
.bs-steps li b { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: var(--box-bg); color: var(--po); font-family: 'Paperlogy', sans-serif; font-weight: 800; font-size: 14px; display: grid; place-items: center; }
.bs-card .btn { width: 100%; }
.gc-title { text-align: center; font-size: 23px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }

/* ===== 취급 상품권 ===== */
.gc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gc-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--bdrs);
  padding: 26px 20px; text-align: center; transition: var(--trans);
}
.gc-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: #cfe3ff; }
.gc-item .gc-ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(9,124,255,.12), rgba(0,217,255,.12)); color: var(--po); }
.gc-item .gc-ic svg { width: 28px; height: 28px; }
.gc-item b { display: block; font-size: 16.5px; font-weight: 700; color: var(--navy); }
.gc-item span { font-size: 13.5px; color: var(--ink-2); }

/* ===== Process ===== */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.proc-step { background: #fff; border: 1px solid var(--line); border-radius: var(--bdrs-lg); padding: 30px 24px; text-align: center; position: relative; }
.proc-step .num { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; background: var(--po); color: #fff; font-family: 'Paperlogy', sans-serif; font-weight: 800; font-size: 19px; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(9,124,255,.3); }
.proc-step h3 { font-size: 18.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.proc-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.proc-step .arrow { position: absolute; right: -19px; top: 52px; color: #c3d6ef; z-index: 2; }
.proc-step .arrow svg { width: 26px; height: 26px; }

/* ===== 상담 채널 안내 바 ===== */
.consult-bar { margin-top: 46px; background: var(--box-bg); border: 1px solid #dceaff; border-radius: var(--bdrs-lg); padding: 28px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.consult-bar .cb-text b { font-family: 'Paperlogy', sans-serif; font-weight: 700; font-size: 21px; color: var(--navy); display: block; margin-bottom: 4px; }
.consult-bar .cb-text span { font-size: 15px; color: var(--ink-2); }
.consult-bar .cb-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consult-bar .cb-actions .btn { padding: 13px 24px; font-size: 15.5px; }

/* ===== CTA band ===== */
.cta-band {
  background:
    radial-gradient(700px 400px at 85% 120%, rgba(0,217,255,.4), transparent 60%),
    linear-gradient(120deg, var(--po) 0%, var(--po-deep) 70%);
  color: #fff; border-radius: 28px; padding: 56px 50px; text-align: center;
  box-shadow: 0 30px 60px rgba(9,124,255,.3); position: relative; overflow: hidden;
}
.cta-band h2 { font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.3; }
.cta-band p { margin: 16px auto 0; font-size: 17.5px; opacity: .94; max-width: 560px; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.cta-band .hours { margin-top: 22px; font-size: 15px; opacity: .9; display: inline-flex; align-items: center; gap: 8px; }
.cta-band .hours svg { width: 18px; height: 18px; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--bdrs); overflow: hidden; transition: var(--trans); }
.faq-item.open { border-color: #cfe3ff; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 22px 24px; background: none; border: 0; cursor: pointer; text-align: left; font-family: 'Pretendard', sans-serif; }
.faq-q .q-mark { font-family: 'Paperlogy', sans-serif; font-weight: 800; font-size: 19px; color: var(--po); flex-shrink: 0; }
.faq-q .q-text { flex: 1; font-size: 17px; font-weight: 600; color: var(--navy); }
.faq-q .chev { color: #9aa6b4; transition: var(--trans); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); color: var(--po); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner-a { padding: 0 24px 24px 56px; font-size: 15.5px; color: var(--ink-2); line-height: 1.7; }

/* ===== Footer ===== */
.footer { background: var(--navy); color: #c4ccda; padding: 60px 0 40px; }
.footer .f-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .f-logo-box { display: inline-block; background: #fff; padding: 12px 18px; border-radius: 12px; margin-bottom: 16px; }
.footer .f-logo-box img { height: 30px; display: block; }
.footer .f-logo p { font-size: 14.5px; color: #9aa6b4; max-width: 320px; line-height: 1.6; }
.f-contact { text-align: right; }
.f-contact .f-tel { font-family: 'Paperlogy', sans-serif; font-weight: 800; font-size: 28px; color: #fff; }
.f-contact .f-chat { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: #fff; font-weight: 700; background: var(--po); padding: 10px 20px; border-radius: 999px; transition: var(--trans); }
.f-contact .f-chat:hover { background: var(--po-deep); }
.f-contact .f-chat svg { width: 18px; height: 18px; }
.f-info { margin-top: 26px; font-size: 13.5px; line-height: 1.9; color: #8b95a6; }
.f-info span { margin-right: 8px; }
.f-copy { margin-top: 18px; font-size: 13px; color: #6b7587; }

/* ===== Floating ===== */
.floating { position: fixed; right: 22px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.22); transition: var(--trans); position: relative; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn.chat { background: linear-gradient(135deg, var(--po), var(--po-cyan)); }
.float-btn.tel { background: var(--navy); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn .f-label { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--trans); }
.float-btn .f-label::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy); }
.float-btn:hover .f-label { opacity: 1; right: 78px; }
.float-pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--po); opacity: .55; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .feat-grid, .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-step .arrow { display: none; }
}
@media (max-width: 860px) {
  .gnb { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .tel-top { display: none; }
  .hero { padding: 120px 0 64px; }
  .hero .inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { order: 2; }
  .mobile-menu { display: block; }
  /* 모바일: 동영상 위 텍스트 가독성 위해 오버레이 강화 */
  .hero-overlay { background: linear-gradient(180deg, rgba(8,18,44,.84) 0%, rgba(9,26,62,.82) 100%); }
  /* 플로팅 아이콘: 좁은 화면에선 일부만, 작게 */
  .hc-badge.hb-gift, .hc-badge.hb-gc { display: none; }
  .hc-badge.hb-coin, .hc-badge.hb-cart { width: 46px; height: 46px; }
  .hc-badge.hb-coin svg, .hc-badge.hb-cart svg { width: 22px; height: 22px; }
  .hc-badge.hb-coin { left: -14px; top: 34px; }
  .hc-badge.hb-cart { right: -14px; top: -16px; }
  .hc-badge.hb-card { width: 66px; left: -16px; bottom: -16px; }
  .bs-grid { grid-template-columns: 1fr; }
  .consult-bar { flex-direction: column; align-items: flex-start; }
  .consult-bar .cb-actions { width: 100%; }
  .consult-bar .cb-actions .btn { flex: 1; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .feat-grid, .gc-grid, .proc-grid { grid-template-columns: 1fr; }
  .gc-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 40px 24px; border-radius: 22px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1; }
  .footer .f-top { flex-direction: column; }
  .f-contact { text-align: left; }
  .hero-trust { gap: 20px; }
  .hero-trust strong { font-size: 22px; }
}

/* ===== Mobile menu ===== */
.mobile-menu { display: none; position: fixed; inset: 76px 0 auto 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: var(--trans); }
.mobile-menu.active { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu ul { padding: 12px 22px 20px; }
.mobile-menu li a { display: block; padding: 15px 4px; font-weight: 600; font-size: 17px; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu .mm-cta { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu .mm-cta .btn { flex: 1; padding: 13px; font-size: 15px; }
