/* ==========================================================
   Webens — 스타일
   ========================================================== */
:root {
  --accent: #2B45FF;
  --accent-soft: color-mix(in srgb, var(--accent) 35%, #ffffff);
  --ink: #111111;
  --bg: #f2f2f2;
  --soft: #f7f7f7;
  --white: #ffffff;
  --muted: #555555;
  --muted-2: #777777;
  --gray: #9a9a9a;
  --line: #ececec;
  --red: #FF3B30;
  --care: #7F92FF;
  --r-xl: 36px;
  --r-lg: 22px;
  --gutter: 40px;
  --gap-xl: clamp(64px, 6.6vw, 96px);
  --ez: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font: 'IBM Plex Sans KR', system-ui, -apple-system, 'Malgun Gothic', sans-serif;
  --font-logo: 'Archivo', 'IBM Plex Sans KR', sans-serif;
  --fs-h2: clamp(40px, 5vw, 72px);
  --fs-band: clamp(28px, 3.9vw, 56px);
  --fs-h4: clamp(28px, 2.9vw, 42px);
  --fs-body: clamp(16px, 1.32vw, 19px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; word-break: keep-all; overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: 104px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 18px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 700; }
.skip:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: var(--gutter); }
.card { background: var(--white); border-radius: var(--r-xl); }

/* 로고 */
.logo { display: inline-flex; align-items: flex-end; gap: 3px; font-family: var(--font-logo); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.logo-dot { display: inline-block; width: 0.2em; height: 0.2em; border-radius: 50%; background: var(--accent); }
.brand { font-family: var(--font-logo); font-weight: 900; letter-spacing: -0.045em; white-space: nowrap; }
.brand .logo-dot { margin: 0 0.12em 0 0.05em; vertical-align: baseline; }
.care-chip { display: inline-block; padding: 0 0.18em 0.04em; border-radius: 0.16em; background: var(--accent); color: #fff; line-height: 1; }
.dot-end { display: inline-block; width: 0.2em; height: 0.2em; margin-left: 0.08em; border-radius: 50%; background: var(--accent); }

/* ---------- 공통 애니메이션 ---------- */
@keyframes kIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes kLine { from { transform: translateY(115%) skewY(6deg); } to { transform: none; } }
@keyframes kPop { 0% { opacity: 0; transform: scale(0); } 70% { transform: scale(1.12); } 100% { opacity: 1; transform: scale(1); } }
@keyframes kBlink { 0%, 100% { opacity: 0.15; } 50% { opacity: 1; } }
@keyframes kGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes kFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.a-in { animation: kIn 800ms var(--ez) both; }
.a-pop { animation: kPop 700ms cubic-bezier(0.3, 1.3, 0.5, 1) both; }
.a-fade { animation: kFade 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.ln { display: block; overflow: hidden; padding: 0.1em 0.2em 0.12em; margin: -0.1em -0.2em -0.12em; }
.ln > span { display: inline-block; animation: kLine 950ms var(--ez) both; }

/* 스크롤해서 보일 때 애니메이션 시작 */
.js [data-reveal]:not(.is-in),
.js [data-reveal]:not(.is-in) * { animation-play-state: paused !important; }

/* 이어짐 점 3개 */
.blink3 { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-block: 24px; }
.blink3 span { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); animation: kBlink 1.2s ease-in-out infinite; }
.blink3 span:nth-child(2) { animation-delay: 250ms; }
.blink3 span:nth-child(3) { animation-delay: 500ms; }

/* 검은 띠 제목 */
.band { margin: 0; padding: clamp(44px, 5vw, 72px) var(--gutter) clamp(46px, 5.3vw, 76px); background: var(--ink); color: #fff; text-align: center; font-size: var(--fs-band); line-height: 1.25; font-weight: 700; letter-spacing: -0.035em; }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-inline: 56px; }
.h2 { margin: 0; font-size: var(--fs-h2); line-height: 1.14; font-weight: 700; letter-spacing: -0.035em; }
.head-aside { margin: 0 0 12px; text-align: right; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; font-weight: 500; color: var(--muted); }
.head-aside b { font-size: clamp(28px, 2.6vw, 38px); font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 60px; padding: 0 28px; border-radius: 999px; font-size: 18px; font-weight: 700; border: none; cursor: pointer; transition: transform 250ms ease, background 300ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { transition: transform 350ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.btn:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }

/* ==========================================================
   헤더
   ========================================================== */
.site-head { position: sticky; top: 0; z-index: 50; padding: calc(20px + env(safe-area-inset-top, 0px)) var(--gutter) 0; max-width: 1440px; margin: 0 auto; }
.nav { height: 80px; padding: 0 20px 0 40px; display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.6); -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 999px; box-shadow: 0 8px 32px rgba(17, 17, 17, 0.08); }
.nav .logo { font-size: 28px; }
.nav .logo .logo-dot { width: 9px; height: 9px; margin-bottom: 3px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 16px; font-weight: 500; }
.nav { position: relative; }
.nav-links a:not(.nav-cta) { position: relative; padding: 6px 0; color: #444; transition: color 250ms ease; }
.nav-links a:not(.nav-cta):hover, .nav-links a.is-active { color: var(--ink); }
/* 로고의 점이 메뉴를 따라다님 */
.nav-dot { display: none; position: absolute; left: 0; top: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); pointer-events: none; z-index: 2; transition: transform 520ms cubic-bezier(0.3, 1.35, 0.5, 1); }
.has-navdot .nav-dot { display: block; }
.has-navdot .nav .logo .logo-dot { visibility: hidden; }
.nav-cta { height: 44px; padding: 0 22px; display: flex; align-items: center; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; transition: background 250ms ease; }
.nav-cta:hover { background: var(--accent); }
.burger { display: none; width: 48px; height: 48px; border: none; border-radius: 50%; background: var(--ink); cursor: pointer; position: relative; }
.burger span { position: absolute; left: 15px; right: 15px; height: 2px; border-radius: 2px; background: #fff; transition: transform 300ms var(--ez), opacity 200ms ease; }
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mnav { margin-top: 10px; padding: 12px; border-radius: 28px; background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); box-shadow: 0 16px 40px rgba(17, 17, 17, 0.12); display: flex; flex-direction: column; }
.mnav a { padding: 14px 18px; border-radius: 16px; font-size: 18px; font-weight: 600; }
.mnav a:hover { background: var(--bg); }
.mnav .nav-cta { margin-top: 6px; height: 54px; justify-content: center; }

/* ==========================================================
   히어로
   ========================================================== */
.hero { padding-top: 20px; padding-bottom: 40px; }
.hero-card { position: relative; width: 100%; height: 760px; border-radius: var(--r-xl); overflow: hidden; background: var(--hero-bg, #fff); transition: background 800ms ease;
  --hero-bg: #fff; --hero-fg: #111; --hero-sub: #444; --hero-circle: var(--accent); --dash-on: #111; --dash-off: #d0d0d0; }
.hero-stage { position: absolute; left: 0; top: 0; width: 1360px; height: 760px; transform-origin: 0 0; }
.hero-logo-box { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero-logo { margin: 0; display: flex; align-items: flex-end; font-family: var(--font-logo); font-weight: 900; font-size: 164px; line-height: 0.8; letter-spacing: -0.055em; color: var(--ink); transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 600ms ease, filter 600ms ease; }
.hero-logo i { width: 0.195em; height: 0.195em; margin: 0 0 0.012em 0.073em; flex-shrink: 0; border-radius: 50%; opacity: 0; }
.hero-logo.is-out { opacity: 0; filter: blur(8px); transform: scale(1.08); }
.is-mobile .hero-logo { font-size: 70px; }
.hero-circle { position: absolute; border-radius: 50%; overflow: hidden; background: var(--hero-circle); z-index: 1; }
.hero-circle-inner { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
.hero-text { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-text a, .hero-text button { pointer-events: auto; }
.hero-dots { position: absolute; top: 30px; right: 40px; display: flex; gap: 4px; z-index: 3; opacity: 0; transition: opacity 500ms ease; }
.hero-dots.is-on { opacity: 1; }
.hero-dots button { width: 40px; height: 44px; padding: 0; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hero-dots button span { display: block; width: 32px; height: 3px; border-radius: 2px; background: var(--dash-off); transition: background 300ms ease; }
.hero-dots button[aria-current="true"] span { background: var(--dash-on); }
.is-mobile .hero-dots { top: 10px; right: 14px; gap: 0; }
.is-mobile .hero-dots button { width: 30px; }
.is-mobile .hero-dots button span { width: 22px; }
.is-mobile .ht { top: 58px; }

/* 히어로 문구 */
.ht { position: absolute; display: flex; align-items: center; justify-content: center; }
.ht-in { display: flex; flex-direction: column; gap: 22px; }
.ht-big { margin: 0; font-size: 72px; line-height: 1.14; font-weight: 700; letter-spacing: -0.035em; color: var(--hero-fg); }
.ht-sub { margin: 0; font-size: 26px; line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; color: var(--hero-sub); }
.ht0 { left: 0; top: 0; width: 710px; height: 760px; padding-top: 20px; }
.ht1 { left: 0; right: 0; top: 70px; text-align: center; }
.ht1 .ht-in { align-items: center; gap: 20px; }
.ht2 { left: 650px; top: 0; width: 710px; height: 760px; padding-top: 40px; }
.ht2 .ht-in { max-width: 600px; }
.ht3 { left: 0; top: 0; width: 770px; height: 760px; padding-top: 40px; }
.is-mobile .ht { left: 26px; right: 26px; top: 48px; width: auto; height: auto; padding: 0; justify-content: flex-start; }
.is-mobile .ht1 { justify-content: center; }
.is-mobile .ht-in { gap: 14px; }
.is-mobile .ht-big { font-size: 44px; }
.is-mobile .ht-sub { font-size: 18px; }

@keyframes wbUnder { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes wbDot { 0% { transform: scale(0); } 60% { transform: scale(1.5); } 100% { transform: scale(1); } }
@keyframes wbBlur { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes wbSweep { from { background-position: 100% 0; } to { background-position: 0 0; } }
@keyframes wbInk { from { color: #ffffff; } to { color: var(--accent); } }
.wb-line { display: block; overflow: hidden; padding: 0.22em 0.25em 0.14em; margin: -0.22em -0.25em -0.14em; }
.wb-line > span { display: inline-block; animation: kLine 950ms var(--ez) both; }
.wb-d1 { animation-delay: 120ms !important; } .wb-d3 { animation-delay: 400ms !important; }
/* 형광펜 밑줄: 글자 아래쪽에 옅은 띠가 왼쪽부터 그어짐 */
.wb-mark { position: relative; display: inline-block; z-index: 0; }
.wb-mark::after { content: ""; position: absolute; left: -0.06em; right: -0.06em; bottom: 0.08em; height: 0.12em; border-radius: 0.06em; background: color-mix(in srgb, var(--hero-circle) 45%, transparent); z-index: -1; transform-origin: left center; animation: wbUnder 700ms cubic-bezier(0.6, 0, 0.2, 1) 1050ms both; }
.wb-dot { display: inline-block; width: 0.2em; height: 0.2em; margin-left: 0.08em; border-radius: 50%; background: var(--hero-circle); animation: wbDot 650ms cubic-bezier(0.3, 1.4, 0.5, 1) 850ms both; }
.wb-blur { animation: wbBlur 1000ms cubic-bezier(0.2, 0.7, 0.2, 1) 650ms both; }
.wb-sweep { display: inline-block; background-image: linear-gradient(90deg, var(--hero-circle) 50%, var(--hero-fg) 50%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: wbSweep 900ms cubic-bezier(0.6, 0, 0.2, 1) 1000ms both; }
.wb-ink { position: relative; display: inline-block; z-index: 0; animation: wbInk 300ms ease 1350ms both; }
.wb-box { position: absolute; left: -0.1em; right: -0.1em; top: 0.06em; bottom: 0.02em; border-radius: 0.14em; background: #fff; z-index: -1; transform-origin: left center; animation: wbUnder 550ms cubic-bezier(0.6, 0, 0.2, 1) 1000ms both; }

/* 원 안 장면 */
@keyframes wbPop { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: none; } }
@keyframes wbRingK { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes wbChk { 0% { background: transparent; color: transparent; transform: scale(0.9); } 55% { background: #fff; color: var(--accent); transform: scale(1.3); } 100% { background: #fff; color: var(--accent); transform: scale(1); } }
@keyframes wbTxt { from { opacity: 0.4; } to { opacity: 1; } }
@keyframes wbFlash { 0% { opacity: 0; } 35% { opacity: 0.28; } 100% { opacity: 0; } }
@keyframes wbCardIn { from { opacity: 0; transform: perspective(900px) rotateY(-120deg) rotateX(30deg) translateY(80px) scale(0.7); } to { opacity: 1; transform: none; } }
@keyframes wbCardSheen { 0%, 55% { background-position: 160% 0; } 100% { background-position: -60% 0; } }
@keyframes wbSway { 0%, 100% { transform: perspective(900px) rotateY(-24deg) rotateX(11deg) translateY(0); } 50% { transform: perspective(900px) rotateY(-2deg) rotateX(3deg) translateY(-16px); } }
@keyframes wbShadowK { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(0.78); opacity: 0.35; } }
.wb-pop { animation: wbPop 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.wb-ringp { stroke-dasharray: 1; animation: wbRingK 2900ms cubic-bezier(0.45, 0, 0.4, 1) 900ms both; }
@keyframes wbRowIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.wb-track { animation: wbTrackIn 700ms ease both; }
@keyframes wbTrackIn { from { opacity: 0; } to { opacity: 1; } }
.hv-check > div { animation: wbRowIn 520ms var(--ez) both; }
.hv-check > div:nth-child(1) { animation-delay: 150ms; } .hv-check > div:nth-child(2) { animation-delay: 220ms; }
.hv-check > div:nth-child(3) { animation-delay: 290ms; } .hv-check > div:nth-child(4) { animation-delay: 360ms; }
.hv-check > div:nth-child(5) { animation-delay: 430ms; } .hv-check > div:nth-child(6) { animation-delay: 500ms; }
.hv-check > div:nth-child(7) { animation-delay: 570ms; } .hv-check > div:nth-child(8) { animation-delay: 640ms; }
.wb-flash { position: absolute; inset: 0; border-radius: 50%; background: #fff; opacity: 0; animation: wbFlash 900ms ease 3800ms both; }
.hv-check { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(2, max-content); grid-auto-rows: max-content; align-content: center; justify-content: center; column-gap: 44px; row-gap: 20px; color: #fff; }
.hv-check > div { display: flex; align-items: center; gap: 14px; }
.wb-chk { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; color: transparent; animation: wbChk 450ms cubic-bezier(0.3, 1.4, 0.5, 1) both; }
.wb-txt { font-size: 27px; font-weight: 700; letter-spacing: -0.02em; animation: wbTxt 400ms ease both; }
.hv-fan { position: absolute; left: 0; right: 0; top: 40px; display: flex; justify-content: center; }
.hv-fan-box { width: 400px; height: 262px; position: relative; }
.fan-card { width: 150px; height: 210px; padding: 14px; border-radius: 16px; background: #fff; display: flex; flex-direction: column; gap: 8px; position: absolute; transition: left 700ms cubic-bezier(0.3, 1.3, 0.5, 1), top 700ms cubic-bezier(0.3, 1.3, 0.5, 1), transform 700ms cubic-bezier(0.3, 1.3, 0.5, 1), box-shadow 500ms ease; }
.fan-card .f-t { height: 10px; width: 50%; border-radius: 5px; background: var(--ink); }
.fan-card .f-b { height: 64px; border-radius: 8px; }
.fan-card .f-l { height: 7px; border-radius: 4px; background: #ddd; }
.fan-card .f-btn { margin-top: auto; height: 20px; width: 56px; border-radius: 999px; }
.fan-card .f-pick { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; position: absolute; right: -14px; top: -14px; display: flex; align-items: center; justify-content: center; transition: opacity 300ms ease 250ms, transform 450ms cubic-bezier(0.3, 1.6, 0.5, 1) 250ms; }
.hv-dev { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hv-dev-box { height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dev-screen { position: relative; border: 8px solid var(--ink); background: #fff; overflow: hidden; transition: width 700ms cubic-bezier(0.65, 0, 0.25, 1), height 700ms cubic-bezier(0.65, 0, 0.25, 1), border-radius 700ms cubic-bezier(0.65, 0, 0.25, 1), border-width 700ms ease; }
/* 기기 구분용 노치(폰)·홈 표시(폰 바 / 태블릿 링) */
.dev-notch { position: absolute; left: 50%; top: 7px; width: 34px; height: 5px; border-radius: 3px; background: var(--ink); transform: translateX(-50%); opacity: 0; transition: opacity 400ms ease; }
.dev-home { position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%); background: var(--ink); opacity: 0; transition: opacity 400ms ease, width 400ms ease, height 400ms ease, border-radius 400ms ease, background 400ms ease, border-width 400ms ease; }
.dev-screen > div { padding: 10px; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.dev-top { display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.dev-top > span:first-child { width: 40px; height: 7px; border-radius: 4px; background: var(--ink); }
.dev-top > span:last-child { display: flex; gap: 5px; }
.dev-top > span:last-child i { width: 14px; height: 4px; border-radius: 2px; background: #cfcfcf; }
.dev-hero { flex: 0 0 38%; border-radius: 8px; background: var(--accent); }
.dev-title { width: 70%; height: 8px; border-radius: 4px; background: var(--ink); flex-shrink: 0; }
.dev-grid { flex-grow: 1; display: grid; gap: 6px; }
.dev-grid i { border-radius: 6px; background: #eee; }
.dev-base { border-radius: 0 0 10px 10px; background: var(--ink); transition: all 600ms cubic-bezier(0.65, 0, 0.25, 1); }
.dev-neck { width: 26px; background: var(--ink); transition: all 600ms cubic-bezier(0.65, 0, 0.25, 1); }
.dev-stand { width: 120px; height: 8px; border-radius: 4px; background: var(--ink); transition: opacity 600ms ease; }
.hv-card { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; perspective: 1100px; }
.hv-card-in { display: flex; flex-direction: column; align-items: center; gap: 34px; transform-style: preserve-3d; animation: wbCardIn 1300ms cubic-bezier(0.3, 1.35, 0.5, 1) 200ms both; }
.mcard { width: 320px; height: 202px; border-radius: 20px; position: relative; overflow: hidden; color: #fff; background: linear-gradient(140deg, #34343C 0%, #18181D 50%, #25252C 100%); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 34px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
.hv-card .mcard { transform: perspective(900px) rotateY(-24deg) rotateX(11deg); animation: wbSway 4.2s ease-in-out 1.5s infinite; }
.mcard-sheen { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%); background-size: 260% 100%; animation: wbCardSheen 2.8s ease-in-out 1.2s infinite; }
.mcard-ring { position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); }
.mcard-top { position: absolute; left: 22px; top: 22px; right: 22px; display: flex; justify-content: space-between; align-items: flex-start; }
.mcard-logo { font-family: var(--font-logo); font-weight: 900; font-size: 26px; line-height: 1; letter-spacing: -0.045em; display: flex; align-items: flex-end; gap: 3px; }
.mcard-logo .logo-dot { width: 7px; height: 7px; margin-bottom: 3px; }
.mcard-logo em { font-style: normal; margin-left: 5px; color: var(--care); }
.mcard-chip { width: 30px; height: 23px; border-radius: 5px; background: linear-gradient(135deg, #C9CBD2, #8E9099); opacity: 0.85; }
.mcard-bottom { position: absolute; left: 22px; bottom: 20px; display: flex; flex-direction: column; gap: 5px; }
.mcard-bottom span:first-child { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: #8f8f96; }
.mcard-bottom span:last-child { font-family: var(--font-logo); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; color: #d6d6dc; }
.mcard-led { position: absolute; right: 20px; bottom: 20px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.mcard-shadow { width: 240px; height: 22px; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, 0.6), transparent); animation: wbShadowK 4.2s ease-in-out 1.5s infinite; }

/* ==========================================================
   2. 이런 홈페이지 자주 보이시죠?
   ========================================================== */
.marquee-card { margin-top: var(--gap-xl); padding: 24px 0; overflow: hidden; }
.marquee-mask { overflow: hidden; }
@keyframes kMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { display: flex; width: max-content; zoom: 1.75; animation: kMarquee 34s linear infinite; }
.marquee-group { display: flex; gap: 16px; padding-right: 16px; }
.fake { margin: 0; width: 440px; flex-shrink: 0; height: 275px; border-radius: 16px; overflow: hidden; position: relative; background: #eee; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06); }
.fake img { width: 100%; height: 100%; object-fit: cover; }
.bad-tag { position: absolute; left: 12px; bottom: 12px; z-index: 3; padding: 7px 12px 7px 8px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); animation: kPop 650ms cubic-bezier(0.3, 1.2, 0.5, 1) both; }
.bad-tag::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / 9px no-repeat; }
[aria-hidden="true"] .bad-tag { animation: none; }

.think { margin-top: var(--gap-xl); display: flex; flex-direction: column; align-items: center; }
@keyframes phTilt { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
.face-big { display: block; width: 150px; height: 150px; animation: phTilt 2.4s ease-in-out infinite; }
.think .blink3 { margin-top: 16px; }
.think + .band, .blink3 + .band { margin-top: 24px; }

.cmp-list { margin-top: var(--gap-xl); display: flex; flex-direction: column; gap: 32px; }
.cmp { display: grid; grid-template-columns: 54.4fr 45.6fr; min-height: 580px; overflow: hidden; }
.cmp.rev .cmp-vis { order: 2; }
.cmp-vis { background: var(--soft); display: flex; align-items: center; justify-content: center; padding: 40px; }
.fit { width: 100%; position: relative; margin: 0 auto; }
.fit > * { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
.cmp-vis .fit { max-width: 600px; }
.mock { width: 600px; height: 380px; border-radius: 22px; background: #fff; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.10); overflow: hidden; }
.mock-bar { height: 44px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #eee; }
.mock-bar span { padding: 5px 16px; border-radius: 999px; background: var(--bg); font-size: 12px; font-weight: 500; color: #999; }
.mock-body { width: 386px; zoom: 1.5544; }
.mock-body > div { height: 216px; background: #f4f4f4; display: flex; align-items: center; justify-content: center; overflow: hidden; font-family: Arial, 'Malgun Gothic', sans-serif; }
.mock-shot { position: relative; height: 336px; background: #f4f4f4; }
.mock-shot.slop { display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; font-family: Arial, 'Malgun Gothic', sans-serif; }
.crop { position: absolute; border-radius: 10px; background-repeat: no-repeat; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.06); }
.mock-ring { position: absolute; left: 0; top: 0; pointer-events: none; }
@keyframes phRing { from { stroke-dashoffset: 1400; } to { stroke-dashoffset: 0; } }
.mock-ring ellipse { fill: none; stroke: var(--red); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1400; animation: phRing 1100ms cubic-bezier(0.6, 0, 0.2, 1) 600ms both; }
.cmp-txt { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.cmp-num { font-size: clamp(44px, 4.4vw, 64px); line-height: 1; font-weight: 700; letter-spacing: -0.025em; color: var(--accent); }
.cmp-title { margin: 20px 0 0; font-size: var(--fs-h4); line-height: 1.22; font-weight: 700; letter-spacing: -0.035em; }
.cmp-txt p { margin: 18px 0 0; font-size: var(--fs-body); line-height: 1.65; font-weight: 500; color: var(--muted); }
.cmp-say { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.cmp-say > div { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 20px; font-size: var(--fs-body); }
.cmp-q { background: var(--bg); font-weight: 700; }
.cmp-q svg { width: 40px; height: 40px; flex-shrink: 0; }
.cmp-a { background: var(--ink); color: #fff; font-weight: 500; }
.cmp-a::before { content: ""; width: 14px; height: 14px; margin: 0 13px; flex-shrink: 0; border-radius: 50%; background: var(--accent); }

/* 첫인상 → 신뢰 → 문의 */
.flow { position: relative; margin-top: var(--gap-xl); padding: 0 40px; height: 540px; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; }
.flow-line, .flow-line-on { position: absolute; left: 16.66%; right: 16.66%; top: 230px; height: 4px; border-radius: 4px; background: #eee; }
.flow-line-on { background: var(--accent); transform-origin: left center; transform: scaleX(0); transition: transform 900ms cubic-bezier(0.6, 0, 0.2, 1); }
.flow-step { position: relative; display: flex; flex-direction: column; align-items: center; }
.flow-ball-box { height: 400px; display: flex; flex-direction: column; align-items: center; padding-top: calc(230px - var(--d) / 2); }
.flow-ball { width: var(--d); height: var(--d); flex-shrink: 0; border-radius: 50%; background: var(--bg); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: clamp(26px, 2.5vw, 36px); font-weight: 700; letter-spacing: -0.03em; transition: background 700ms ease, color 700ms ease, transform 700ms cubic-bezier(0.3, 1.4, 0.5, 1), box-shadow 700ms ease; animation: kPop 800ms cubic-bezier(0.3, 1.3, 0.5, 1) both; }
.flow-cap { position: absolute; top: 400px; left: 0; right: 0; margin: 0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; font-weight: 500; text-align: center; color: #999; transition: color 700ms ease; }
.flow-step.is-on .flow-ball { background: var(--ink); color: #fff; }
.flow-step.is-on:last-child .flow-ball { background: var(--accent); }
.flow-step.is-on .flow-cap { color: var(--ink); }
.flow-step.is-cur .flow-ball { transform: scale(1.06); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16); }

/* AI 거부감 조사 */
.stats { margin-top: var(--gap-xl); padding: 56px 48px 48px; }
.stats-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.stat { padding: 36px 32px 32px; border-radius: 28px; background: var(--bg); display: flex; flex-direction: column; transition: background 500ms ease, color 500ms ease, transform 600ms cubic-bezier(0.3, 1.3, 0.5, 1), box-shadow 600ms ease; }
.stat-num { font-size: clamp(64px, 7vw, 104px); line-height: 1; font-weight: 700; letter-spacing: -0.045em; color: #c9c9c9; transition: color 500ms ease; font-variant-numeric: tabular-nums; }
.stat-label { margin: 22px 0 0; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; font-weight: 500; color: #9a9a9a; transition: color 500ms ease; }
.stat-label b { font-weight: 700; }
.stat-src { margin-top: auto; padding-top: 28px; font-size: 13px; font-weight: 500; color: #9a9a9a; text-decoration: underline; text-decoration-color: rgba(0, 0, 0, 0.15); text-underline-offset: 3px; transition: color 300ms ease; }
.stat-src:hover { color: var(--ink); }
.stat.is-on .stat-num { color: var(--ink); }
.stat.is-on .stat-label { color: #444; }
.stat.is-cur { background: var(--ink); color: #fff; transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18); }
.stat.is-cur .stat-num { color: #fff; }
.stat.is-cur .stat-label { color: #cfcfcf; }
.stat.is-cur .stat-label b { color: #fff; }
.stat.is-cur .stat-src { color: #8f8f96; }
.stat.is-cur .stat-src:hover { color: #fff; }
.stat:first-child.is-cur { background: var(--accent); }
.stat:first-child.is-cur .stat-label { color: #DDE2FF; }
.stat:first-child.is-cur .stat-src { color: #B9C3FF; }
.stats-foot { margin: 36px 0 0; text-align: center; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.55; font-weight: 700; letter-spacing: -0.02em; }
.stats-foot em { font-style: normal; color: var(--accent); }
.pin:not(.pin-off) .stats { margin-top: 0; }
@media (max-width: 1000px) {
  .stats { padding: 28px 20px; }
  .stats-row { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .stat { padding: 20px 22px; display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 18px; align-items: center; }
  .stat-num { font-size: 48px; grid-row: span 2; min-width: 3.1em; }
  .stat-label { margin: 0; font-size: 16px; }
  .stat-src { padding-top: 6px; font-size: 11px; }
  .stat.is-cur { transform: none; }
  .stats-foot { margin-top: 22px; font-size: 16px; }
}

.rules { margin-top: var(--gap-xl); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rule { position: relative; overflow: hidden; min-height: 320px; padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; }
.rule-fill { position: absolute; right: 40px; top: 40px; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); transition: transform 900ms cubic-bezier(0.7, 0, 0.2, 1); z-index: 0; }
.rule:hover .rule-fill { transform: scale(22); }
.rule h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(26px, 2.2vw, 32px); line-height: 1.3; font-weight: 700; letter-spacing: -0.03em; transition: color 500ms ease; }
.rule p { position: relative; z-index: 1; margin: 0; font-size: var(--fs-body); line-height: 1.6; font-weight: 500; color: var(--muted); transition: color 500ms ease; }
.rule:hover h3 { color: #fff; }
.rule:hover p { color: #DDE2FF; }

/* 원칙 3개: 스크롤로 하나씩 */
.pin:not(.pin-off) .rules { margin-top: 0; }
/* 고정 모드: 스크롤 진행(--f 0~1)에 맞춰 배경과 글자색이 함께 섞임 */
.pin:not(.pin-off) .rule { --f: 0; --t: 0; transition: none; will-change: transform, opacity; background: color-mix(in srgb, var(--accent) calc(var(--f) * 100%), #fff); }
.pin:not(.pin-off) .rule-fill { transform: none !important; transition: none; background: color-mix(in srgb, #fff calc(var(--f) * 100%), var(--accent)); }
.pin:not(.pin-off) .rule h3 { transition: none; color: color-mix(in srgb, #fff calc(var(--t) * 100%), var(--ink)); }
.pin:not(.pin-off) .rule p { transition: none; color: color-mix(in srgb, #DDE2FF calc(var(--t) * 100%), var(--muted)); }
.rule.is-cur h3 { color: #fff; }
.rule.is-cur p { color: #DDE2FF; }
@media (max-width: 1000px) {
  .pin:not(.pin-off) .rules { gap: 12px; }
  .pin:not(.pin-off) .rule { min-height: 0; padding: 28px 28px 26px; }
  .pin:not(.pin-off) .rule h3 { padding-right: 56px; }
}

.statement { margin: 160px 0 0; padding-bottom: 140px; font-size: clamp(34px, 5vw, 72px); line-height: 1.3; font-weight: 700; letter-spacing: -0.04em; text-align: center; }
.strike { position: relative; display: inline-block; color: #9a9a9a; }
.strike::after { content: ""; position: absolute; left: -6px; right: -6px; top: 54%; height: 0.1em; border-radius: 7px; background: var(--red); transform-origin: left center; animation: kGrow 900ms cubic-bezier(0.7, 0, 0.2, 1) 900ms both; }
.statement em { font-style: normal; color: var(--accent); }

/* ==========================================================
   3. 작업물
   ========================================================== */
.work .band { margin-top: 24px; }
.tabs { margin-top: 56px; display: flex; justify-content: center; gap: 48px; }
.tab { position: relative; height: 56px; padding: 0 4px; border: none; background: transparent; cursor: pointer; color: var(--gray); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; transition: color 300ms ease; }
.tab small { font-size: 17px; font-weight: 500; color: var(--gray); }
.tab[aria-selected="true"] { color: var(--ink); }
.tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px; background: #ddd; }
.tab.is-held[aria-selected="true"]::after { background: var(--ink); }
.tab-prog { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px; background: var(--ink); z-index: 1; transform-origin: left center; animation: kGrow 7000ms linear both; }
.work-cap { height: 40px; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 17px; font-weight: 500; color: var(--muted); animation: kIn 750ms var(--ez) both; }
.device-sw { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--bg); }
.device-sw button { padding: 6px 16px; border: none; border-radius: 999px; background: transparent; font-size: 14px; font-weight: 700; color: var(--muted-2); cursor: pointer; transition: background 250ms ease, color 250ms ease; }
.device-sw button[aria-pressed="true"] { background: var(--ink); color: #fff; }
@keyframes scTilt { from { opacity: 0; transform: perspective(1800px) rotateX(16deg) translateY(80px) scale(0.94); } to { opacity: 1; transform: none; } }
.browser-card { margin-top: 28px; padding: 24px; animation: scTilt 1300ms var(--ez) 250ms both; }
.browser { aspect-ratio: 1312 / 676; border-radius: 20px; border: 1px solid #e6e6e6; overflow: hidden; display: flex; flex-direction: column; }
.browser-bar { height: 46px; flex-shrink: 0; padding: 0 18px; display: flex; align-items: center; background: var(--soft); border-bottom: 1px solid var(--line); }
.browser-url { margin: 0 auto; height: 28px; width: min(360px, 80%); padding: 0 16px; border-radius: 999px; background: #fff; border: 1px solid #e6e6e6; display: flex; align-items: center; font-size: 13px; color: var(--muted-2); }
.browser-view { flex-grow: 1; position: relative; overflow: hidden; }
.shot { position: absolute; inset: 0; clip-path: circle(0% at 50% 100%); }
.shot.is-on, .shot.is-prev { clip-path: circle(150% at 50% 100%); }
.shot.is-on { z-index: 3; }
.shot.is-prev { z-index: 2; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.browser-card:not(.is-mobile-view) .shot img.shot-mobile { display: none; }
.browser-card.is-mobile-view .shot img.shot-pc { display: none; }
.shot-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; font-size: clamp(15px, 1.6vw, 22px); font-weight: 600; text-align: center; padding: 20px; }

/* ==========================================================
   4. 요금
   ========================================================== */
.price { padding-bottom: 60px; }
.price .sec-head { margin-top: 32px; }
.care .sec-head { margin-top: 64px; }
.plans { margin-top: 36px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.plan { position: relative; overflow: hidden; padding: 32px 36px 116px; display: flex; flex-direction: column; gap: 18px; }
.plan.dark { background: var(--ink); color: #fff; }
.plan-name { margin: 0; font-size: clamp(32px, 2.8vw, 40px); line-height: 1.1; font-weight: 700; letter-spacing: -0.035em; display: flex; align-items: flex-end; gap: 6px; }
.plan-name i { width: var(--c); height: var(--c); flex-shrink: 0; margin-bottom: 7px; border-radius: 50%; background: var(--accent); }
.plan-desc { margin: 8px 0 0; font-size: 17px; line-height: 1.5; font-weight: 500; color: #666; }
.plan.dark .plan-desc { color: #bdbdbd; }
.plan-price { padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: clamp(32px, 2.8vw, 40px); font-weight: 700; letter-spacing: -0.03em; }
.plan.dark .plan-price { border-color: #2e2e2e; }
.plan-price small { margin-left: 10px; font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--muted-2); }
.plan.dark .plan-price small { color: #9a9a9a; }
.f-vat { font-size: 13px; font-weight: 500; color: var(--muted-2); }
.plan ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; }
.plan li::before { content: ""; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.plan.dark li::before { background-color: var(--accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
.plan .btn { position: absolute; left: 36px; right: 36px; bottom: 32px; height: 56px; }
/* 낮은 화면에서도 요금 카드 3장이 한 화면에 들어오게 */
@media (min-width: 1001px) and (max-height: 860px) {
  .price .h2 { font-size: clamp(36px, 3.6vw, 52px); }
  .plans { margin-top: 28px; }
  .plan { padding-top: 28px; padding-bottom: 104px; gap: 14px; }
  .plan-name, .plan-price { font-size: clamp(28px, 2.4vw, 34px); }
  .plan-desc { font-size: 16px; }
  .plan ul { gap: 8px; }
  .plan li { font-size: 15px; }
  .plan .btn { bottom: 28px; height: 52px; }
}

.care-banner { margin-top: 16px; padding: 48px 0 40px; background: #0B0B0D; color: #fff; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr) auto; column-gap: 16px; row-gap: 32px; overflow: hidden; min-height: 440px; }
.cb-copy { grid-column: 1 / span 2; grid-row: 1; padding: 0 40px; display: flex; flex-direction: column; gap: 26px; }
.cb-copy .big { margin: 0; font-size: clamp(36px, 3.9vw, 56px); line-height: 1.16; font-weight: 700; letter-spacing: -0.035em; }
.cb-copy .lead { margin: 0; max-width: 560px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.65; font-weight: 500; color: #b4b4bb; }
.cb-copy .lead a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.cb-card { grid-column: 3; grid-row: 1 / span 2; display: flex; align-items: center; justify-content: center; }
@keyframes crFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes crCardIn { from { opacity: 0; transform: perspective(1100px) rotateY(-60deg) rotateX(20deg) translateY(40px) scale(0.9); } }
@keyframes crBlur { from { opacity: 0; filter: blur(14px); transform: translateY(10px); } to { opacity: 1; filter: none; transform: none; } }
.cb-float { perspective: 1100px; animation: crFloat 6s ease-in-out 1.6s infinite; }
.cb-in { animation: crCardIn 1300ms var(--ez) 500ms both; }
.cb-card .mcard { width: 360px; height: 227px; border-radius: 22px; transform: rotateY(-16deg) rotateX(8deg); transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.cb-card .mcard-logo { font-size: 30px; }
.cb-card .mcard-logo span { display: inline-block; animation: crBlur 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.cb-price { grid-column: 1; grid-row: 2; padding: 0 40px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.cb-price small { font-size: 20px; font-weight: 500; color: #8f8f96; }
.cb-price strong { font-size: clamp(40px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.cb-price em { font-style: normal; margin-left: 14px; font-size: 16px; font-weight: 500; color: #6f6f76; white-space: nowrap; }
.cb-btn { grid-column: 2; grid-row: 2; padding: 0 40px; }
.cb-btn .btn { width: 100%; }
.cb-btn .btn:hover { background: #e6e6ec; }

/* ==========================================================
   4-1. Webens Care
   ========================================================== */
.care { padding-bottom: 60px; }
.care-grid { margin-top: 72px; display: grid; grid-template-columns: 860fr 484fr; grid-template-rows: auto auto; gap: 16px; }
.cal { grid-row: 1 / span 2; padding: 32px; display: flex; flex-direction: column; min-height: 690px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cal-head strong { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.cal-head strong small { font-size: 18px; font-weight: 500; color: var(--gray); }
.cal-legend { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 600; color: #666; }
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-legend i { width: 10px; height: 10px; border-radius: 3px; background: var(--ink); }
.cal-legend i.fix { background: var(--accent); }
.cal-legend i.extra { background: transparent; border: 2px solid var(--red); }
.cal-week, .cal-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.cal-week { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--gray); text-align: center; }
.cal-days { margin-top: 10px; flex: 1; grid-template-rows: repeat(5, minmax(0, 1fr)); }
.cal-cell { position: relative; padding: 8px; border-radius: 14px; background: #fff; border: 2px solid #efefef; overflow: hidden; min-height: 96px; transition: background 250ms ease, border-color 250ms ease; }
.cal-cell.empty { background: transparent; border-color: transparent; }
.cal-cell b { font-size: 13px; font-weight: 700; color: #b5b5b5; }
.cal-cell.passed { background: var(--soft); }
.cal-cell.passed b { color: var(--ink); }
.cal-cell.today { border-color: var(--accent); }
.cal-cell.today b { color: var(--accent); }
@keyframes caTag { 0% { opacity: 0; transform: translateY(8px) scale(0.9); } 100% { opacity: 1; transform: none; } }
.cal-tag { position: absolute; left: 6px; right: 6px; bottom: 6px; padding: 5px 6px; border-radius: 8px; background: var(--ink); color: #fff; border: 2px solid transparent; font-size: 12px; line-height: 1.25; font-weight: 700; text-align: center; animation: caTag 450ms cubic-bezier(0.3, 1.3, 0.5, 1) both; }
.cal-tag.fix, .cal-tag.report { background: var(--accent); }
.cal-tag.extra { background: #fff; color: var(--red); border-color: var(--red); }

.revs { padding: 36px; background: var(--ink); color: #fff; display: flex; flex-direction: column; min-height: 334px; }
.revs-head, .rep-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.revs-head span:last-child { color: #9DAAFF; }
.revs-dots { margin-top: 26px; display: flex; gap: 14px; }
.revs-dots i { width: 64px; height: 64px; flex-shrink: 1; min-width: 0; aspect-ratio: 1; border-radius: 50%; border: 3px solid #3a3a40; transition: background 300ms ease, border-color 300ms ease, transform 400ms cubic-bezier(0.3, 1.5, 0.5, 1); }
.revs-dots i.on { background: var(--accent); border-color: var(--accent); }
.revs-dots i.last { transform: scale(1.08); }
.revs-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid #2a2a2e; display: flex; flex-direction: column; gap: 6px; }
.revs-foot span:first-child { font-size: 17px; font-weight: 600; transition: color 300ms ease; }
.revs-foot span:first-child.hot { color: #FF6B61; }
.revs-foot span:last-child { font-size: 15px; font-weight: 500; color: #8f8f96; }
.rep { padding: 36px; display: flex; flex-direction: column; gap: 18px; min-height: 340px; transition: background 500ms ease, color 500ms ease; }
.rep p { margin: 0; font-size: 16px; line-height: 1.6; font-weight: 500; color: #666; transition: color 500ms ease; }
.rep-ok { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; animation: kPop 500ms cubic-bezier(0.3, 1.3, 0.5, 1) both; }
.rep-bars { margin-top: auto; height: 88px; display: flex; align-items: flex-end; gap: 8px; }
.rep-bars i { flex: 1; height: 12%; border-radius: 5px 5px 2px 2px; background: #e6e6e6; transition: height 600ms var(--ez), background 500ms ease; }
.rep.is-done { background: var(--accent); color: #fff; }
.rep.is-done p { color: #DDE2FF; }
.rep.is-done .rep-bars i { background: rgba(255, 255, 255, 0.4); }
.rep.is-done .rep-bars i:nth-child(n+7) { background: #fff; }

.places { margin-top: 32px; padding: 32px 36px; }
.places h3, .nope h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.places-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.places-grid div { padding: 20px; border-radius: var(--r-lg); background: var(--bg); display: flex; flex-direction: column; gap: 6px; }
.places-grid strong { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.places-grid span { font-size: 14px; line-height: 1.5; font-weight: 500; color: var(--muted-2); }
.nope { margin-top: 16px; padding: 30px 40px; background: var(--ink); color: #fff; display: flex; align-items: center; gap: 28px; }
.nope-ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; border: 3px solid var(--red); position: relative; }
.nope-ico::after { content: ""; position: absolute; left: 50%; top: 50%; width: 34px; height: 3px; margin: -1.5px 0 0 -17px; background: var(--red); transform: rotate(-45deg); }
.nope p { margin: 6px 0 0; font-size: 17px; line-height: 1.6; font-weight: 500; color: #bdbdbd; }

/* ==========================================================
   Webens Care 소개
   ========================================================== */
.care-intro { margin-top: 72px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 16px; }
.care-hero { background: #0B0B0D; color: #fff; padding: 40px; display: flex; flex-direction: column; overflow: hidden; }
.care-hero .cb-card { flex: 1; min-height: 0; padding: 24px 0; }
.ch-perks { margin: 0 0 22px; padding: 18px 0 0; list-style: none; border-top: 1px solid #2a2a2e; display: flex; flex-direction: column; gap: 10px; }
.ch-perks li { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: #cfcfcf; }
.ch-perks li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat; }
.ch-perks b { color: #fff; font-weight: 700; }
.ch-perks s { color: #7a7a82; }
.ch-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ch-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.ch-price small { font-size: 20px; font-weight: 500; color: #8f8f96; }
.ch-price strong { font-size: clamp(40px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.ch-price em { flex-basis: 100%; font-style: normal; font-size: 15px; font-weight: 500; color: #6f6f76; }
.ch-foot .btn:hover { background: #e6e6ec; }
.care-feats { display: flex; flex-direction: column; min-height: 0; }
.feat-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.feat-tabs span { padding: 10px 18px; border-radius: 999px; background: #e6e6e6; color: #8a8a8a; font-size: 15px; font-weight: 700; transition: background 300ms ease, color 300ms ease; }
.feat-tabs span.on { background: var(--ink); color: #fff; }
.feat-stack { position: relative; flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 16px; }
.feat { padding: 40px; display: flex; flex-direction: column; gap: 28px; overflow: hidden; }
.feat-num { font-size: 20px; font-weight: 700; color: var(--accent); }
.feat h3 { margin: 8px 0 0; font-size: clamp(30px, 2.8vw, 40px); line-height: 1.2; font-weight: 700; letter-spacing: -0.035em; }
.feat-txt p { margin: 14px 0 0; font-size: var(--fs-body); line-height: 1.65; font-weight: 500; color: var(--muted); }
.feat-places { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.feat-places li { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 12px; align-items: center; padding: 14px 16px; border-radius: 18px; background: var(--bg); }
.feat-places li:last-child { grid-column: 1 / -1; }
.feat-places i { grid-row: span 2; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.feat-places strong { font-size: 16px; font-weight: 700; }
.feat-places span { font-size: 13px; font-weight: 500; color: var(--muted-2); }
.feat-report { padding: 22px 26px 26px; border-radius: 24px; background: var(--accent); }
/* 종이 한 장 + 뒤에 겹친 지난달 리포트 */
.fr-paper { position: relative; padding: 18px 22px 12px; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 14px 30px rgba(10, 20, 120, 0.28); transform: rotate(-1deg); }
.fr-paper::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 12px; background: rgba(255, 255, 255, 0.45); transform: rotate(3deg) translate(6px, 4px); }
.fr-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.fr-head > div { display: flex; flex-direction: column; gap: 4px; }
.fr-brand { display: inline-flex; align-items: flex-end; font-family: var(--font-logo); font-size: 12px; font-weight: 900; letter-spacing: -0.02em; color: var(--muted-2); }
.fr-brand .logo-dot { margin: 0 3px 2px 1px; }
.fr-head strong { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.fr-tag { padding: 3px 8px; border-radius: 6px; background: var(--bg); color: var(--muted-2); font-size: 12px; font-weight: 700; }
.fr-rows { margin: 0; }
.fr-rows > div { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; align-items: baseline; padding: 9px 0; border-bottom: 1px dashed #dcdcdc; }
.fr-rows > div:last-child { border-bottom: none; padding-right: 64px; }
.fr-rows dt { font-size: 13px; font-weight: 600; color: var(--muted-2); }
.fr-rows dd { margin: 0; display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 14px; font-weight: 600; line-height: 1.45; }
.fr-ok { display: inline-flex; align-items: center; gap: 5px; }
.fr-ok::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 9px no-repeat; }
.fr-kw { color: var(--accent); }
.fr-kw::before { content: "“"; }
.fr-kw::after { content: "”"; }
.fr-stamp { position: absolute; right: 18px; bottom: 14px; width: 62px; height: 62px; border: 2.5px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--red); font-size: 12px; font-weight: 800; line-height: 1.15; opacity: 0.8; transform: rotate(-14deg); pointer-events: none; }
.feat-fix { padding: 26px 28px; border-radius: 24px; background: var(--ink); color: #fff; display: flex; flex-direction: column; gap: 18px; }
.ff-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 19px; font-weight: 700; }
.ff-head b { color: #9DAAFF; }
.feat-badge { display: inline-block; vertical-align: 0.28em; margin-left: 8px; padding: 6px 12px; border-radius: 999px; background: var(--accent); color: #fff; font-style: normal; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
/* 수정권: 절취선이 있는 티켓 한 장 */
.ff-ticket { display: grid; grid-template-columns: minmax(0, 1fr) auto; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35); transform: rotate(-1deg); }
.ff-main { padding: 18px 24px 20px; display: flex; flex-direction: column; gap: 8px; }
.ff-main small, .ff-stub small { font-size: 13px; font-weight: 600; color: var(--muted-2); white-space: nowrap; }
.ff-count { display: flex; align-items: center; gap: 16px; }
.ff-count strong { font-size: clamp(38px, 3.4vw, 48px); line-height: 1; font-weight: 700; letter-spacing: -0.04em; color: var(--accent); }
.ff-holes { display: flex; gap: 6px; }
.ff-holes i { width: 16px; height: 16px; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat; }
.ff-stub { position: relative; padding: 18px 24px; border-left: 2px dashed #d6d6d6; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 4px; text-align: right; }
.ff-stub::before, .ff-stub::after { content: ""; position: absolute; left: -11px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); }
.ff-stub::before { top: -10px; }
.ff-stub::after { bottom: -10px; }
.ff-stub strong { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; white-space: nowrap; }
.ff-stub strong span { margin-left: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--muted-2); }
.ff-tickets { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.ff-tickets li { position: relative; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px; background: #1d1d22; border: 1px dashed #3a3a44; }
.ff-tickets b { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.ff-tickets span { font-size: 14px; font-weight: 600; color: #e6e6ea; white-space: nowrap; }
.ff-tickets em { margin-left: auto; font-style: normal; font-size: 11px; font-weight: 700; color: #9DAAFF; }
.ff-dots { display: flex; gap: 12px; }
.ff-dots i { width: 52px; height: 52px; flex-shrink: 1; min-width: 0; border-radius: 50%; background: var(--accent); }
.ff-reqs { display: flex; flex-wrap: wrap; gap: 6px; }
.ff-reqs span { padding: 8px 14px; border-radius: 999px; background: #2a2a2e; font-size: 14px; font-weight: 600; color: #e6e6ea; }

/* 스크롤로 한 장씩 */
.pin:not(.pin-off) .care-pin { display: flex; flex-direction: column; min-height: 0; max-height: 100%; }
.pin:not(.pin-off) .care-pin .sec-head { margin-top: 0; flex-shrink: 0; }
.pin:not(.pin-off) .care-pin .h2 { font-size: clamp(36px, 3.6vw, 52px); }
.pin:not(.pin-off) .care-intro { margin-top: 28px; flex: 0 1 640px; min-height: 0; }
.pin:not(.pin-off) .feat { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(60px) scale(0.97); transition: opacity 450ms ease, transform 650ms var(--ez), visibility 0s linear 650ms; }
.pin:not(.pin-off) .feat.is-past { transform: translateY(-60px) scale(0.97); }
.pin:not(.pin-off) .feat.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity 450ms ease 120ms, transform 650ms var(--ez), visibility 0s; }
.pin.pin-off .feat-tabs { display: none; }

@media (max-width: 1000px) {
  .care-intro { grid-template-columns: minmax(0, 1fr); margin-top: 40px; }
  .care-hero { padding: 24px; }
  .care-hero .cb-card { padding: 4px 0 18px; }
  .care-hero .cb-card .mcard { width: 250px; height: 158px; border-radius: 18px; }
  .care-hero .cb-card .mcard-logo { font-size: 21px; white-space: nowrap; }
  .ch-price strong { font-size: 34px; }
  .ch-foot .btn { height: 52px; font-size: 16px; padding: 0 22px; }
  .pin:not(.pin-off) .care-pin { flex: 1 1 auto; }
  .pin:not(.pin-off) .care-intro { margin-top: 16px; flex: 1 1 0; grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
  .feat { padding: 24px; gap: 18px; }
  .feat-tabs { margin-bottom: 10px; }
  .feat-tabs span { padding: 8px 12px; font-size: 13px; }
  .feat-txt p { font-size: 15px; margin-top: 8px; }
  .feat-places { gap: 6px; }
  .feat-places li { padding: 10px 12px; }
  .feat-places span { display: none; }
  .feat-places i { grid-row: auto; width: 22px; height: 22px; }
  .feat-report, .feat-fix { padding: 18px 20px; gap: 12px; }
  .fr-paper { padding: 14px 16px 8px; }
  .fr-head { padding-bottom: 9px; }
  .fr-head strong { font-size: 17px; }
  .fr-rows > div { grid-template-columns: 84px minmax(0, 1fr); gap: 8px; padding: 6px 0; }
  .fr-rows dt { font-size: 12px; }
  .fr-rows dd { font-size: 12px; gap: 2px 8px; }
  .fr-stamp { width: 50px; height: 50px; font-size: 10px; right: 12px; bottom: 10px; }
  .ff-reqs span { padding: 6px 11px; font-size: 12px; }
  .ff-tickets { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .ff-tickets li { padding: 7px 9px; gap: 7px; }
  .ff-tickets span { font-size: 12px; }
  .ff-tickets b { width: 20px; height: 20px; font-size: 11px; }
  .ff-main { padding: 12px 16px; gap: 6px; }
  .ff-count strong { font-size: 30px; }
  .ff-holes i { width: 14px; height: 14px; background-size: 9px; }
  .ff-stub { padding: 12px 14px; }
  .ff-stub strong { font-size: 17px; }
  .ff-main small, .ff-stub small { font-size: 12px; }
  .feat-badge { font-size: 12px; padding: 4px 9px; margin-left: 6px; }
}

@media (max-width: 720px) {
  .care-hero { flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .care-hero .cb-card { flex: 0 0 auto; padding: 0; }
  .care-hero .cb-card .mcard { width: 150px; height: 95px; border-radius: 12px; }
  .care-hero .mcard-top { left: 12px !important; top: 11px !important; right: 12px !important; }
  .care-hero .cb-card .mcard-logo { font-size: 14px; white-space: nowrap; }
  .care-hero .mcard-logo .logo-dot { width: 4px !important; height: 4px !important; margin-bottom: 2px !important; }
  .care-hero .cb-card .mcard-chip { display: none; }
  .care-hero .mcard-bottom { left: 12px !important; bottom: 10px !important; }
  .care-hero .mcard-bottom span:first-child { font-size: 7px; }
  .care-hero .mcard-bottom span:last-child { font-size: 8px; }
  .care-hero .mcard-led { right: 12px !important; bottom: 10px !important; width: 12px !important; height: 12px !important; }
  .ch-perks { display: none; }
  .ch-foot { flex: 1; flex-direction: column; align-items: stretch; gap: 10px; }
  .ch-price small { font-size: 15px; }
  .ch-price strong { font-size: 28px; }
  .ch-price em { font-size: 12px; }
  .ch-foot .btn { height: 44px; font-size: 15px; padding: 0 14px; }
  /* 좁은 화면: 절취선을 가로로 */
  .ff-ticket { grid-template-columns: minmax(0, 1fr); }
  .ff-stub { border-left: none; border-top: 2px dashed #d6d6d6; flex-direction: row; flex-wrap: wrap; align-items: baseline; justify-content: flex-start; gap: 2px 6px; padding: 10px 16px; text-align: left; }
  .ff-stub::before, .ff-stub::after { top: -11px; bottom: auto; }
  .ff-stub::before { left: -10px; }
  .ff-stub::after { left: auto; right: -10px; }
}

/* ==========================================================
   5. 진행 과정
   ========================================================== */
.process { padding-block: 64px 60px; }
.proc-line { position: relative; margin-top: 72px; height: 64px; }
.proc-line::before, .proc-bar { content: ""; position: absolute; left: calc((100% - 48px) / 8); right: calc((100% - 48px) / 8); top: 30px; height: 4px; border-radius: 4px; background: #ddd; }
.proc-bar { background: var(--accent); transform-origin: left center; transform: scaleX(0); transition: transform 900ms cubic-bezier(0.6, 0, 0.2, 1); }
.proc-nums { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.proc-nums span { justify-self: center; align-self: center; width: 44px; height: 44px; border-radius: 50%; background: #bdbdbd; color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; top: 0; transition: all 600ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.proc-nums span.done, .proc-nums span.on { background: var(--accent); }
.proc-nums span.on { width: 64px; height: 64px; }
.proc-cards { margin-top: 32px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.proc-card { min-height: 400px; padding: 40px 36px 36px; display: flex; flex-direction: column; cursor: default; transition: background 600ms ease, color 600ms ease, transform 600ms cubic-bezier(0.3, 1.3, 0.5, 1), box-shadow 600ms ease; }
.proc-card h3 { margin: 0; font-size: clamp(32px, 2.8vw, 40px); line-height: 1.2; font-weight: 700; letter-spacing: -0.035em; }
.proc-card p { margin: 20px 0 0; font-size: var(--fs-body); line-height: 1.65; font-weight: 500; color: #666; transition: color 600ms ease; }
.proc-card ul { margin: auto 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: 16px; font-weight: 600; transition: border-color 600ms ease; }
.proc-card.on { background: var(--ink); color: #fff; transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); }
.proc-card.on p { color: #bdbdbd; }
.proc-card.on ul { border-color: #2e2e2e; }

/* ==========================================================
   6. 자주 묻는 질문
   ========================================================== */
.faq { padding-block: 64px 60px; }
.faq-grid { display: grid; grid-template-columns: 520px minmax(0, 724px); justify-content: space-between; gap: 40px; }
.faq-title { padding: 24px 0 0 56px; }
.faq-title .h2 { position: sticky; top: 140px; }
.chat { padding: 36px 44px 44px; display: flex; flex-direction: column; gap: 28px; }
.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.chat-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 11px; }
.chat-ava i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.chat-head strong { font-weight: 700; font-size: 22px; letter-spacing: -0.03em; }
.chat-head span { font-size: 16px; font-weight: 500; color: #666; }
.chat-log { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.chat-log dt, .chat-log dd { margin: 0; display: flex; position: relative; }
.chat-log dt { justify-content: flex-start; }
.chat-log dt:not(:first-child) { margin-top: 18px; }
.chat-log dd { justify-content: flex-end; }
.bub { margin: 0; max-width: 500px; padding: 16px 22px; font-size: clamp(17px, 1.46vw, 21px); line-height: 1.45; letter-spacing: -0.01em; }
dt .bub { border-radius: 24px 24px 24px 6px; background: var(--bg); font-weight: 500; }
dd .bub { border-radius: 24px 24px 6px 24px; background: var(--accent); color: #fff; font-weight: 600; }
@keyframes qaIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes qaBlink { 0%, 80%, 100% { opacity: 0.25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
.js .chat-log.is-play .bub { visibility: hidden; }
.js .chat-log.is-play .bub.is-shown { visibility: visible; animation: qaIn 420ms var(--ez) both; }
.typing { position: absolute; right: 0; top: 0; padding: 20px 22px; border-radius: 24px 24px 6px 24px; background: var(--accent); display: flex; gap: 6px; animation: qaIn 420ms var(--ez) both; }
.typing i { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: qaBlink 1s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: 150ms; }
.typing i:nth-child(3) { animation-delay: 300ms; }

/* FAQ: 질문을 누르면 답이 도착 */
.faq-hint { margin: 28px 0 0; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; font-weight: 500; color: var(--muted); }
.faq-title { position: sticky; top: 140px; align-self: start; }
.faq-title .h2 { position: static; }
.chat { height: min(760px, calc(100svh - 150px)); min-height: 560px; }
.chat .chat-log { flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding-right: 4px; scroll-behavior: smooth; overscroll-behavior: contain; }
.msg { display: flex; }
.msg.q { justify-content: flex-end; margin-top: 12px; }
.msg.a { justify-content: flex-start; }
.msg.q .bub { border-radius: 24px 24px 6px 24px; background: var(--bg); font-weight: 500; }
.msg.a .bub { border-radius: 24px 24px 24px 6px; background: var(--accent); color: #fff; font-weight: 600; }
.msg.a .typing { border-radius: 24px 24px 24px 6px; }
.msg { animation: qaIn 420ms var(--ez) both; }
.msg .typing { position: static; }
.chat-qs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.chat-qs button { padding: 10px 16px; border: 1.5px solid #dcdcdc; border-radius: 999px; background: #fff; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 250ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.chat-qs button:hover { border-color: var(--ink); transform: translateY(-2px); }
.chat-qs button.is-asked { background: var(--bg); border-color: transparent; color: #9a9a9a; }
.chat-qs button:disabled { cursor: wait; }
.js .faq-src { display: none; }
.faq-src { margin: 0; font-size: 16px; line-height: 1.6; }
.faq-src dt { font-weight: 700; margin-top: 12px; }
.faq-src dd { margin: 4px 0 0; color: var(--muted); }
@media (max-width: 1000px) {
  .faq-title { position: static; }
  .chat { height: min(640px, calc(100svh - 110px)); min-height: 480px; }
}
@media (max-width: 720px) {
  .chat-qs { gap: 6px; padding-top: 14px; }
  .chat-qs button { padding: 8px 12px; font-size: 13px; }
}

/* ==========================================================
   7. 상담 신청
   ========================================================== */
.contact { padding-block: 64px 40px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 580px) minmax(0, 740px); justify-content: space-between; gap: 40px; }
.contact-info { padding-left: 56px; }
.contact-info .h2 { font-size: clamp(40px, 4.7vw, 68px); }
.contact-info .h2 em { font-style: normal; color: var(--accent); }
.contact-lead { margin: 36px 0 0; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6; font-weight: 500; color: #444; }
.contact-rows { margin-top: 64px; display: flex; flex-direction: column; gap: 8px; }
.ct-row { display: flex; align-items: center; gap: 18px; padding: 16px 20px 16px 16px; border-radius: var(--r-lg); transition: background 250ms ease; }
.ct-row:hover { background: #fff; }
.ct-ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 300ms ease, transform 400ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.ct-ico.kakao { background: #FEE500; }
.ct-row:hover .ct-ico:not(.kakao) { background: var(--accent); }
.ct-row:hover .ct-ico { transform: rotate(-8deg) scale(1.06); }
.ct-row > span:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }
.ct-row small { font-size: 15px; font-weight: 500; color: var(--muted-2); }
.ct-row strong { font-size: 20px; font-weight: 700; }
.ct-go { margin-left: auto; opacity: 0; transform: translateX(-10px); transition: opacity 300ms ease, transform 400ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.ct-row:hover .ct-go { opacity: 1; transform: none; }
.contact-note { margin: 28px 0 0 16px; font-size: 16px; line-height: 1.6; font-weight: 500; color: var(--muted-2); }

.form-card { position: relative; padding: 48px; overflow: hidden; }
.form { display: flex; flex-direction: column; gap: 26px; margin: 0; }
@keyframes ctRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.rise { animation: ctRise 800ms var(--ez) backwards; }
.f-label { font-size: 17px; font-weight: 700; transition: color 250ms ease; }
.f-label small { font-size: inherit; font-weight: 500; color: var(--gray); }
label:focus-within .f-label { color: var(--accent); }
.f-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.f-field { display: flex; flex-direction: column; gap: 10px; }
.field { width: 100%; height: 56px; padding: 0 20px; border-radius: 16px; border: 2px solid transparent; background: var(--bg); font: inherit; font-size: 17px; font-weight: 500; color: var(--ink); outline: none; transition: border-color 250ms ease, background 250ms ease; }
.field::placeholder { color: var(--gray); }
.field:focus { border-color: var(--accent); background: #fff; }
.field.is-bad { border-color: #D92D20; background: #fff; }
textarea.field { height: 140px; padding: 16px 20px; resize: vertical; line-height: 1.6; }
.seg { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 6px; border-radius: 24px; background: var(--bg); }
.seg-ind { position: absolute; top: 6px; bottom: 6px; width: calc((100% - 36px) / 4); left: calc(6px + var(--i, 1) * ((100% - 36px) / 4 + 8px)); border-radius: 18px; background: var(--ink); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16); transition: left 550ms cubic-bezier(0.3, 1.25, 0.4, 1); }
.seg button { position: relative; height: 64px; border: none; border-radius: 18px; background: transparent; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: color 400ms ease, transform 250ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.seg button:hover { transform: translateY(-2px); }
.seg button[aria-pressed="true"] { color: #fff; }
.seg button span { font-size: 17px; font-weight: 700; }
.seg button small { font-size: 13px; font-weight: 500; opacity: 0.7; }
.care-sw { height: 72px; padding: 0 22px; border: none; border-radius: 20px; background: var(--bg); cursor: pointer; display: flex; align-items: center; gap: 16px; text-align: left; transition: background 250ms ease, color 250ms ease, transform 250ms ease; }
.care-sw:hover { transform: translateY(-2px); }
.care-sw > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.care-sw strong { font-size: 17px; font-weight: 700; }
.care-sw small { font-size: 14px; font-weight: 500; opacity: 0.7; }
.sw-track { width: 52px; height: 30px; flex-shrink: 0; border-radius: 999px; background: #cfcfcf; position: relative; transition: background 250ms ease; }
.sw-track::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: left 300ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.care-sw[aria-checked="true"] { background: var(--ink); color: #fff; }
.care-sw[aria-checked="true"] .sw-track { background: var(--accent); }
.care-sw[aria-checked="true"] .sw-track::after { left: 26px; }
.agree { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 16px; font-weight: 500; color: #444; flex-wrap: wrap; }
.agree input { width: 22px; height: 22px; margin: 0; accent-color: var(--accent); }
.agree a { font-weight: 700; color: var(--ink); text-decoration: underline; }
@keyframes ctSheen { 0% { transform: translateX(-120%) skewX(-20deg); } 100% { transform: translateX(320%) skewX(-20deg); } }
.submit { position: relative; overflow: hidden; height: 64px; border: none; border-radius: 999px; background: var(--ink); color: #fff; font-size: 19px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 250ms ease, transform 250ms ease; }
.submit.ready { background: var(--accent); }
.submit:hover { transform: translateY(-2px); }
.submit svg { transition: transform 350ms cubic-bezier(0.3, 1.4, 0.5, 1); }
.submit:hover svg { transform: translateX(6px); }
.submit::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 30%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent); animation: ctSheen 1100ms cubic-bezier(0.4, 0, 0.2, 1) 1100ms both; }
.submit:disabled { opacity: 0.6; cursor: progress; }
.form-err { margin-top: -12px; text-align: center; font-size: 15px; font-weight: 600; color: #D92D20; animation: kIn 500ms var(--ez) both; }
@keyframes ctFill { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes ctCheck { from { stroke-dashoffset: 40; } to { stroke-dashoffset: 0; } }
.sent { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; }
.sent-fill { position: absolute; left: 50%; bottom: -1000px; width: 2400px; height: 2400px; margin-left: -1200px; border-radius: 50%; background: var(--accent); animation: ctFill 900ms cubic-bezier(0.7, 0, 0.2, 1) both; }
.sent-body { position: relative; display: flex; flex-direction: column; align-items: center; gap: 28px; color: #fff; text-align: center; }
.sent-ok { width: 120px; height: 120px; border-radius: 50%; background: #fff; color: var(--accent); display: flex; align-items: center; justify-content: center; animation: kPop 700ms cubic-bezier(0.3, 1.3, 0.5, 1) 600ms both; }
.sent-ok path { stroke-dasharray: 40; animation: ctCheck 500ms ease-out 900ms both; }
.sent-body h3 { margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.25; font-weight: 700; letter-spacing: -0.035em; animation: kIn 800ms var(--ez) 800ms both; }
.sent-body p { margin: 0; font-size: 20px; line-height: 1.6; font-weight: 500; color: #DDE2FF; animation: kIn 800ms var(--ez) 950ms both; }
.sent-body .btn { margin-top: 12px; height: 56px; font-size: 17px; animation: kIn 800ms var(--ez) 1100ms both; }

/* 상담 신청: PC에서는 한 화면에 다 보이게 */
@media (min-width: 1001px) {
  .contact { padding-block: 24px 40px; }
  .contact-grid { align-items: center; }
  .contact-info .h2 { font-size: clamp(40px, 4.2vw, 60px); }
  .contact-lead { margin-top: 24px; font-size: 19px; }
  .contact-rows { margin-top: 36px; gap: 4px; }
  .ct-row { padding: 12px 16px 12px 12px; }
  .ct-ico { width: 46px; height: 46px; }
  .contact-note { margin-top: 18px; font-size: 15px; }
  .form-card { padding: 32px 36px; }
  .form { gap: 14px; }
  .f-field { gap: 6px; }
  .f-label { font-size: 15px; }
  .field { height: 46px; padding: 0 16px; border-radius: 14px; font-size: 16px; }
  textarea.field { height: 84px; padding: 12px 16px; resize: none; }
  .seg { padding: 5px; border-radius: 20px; }
  .seg-ind { top: 5px; bottom: 5px; border-radius: 15px; }
  .seg button { height: 50px; border-radius: 15px; }
  .seg button span { font-size: 16px; }
  .seg button small { font-size: 12px; }
  .care-sw { height: 58px; border-radius: 16px; }
  .care-sw strong { font-size: 16px; }
  .care-sw small { font-size: 13px; }
  .agree { font-size: 15px; }
  .submit { height: 54px; font-size: 18px; }
  .form-err { margin-top: -6px; }
}
@media (min-width: 1001px) and (max-height: 820px) {
  .contact-info .h2 { font-size: clamp(36px, 3.6vw, 50px); }
  .contact-rows { margin-top: 24px; }
  .form-card { padding: 24px 30px; }
  .form { gap: 10px; }
  .field { height: 42px; }
  textarea.field { height: 64px; }
  .seg button { height: 44px; }
  .care-sw { height: 52px; }
  .submit { height: 48px; }
}

/* ==========================================================
   푸터
   ========================================================== */
.foot-wrap { padding-block: 40px calc(40px + env(safe-area-inset-bottom, 0px)); }
.foot { position: relative; padding: 64px 64px 0; border-radius: var(--r-xl); background: var(--ink); color: #fff; overflow: hidden; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-nav { display: flex; gap: 56px; }
.foot-nav div { display: flex; flex-direction: column; gap: 14px; font-size: 17px; font-weight: 500; }
.ft-link { color: #bdbdbd; transition: color 250ms ease; }
.ft-link:hover { color: #fff; }
.foot-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.foot-cta span { font-size: 17px; font-weight: 500; color: #8f8f96; }
.foot-biz { margin-top: 72px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid #2a2a2a; }
.foot-biz address { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-size: 15px; line-height: 1.6; font-weight: 500; color: #8f8f96; }
.foot-biz address p { margin: 0; }
.foot-biz address em { font-style: normal; }
.foot-biz address span + span::before { content: " · "; }
.foot-legal { display: flex; gap: 24px; font-size: 15px; font-weight: 600; white-space: nowrap; }
.foot-legal a:first-child { color: #fff; }
.foot-copy { padding-top: 22px; font-size: 14px; font-weight: 500; color: #6f6f76; }
@keyframes ftRise { from { transform: translateY(105%); } to { transform: none; } }
.foot-logo { margin: 56px -8px -0.113em; overflow: hidden; display: flex; align-items: flex-end; font-size: min(20.8vw, 300px); pointer-events: none; }
.foot-logo span { font-family: var(--font-logo); font-weight: 900; line-height: 0.9; letter-spacing: -0.06em; animation: ftRise 1100ms var(--ez) 400ms both; }
.foot-logo i { width: 0.193em; height: 0.193em; margin: 0 0 0.193em 0.033em; flex-shrink: 0; border-radius: 50%; background: var(--accent); animation: kPop 700ms cubic-bezier(0.3, 1.4, 0.5, 1) 1100ms both; }

/* ==========================================================
   반응형
   ========================================================== */
@media (max-width: 1240px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .cmp { grid-template-columns: 1fr 1fr; }
  .cmp-txt { padding: 48px; }
  .faq-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); }
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
  .contact-info, .faq-title { padding-left: 16px; }
  .care-grid { grid-template-columns: minmax(0, 1fr); }
  .cal { grid-row: auto; }
  .care-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .places-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proc-line { display: none; }
  .proc-card { min-height: 340px; }
  .proc-card.on { transform: none; }
  .plan { padding: 32px 28px 120px; }
  .plan .btn { left: 28px; right: 28px; bottom: 28px; padding: 0 16px; font-size: 16px; white-space: nowrap; }
  .plan li { font-size: 16px; }
  .cb-card .mcard { width: 290px; height: 183px; }
  .cb-card .mcard-logo { font-size: 24px; }
}
@media (min-width: 1241px) {
  .care-side { display: contents; }
}
@media (max-width: 1000px) {
  :root { --r-xl: 28px; }
  .cmp, .cmp.rev { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .cmp.rev .cmp-vis { order: 0; }
  .cmp-vis { padding: 28px; }
  .rules, .plans { grid-template-columns: 1fr; }
  .plan { min-height: 0; }
  .rule { min-height: 240px; }
  .care-banner { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cb-copy, .cb-card, .cb-price, .cb-btn { grid-column: 1; grid-row: auto; }
  .cb-card { padding: 16px 0; }
  .faq-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-title .h2 { position: static; }
  .flow { height: auto; grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .flow-line, .flow-line-on { left: calc(32px + 60px - 2px); right: auto; top: 100px; bottom: 100px; width: 4px; height: auto; transform-origin: center top; }
  .flow-line-on { transform: scaleY(0); }
  .flow-step { flex-direction: row; gap: 24px; }
  .flow-ball-box { height: auto; width: 120px; flex-shrink: 0; padding: 0; align-items: center; }
  .flow-ball { width: calc(var(--d) * 0.5); height: calc(var(--d) * 0.5); font-size: 22px; }
  .flow-cap { position: static; text-align: left; }
}
@media (max-width: 720px) {
  :root { --gutter: 16px; --r-xl: 24px; }
  .site-head { padding-top: calc(12px + env(safe-area-inset-top, 0px)); }
  .nav { height: 64px; padding: 0 8px 0 24px; }
  .nav .logo { font-size: 24px; }
  .burger { width: 46px; height: 46px; }
  .burger span:nth-child(1) { top: 18px; }
  .burger span:nth-child(2) { top: 26px; }
  .hero { padding-top: 12px; }
  .sec-head { flex-direction: column; align-items: flex-start; padding-inline: 8px; }
  .head-aside { text-align: left; margin: 0; }
  .marquee-track { zoom: 1.1; }
  .cmp-vis { padding: 20px 16px; }
  .cmp-txt { padding: 32px 24px; }
  .cmp-say > div { padding: 12px 14px; }
  .cmp-q svg { width: 32px; height: 32px; }
  .cmp-a::before { margin: 0 9px; }
  .face-big { width: 110px; height: 110px; }
  .flow { padding: 32px 20px; }
  .flow-line, .flow-line-on { left: calc(20px + 45px - 2px); }
  .flow-ball-box { width: 90px; }
  .flow-ball { width: calc(var(--d) * 0.4); height: calc(var(--d) * 0.4); font-size: 18px; }
  .rule { padding: 28px; }
  .rule-fill { right: 28px; top: 28px; width: 44px; height: 44px; }
  .statement { margin-top: 96px; padding-bottom: 96px; }
  .tabs { gap: 20px; margin-top: 36px; }
  .tab { font-size: 18px; flex-direction: column; gap: 0; height: 64px; justify-content: center; }
  .tab small { font-size: 13px; }
  .work-cap { flex-direction: column; gap: 4px; height: auto; font-size: 15px; text-align: center; }
  .browser-card { padding: 10px; }
  .browser { aspect-ratio: 4 / 5; border-radius: 14px; }
  .browser-bar { height: 38px; }
  .plans { margin-top: 40px; }
  .plan { padding: 32px 28px 120px; }
  .plan .btn { left: 28px; right: 28px; bottom: 28px; }
  .plan li { font-size: 16px; }
  .cb-copy, .cb-price, .cb-btn { padding: 0 28px; }
  .cb-card .mcard { width: 290px; height: 183px; }
  .cb-card .mcard-logo { font-size: 24px; }
  .care-grid { margin-top: 40px; }
  .care-side { grid-template-columns: minmax(0, 1fr); }
  .cal-legend { flex-wrap: wrap; }
  .cal { padding: 20px 14px; min-height: 0; }
  .cal-head strong { font-size: 20px; }
  .cal-legend { gap: 10px; font-size: 12px; }
  .cal-week, .cal-days { gap: 4px; }
  .cal-cell { min-height: 56px; padding: 5px; border-radius: 10px; }
  .cal-cell b { font-size: 11px; }
  .cal-tag { left: 4px; right: 4px; bottom: 4px; height: 8px; padding: 0; border-radius: 4px; font-size: 0; }
  .revs, .rep { padding: 28px; min-height: 0; }
  .revs-dots { gap: 10px; }
  .rep-bars { margin-top: 12px; }
  .places { padding: 24px; }
  .places-grid { grid-template-columns: 1fr 1fr; }
  .places-grid div { padding: 16px; }
  .nope { padding: 24px; align-items: flex-start; gap: 18px; }
  .nope-ico { width: 40px; height: 40px; }
  .nope-ico::after { width: 26px; margin-left: -13px; }
  .proc-cards { grid-template-columns: 1fr; }
  .proc-card { min-height: 0; padding: 32px 28px 28px; }
  .proc-card ul { margin-top: 24px; }
  .faq-title, .contact-info { padding-left: 8px; }
  .chat { padding: 24px 18px 28px; }
  .bub { max-width: 88%; padding: 13px 17px; }
  .contact-rows { margin-top: 36px; }
  .ct-row { padding: 12px; }
  .ct-go { display: none; }
  .form-card { padding: 28px 20px; }
  .f-2 { grid-template-columns: 1fr; }
  .seg { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seg-ind { width: calc((100% - 20px) / 2); height: 64px; bottom: auto; left: calc(6px + var(--col, 1) * ((100% - 20px) / 2 + 8px)); top: calc(6px + var(--row, 0) * 72px); transition: left 550ms cubic-bezier(0.3, 1.25, 0.4, 1), top 550ms cubic-bezier(0.3, 1.25, 0.4, 1); }
  .care-sw { height: auto; padding: 16px 18px; }
  .foot { padding: 32px 24px 0; }
  .foot-top { flex-direction: column; gap: 32px; }
  .foot-cta { order: -1; align-self: stretch; align-items: stretch; gap: 12px; padding-bottom: 28px; border-bottom: 1px solid #2a2a2a; }
  .foot-cta span { font-size: 15px; }
  .foot-cta .btn { width: 100%; height: 56px; }
  .foot-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; justify-items: center; text-align: center; align-self: stretch; }
  .foot-nav div { display: contents; }
  .foot-nav a { font-size: 16px; }
  .foot-biz { margin-top: 32px; padding-top: 24px; border-top: 1px solid #2a2a2a; }
  .foot-biz address { gap: 0; font-size: 13px; line-height: 1.8; }
  .foot-biz address span { display: grid; grid-template-columns: 8.4em minmax(0, 1fr); column-gap: 8px; }
  .foot-biz address span + span::before { content: none; }
  .foot-biz address em { color: #6f6f76; }
  .foot-legal { gap: 20px; font-size: 14px; align-self: stretch; justify-content: center; }
  .foot-copy { font-size: 12px; }
  .foot-logo { font-size: 19vw; margin: 36px -4px -0.113em; }
  .foot-biz { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 48px; }
}

/* ==========================================================
   화면 고정 + 스크롤로 내용 교체
   ========================================================== */
:root { --pin-top: 108px; }
/* 스크롤 스냅은 마우스·트랙패드가 있는 화면에서만. 터치 화면은 탭이 스크롤로 씹혀서 제외 */
@media (hover: hover) and (pointer: fine) {
  html.has-snap { scroll-snap-type: y proximity; }
}
.pin { position: relative; height: calc(100svh - var(--pin-top) + var(--len, 200) * 1svh); }
.pin-stage { position: sticky; top: var(--pin-top); height: calc(100svh - var(--pin-top) - 16px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.pin-snap { position: absolute; left: 0; width: 1px; height: 1px; scroll-snap-align: start; pointer-events: none; }
.pin.pin-off { height: auto; }
.pin.pin-off .pin-stage { position: static; height: auto; overflow: visible; display: block; }
.pin.pin-off .pin-snap { display: none; }


/* 비교 카드: 한 장씩 교체 */
.pin:not(.pin-off) .cmp-list { position: relative; flex: 0 1 620px; min-height: 0; margin-top: 0; }
.pin:not(.pin-off) .cmp { position: absolute; top: 0; bottom: 0; left: var(--gutter); right: var(--gutter); min-height: 0; opacity: 0; visibility: hidden; transform: translateY(70px) scale(0.97); transition: opacity 450ms ease, transform 650ms var(--ez), visibility 0s linear 650ms; }
.pin:not(.pin-off) .cmp.is-past { transform: translateY(-70px) scale(0.97); }
.pin:not(.pin-off) .cmp.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity 450ms ease 120ms, transform 650ms var(--ez), visibility 0s; }
.pin:not(.pin-off) .cmp:not(.is-active) .mock-ring ellipse { animation: none; stroke-dashoffset: 1400; }
.pin:not(.pin-off) .cmp.is-active .mock-ring ellipse { animation-delay: 450ms; }
.pin.pin-off .cmp-list { margin-top: var(--gap-xl); }

/* 진행 과정 */
.pin:not(.pin-off) #proc .sec-head { margin-top: 0; }
.pin:not(.pin-off) .proc-line { margin-top: 40px; }
.pin:not(.pin-off) .proc-card { min-height: 340px; }
.process:has(.pin:not(.pin-off)) { padding-block: 24px 0; }
.faq:has(.pin:not(.pin-off)) { padding-block: 24px 0; }

/* FAQ: 대화가 아래에서 쌓임 */
.pin:not(.pin-off) .faq-grid { height: 100%; align-items: stretch; }
.pin:not(.pin-off) .chat { min-height: 0; height: 100%; }
.pin:not(.pin-off) .chat-log { flex: 1; min-height: 0; overflow: hidden; justify-content: flex-end; }
.chat-log.is-pin > dt, .chat-log.is-pin > dd { display: none; }
.chat-log.is-pin > .is-shown { display: flex; animation: qaIn 420ms var(--ez) both; }
.chat-log.is-pin .bub { visibility: visible !important; animation: none !important; }
.chat-log.is-pin .typing { position: static; }
.chat-typing { display: flex; justify-content: flex-end; }

/* Care: 화면 높이에 맞춤 */
.pin:not(.pin-off) .care-grid { margin-top: 0; height: min(690px, 100%); grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); }
.pin:not(.pin-off) .cal { min-height: 0; }
.pin:not(.pin-off) .cal-cell { min-height: 0; }
.pin:not(.pin-off) .revs, .pin:not(.pin-off) .rep { min-height: 0; }
.pin:not(.pin-off) .flow { margin-top: 0; }

@media (max-height: 820px) and (min-width: 721px) {
  .pin:not(.pin-off) #proc .h2 { font-size: clamp(36px, 3.6vw, 52px); }
  .pin:not(.pin-off) #proc .head-aside b { font-size: 28px; }
  .pin:not(.pin-off) .proc-line { margin-top: 20px; }
  .pin:not(.pin-off) .proc-cards { margin-top: 20px; }
  .pin:not(.pin-off) .proc-card { min-height: 280px; padding: 30px 28px 28px; }
  .pin:not(.pin-off) .cmp-txt { padding: 40px; }
}
@media (max-width: 1240px) {
  .pin:not(.pin-off) .proc-line { display: block; }
  .pin:not(.pin-off) .proc-cards { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
  .pin:not(.pin-off) .proc-card:not(.on) { display: none; }
  .pin:not(.pin-off) .proc-card { min-height: 300px; }
}
@media (max-width: 1000px) {
  .pin:not(.pin-off) .faq-grid { grid-template-rows: auto minmax(0, 1fr); gap: 20px; }
}
@media (max-width: 720px) {
  :root { --pin-top: 84px; }
  .pin:not(.pin-off) .cmp-list { flex: 1 1 0; }
  .pin:not(.pin-off) .cmp-txt { padding: 22px 22px 24px; }
  .pin:not(.pin-off) .cmp-title { margin-top: 10px; }
  .pin:not(.pin-off) .cmp-txt p { margin-top: 10px; font-size: 15px; }
  .pin:not(.pin-off) .cmp-say { margin-top: 16px; }
  .pin:not(.pin-off) .cmp-q { display: none !important; }
  .pin:not(.pin-off) .cmp-num { font-size: 36px; }
  .pin:not(.pin-off) .proc-line { margin-top: 24px; }
  .pin:not(.pin-off) .proc-cards { margin-top: 20px; }
  .pin:not(.pin-off) .proc-card { min-height: 0; }
  .pin:not(.pin-off) .faq-title { padding-top: 0; }
}

/* 포트폴리오 PC·모바일 화면 전환: 모바일 선택 시 브라우저 틀을 폰 비율로 축소 */
.browser-card.is-mobile-view .browser { aspect-ratio: 390 / 844; max-width: 320px; margin-inline: auto; border-radius: 32px; }
@media (max-width: 720px) {
  .browser-card.is-mobile-view .browser { max-width: 220px; border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
}
