/* ============================================================
   WebBros — 웹 제작 스튜디오 포트폴리오
   라이트 프리미엄 · 딥 네이비 잉크 · 블루 액센트
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --card: #ffffff;
  --card-2: #f8fafd;
  --line: rgba(17, 26, 48, 0.09);
  --line-2: rgba(17, 26, 48, 0.16);
  --ink: #0d1526;
  --soft: #515c72;
  --mute: #8790a3;
  --accent: #1f5fe0;
  --accent-2: #2f66f0;
  --grad: linear-gradient(118deg, #1f5fe0 0%, #4f86ff 100%);
  --shadow-sm: 0 1px 2px rgba(17, 26, 48, 0.04), 0 1px 1px rgba(17, 26, 48, 0.03);
  --shadow: 0 2px 6px rgba(17, 26, 48, 0.05), 0 18px 40px -26px rgba(17, 26, 48, 0.22);
  --shadow-lg: 0 30px 60px -34px rgba(17, 26, 48, 0.28);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  letter-spacing: -0.01em;
  word-break: keep-all; text-wrap: pretty;   /* 한글이 어절 중간에서 끊기지 않게 */
}
h1, h2, h3, .title, .hero__title, .cta__title { text-wrap: balance; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
.wrap { width: min(1160px, calc(100% - 44px)); margin-inline: auto; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: 100px; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 26px -10px rgba(47, 102, 240, 0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(47, 102, 240, 0.85); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 15px; }

/* ---------- 헤더 ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(22px, 4vw, 40px);
  transition: background 0.35s, padding 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line); padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(17, 26, 48, 0.03);
}
.nav__logo { font-size: 20px; font-weight: 800; letter-spacing: 0.02em; }
.nav__logo::after { content: "."; color: var(--accent); }
.nav__menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__menu > a { font-size: 13.5px; font-weight: 600; color: var(--soft); transition: color 0.2s; }
.nav__menu > a:hover { color: var(--ink); }
.nav__cta {
  color: var(--ink) !important; border: 1px solid var(--line-2);
  padding: 9px 18px; border-radius: 100px; transition: border-color 0.2s, background 0.2s;
}
.nav__cta:hover { border-color: var(--accent); background: rgba(47, 102, 240, 0.12); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ---------- 히어로 ---------- */
.hero { position: relative; padding: 172px 0 64px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; top: -12%; left: 50%; translate: -50% 0;
  width: 900px; height: 720px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(79, 134, 255, 0.22), rgba(120, 160, 255, 0.08) 52%, transparent 72%);
  filter: blur(26px);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 78%);
  opacity: 0.5;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--soft); padding: 7px 15px; border: 1px solid var(--line); border-radius: 100px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.dotmark { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--accent); }
.hero__title {
  font-size: clamp(38px, 6.6vw, 78px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.035em; margin: 26px auto 0; max-width: 15ch; word-break: keep-all;
}
.hero__sub {
  font-size: clamp(17px, 2.1vw, 21px); color: var(--ink); font-weight: 600; line-height: 1.55;
  max-width: 620px; margin: 24px auto 0; word-break: keep-all; letter-spacing: -0.015em;
}
.hero__support {
  font-size: clamp(14px, 1.6vw, 16px); color: var(--mute); line-height: 1.72;
  max-width: 560px; margin: 12px auto 0; word-break: keep-all;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero__guarantee { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--soft); }
.hero__guarantee-ic { font-size: 15px; filter: saturate(1.1); }
.hero__stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(56px, 8vw, 96px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.stat { background: var(--card); padding: 26px 20px; text-align: center; }
.stat__n { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__l { font-size: 12.5px; color: var(--mute); font-weight: 600; margin-top: 7px; }

/* ---------- 섹션 공통 ---------- */
.section { padding: clamp(76px, 10vw, 128px) 0; }
.section--alt { background: var(--bg-alt); }
.shead { max-width: 720px; margin-bottom: clamp(36px, 5vw, 58px); }
.label {
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.label::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad);
  margin-right: 11px; flex: none;
}
.shead--center .label { justify-content: center; }
.title { font-size: clamp(28px, 4.2vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.18; word-break: keep-all; }
.lead { margin-top: 18px; font-size: clamp(15px, 1.7vw, 17px); color: var(--soft); line-height: 1.8; max-width: 600px; word-break: keep-all; }

/* ---------- 서비스 ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 16px; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(31, 95, 224, 0.28); background: var(--card); box-shadow: var(--shadow); }
.svc:hover::before { transform: scaleX(1); }
.svc__no { position: absolute; top: 22px; right: 24px; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; color: var(--line-2); transition: color 0.4s; }
.svc:hover .svc__no { color: var(--accent); }
.svc__ic {
  width: 48px; height: 48px; display: grid; place-items: center; font-size: 20px;
  border-radius: 14px; background: linear-gradient(135deg, rgba(47, 102, 240, 0.14), rgba(94, 139, 255, 0.06));
  color: var(--accent); border: 1px solid rgba(47, 102, 240, 0.2); margin-bottom: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.svc:hover .svc__ic { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 22px -12px rgba(31, 95, 224, 0.5); }
.svc h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; }
.svc p { margin-top: 11px; font-size: 13.8px; color: var(--soft); line-height: 1.72; word-break: keep-all; }

/* ---------- 포트폴리오 ---------- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.work {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--card); display: block; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.work:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.work__thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: #eef1f6; }
.work__year {
  position: absolute; top: 14px; right: 14px; z-index: 2; font-size: 11px; font-weight: 800;
  color: #fff; background: rgba(0, 0, 0, 0.35); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 100px; letter-spacing: 0.03em;
}
.work__body { padding: 20px 22px 22px; }
.work__type { font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); }
.work__name { font-size: 19px; font-weight: 700; margin-top: 9px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.work__name .arw { color: var(--soft); transition: transform 0.3s; }
.work:hover .work__name .arw { transform: translate(3px, -3px); color: var(--accent); }
.work__desc { font-size: 13.5px; color: var(--soft); margin-top: 8px; line-height: 1.62; word-break: keep-all; }

/* ---------- 포트폴리오 아트 포스터 (업종별 순수 CSS 비주얼) ---------- */
.pst { position: absolute; inset: 0; overflow: hidden; transition: transform 0.6s var(--ease); }
.work:hover .pst { transform: scale(1.045); }
.pst > * { position: absolute; }

/* CREAS — 스포티/골프 브랜드 */
.pst--creas { background: linear-gradient(135deg, #180f04 0%, #7d3010 52%, #ED7D31 128%); }
.pst-creas__streak {
  top: -22%; left: -12%; width: 145%; height: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(-17deg);
}
.pst-creas__tag { top: 16px; left: 18px; font-size: 9px; font-weight: 800; letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.72); }
.pst-creas__mark { left: 18px; bottom: 15px; font-size: 33px; font-weight: 800; letter-spacing: -0.035em; color: #fff; line-height: 0.88; }
.pst-creas__mark b { display: block; font-size: 11px; letter-spacing: 0.32em; color: #ffd6b8; font-weight: 800; margin-top: 3px; }

/* 논현 로스터리 — 따뜻한 카페 */
.pst--roast { background: radial-gradient(125% 130% at 76% 24%, #f4eddf, #e2d3ba); }
.pst-roast__cup {
  right: 26px; top: 50%; translate: 0 -50%; width: 86px; height: 86px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #75502f, #35200f 72%);
  box-shadow: 0 0 0 8px #dcc9a6, 0 18px 30px -14px rgba(53, 32, 15, 0.65);
}
.pst-roast__cup::after { content: ""; position: absolute; inset: 15px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.13); }
.pst-roast__steam {
  right: 60px; top: 18px; width: 2px; height: 26px; border-radius: 2px; filter: blur(0.7px);
  background: linear-gradient(rgba(120, 82, 50, 0.5), transparent);
  box-shadow: 9px 3px 0 rgba(120, 82, 50, 0.38), 18px -1px 0 rgba(120, 82, 50, 0.28);
}
.pst-roast__since { left: 22px; top: 20px; font-size: 9px; font-weight: 800; letter-spacing: 0.2em; color: #8a6842; }
.pst-roast__name { left: 21px; bottom: 17px; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 33px; color: #45301d; letter-spacing: -0.01em; }

/* 무브 필라테스 — 차분한 세이지 */
.pst--pil { background: linear-gradient(158deg, #e9efe9 0%, #cbdcce 100%); }
.pst-pil__arc { right: -34px; top: -34px; width: 176px; height: 176px; border-radius: 50%; border: 2px solid rgba(52, 104, 74, 0.34); }
.pst-pil__arc::after { content: ""; position: absolute; right: 32px; bottom: 20px; width: 124px; height: 124px; border-radius: 50%; border: 1px solid rgba(52, 104, 74, 0.2); }
.pst-pil__dot { right: 6px; top: 62px; width: 10px; height: 10px; border-radius: 50%; background: #3f7a55; box-shadow: 0 0 0 5px rgba(63, 122, 85, 0.18); }
.pst-pil__name { left: 22px; bottom: 28px; font-size: 40px; font-weight: 300; letter-spacing: -0.025em; color: #2f5b41; }
.pst-pil__sub { left: 24px; bottom: 19px; font-size: 9px; font-weight: 800; letter-spacing: 0.26em; color: #5f8a70; }

/* 플로우 — SaaS 대시보드 */
.pst--flow { background: radial-gradient(125% 105% at 82% -5%, #1c2150, #0a0d24 62%); }
.pst-flow__glow { top: -46px; right: -24px; width: 210px; height: 168px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 102, 240, 0.5), transparent 70%); filter: blur(10px); }
.pst-flow__card {
  right: 18px; bottom: 18px; width: 152px; height: 94px; border-radius: 12px; padding: 13px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(4px); box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.6);
}
.pst-flow__bars { position: static; display: flex; align-items: flex-end; gap: 6px; height: 46px; }
.pst-flow__bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(#5e8bff, #2f66f0); }
.pst-flow__bars i:nth-child(1) { height: 42%; } .pst-flow__bars i:nth-child(2) { height: 72%; }
.pst-flow__bars i:nth-child(3) { height: 54%; } .pst-flow__bars i:nth-child(4) { height: 92%; }
.pst-flow__bars i:nth-child(5) { height: 62%; }
.pst-flow__pill { position: static; margin-top: 12px; width: 56px; height: 8px; border-radius: 100px; background: rgba(255, 255, 255, 0.2); }
.pst-flow__name { left: 20px; top: 17px; font-size: 27px; font-weight: 800; letter-spacing: -0.025em; color: #fff; }
.pst-flow__name b { display: inline-block; width: 8px; height: 21px; background: #2f66f0; margin-left: 4px; vertical-align: -3px; border-radius: 1px; }

/* 아뜰리에 노트 — 패션 에디토리얼 모노크롬 */
.pst--atl { background: #0b0b0c; }
.pst-atl__fig { right: 14px; top: 14px; bottom: 14px; width: 33%; background: linear-gradient(180deg, #2c2c30, #131315); }
.pst-atl__frame { inset: 13px; border: 1px solid rgba(255, 255, 255, 0.24); }
.pst-atl__no { right: 22px; top: 22px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.62); z-index: 2; }
.pst-atl__name { left: 26px; bottom: 30px; font-family: Georgia, "Times New Roman", serif; font-size: 35px; color: #fff; letter-spacing: -0.01em; }
.pst-atl__sub { left: 28px; bottom: 20px; font-size: 8.5px; font-weight: 800; letter-spacing: 0.28em; color: rgba(255, 255, 255, 0.5); }

/* 스페이스 그라운드 — 건축 블루프린트 */
.pst--spc { background: linear-gradient(158deg, #ddd8ce 0%, #bcb6aa 100%); }
.pst-spc__struct { right: 24px; top: 50%; translate: 0 -50%; width: 116px; height: 116px; border: 1.5px solid rgba(58, 53, 43, 0.45); }
.pst-spc__struct::before {
  content: ""; position: absolute; inset: -1.5px; border: 1.5px solid rgba(58, 53, 43, 0.28); transform: translate(18px, -18px);
}
.pst-spc__struct::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(58, 53, 43, 0.28), rgba(58, 53, 43, 0.28)) 0 34%/100% 1.5px no-repeat,
    linear-gradient(rgba(58, 53, 43, 0.28), rgba(58, 53, 43, 0.28)) 0 67%/100% 1.5px no-repeat,
    linear-gradient(90deg, rgba(58, 53, 43, 0.28), rgba(58, 53, 43, 0.28)) 34% 0/1.5px 100% no-repeat,
    linear-gradient(90deg, rgba(58, 53, 43, 0.28), rgba(58, 53, 43, 0.28)) 67% 0/1.5px 100% no-repeat;
}
.pst-spc__name { left: 22px; bottom: 29px; font-size: 30px; font-weight: 600; letter-spacing: 0.02em; color: #38332b; }
.pst-spc__sub { left: 23px; bottom: 19px; font-size: 9px; font-weight: 800; letter-spacing: 0.2em; color: #6b6453; text-transform: uppercase; }

/* 라움 피부과 — 클린 메디컬 */
.pst--clinic { background: linear-gradient(158deg, #f3f8ff 0%, #d9e8fb 100%); }
.pst-clinic__glow { top: -34%; right: -12%; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 102, 240, 0.22), transparent 70%); filter: blur(8px); }
.pst-clinic__line { left: 13%; right: 13%; top: 53%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, rgba(47, 102, 240, 0.55) 28%, rgba(47, 102, 240, 0.55) 72%, transparent); }
.pst-clinic__cross { right: 24px; top: 22px; width: 28px; height: 28px; }
.pst-clinic__cross::before, .pst-clinic__cross::after { content: ""; position: absolute; background: #2f66f0; border-radius: 2px; }
.pst-clinic__cross::before { left: 11px; top: 0; width: 6px; height: 28px; }
.pst-clinic__cross::after { top: 11px; left: 0; width: 28px; height: 6px; }
.pst-clinic__tag { left: 20px; top: 20px; font-size: 9px; font-weight: 800; letter-spacing: 0.2em; color: #4a6fa5; }
.pst-clinic__name { left: 20px; bottom: 29px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; color: #14315e; letter-spacing: -0.01em; }
.pst-clinic__sub { left: 21px; bottom: 19px; font-size: 8.5px; font-weight: 800; letter-spacing: 0.22em; color: #5878a8; }

/* ---------- 사이트 유형 ---------- */
.type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 15px; }
.type {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card);
  box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.type:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.type__bar { height: 92px; position: relative; }
.type__bar::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 80% 10%, rgba(255, 255, 255, 0.22), transparent 55%); }
.type__body { padding: 17px 18px 19px; }
.type__name { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.type__desc { font-size: 12.5px; color: var(--soft); margin-top: 6px; line-height: 1.6; word-break: keep-all; min-height: 40px; }
.type__prev { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--accent-2); }
.type__prev:hover { color: var(--ink); }

/* ---------- 진행 과정 ---------- */
.proc { display: grid; gap: 0; }
.proc__row {
  display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line); transition: padding-left 0.35s var(--ease);
}
.proc__row:hover { padding-left: 10px; }
.proc__row:last-child { border-bottom: 1px solid var(--line); }
.proc__step { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: transparent;
  -webkit-text-stroke: 1px var(--line-2); }
.proc__row:hover .proc__step { -webkit-text-stroke: 1px var(--accent); }
.proc__t { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.proc__d { font-size: 14px; color: var(--soft); margin-top: 7px; line-height: 1.7; max-width: 620px; word-break: keep-all; }

/* ---------- 강점 ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 14px; }
.feat { display: flex; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); box-shadow: var(--shadow-sm); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s; }
.feat:hover { border-color: rgba(31, 95, 224, 0.25); background: var(--card); box-shadow: var(--shadow); transform: translateY(-3px); }
.feat__ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 900; }
.feat h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.feat p { font-size: 13px; color: var(--soft); margin-top: 5px; line-height: 1.6; word-break: keep-all; }

/* ---------- 비교 ---------- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cmp__head { padding: 2px 4px 8px; }
.cmp__tag { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.cmp__tag--now { color: var(--accent-2); }
.cmp__cell { display: flex; align-items: flex-start; gap: 10px; padding: 16px 18px; border-radius: 12px; font-size: 14.5px; line-height: 1.5; word-break: keep-all; }
.cmp__cell--old { background: var(--bg-alt); border: 1px solid var(--line); color: var(--soft); }
.cmp__cell--now { background: rgba(47, 102, 240, 0.08); border: 1px solid rgba(47, 102, 240, 0.3); color: var(--ink); font-weight: 600; }
.cmp__x { color: #c25b45; flex: none; font-weight: 800; }
.cmp__o { color: var(--accent-2); flex: none; font-weight: 800; }
@media (max-width: 620px) { .cmp { grid-template-columns: 1fr; } .cmp__head { display: none; } .cmp__cell--old { opacity: 0.65; } }

/* ---------- 가격 ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 32px 26px; box-shadow: var(--shadow-sm); }
.price.is-hot { border-color: var(--accent); box-shadow: 0 30px 60px -28px rgba(31, 95, 224, 0.45); background: linear-gradient(180deg, rgba(31, 95, 224, 0.05), var(--card)); transform: translateY(-6px); }
.price__badge { position: absolute; top: -11px; left: 50%; translate: -50% 0; background: var(--grad); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 100px; }
.price__name { font-size: 20px; font-weight: 800; }
.price__tag { font-size: 12.5px; color: var(--mute); margin-top: 4px; }
.price__amt { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 18px 0 20px; }
.price__amt span { font-size: 14px; font-weight: 600; color: var(--mute); margin-left: 4px; }
.price__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price__list li { font-size: 13.5px; color: var(--soft); padding-left: 22px; position: relative; word-break: keep-all; line-height: 1.5; }
.price__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 800; }
.price__cta { justify-content: center; width: 100%; }
.price-note { margin-top: 18px; font-size: 12.5px; color: var(--mute); text-align: center; line-height: 1.7; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ---------- 정액 가격 ---------- */
.flatprice { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto; border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  background: var(--card); box-shadow: var(--shadow); }
.fp__card { flex: 1; min-width: 220px; padding: 40px 30px; text-align: center; }
.fp__card--mo { background: var(--bg-alt); }
.fp__tag { font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.fp__amt { font-size: clamp(46px, 8vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 14px 0 12px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fp__amt span { font-size: 22px; font-weight: 800; margin-left: 4px; -webkit-text-fill-color: var(--ink); }
.fp__amt--sm { font-size: clamp(38px, 6vw, 50px); }
.fp__note { font-size: 13px; color: var(--soft); line-height: 1.55; }
.fp__plus { display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 300; color: var(--mute); }
.fp__cta { text-align: center; margin-top: 24px; }
@media (max-width: 560px) { .flatprice { flex-direction: column; } }

/* 만족 보장 (환불) */
.guarantee {
  display: flex; align-items: center; gap: 16px; max-width: 640px; margin: 28px auto 0;
  padding: 20px 24px; border-radius: 16px; background: rgba(31, 95, 224, 0.05);
  border: 1px solid rgba(31, 95, 224, 0.22); box-shadow: var(--shadow-sm);
}
.guarantee__ic { font-size: 27px; flex: none; line-height: 1; }
.guarantee__t { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.guarantee__d { font-size: 13px; color: var(--soft); margin-top: 4px; line-height: 1.6; word-break: keep-all; }
@media (max-width: 480px) { .guarantee { flex-direction: column; text-align: center; gap: 10px; } }

/* ---------- 마퀴 (흐르는 키워드) ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-alt); padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: mq 36s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.mq__item { font-size: clamp(15px, 2vw, 20px); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.mq__dot { color: var(--accent); font-size: 10px; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- 신뢰 스트립 ---------- */
.trustbar { background: var(--bg); border-bottom: 1px solid var(--line); }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; padding: 18px 0; }
.trustbar__item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--soft); }
.trustbar__item b { color: var(--accent); font-weight: 900; }
@media (max-width: 600px) { .trustbar__inner { gap: 10px 20px; } .trustbar__item { font-size: 12.5px; } }

/* ---------- 후불 진행 방식 ---------- */
.shead--center { max-width: 640px; margin-inline: auto; text-align: center; }
.pay-section { position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(31, 95, 224, 0.05), rgba(31, 95, 224, 0.015)); }
.pay-section::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(680px 340px at 50% -12%, rgba(79, 134, 255, 0.14), transparent 70%); }
.pay-section > .wrap { position: relative; z-index: 1; }
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.pay-grid::before { content: ""; position: absolute; top: 52px; left: 17%; right: 17%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 7px, transparent 7px 15px); }
.pay { position: relative; z-index: 1; background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 26px 28px; box-shadow: var(--shadow); text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.pay:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pay__top { display: flex; flex-direction: column-reverse; align-items: center; gap: 12px; }
.pay__step { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); }
.pay__ic { width: 64px; height: 64px; display: grid; place-items: center; font-size: 29px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pay__t { font-size: 18.5px; font-weight: 800; margin-top: 16px; letter-spacing: -0.02em; }
.pay__d { font-size: 13.8px; color: var(--soft); margin-top: 9px; line-height: 1.72; }
@media (max-width: 780px) { .pay-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } .pay-grid::before { display: none; } }

/* ---------- 기본 제공 체크리스트 ---------- */
.incl-wrap { margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.incl__head { text-align: center; font-size: 15px; color: var(--soft); margin-bottom: 22px; }
.incl__head b { color: var(--ink); font-weight: 800; }
.incl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 24px; max-width: 740px; margin-inline: auto; }
.incl { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.incl__ic { flex: none; width: 20px; height: 20px; border-radius: 50%; background: rgba(31, 95, 224, 0.1);
  color: var(--accent); font-size: 11px; font-weight: 900; display: grid; place-items: center; }
@media (max-width: 640px) { .incl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .incl-grid { grid-template-columns: 1fr; } }

/* ---------- 회사 소개 (About) ---------- */
#about { position: relative; overflow: hidden; }
#about::before {
  content: ""; position: absolute; top: -18%; right: -6%; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(79, 134, 255, 0.11), transparent 72%); pointer-events: none;
}
#about > .wrap { position: relative; z-index: 1; }
.ab { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.ab__lead .title { margin-top: 6px; }
.ab__text { font-size: clamp(15px, 1.7vw, 17px); color: var(--soft); line-height: 1.9; word-break: keep-all; margin-bottom: 14px; }
.ab__text:last-of-type { margin-bottom: 0; }
.ab__text--em { font-size: clamp(18px, 2.3vw, 23px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.5; margin: 4px 0 16px; }
.ab__promises { display: grid; gap: 12px; margin-top: 26px; }
.ab__promise { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.ab__ic { font-size: 22px; flex: none; line-height: 1.2; }
.ab__promise b { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.ab__promise span { font-size: 13px; color: var(--soft); margin-top: 2px; display: block; }
.ab__sign { margin-top: 20px; font-size: 14.5px; font-weight: 700; color: var(--accent); font-style: italic; letter-spacing: -0.01em; }
@media (max-width: 760px) { .ab { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- 후기 ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.tst { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; box-shadow: var(--shadow-sm); }
.tst__q { font-size: 15.5px; line-height: 1.75; color: var(--ink); word-break: keep-all; }
.tst__by { margin-top: 20px; display: flex; flex-direction: column; gap: 2px; }
.tst__by b { font-size: 13.5px; }
.tst__by span { font-size: 12px; color: var(--mute); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px 4px; background: none; border: 0; cursor: pointer; text-align: left; font: inherit; font-size: 16px; font-weight: 700; color: var(--ink); }
.faq__q:hover { color: var(--accent-2); }
.faq__mark { flex: none; font-size: 22px; color: var(--accent-2); font-weight: 300; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__mark { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__item.is-open .faq__a { max-height: 360px; }
.faq__a p { padding: 0 4px 22px; font-size: 14px; color: var(--soft); line-height: 1.75; word-break: keep-all; }

/* ---------- CTA ---------- */
.cta { padding: clamp(80px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 62% 92% at 50% 118%, rgba(79, 134, 255, 0.14), transparent 70%);
}
.cta__inner { position: relative; z-index: 1; text-align: center; }
.cta__title { font-size: clamp(28px, 4.6vw, 52px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.16; word-break: keep-all; }
.cta__sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--soft); margin: 18px auto 0; max-width: 540px; line-height: 1.75; word-break: keep-all; }
.cta__actions { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta__note { margin-top: 20px; font-size: 14px; color: var(--soft); line-height: 1.7; }
.cta__note b { color: var(--ink); font-weight: 700; }
.cta__chan { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.chan { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--card); font-size: 13.5px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.chan:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.chan__ic { font-size: 15px; }
.cta__reassure { margin-top: 20px; font-size: 13px; color: var(--mute); }

/* ---------- 푸터 ---------- */
.foot { border-top: 1px solid var(--line); padding: 46px 0 0; position: relative; overflow: hidden; }
.foot__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; padding-bottom: 34px; }
.foot__logo { font-size: 22px; font-weight: 800; letter-spacing: 0.02em; }
.foot__logo::after { content: "."; color: var(--accent); }
.foot__name { font-size: 13px; color: var(--mute); margin-top: 4px; }
.foot__copy { font-size: 12px; color: var(--mute); }
.foot__copy a { color: var(--soft); }
.foot__copy a:hover { color: var(--accent); text-decoration: underline; }
.foot__giant {
  font-size: clamp(70px, 20vw, 260px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.8;
  text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(17, 26, 48, 0.07);
  padding-bottom: 12px; user-select: none;
}

/* ---------- 법적 문서 (약관·방침) ---------- */
.legaltop { padding: 20px clamp(22px, 4vw, 40px); border-bottom: 1px solid var(--line); }
.legaltop .nav__logo { font-size: 20px; }
.legal { max-width: 820px; margin-inline: auto; padding: 40px 22px 90px; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--soft); margin-bottom: 22px; }
.legal__back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; letter-spacing: -0.03em; }
.legal__meta { margin-top: 10px; font-size: 13px; color: var(--mute); }
.legal__note { margin: 22px 0 8px; padding: 14px 16px; border: 1px dashed var(--line-2); border-radius: 12px; background: var(--bg-alt); font-size: 13px; color: var(--soft); line-height: 1.65; }
.legal h2 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 32px 0 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal p, .legal li { font-size: 14.5px; color: var(--soft); line-height: 1.8; }
.legal ul, .legal ol { margin: 8px 0 8px 20px; }
.legal li { margin-bottom: 4px; }
.legal strong { color: var(--ink); font-weight: 700; }
.legal table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13.5px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; color: var(--soft); vertical-align: top; }
.legal th { background: var(--bg-alt); color: var(--ink); font-weight: 700; white-space: nowrap; }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
/* 그리드 카드 등장 시 은은한 스태거 */
[class$="-grid"] > .reveal:nth-child(2) { transition-delay: 0.06s; }
[class$="-grid"] > .reveal:nth-child(3) { transition-delay: 0.12s; }
[class$="-grid"] > .reveal:nth-child(4) { transition-delay: 0.09s; }
[class$="-grid"] > .reveal:nth-child(5) { transition-delay: 0.15s; }
[class$="-grid"] > .reveal:nth-child(6) { transition-delay: 0.12s; }

/* ---------- 인터랙션 ---------- */
/* 스크롤 진행바 */
.scrollprog { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: var(--grad); box-shadow: 0 0 10px rgba(31, 95, 224, 0.5); will-change: width; }
/* 카드 스포트라이트 — 커서 따라 은은한 하이라이트 */
.spot { position: relative; }
.spot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 2;
  background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 0%), rgba(31, 95, 224, 0.09), transparent 62%);
  opacity: 0; transition: opacity 0.35s;
}
.spot:hover::after { opacity: 1; }
/* 히어로 글로우 부드럽게 이동 */
.hero__glow { transition: transform 0.5s ease-out; }

/* 플로팅 상담 CTA */
.fcta { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 0.35s, transform 0.35s; }
.fcta.is-on { opacity: 1; transform: none; pointer-events: auto; }
.fcta__btn { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 14px; letter-spacing: -0.01em;
  border-radius: 100px; box-shadow: 0 12px 30px -8px rgba(13, 21, 38, 0.35); transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.fcta__btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(13, 21, 38, 0.45); }
.fcta__btn--kakao { background: #FEE500; color: #3c1e1e; width: 54px; height: 54px; justify-content: center; }
.fcta__btn--tel { background: var(--card); color: var(--ink); border: 1px solid var(--line-2); width: 54px; height: 54px; justify-content: center; }
.fcta__btn--kakao .fcta__ic, .fcta__btn--tel .fcta__ic { font-size: 21px; }
.fcta__btn--kakao .fcta__t, .fcta__btn--tel .fcta__t { display: none; }
.fcta__btn--main { background: var(--grad); color: #fff; padding: 16px 24px; }
@media (max-width: 640px) {
  .fcta { right: 0; left: 0; bottom: 0; gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
    transform: translateY(100%); }
  .fcta.is-on { transform: none; }
  .fcta__btn { box-shadow: none; height: 50px; border-radius: 13px; }
  .fcta__btn--kakao, .fcta__btn--tel { width: 50px; flex: none; }
  .fcta__btn--main { flex: 1; justify-content: center; padding: 0; font-size: 15px; }
  body { padding-bottom: 66px; }
}
@media (prefers-reduced-motion: reduce) { .fcta { transition: opacity 0.2s; } }

/* ---------- 반응형 ---------- */
@media (max-width: 860px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__menu {
    position: fixed; inset: 0 0 auto; top: 0; flex-direction: column; align-items: stretch;
    gap: 0; padding: 84px 24px 30px; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
    transform: translateY(-100%); transition: transform 0.4s var(--ease); border-bottom: 1px solid var(--line);
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu > a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink); }
  .nav__cta { text-align: center; margin-top: 14px; border-color: var(--accent) !important; }
  .nav__burger { display: flex; z-index: 60; }
  .nav.is-menu .nav__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.is-menu .nav__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .proc__row { grid-template-columns: 60px 1fr; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
