/* =========================================================
   맑은배관 — Landing Styles v2 (밝고 화사한 한국형 서비스 LP)
   토큰 기반 · 프레임워크 없음 · 컬러 듀오톤 아이콘
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --navy-900: #0A1B3A;
  --navy-800: #0E2A5A;
  --blue-700: #0847C7;
  --blue-600: #0B5CFF;
  --blue-500: #2A72FF;
  --blue-100: #DBE7FF;
  --blue-050: #EEF4FF;
  --cyan-500: #0FB6CE;
  --cyan-400: #17C9E0;
  --cyan-100: #CFF3F9;
  --cyan-050: #E9FBFD;
  --point-500: #FF5B29;
  --point-600: #EA4A1C;
  --point-050: #FFF0EB;
  --ink-900: #16213A;
  --ink-700: #33405A;
  --ink-500: #5B6B85;
  --ink-400: #8A97AE;
  --line: #E4EBF6;
  --white: #FFFFFF;
  --bg-soft: #F4F8FF;
  --star: #FFB020;

  /* Type */
  --font-hook: 'JalnanGothic', 'GmarketSans', sans-serif;
  --font-head: 'GmarketSans', 'Pretendard Variable', sans-serif;
  --font-body: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;

  /* Radius */
  --r-lg: 24px;
  --r-card: 20px;
  --r-btn: 14px;
  --r-chip: 999px;

  /* Shadow (soft, colored) */
  --sh-1: 0 4px 16px rgba(14, 42, 90, .06);
  --sh-2: 0 10px 30px rgba(14, 42, 90, .09);
  --sh-3: 0 20px 50px rgba(14, 42, 90, .14);
  --sh-blue: 0 14px 34px rgba(11, 92, 255, .16);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 220ms;
  --t-slow: 300ms;

  /* Layout */
  --container: 1600px;
  --gutter: clamp(16px, 3vw, 36px);
  --header-h: 70px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
html:focus-within { scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--ink-700);
  background: var(--white);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
strong { font-weight: 700; }

:where(h1, h2, h3) {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  line-height: 1.24;
  color: var(--navy-900);
  font-weight: 700;
}

.icon { width: 24px; height: 24px; flex: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.tx-point { color: var(--point-500); }
.tx-blue { color: var(--blue-600); }

/* Accessibility */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  padding: 10px 16px; background: var(--navy-900); color: #fff;
  border-radius: 8px; transform: translateY(-160%); transition: transform var(--t-base) var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(44px, 5vw, 74px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--cyan-050), var(--white)); }

.section-head { max-width: 860px; margin: 0 auto clamp(28px, 3.6vw, 48px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-title { font-family: var(--font-hook); font-size: clamp(36px, 6.2vw, 70px); line-height: 1.16; letter-spacing: -0.022em; text-wrap: balance; }
.title-box { display: inline-block; color: var(--blue-600); border-bottom: 7px solid var(--blue-500); padding-bottom: 0.04em; line-height: 1.1; }
.title-check { display: inline-block; vertical-align: 0.04em; width: 0.82em; height: 0.82em; margin-left: 0.2em; }
.title-check svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 3px 6px rgba(42, 114, 255, .22)); }
.section-lead { margin-top: 16px; font-size: clamp(16px, 2vw, 20px); color: var(--ink-500); line-height: 1.6; text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-btn);
  font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  line-height: 1; white-space: nowrap; min-height: 50px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
}
.btn .icon { width: 20px; height: 20px; }
.btn:active { transform: scale(0.98); }

.btn--point { background: var(--point-500); color: #fff; }
.btn--point:hover { background: var(--point-600); transform: translateY(-2px); }

.btn--blue { background: var(--blue-600); color: #fff; box-shadow: var(--sh-blue); }
.btn--blue:hover { background: var(--blue-700); transform: translateY(-2px); }

.btn--outline-light { background: rgba(255, 255, 255, .1); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .18); box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-2px); }

.btn--kakao { background: #FEE500; color: #191600; }
.btn--kakao:hover { filter: brightness(.96); transform: translateY(-2px); }

.btn--sm { padding: 10px 18px; min-height: 44px; font-size: 15px; }
.btn--lg { padding: 18px 32px; min-height: 60px; font-size: clamp(16px, 2vw, 18px); }
.btn--xl { padding: 20px 38px; min-height: 66px; border-radius: 16px; font-size: clamp(17px, 2.1vw, 20px); }
.btn--xl .icon { width: 22px; height: 22px; }

/* ---------- (A) Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), backdrop-filter var(--t-base) var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.site-header__right { display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-hook); font-size: 23px; letter-spacing: -0.02em; color: #fff; text-shadow: 0 1px 10px rgba(4, 10, 26, .35); transition: color var(--t-base) var(--ease); }
.brand .icon { width: 30px; height: 30px; }
.region-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink-500); transition: color var(--t-base) var(--ease); }
.region-badge .icon { width: 17px; height: 17px; }
.site-header.is-scrolled { background: rgba(255, 255, 255, .85); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line), var(--sh-1); }
.site-header.is-scrolled .brand { color: var(--navy-900); text-shadow: none; }
.site-header.is-scrolled .region-badge { color: var(--ink-500); }

/* ---------- (B) Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(94vh, 880px); display: flex; flex-direction: column;
  margin-top: calc(-1 * var(--header-h)); padding-top: var(--header-h); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; background: linear-gradient(130deg, #0A1B3A, #0E2A5A 58%, #0B3A4D); }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8,19,44,.9) 0%, rgba(8,19,44,.74) 28%, rgba(8,19,44,.44) 50%, rgba(8,19,44,.16) 74%, rgba(8,19,44,.05) 100%),
    linear-gradient(180deg, rgba(8,19,44,.28) 0%, rgba(8,19,44,0) 34%, rgba(8,19,44,0) 62%, rgba(8,19,44,.42) 100%);
}
.hero__inner { flex: 1; display: flex; align-items: flex-start; padding-block: clamp(24px, 3.5vw, 52px); }
.hero__grid { width: 100%; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero__content { max-width: 720px; }

/* 통증 후킹 질문 */
.hero__ask { margin-bottom: clamp(14px, 2vw, 22px); font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 2.5vw, 23px); line-height: 1.5; letter-spacing: -0.01em; color: var(--ink-700); }
.hero__ask-q { display: block; margin-bottom: 8px; font-family: var(--font-hook); font-weight: 400; font-size: clamp(19px, 3.5vw, 35px); line-height: 1.3; color: var(--navy-800); }
.hero__ask-q b { color: var(--point-600); }

/* 초대형 2톤 헤드라인 */
.hero__title { font-family: var(--font-hook); font-size: clamp(44px, 9.8vw, 112px); line-height: 1.02; letter-spacing: -0.028em; color: #fff; text-shadow: 0 2px 26px rgba(4, 10, 26, .38); }
.hero__title-l1, .hero__title-l2 { display: block; white-space: nowrap; }
.hero__title-l2 { margin-top: .04em; }
.hero__zero { display: inline-block; color: var(--point-500); font-size: 1.16em; }

/* 형광펜 강조 약속 */
.hero__promise { margin-top: clamp(18px, 2.4vw, 26px); font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2.3vw, 21px); line-height: 1.55; color: var(--navy-800); letter-spacing: -0.01em; text-wrap: balance; }
.hl { padding: 0 .1em; background-repeat: no-repeat; background-position: 0 82%; background-size: 100% .44em; font-weight: 800; }
.hl--blue { color: var(--blue-700); background-image: linear-gradient(rgba(43, 127, 255, .22), rgba(43, 127, 255, .22)); }
.hl--point { color: var(--point-600); background-image: linear-gradient(rgba(255, 91, 41, .24), rgba(255, 91, 41, .24)); }

/* 히어로 강점 카드 */
.hero__points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(22px, 2.8vw, 32px); }
.hero__point { display: inline-flex; align-items: center; gap: 11px; padding: 14px 22px; background: rgba(255, 255, 255, .97); border-radius: 15px; box-shadow: var(--sh-2); font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 1.9vw, 20px); color: var(--navy-800); letter-spacing: -0.01em; backdrop-filter: blur(3px); }
.hero__point .icon { width: 24px; height: 24px; flex: none; }
.hero__point b { color: var(--blue-700); }

/* CTA */
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: clamp(26px, 3.2vw, 36px); }
.hero__cta-note { font-family: var(--font-head); font-weight: 600; font-size: clamp(17px, 2.1vw, 20px); line-height: 1.45; color: rgba(255, 255, 255, .92); letter-spacing: -0.01em; text-shadow: 0 1px 12px rgba(4, 10, 26, .4); }
.hero__cta-note b { color: var(--point-500); }

/* 플로팅 배지(말풍선) */
.hero__stage { position: relative; display: grid; gap: clamp(14px, 1.7vw, 20px); justify-items: start; z-index: 1; }
.hbadge { display: inline-flex; align-items: center; gap: 16px; padding: 18px 30px 18px 18px; border-radius: 22px; background: rgba(255, 255, 255, .96); box-shadow: var(--sh-3); backdrop-filter: blur(4px); will-change: transform; }
.hbadge__ico { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-050); flex: none; }
.hbadge__ico img { width: 38px; height: 38px; display: block; }
.hbadge__tx { display: grid; line-height: 1.2; }
.hbadge__tx b { font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 1.9vw, 23px); color: var(--navy-900); letter-spacing: -0.01em; }
.hbadge__tx small { margin-top: 3px; font-size: 14px; font-weight: 500; color: var(--ink-500); }
.hbadge--zero { margin-left: 4%; background: linear-gradient(180deg, #FFF4EF, #FFE8DD); box-shadow: inset 0 0 0 1.6px rgba(255, 91, 41, .28), var(--sh-3); animation: floatA 5s ease-in-out infinite; }
.hbadge--zero .hbadge__ico { background: #fff; box-shadow: inset 0 0 0 1px rgba(255, 91, 41, .18); }
.hbadge--zero .hbadge__tx b { color: var(--point-600); }
.hbadge--price { margin-left: 12%; box-shadow: inset 0 0 0 1.6px rgba(43, 127, 255, .22), var(--sh-3); animation: floatB 5.6s ease-in-out .3s infinite; }
.hbadge--price .hbadge__tx b { color: var(--blue-700); }
.hbadge--day { margin-left: 5%; box-shadow: inset 0 0 0 1.6px rgba(15, 178, 200, .28), var(--sh-3); animation: floatC 5.3s ease-in-out .55s infinite; }
.hbadge--day .hbadge__ico { background: var(--cyan-050, #E4F8FB); }
@keyframes floatA { 0%, 100% { transform: rotate(-2.4deg) translateY(0); } 50% { transform: rotate(-2.4deg) translateY(-9px); } }
@keyframes floatB { 0%, 100% { transform: rotate(1.8deg) translateY(0); } 50% { transform: rotate(1.8deg) translateY(-8px); } }
@keyframes floatC { 0%, 100% { transform: rotate(-1.2deg) translateY(0); } 50% { transform: rotate(-1.2deg) translateY(-10px); } }

/* ---------- (C) Why v2 (아이폰 문자 목업 + 이유 리스트) ---------- */
.why2 { display: grid; grid-template-columns: minmax(0, 600px) auto; justify-content: center; column-gap: clamp(40px, 5vw, 84px); align-items: center; }
.why2-list { display: grid; gap: 14px; }
.why2-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 16px 20px; box-shadow: var(--sh-1); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.why2-item:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.why2-item img { width: 54px; height: 54px; flex: none; object-fit: contain; }
.why2-item__t { display: grid; }
.why2-item__t b { font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2vw, 19px); color: var(--navy-900); letter-spacing: -0.01em; }
.why2-item__t span { font-size: 14px; color: var(--ink-500); margin-top: 1px; }

/* 강점 강조 띠 */
.promo-band { background: linear-gradient(118deg, var(--blue-500), var(--cyan-400)); padding-block: clamp(46px, 6vw, 76px); }
.promo-band__inner { text-align: center; max-width: 980px; }
.promo-band__title { font-family: var(--font-hook); color: #fff; font-size: clamp(28px, 5vw, 54px); line-height: 1.22; letter-spacing: -0.02em; text-wrap: balance; text-shadow: 0 2px 16px rgba(10, 27, 58, .18); }
.promo-band__sub { margin-top: clamp(12px, 1.8vw, 20px); font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 2vw, 21px); line-height: 1.6; color: rgba(255, 255, 255, .94); letter-spacing: -0.01em; text-wrap: balance; }

/* iPhone 목업 */
.phone { display: flex; justify-content: center; }
.phone__frame { position: relative; width: min(330px, 84vw); aspect-ratio: 330 / 685; background: #0c0c0f; border-radius: 48px; padding: 11px; box-shadow: inset 0 0 0 2px #2b2b32; }
.phone__screen { position: relative; width: 100%; height: 100%; background: #fff; border-radius: 38px; overflow: hidden; display: flex; flex-direction: column; }
.phone__island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 32%; height: 25px; background: #0c0c0f; border-radius: 999px; z-index: 6; }
.phone__status { display: flex; justify-content: space-between; align-items: center; padding: 15px 26px 7px; font-size: 13px; font-weight: 700; color: #111; }
.phone__status-r { display: inline-flex; align-items: center; gap: 5px; }
.chat__header { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 4px 16px 12px; border-bottom: 1px solid #ededed; }
.chat__peer { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.chat__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--blue-500), var(--cyan-500)); display: grid; place-items: center; }
.chat__name { font-size: 12.5px; font-weight: 600; color: #111; }
.chat__body { flex: 1; overflow: hidden; padding: 12px 13px 16px; display: flex; flex-direction: column; gap: 6px; }
.chat__meta { text-align: center; font-size: 10.5px; color: #9a9a9e; margin: 2px 0 6px; }
.msg { max-width: 80%; padding: 8px 13px; border-radius: 17px; font-size: 12.8px; line-height: 1.42; letter-spacing: -0.01em; word-break: keep-all; }
.msg b { font-weight: 700; }
.msg--in { align-self: flex-start; background: #e9e9eb; color: #111; border-bottom-left-radius: 5px; }
.msg--out { align-self: flex-end; background: #0b7cff; color: #fff; border-bottom-right-radius: 5px; }
.chat__sent { align-self: flex-end; font-size: 10px; color: #9a9a9e; margin-top: 1px; }

/* ---------- Cards: 공통 아이콘 타일 (3D PNG 아이콘) ---------- */
.icon-tile { display: inline-grid; place-items: center; }
.icon-tile .icon { width: 100%; height: 100%; }
.icon-tile img { width: 100%; height: 100%; object-fit: contain; }
.ico3d { display: block; object-fit: contain; }

/* ---------- (D) Split feature (좌우 교차 사진-텍스트) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(48px, 7vw, 96px); }
/* 지그재그: DOM 순서로 좌우 교차 (split1/3 = 텍스트먼저, split2 = media먼저). 별도 order 불필요 */
.split__title { font-family: var(--font-hook); font-size: clamp(28px, 4.4vw, 50px); line-height: 1.22; letter-spacing: -0.02em; }
.split__title .tx-blue, .split__title .tx-point { display: inline; }
.split__lead { margin-top: 18px; font-size: clamp(16px, 2vw, 18px); color: var(--ink-500); line-height: 1.7; }
.split__list { display: grid; gap: 12px; margin-top: 24px; }
.split__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 600; color: var(--ink-700); }
.split__list .icon { width: 24px; height: 24px; margin-top: 1px; }
/* split 글자 오른쪽 정렬 (이미지 쪽으로 붙임). 역방향 행은 가운데 쪽 = 왼쪽 유지 */
.split__text { text-align: right; }
.split__list li { flex-direction: row-reverse; }
.split--reverse .split__text { text-align: left; }
.split--reverse .split__list li { flex-direction: row; }
.split__media { position: relative; }
.split__media .media { aspect-ratio: 4 / 3; border-radius: 0; box-shadow: var(--sh-3); }
.split__cap { margin-top: 14px; font-size: 14px; color: var(--ink-500); text-align: center; }

/* ---------- (E) Price ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); align-items: stretch; }
.price-card { position: relative; padding: clamp(28px, 3.4vw, 40px) clamp(24px, 3vw, 32px); border-radius: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-1); text-align: center; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease); }
.price-card:hover { transform: translateY(-5px); border-color: var(--blue-500); box-shadow: inset 0 0 0 2px var(--blue-500), var(--sh-blue); }
.price-card--featured { border: 2px solid var(--blue-500); box-shadow: var(--sh-blue); }
.price-card .icon-tile { width: 76px; height: 76px; margin: 0 auto 16px; }
.price-card__name { font-size: 18px; color: var(--ink-700); font-family: var(--font-head); }
.price-card__amount { margin-top: 12px; font-family: var(--font-body); font-weight: 800; color: var(--navy-900); letter-spacing: -0.03em; font-size: clamp(30px, 4.6vw, 42px); line-height: 1; }
.price-card__amount .won { font-size: .5em; font-weight: 700; color: var(--ink-500); margin-left: 3px; }
.price .section-lead { font-size: clamp(24px, 3vw, 30px); }
.price-note { margin: 30px auto 0; max-width: 1120px; font-size: clamp(18px, 2.1vw, 22px); color: var(--ink-500); line-height: 1.6; text-align: center; }
.price-note strong { color: var(--point-500); }

/* ---------- (F) Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 20px); }
.service-card { display: flex; align-items: center; gap: 16px; padding: clamp(18px, 2.4vw, 24px); border-radius: var(--r-card); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-1); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.service-card .icon-tile { width: 66px; height: 66px; flex: none; margin: 0; transition: transform var(--t-base) var(--ease); }
.service-card:hover .icon-tile { transform: translateY(-2px) scale(1.06); }
.service-card__body { min-width: 0; }
.service-card__title { font-size: 18px; }
.service-card__desc { margin-top: 5px; font-size: 14.5px; color: var(--ink-500); line-height: 1.5; }

/* 이미지 오버레이 대표 서비스 카드 */
.svc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); margin-bottom: clamp(20px, 3vw, 28px); }
.svc-feature { position: relative; min-height: 300px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); display: flex; align-items: flex-end; }
.svc-feature .media { position: absolute; inset: 0; z-index: 0; }
.svc-feature::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8, 22, 48, 0) 30%, rgba(8, 22, 48, .82) 100%); }
.svc-feature__body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.svc-feature__title { color: #fff; font-size: 24px; }
.svc-feature__list { margin-top: 8px; font-size: 14.5px; color: rgba(255, 255, 255, .88); line-height: 1.6; }
.svc-feature__plus { position: absolute; top: 22px; right: 22px; z-index: 2; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan-400); color: #fff; box-shadow: var(--sh-2); }
.svc-feature__plus .icon { width: 24px; height: 24px; }

/* ---------- 문의 CTA 띠 ---------- */
.cta-band { background: var(--navy-900); border-top: 5px solid var(--cyan-400); padding-block: clamp(22px, 3vw, 34px); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 40px); }
.cta-band__text { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2.4vw, 26px); letter-spacing: -0.01em; text-align: center; }
.cta-band__text b { color: var(--cyan-400); }
.cta-band__btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 999px; background: #fff; color: var(--blue-700); font-family: var(--font-head); font-weight: 700; font-size: clamp(15px, 1.9vw, 18px); box-shadow: var(--sh-2); transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.cta-band__btn .icon { width: 20px; height: 20px; }
.cta-band__btn:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }

/* ---------- (F) Services v3 (질문형 다크 포토 카드) ---------- */
.services .section-lead { font-size: clamp(24px, 3vw, 30px); }
.svc3-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.svc3-card { position: relative; display: block; border-radius: 0; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--sh-2); isolation: isolate; }
.svc3-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.72); transition: transform .55s var(--ease), filter var(--t-base) var(--ease); z-index: -2; }
.svc3-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(9,16,30,.42) 0%, rgba(9,16,30,.35) 45%, rgba(9,16,30,.8) 100%); }
.svc3-card:hover img { transform: scale(1.05); filter: brightness(.68) saturate(.85); }
.svc3-card:hover { box-shadow: var(--sh-3); }
.svc3-num { position: absolute; top: clamp(20px, 2.6vw, 30px); left: clamp(22px, 2.8vw, 32px); font-family: var(--font-hook); font-size: clamp(30px, 4vw, 44px); line-height: 1; color: var(--cyan-400); letter-spacing: -0.01em; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.svc3-body { position: absolute; left: clamp(22px, 2.8vw, 32px); bottom: clamp(22px, 2.8vw, 30px); right: 20px; }
.svc3-q { display: block; font-family: 'Hakgyoansim Allimjang', var(--font-body); font-size: clamp(25px, 3.2vw, 29px); font-weight: 700; line-height: 1.5; color: rgba(255,255,255,.92); margin-bottom: 12px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.svc3-name { display: block; font-family: 'Hakgyoansim Allimjang', var(--font-hook); font-weight: 700; font-size: clamp(43px, 5.8vw, 61px); line-height: 1.12; color: #fff; letter-spacing: -0.02em; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
@media (max-width: 560px) { .svc3-grid { grid-template-columns: 1fr; } .svc3-card { aspect-ratio: 5 / 4; } }

/* ---------- (F) Services v2 (블루 배경 + 스톡 이미지 카드) ---------- */
.svc2 { background: linear-gradient(165deg, #EAF5FF 0%, #D3EAFB 100%); position: relative; overflow: hidden; }
.svc2 .section-title { color: var(--navy-900); }
.svc2 .section-lead { color: var(--ink-500); }
.svc2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 24px); }
.svc2-card { position: relative; display: block; border-radius: 20px; overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--sh-2); outline: 4px solid #fff; outline-offset: -4px; }
.svc2-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: transform .5s var(--ease); }
.svc2-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,40,90,.05) 28%, rgba(9,26,58,.55) 68%, rgba(9,26,58,.88) 100%); }
.svc2-card:hover img { transform: scale(1.06); }
.svc2-card:hover { box-shadow: var(--sh-3); }
.svc2-card__body { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(18px, 2.6vw, 28px); }
.svc2-card__title { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 2.6vw, 26px); color: #fff; letter-spacing: -0.01em; }
.svc2-card__desc { display: block; margin-top: 6px; font-size: clamp(13px, 1.7vw, 15px); color: rgba(255, 255, 255, .9); line-height: 1.5; }
.svc2-cta { text-align: center; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 560px) { .svc2-grid { grid-template-columns: 1fr; } }

/* ---------- (G) Process v2 (포스터형 STEP) ---------- */
.process { position: relative; isolation: isolate; }
.process::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("../images/bg-meeting.jpg") center / cover no-repeat; opacity: 0.3; }
.process::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(244,248,255,.55), rgba(244,248,255,.35)); }
.eyebrow-pill { display: inline-block; margin-bottom: 18px; padding: 10px 24px; border-radius: 999px; background: #fff; color: var(--blue-600); font-family: var(--font-head); font-weight: 700; font-size: clamp(14px, 1.9vw, 17px); letter-spacing: -0.01em; box-shadow: inset 0 0 0 2px var(--blue-100), var(--sh-1); }
.steps { --step-gap: clamp(30px, 3.4vw, 56px); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--step-gap); }
.step-card { position: relative; display: flex; flex-direction: column; margin-top: 20px; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 40px 28px 34px; box-shadow: var(--sh-2); text-align: center; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
/* 카드 사이 진행 방향 화살표 */
.step-card:not(:last-child)::after { content: ""; position: absolute; top: 50%; left: 100%; z-index: 4; transform: translate(calc((var(--step-gap) - 34px) / 2), -50%); width: 34px; height: 34px; border-radius: 50%; background: var(--blue-500) 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.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E") center / 16px no-repeat; box-shadow: 0 8px 18px rgba(42, 114, 255, .32); }
.step__top { display: flex; align-items: center; gap: 13px; }
.step__note { position: relative; flex: none; width: 56px; height: 62px; margin-top: -36px; border-radius: 7px; background: linear-gradient(160deg, #DCEBFB, #B4D4F3); box-shadow: 0 8px 14px rgba(11, 60, 140, .2); transform: rotate(-5deg); display: grid; place-items: center; }
.step__note b { font-family: var(--font-hook); font-size: 28px; color: rgba(14, 42, 90, .38); }
.step__pin { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(5deg); width: 24px; height: 27px; filter: drop-shadow(0 3px 3px rgba(10,27,58,.28)); }
.step__head { text-align: left; }
.step__label { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(14px, 1.4vw, 19px); color: var(--blue-500); letter-spacing: 0.04em; }
.step__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(21px, 3.2vw, 34px); margin-top: 4px; letter-spacing: -0.01em; color: var(--navy-900); }
.step__ico { display: block; order: 3; width: 118px; height: 118px; margin: auto auto 0; object-fit: contain; }
.step__desc { margin-top: 16px; margin-bottom: 24px; font-size: clamp(15px, 1.7vw, 22px); color: var(--ink-500); line-height: 1.55; text-wrap: balance; }
.step__desc strong { color: var(--point-500); font-weight: 800; }

/* ---------- (G) Process (친근 카드 흐름) ---------- */
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; position: relative; }
.flow__step { position: relative; padding: 24px 14px; border-radius: var(--r-card); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-1); text-align: center; }
.flow__step .icon-tile { width: 84px; height: 84px; margin: 0 auto 14px; }
.flow__label { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-900); line-height: 1.35; }
.flow__label small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--ink-500); margin-top: 2px; }
.flow__step--point { background: linear-gradient(165deg, #FFF3EF, #FFE3D9); border-color: transparent; }
.flow__step--point .flow__label { color: var(--point-600); }
.flow__arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); z-index: 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-600); color: #fff; box-shadow: var(--sh-1); }
.flow__arrow .icon { width: 18px; height: 18px; }
.flow__step:last-child .flow__arrow { display: none; }

/* ---------- (H) Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: clamp(16px, 2.4vw, 24px); }
.gallery-item { display: flex; flex-direction: column; }
.gallery-item--lead { grid-row: span 2; }
.gallery-item .media { flex: 1; border-radius: var(--r-card); box-shadow: var(--sh-2); min-height: 200px; }
.gallery-item--lead .media { min-height: 400px; }
.gallery-item__cap { margin-top: 12px; font-size: 15px; font-weight: 600; color: var(--ink-700); }

/* ---------- (I) Reviews (사진 + 인용 리치 카드) ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.review { position: relative; padding: clamp(24px, 3vw, 30px); border-radius: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.review__quote { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan-100); color: var(--cyan-500); margin-bottom: 14px; }
.review__quote .icon { width: 24px; height: 24px; }
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--blue-600); }
.review__author { font-size: 14px; font-weight: 700; color: var(--ink-400); }
.review__stars { display: flex; gap: 2px; color: var(--star); margin-top: 12px; }
.review__stars .icon { width: 19px; height: 19px; }
.review__stars .off { color: var(--line); }
.review__photo { margin-top: 16px; aspect-ratio: 16 / 10; border-radius: 0; box-shadow: var(--sh-1); }
.review__text { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: var(--ink-700); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--white); border-block: 1px solid var(--line); padding-block: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; padding-inline: 26px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink-500); white-space: nowrap; }
.marquee__item .icon { width: 20px; height: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- (J) Area ---------- */
.area__inner { text-align: center; }
.area .section-lead { margin-inline: auto; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; }
.area-tags li { display: inline-flex; align-items: center; gap: 6px; padding: 11px 18px; border-radius: var(--r-chip); background: var(--white); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-800); box-shadow: var(--sh-1); }
.area-tags .icon { width: 18px; height: 18px; }
.area-tags__more { color: var(--ink-500) !important; font-family: var(--font-body) !important; font-weight: 600 !important; }

/* ---------- (K) FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.faq-item.is-open { border-color: var(--blue-500); box-shadow: var(--sh-1); }
.faq-item__q { margin: 0; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px clamp(18px, 3vw, 24px); text-align: left; font-family: var(--font-head); font-weight: 700; font-size: clamp(16px, 2vw, 18px); color: var(--navy-900); }
.faq-trigger__chev { width: 24px; height: 24px; color: var(--ink-500); transition: transform var(--t-slow) var(--ease); flex: none; }
.faq-item.is-open .faq-trigger__chev { transform: rotate(180deg); color: var(--blue-600); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-slow) var(--ease); }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel__inner { overflow: hidden; }
.faq-panel__inner p { padding: 0 clamp(18px, 3vw, 24px) 22px; color: var(--ink-500); font-size: 16px; line-height: 1.65; }

/* ---------- 보장 밴드 (유일한 다크 — 극적 대비) ---------- */
.guarantee { position: relative; overflow: hidden; text-align: center; padding-block: clamp(72px, 10vw, 116px); background: radial-gradient(120% 130% at 50% -10%, var(--navy-800) 0%, var(--navy-900) 62%); color: #fff; }
.guarantee::before { content: ""; position: absolute; left: 50%; top: 6%; width: min(680px, 90%); aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(23, 201, 224, .28) 0%, rgba(23, 201, 224, 0) 62%); animation: glowPulse 5s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { opacity: .55; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
.guarantee__inner { position: relative; z-index: 1; }
.guarantee__emblem { display: inline-grid; place-items: center; width: 100px; height: 100px; margin-bottom: 26px; border-radius: 28px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 0 44px rgba(23, 201, 224, .3); animation: float 5s ease-in-out infinite; }
.guarantee__emblem .icon { width: 54px; height: 54px; }
.guarantee__title { font-family: var(--font-hook); color: #fff; font-size: clamp(28px, 5vw, 50px); letter-spacing: -0.02em; line-height: 1.22; }
.guarantee__title .zero { color: var(--point-500); }
.guarantee__sub { margin: 18px auto 0; max-width: 600px; font-size: clamp(16px, 2.2vw, 19px); color: rgba(255, 255, 255, .82); }
.guarantee__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin-top: 30px; }
.guarantee__points li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--r-chip); background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.guarantee__points .icon { width: 22px; height: 22px; }

/* ---------- 중간 CTA ---------- */
.midcta { position: relative; overflow: hidden; background: linear-gradient(118deg, var(--blue-600) 0%, var(--cyan-500) 130%); color: #fff; padding-block: clamp(48px, 7vw, 76px); }
.midcta::before { content: ""; position: absolute; top: 0; left: -30%; width: 45%; height: 100%; pointer-events: none; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .14), transparent); transform: skewX(-16deg); animation: bandSheen 6.5s var(--ease) infinite; }
@keyframes bandSheen { 0% { left: -40%; } 55%, 100% { left: 140%; } }
.midcta__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.midcta__text h2 { color: #fff; font-family: var(--font-hook); font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -0.02em; }
.midcta__text p { margin-top: 10px; color: rgba(255, 255, 255, .9); font-size: clamp(15px, 2vw, 18px); }
.midcta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- (L) Final CTA + 폼 ---------- */
.final-cta { position: relative; isolation: isolate; padding-block: clamp(84px, 11vw, 140px); overflow: hidden; }
.final-cta__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.final-cta__overlay { position: absolute; inset: 0; z-index: -1; background: rgba(0, 0, 0, .5); }
.final-cta__inner { position: relative; text-align: center; max-width: 1120px; margin-inline: auto; }
.final-cta__eyebrow { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px, 3vw, 29px); color: rgba(255, 255, 255, .82); letter-spacing: -0.01em; margin-bottom: clamp(16px, 2.2vw, 24px); }
.final-cta__title { font-family: var(--font-hook); color: #fff; font-size: clamp(44px, 8.4vw, 90px); line-height: 1.16; letter-spacing: -0.02em; text-wrap: balance; text-shadow: 0 2px 20px rgba(0, 0, 0, .35); }
.final-cta__actions { display: flex; justify-content: center; margin-top: clamp(28px, 3.6vw, 42px); }
.final-cta__call { display: inline-flex; align-items: center; gap: 12px; padding: 16px 42px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, .9); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px); letter-spacing: .01em; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.final-cta__call:hover { background: #fff; color: var(--navy-900); transform: translateY(-2px); }
.final-cta__call .icon { width: clamp(22px, 2.4vw, 28px); height: clamp(22px, 2.4vw, 28px); }

.callback { background: rgba(255, 255, 255, .98); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 32px); box-shadow: var(--sh-3); display: grid; gap: 14px; }
.callback__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy-900); }
.callback__field { display: grid; gap: 7px; }
.callback__field label { font-size: 13.5px; font-weight: 700; color: var(--ink-500); }
.callback__field input, .callback__field select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font-body); font-size: 16px; color: var(--ink-700); background: var(--white); transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.callback__field input::placeholder { color: #A7B3C9; }
.callback__field input:focus, .callback__field select:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(42, 114, 255, .18); }
.callback__field input[aria-invalid="true"], .callback__field select[aria-invalid="true"] { border-color: var(--point-500); box-shadow: 0 0 0 3px rgba(255, 91, 41, .16); }
.callback__submit { width: 100%; min-height: 54px; margin-top: 4px; }
.callback__hint { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }
.callback__error { font-size: 13.5px; font-weight: 600; color: var(--point-500); }

/* ---------- (M) Footer ---------- */
.site-footer { background: var(--white); color: var(--ink-900); padding-block: clamp(48px, 6vw, 64px); border-top: 1px solid var(--line); }
.site-footer__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-hook); font-size: 22px; color: var(--navy-900); letter-spacing: -0.02em; margin-bottom: 18px; }
.site-footer__brand .icon { width: 28px; height: 28px; }
.site-footer__info { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 15px; color: var(--ink-900); }
.site-footer__info a { color: var(--ink-900); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__copy { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-500); }

/* ---------- (N) Floating CTAs ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px); box-shadow: 0 -2px 20px rgba(10, 27, 58, .12); transform: translateY(120%); transition: transform var(--t-slow) var(--ease); }
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__btn { flex: 1; min-height: 52px; }
.float-cta { position: fixed; right: 22px; bottom: 28px; z-index: 90; display: none; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(12px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); pointer-events: none; }
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta__btn { position: relative; display: flex; align-items: center; justify-content: center; width: 82px; height: 82px; border-radius: 24px; box-shadow: var(--sh-3); transition: transform var(--t-fast) var(--ease); }
.float-cta__btn:hover { transform: translateY(-3px); }
.float-cta__btn .icon { width: 32px; height: 32px; }
.float-cta__btn--point { background: var(--point-500); color: #fff; }
.float-cta__btn--point::before { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; animation: pulseRing 2.4s var(--ease) infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(255, 91, 41, .5); } 70% { box-shadow: 0 0 0 14px rgba(255, 91, 41, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 91, 41, 0); } }
.float-cta__btn--kakao { background: #FEE500; color: #191600; }

/* ---------- Media placeholder ---------- */
.media { position: relative; display: block; overflow: hidden; background: linear-gradient(135deg, var(--blue-600) 0%, var(--cyan-500) 100%); }
.media::before { content: ""; position: absolute; inset: 0; z-index: 0; background: center / 44px 44px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5S5.5 9.7 5.5 14a6.5 6.5 0 0 0 13 0C18.5 9.7 12 2.5 12 2.5Z'/%3E%3C/svg%3E"); }
.media::after { content: attr(data-ph); position: absolute; left: 0; right: 0; z-index: 0; bottom: max(14px, 12%); text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: rgba(255, 255, 255, .82); }
.media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity var(--t-slow) var(--ease); }
.media img.is-loaded { opacity: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal="left"] { transform: translateX(-30px); }
.reveal[data-reveal="right"] { transform: translateX(30px); }
.reveal[data-reveal="scale"] { transform: scale(0.94); }
.reveal[data-reveal].is-in { transform: none; }

/* 프로세스 순차 */
.flow.is-in .flow__step { animation: stepIn .5s var(--ease) both; }
.flow.is-in .flow__step:nth-child(1) { animation-delay: .05s; }
.flow.is-in .flow__step:nth-child(2) { animation-delay: .13s; }
.flow.is-in .flow__step:nth-child(3) { animation-delay: .21s; }
.flow.is-in .flow__step:nth-child(4) { animation-delay: .29s; }
.flow.is-in .flow__step:nth-child(5) { animation-delay: .37s; }
.flow.is-in .flow__step:nth-child(6) { animation-delay: .45s; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-features { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
  .flow__step:nth-child(3) .flow__arrow { display: none; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .split__media { order: -1; }
  .split__text, .split--reverse .split__text { text-align: left; }
  .split__list li, .split--reverse .split__list li { flex-direction: row; }
  .why2 { grid-template-columns: 1fr; gap: 36px; }
  .why2 .phone { order: -1; }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  .hero__content { max-width: none; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(8,19,44,.72) 0%, rgba(8,19,44,.5) 34%, rgba(8,19,44,.44) 62%, rgba(8,19,44,.72) 100%);
  }
  .hero__stage { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hbadge { margin-left: 0 !important; animation: none !important; transform: none !important; }
}
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .mobile-cta { display: flex; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .phone__frame { zoom: 0.55; }
  .region-badge { display: none; }
  .header-call__text { display: none; }
  .header-call { padding-inline: 12px; }
  .hero { min-height: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__cta-note { text-align: center; }
  .final-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta__actions { justify-content: center; }
  .callback { text-align: left; }
  .midcta__inner { flex-direction: column; align-items: flex-start; }
  .midcta__actions { width: 100%; }
  .midcta__actions .btn { flex: 1; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-card { padding: 20px 14px 20px; }
  .step-card::after { display: none; }
  .step__top { flex-direction: column; align-items: center; gap: 6px; }
  .step__head { text-align: center; }
  .step__note { margin-top: -20px; width: 42px; height: 48px; }
  .step__note b { font-size: 20px; }
  .step__label { font-size: 12px; }
  .step__title { font-size: 18px; }
  .step__desc { margin-top: 8px; margin-bottom: 10px; font-size: 13.5px; line-height: 1.45; }
  .step__ico { width: 62px; height: 62px; margin: 10px auto 0; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__step:nth-child(3) .flow__arrow { display: grid; }
  .flow__step:nth-child(2) .flow__arrow, .flow__step:nth-child(4) .flow__arrow { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--lead { grid-row: auto; }
  .gallery-item .media, .gallery-item--lead .media { min-height: 220px; }
}
@media (min-width: 769px) { .float-cta { display: flex; } }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal, .reveal[data-reveal] { opacity: 1; transform: none; }
  .media img { opacity: 1; }
  .flow.is-in .flow__step { animation: none; opacity: 1; }
}
