/* ==========================================================================
   라라페이 (LALA PAY) 랜딩페이지 스타일
   구조: 토큰 → 베이스 → 공용 컴포넌트 → 섹션별 → 목업 → 애니메이션 → 반응형
   ========================================================================== */

/* ---------- 1. 디자인 토큰 ---------- */
:root {
  --bg-0: #FFFFFF;
  --bg-1: #F7F9FC;
  --bg-2: #F2F6FB;
  --bg-3: #EAF0FA;   /* 섹션 배경용, 한 단계 진한 연블루 */
  --navy-900: #0B1220;
  --navy-800: #101828;
  --primary: #246BFD;
  --primary-hover: #1A5BE0;
  --primary-soft: #EAF1FF;
  --primary-line: #C7DAFF;
  --primary-ring: rgba(36, 107, 253, 0.14);
  --primary-text: #1A5BE0;   /* 본문 텍스트용 블루 (연한 배경에서도 4.5:1 이상) */
  --text-1: #101828;
  --text-2: #344054;
  --text-3: #667085;
  --text-4: #98A2B3;
  --border: #E7ECF2;
  --border-soft: #F2F4F7;
  /* 로고의 틸 컬러: 제품 그래픽 안에서 "정산" 의미로만 사용 (버튼/제목/아이콘 금지) */
  --teal: #0FA898;
  --teal-soft: #E6F6F4;
  --teal-text: #0A7F73;
  --danger: #D92D20;
  --danger-soft: #FEF3F2;
  --grad: linear-gradient(135deg, #246BFD 0%, #4F8CFF 100%);

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-card: 0 12px 24px -12px rgba(16, 24, 40, 0.14);
  --shadow-mock: 0 1px 2px rgba(16, 24, 40, 0.04), 0 28px 56px -20px rgba(16, 24, 40, 0.18);
  --shadow-btn: 0 8px 20px rgba(36, 107, 253, 0.24);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h: 72px;
  --container: 1200px;
  --gutter: 24px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
}

/* ---------- 2. 베이스 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-0);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
b, strong { font-weight: 600; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 100;
  padding: 10px 14px; border-radius: 10px; background: var(--navy-800); color: #fff; font-weight: 600;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }
main:focus-visible, section:focus-visible, [tabindex="-1"]:focus-visible { outline: none; }
.site-footer :focus-visible { outline-color: #fff; }
::selection { background: var(--primary-soft); }

[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- 3. 타이포 / 공용 ---------- */
.dot { color: var(--primary); }
.dot-light { color: #4F8CFF; }
.eyebrow {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  margin-bottom: 16px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-text);
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
}
.section-title {
  font-size: 44px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.22;
  color: var(--text-1); text-wrap: balance;
}
.section-sub {
  margin-top: 16px;
  font-size: 17px; line-height: 1.7; color: var(--text-3);
}
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head-left { margin: 0 0 40px; text-align: left; }
.side-art { display: block; width: 100%; max-width: 280px; height: auto; margin-top: 36px; }
.section-note { margin-top: 24px; text-align: center; font-size: 14px; color: var(--text-3); }
.section { padding: 120px 0; position: relative; }
.section + .section, .section-features { border-top: 1px solid var(--border); }
.section-dashboard + .section { border-top: 0; }
.num-tag { font-size: 13px; font-weight: 500; color: var(--text-4); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

/* 버튼 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; line-height: 1; white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn .icon { width: 18px; height: 18px; transition: transform .18s ease; }
.btn:hover .icon { transform: translateX(2px); }
.btn-lg { height: 54px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-btn); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-outline { background: var(--bg-0); border-color: var(--primary-line); color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); border-color: var(--primary); }
.btn-ghost { background: var(--bg-0); border-color: var(--border); color: var(--text-1); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy-800); }
.btn-white:hover { background: var(--bg-2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* 카드 */
.card {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

/* ---------- 4. 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-ko { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-1); }
.brand-en { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-3); margin-top: 2px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; height: 44px; padding: 0 14px;
  font-size: 15px; font-weight: 500; color: var(--text-2); border-radius: 10px;
  transition: color .15s ease, background-color .15s ease;
}
.nav-link:hover { color: var(--text-1); background: var(--bg-1); }
.nav-link.is-active { color: var(--primary-text); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center; color: var(--text-1);
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(16, 24, 40, 0.32); }
.nav-backdrop[hidden] { display: none; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background: rgba(255, 255, 255, 0.96); }
}
@media (hover: none) {
  .card:hover, .btn:hover, .industry-card:hover, .feature-card:hover, .review-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { box-shadow: none; }
  .card:active { transform: scale(0.985); transition-duration: .1s; }
  .btn:active { transform: scale(0.98); transition-duration: .1s; }
}

/* ---------- 5. Hero ---------- */
.hero { position: relative; margin-top: calc(var(--header-h) * -1); padding: calc(var(--header-h) + 72px) 0 104px; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(48% 55% at 76% 42%, rgba(36, 107, 253, 0.16) 0%, rgba(36, 107, 253, 0) 100%),
    radial-gradient(40% 40% at 12% 90%, rgba(79, 140, 255, 0.10) 0%, rgba(79, 140, 255, 0) 100%),
    linear-gradient(180deg, #E6EEFC 0%, #F3F7FE 55%, #FFFFFF 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px);
  background-size: 100% 64px; background-position: 0 -8px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 85%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 85%);
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 64px;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; max-width: 780px; }
.hero-logo { width: 220px; height: auto; margin-bottom: 30px; filter: drop-shadow(0 16px 28px rgba(36, 107, 253, 0.18)); }
.badge {
  display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px 0 10px;
  border-radius: 999px; background: var(--bg-0); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--text-2);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.hero-title {
  margin-top: 24px;
  font-size: 58px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.14; color: var(--text-1);
}
.hero-sub { margin-top: 22px; max-width: 600px; font-size: 18px; line-height: 1.7; color: var(--text-2); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.hero-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; }
.hero-points li {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px 0 12px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.75); border: 1px solid var(--primary-line);
  font-size: 14px; font-weight: 500; color: var(--text-2);
}
.hero-points .icon { width: 17px; height: 17px; color: var(--primary); }
.hero-visual { position: relative; width: 100%; max-width: 920px; }
.mock-caption { margin-top: 14px; font-size: 12.5px; color: var(--text-3); text-align: right; }

/* ---------- 6. 관리자 UI 목업 (공용) ----------
   내부 치수는 모두 calc(N * var(--m)) — --m 은 컨테이너 폭에 비례하는 스케일 단위(기본 1px = 디자인 원본 px).
   태블릿 폭에서 목업이 깨지지 않고 통째로 축소된다. */
.mock {
  --m: 1px;
  position: relative;
  display: grid; grid-template-columns: calc(148 * var(--m)) minmax(0, 1fr);
  width: 100%;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-mock);
  overflow: hidden;
  font-size: calc(12 * var(--m)); line-height: 1.4; color: var(--text-1);
  font-variant-numeric: tabular-nums;
  pointer-events: none; user-select: none;
}
@supports (width: 1cqw) {
  .hero-visual, .dashboard-visual { container-type: inline-size; }
  .mock { --m: clamp(0.74px, 0.158cqw, 1px); }
}
.mock-side { background: var(--bg-1); border-right: 1px solid var(--border-soft); padding: calc(14 * var(--m)) calc(10 * var(--m)); }
.ms-brand { display: flex; align-items: center; gap: calc(7 * var(--m)); padding: calc(4 * var(--m)) calc(8 * var(--m)) calc(14 * var(--m)); font-weight: 600; font-size: calc(12 * var(--m)); }
.ms-brand img { width: calc(18 * var(--m)); height: calc(18 * var(--m)); }
.ms-menu li {
  position: relative; display: flex; align-items: center; gap: calc(8 * var(--m)); height: calc(32 * var(--m)); padding: 0 calc(10 * var(--m));
  border-radius: calc(8 * var(--m)); color: var(--text-3); font-weight: 500;
  transition: box-shadow .2s ease, color .2s ease;
}
.ms-menu li .icon { width: calc(14 * var(--m)); height: calc(14 * var(--m)); stroke-width: 1.6; opacity: .75; }
.ms-menu li.on { background: var(--bg-0); color: var(--primary); box-shadow: var(--shadow-sm); }
.ms-menu li.on .icon { opacity: 1; }
.ms-menu li.on::before { content: ""; position: absolute; left: calc(-10 * var(--m)); top: calc(8 * var(--m)); width: 3px; height: calc(16 * var(--m)); border-radius: 0 3px 3px 0; background: var(--primary); }
.mock-main { display: flex; flex-direction: column; gap: calc(12 * var(--m)); padding: calc(14 * var(--m)) calc(16 * var(--m)) calc(16 * var(--m)); min-width: 0; }
.mock-top { display: flex; align-items: center; gap: calc(10 * var(--m)); height: calc(30 * var(--m)); }
.mock-top-brand { display: none; align-items: center; gap: calc(6 * var(--m)); font-weight: 600; }
.mock-top-brand img { width: calc(18 * var(--m)); height: calc(18 * var(--m)); }
.mock-top-title { font-size: calc(13 * var(--m)); font-weight: 600; }
.mock-date { font-size: max(9.5px, calc(11 * var(--m))); color: var(--text-4); }
.mock-pills { display: inline-flex; align-items: center; gap: calc(8 * var(--m)); margin-left: auto; }
.mock-pills .icon { width: calc(15 * var(--m)); height: calc(15 * var(--m)); color: var(--text-3); stroke-width: 1.7; }
.mock-pills b { display: inline-flex; align-items: center; justify-content: center; width: calc(22 * var(--m)); height: calc(22 * var(--m)); margin-left: calc(4 * var(--m)); border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-size: max(9px, calc(10 * var(--m))); font-weight: 600; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: calc(8 * var(--m)); }
.kpi { display: flex; flex-direction: column; gap: calc(4 * var(--m)); padding: calc(12 * var(--m)) calc(12 * var(--m)); border: 1px solid var(--border); border-radius: calc(12 * var(--m)); background: var(--bg-0); min-width: 0; }
.kpi-label { font-size: max(9.5px, calc(11 * var(--m))); color: var(--text-3); white-space: nowrap; }
.kpi-value { display: inline-flex; align-items: baseline; gap: 0; font-size: calc(16.5 * var(--m)); font-weight: 700; letter-spacing: -0.01em; color: var(--text-1); white-space: nowrap; }
.kpi-value .won { margin-right: calc(2 * var(--m)); font-size: calc(13 * var(--m)); font-weight: 600; color: var(--text-3); }
.kpi-value .unit { font-size: calc(12 * var(--m)); font-weight: 600; color: var(--text-3); }
.kpi-chip, .s, .mock-chip {
  display: inline-flex; align-items: center; width: fit-content; height: calc(18 * var(--m)); padding: 0 calc(7 * var(--m));
  border-radius: 999px; font-size: max(9px, calc(10 * var(--m))); font-weight: 600; white-space: nowrap;
}
.chip-pay, .s-ok { background: var(--primary-soft); color: #1A56DB; }
.chip-settle, .s-wait { background: var(--teal-soft); color: var(--teal-text); }
.chip-neutral, .s-cancel { background: var(--border-soft); color: var(--text-3); }
.mock-chip { height: calc(22 * var(--m)); padding: 0 calc(9 * var(--m)); font-size: calc(11 * var(--m)); font-weight: 500; background: var(--bg-1); color: var(--text-3); border: 1px solid var(--border-soft); }
.mock-chip.on { background: var(--primary-soft); color: var(--primary); border-color: transparent; }
.mock-split { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr); gap: calc(10 * var(--m)); }
.mock-panel { border: 1px solid var(--border); border-radius: calc(12 * var(--m)); padding: calc(12 * var(--m)); min-width: 0; transition: box-shadow .2s ease; }
.mock-panel-head { display: flex; align-items: center; justify-content: space-between; gap: calc(8 * var(--m)); margin-bottom: calc(8 * var(--m)); }
.mock-panel-title { font-size: max(9.5px, calc(11 * var(--m))); font-weight: 600; white-space: nowrap; }
.mock-link { font-size: max(9px, calc(10 * var(--m))); color: var(--primary); white-space: nowrap; }
.legend { display: inline-flex; align-items: center; gap: calc(4 * var(--m)); font-size: max(9px, calc(10 * var(--m))); color: var(--text-3); white-space: nowrap; }
.legend i { width: calc(6 * var(--m)); height: calc(6 * var(--m)); border-radius: 50%; }
.legend i:nth-of-type(2) { margin-left: calc(6 * var(--m)); }
.lg-pay { background: var(--primary); }
.lg-settle { background: var(--teal); }
.chart-wrap { position: relative; }
.chart { width: 100%; height: calc(100 * var(--m)); overflow: visible; }
.chart .grid line { stroke: var(--border-soft); stroke-width: 1; vector-effect: non-scaling-stroke; }
.chart .area { fill: url(#chartFill); }
.chart .line-pay { fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.chart .line-settle { fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-dasharray: 3 4; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.chart-dot { position: absolute; left: calc(94.44% - calc(4 * var(--m))); top: calc(20% - calc(4 * var(--m))); width: calc(8 * var(--m)); height: calc(8 * var(--m)); border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 2px #fff, 0 0 0 calc(5 * var(--m)) var(--primary-ring); }
.chart-x { display: flex; justify-content: space-between; padding: calc(4 * var(--m)) calc(2 * var(--m)) 0; font-size: max(9px, calc(10 * var(--m))); color: var(--text-4); }
.rows li { display: grid; grid-template-columns: calc(36 * var(--m)) minmax(0, 1fr) auto; align-items: center; gap: calc(8 * var(--m)); height: calc(30 * var(--m)); border-top: 1px solid var(--border-soft); font-size: max(9.5px, calc(11 * var(--m))); white-space: nowrap; }
.rows li:first-child { border-top: 0; }
.rows .t { color: var(--text-4); }
.rows .a { font-weight: 600; }
.rows-settle li { grid-template-columns: 1fr 1fr 1.4fr auto; height: calc(32 * var(--m)); }
.rows-settle .rows-head { height: calc(24 * var(--m)); font-size: max(9px, calc(10 * var(--m))); color: var(--text-4); font-weight: 500; }
.mock-filters { display: flex; align-items: center; gap: calc(6 * var(--m)); border-radius: calc(10 * var(--m)); transition: box-shadow .2s ease; }
.mock-range { margin-left: auto; font-size: calc(11 * var(--m)); color: var(--text-4); white-space: nowrap; }
.flow { display: flex; align-items: center; gap: calc(8 * var(--m)); padding: calc(10 * var(--m)) calc(12 * var(--m)); border: 1px solid var(--border); border-radius: calc(12 * var(--m)); background: var(--bg-1); transition: box-shadow .2s ease; }
.flow-node { display: inline-flex; align-items: center; gap: calc(6 * var(--m)); font-size: calc(11 * var(--m)); font-weight: 500; color: var(--text-2); white-space: nowrap; }
.flow-node i { width: calc(10 * var(--m)); height: calc(10 * var(--m)); border-radius: 50%; box-sizing: border-box; }
.flow-node.is-done i { background: var(--primary); }
.flow-node.is-wait i { border: 2px solid var(--primary); background: var(--bg-0); }
.flow-node.is-settled i { background: var(--teal); }
.flow-node.is-settled { color: var(--teal-text); }
.flow-line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--text-4) 0 3px, transparent 3px 7px); opacity: .6; }
.settle-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: calc(10 * var(--m)); }
.settle-summary > div { display: flex; flex-direction: column; gap: calc(3 * var(--m)); padding: calc(12 * var(--m)) calc(12 * var(--m)); border: 1px solid var(--border); border-radius: calc(12 * var(--m)); transition: box-shadow .2s ease; min-width: 0; }
.ss-label { font-size: max(9.5px, calc(11 * var(--m))); color: var(--text-3); white-space: nowrap; }
.ss-value { font-size: calc(15 * var(--m)); font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.ss-value small { font-size: calc(11 * var(--m)); font-weight: 600; color: var(--text-3); }

/* 목업 라벨 / 플로팅 카드 (페이지 스케일 = px) */
.preview-tag {
  position: absolute; top: -12px; right: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px;
  border-radius: 999px; background: var(--navy-800); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.18);
}
.preview-tag .icon { width: 12px; height: 12px; stroke-width: 2; }
.mock-float {
  position: absolute; left: -28px; bottom: 44px; z-index: 2;
  display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px;
  background: var(--bg-0); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 16px 32px -12px rgba(16, 24, 40, 0.22);
  font-size: 12px; line-height: 1.3; pointer-events: none;
}
.mf-icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-text); }
.mf-icon .icon { width: 16px; height: 16px; stroke-width: 2.2; }
.mf-text { display: flex; flex-direction: column; gap: 2px; }
.mf-text b { font-weight: 600; color: var(--text-1); }
.mf-text small { font-size: 11px; color: var(--text-3); font-variant-numeric: tabular-nums; }
/* 목업 뒤 받침 카드 (겹쳐진 원장 느낌) */
.hero-visual::before, .dashboard-visual::before {
  content: ""; position: absolute; z-index: 0; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--border);
}
.hero-visual::before { inset: 16px -16px auto 16px; height: 60%; background: rgba(255, 255, 255, 0.55); border-color: rgba(199, 218, 255, 0.8); }
.hero-visual .mock { z-index: 1; }
.dashboard-visual::before { inset: -14px 54px auto 26px; height: 50%; background: var(--bg-0); }
.dashboard-visual .mock-settle { z-index: 1; }

/* ---------- 7. 핵심 장점 ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.feature-card { position: relative; display: flex; flex-direction: column; padding: 16px 16px 28px; }
.feature-art { position: relative; display: flex; align-items: center; justify-content: center; padding: 14px 16px; border-radius: 14px; background: linear-gradient(180deg, #E4EDFF 0%, #EEF3FC 100%); }
.feature-art img { width: 100%; max-width: 220px; height: auto; }
.feature-art .num-tag { position: absolute; top: 12px; right: 14px; }
.feature-card h3 { margin: 22px 12px 0; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.feature-card p { margin-left: 12px; margin-right: 12px; }
.feature-card p { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--text-3); }
.feature-card:hover { border-color: var(--primary-line); transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ---------- 7b. 카드 단말기 ---------- */
.section-terminal { background: var(--bg-0); }
.terminal-inner { display: grid; grid-template-columns: minmax(0, 5.5fr) minmax(0, 6.5fr); gap: 64px; align-items: center; }
.terminal-stage {
  position: relative; aspect-ratio: 5 / 5.4; display: flex; align-items: center; justify-content: center;
  border-radius: 32px; background: radial-gradient(70% 60% at 50% 60%, #DCE7FF 0%, #EAF0FA 55%, #F3F7FE 100%);
  overflow: visible;
}
.terminal-stage::before { content: ""; position: absolute; left: 12%; right: 12%; bottom: 8%; height: 18px; border-radius: 50%; background: rgba(16, 24, 40, 0.18); filter: blur(10px); }
.terminal-main { position: relative; z-index: 1; height: 88%; width: auto; max-width: 80%; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(16, 24, 40, 0.22)); transition: opacity .25s ease; }
.terminal-main.is-swapping { opacity: 0; }
.terminal-chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px 0 12px;
  border-radius: 999px; background: var(--bg-0); border: 1px solid var(--border); box-shadow: 0 10px 24px -8px rgba(16, 24, 40, 0.22);
  font-size: 13.5px; font-weight: 600; color: var(--text-1); white-space: nowrap;
}
.terminal-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.chip-a { left: -14px; top: 18%; }
.chip-b { right: -18px; top: 42%; }
.chip-c { left: 6%; bottom: 14%; }
.chip-c i { background: var(--teal); }
.terminal-thumbs { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.thumb {
  display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 88px; border-radius: 12px;
  background: var(--bg-1); border: 1.5px solid var(--border); transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.thumb img { height: 68px; width: auto; }
.thumb:hover { border-color: var(--primary-line); transform: translateY(-2px); }
.thumb.is-active { border-color: var(--primary); background: var(--primary-soft); }
.spec-icons { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.spec-icons li {
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 16px 8px 14px;
  border-radius: 14px; background: var(--bg-1); border: 1px solid var(--border);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.spec-icons li:hover { border-color: var(--primary-line); background: var(--bg-0); transform: translateY(-2px); }
.si-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); }
.si-icon .icon { width: 24px; height: 24px; stroke-width: 1.8; }
.spec-icons b { font-size: 13.5px; font-weight: 600; color: var(--text-1); text-align: center; white-space: nowrap; }
.spec-icons-app { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 4px; }
.section-note-left { text-align: left; margin: 20px 0 22px; }
.pay-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 72px; }
.pay-card { display: flex; flex-direction: column; overflow: hidden; }
.pay-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(180deg, #EAF0FA 0%, #F3F7FE 100%); }
.pay-photo img { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 92%; width: auto; max-width: 92%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 14px 18px rgba(16, 24, 40, 0.18)); transition: transform .5s var(--ease); }
.pay-card:hover .pay-photo img { transform: translateX(-50%) scale(1.04); }
.pay-body { position: relative; padding: 22px 22px 24px; }
.pay-tag { position: absolute; top: -14px; left: 22px; display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 999px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.pay-card h3 { margin-top: 6px; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.pay-card p { margin-top: 6px; font-size: 14.5px; line-height: 1.6; color: var(--text-3); }
.pay-card:hover { border-color: var(--primary-line); transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ---------- 7c. 라라페이 앱 ---------- */
.section-app { background: linear-gradient(180deg, #EAF0FA 0%, #F3F7FE 100%); }
.app-inner { display: grid; grid-template-columns: minmax(0, 5.5fr) minmax(0, 6.5fr); gap: 56px; align-items: center; }
.app-copy .feature-list li { padding: 14px 0; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; height: 60px; padding: 0 20px 0 12px; border-radius: 14px;
  background: var(--navy-800); color: #fff; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.store-btn:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(16, 24, 40, 0.5); }
.store-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.12); }
.store-icon .icon { width: 20px; height: 20px; stroke-width: 2; }
.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-text small { font-size: 11px; opacity: .75; }
.store-text b { font-size: 15px; font-weight: 700; }
.app-visual { position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 24px 0 40px; }
.app-shot { width: 30%; height: auto; filter: drop-shadow(0 24px 30px rgba(16, 24, 40, 0.24)); transition: transform .3s var(--ease); }
.shot-1 { transform: translateX(10%) translateY(20px) scale(.92); z-index: 1; }
.shot-2 { position: relative; z-index: 2; width: 34%; }
.shot-3 { transform: translateX(-10%) translateY(20px) scale(.92); z-index: 1; }
.app-visual:hover .shot-1 { transform: translateX(6%) translateY(14px) scale(.94); }
.app-visual:hover .shot-3 { transform: translateX(-6%) translateY(14px) scale(.94); }
.app-caption { position: absolute; left: 0; right: 0; bottom: 4px; text-align: center; }

/* ---------- 8. 대상 업종 ---------- */
.section-industries { background: var(--bg-3); }
.industry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.industry-card { position: relative; display: flex; flex-direction: column; padding: 0; border-radius: var(--r-lg); overflow: hidden; }
.industry-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.industry-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.industry-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 24, 40, 0) 55%, rgba(16, 24, 40, 0.22) 100%); pointer-events: none; }
.industry-no {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  display: inline-flex; align-items: center; height: 24px; padding: 0 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); color: var(--text-2); font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}
.industry-icon {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255, 255, 255, 0.94); color: var(--primary); border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 14px rgba(16, 24, 40, 0.12);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.industry-icon .icon { width: 22px; height: 22px; }
.industry-body { position: relative; padding: 20px 20px 22px; }
.industry-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; transition: color .2s ease; }
.industry-card p { margin-top: 6px; font-size: 14px; line-height: 1.55; color: var(--text-3); }
.industry-arrow { position: absolute; right: 18px; bottom: 22px; color: var(--primary); opacity: 0; transform: translateX(-4px); transition: opacity .2s ease, transform .2s ease; }
.industry-arrow .icon { width: 18px; height: 18px; }
.industry-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.industry-card:hover .industry-photo img { transform: scale(1.05); }
.industry-card:hover h3 { color: var(--primary-text); }
.industry-card:hover .industry-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.industry-card:hover .industry-arrow { opacity: 1; transform: translateX(0); }

/* ---------- 9. 도입 절차 ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.steps::before, .steps::after {
  content: ""; position: absolute; top: 21px; left: calc(12.5% + 22px); right: calc(12.5% + 22px); height: 2px; border-radius: 2px;
}
.steps::before { background: var(--border); }
.steps::after { background: var(--primary); transform: scaleX(0); transform-origin: left center; transition: transform 1.2s var(--ease); }
.steps.in::after { transform: scaleX(1); }
.step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.step-marker {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--bg-0); border: 2px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--primary); font-variant-numeric: tabular-nums;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
}
.steps.in .step:nth-child(1) .step-marker { transition-delay: .05s; }
.steps.in .step:nth-child(2) .step-marker { transition-delay: .4s; }
.steps.in .step:nth-child(3) .step-marker { transition-delay: .75s; }
.steps.in .step:nth-child(4) .step-marker { transition-delay: 1.1s; }
.steps.in .step-marker { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 0 0 4px var(--primary-ring); }
.step-art { width: 124px; height: 124px; padding: 12px; margin-top: 18px; border-radius: 50%; background: var(--primary-soft); object-fit: contain; }
.step-no { margin-top: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--text-3); }
.step h3 { margin-top: 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.step p { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--text-3); max-width: 250px; }

/* ---------- 10. 관리 시스템 ---------- */
.section-dashboard { background: linear-gradient(135deg, #1E5FE6 0%, #246BFD 45%, #3D7DFF 100%); color: #fff; border-top: 0; }
.section-dashboard .eyebrow { background: rgba(255, 255, 255, 0.16); color: #fff; }
.section-dashboard .section-title, .section-dashboard .feature-list h3 { color: #fff; }
.section-dashboard .dot { color: #BFD6FF; }
.section-dashboard .section-sub, .section-dashboard .feature-list p { color: rgba(255, 255, 255, 0.78); }
.section-dashboard .feature-list li { border-color: rgba(255, 255, 255, 0.18); }
.section-dashboard .fl-icon { background: rgba(255, 255, 255, 0.16); color: #fff; }
.section-dashboard .feature-list li:hover h3, .section-dashboard .feature-list li.is-hl h3 { color: #fff; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255, 255, 255, 0.5); }
.section-dashboard .feature-list li:hover .fl-icon, .section-dashboard .feature-list li.is-hl .fl-icon { background: #fff; color: var(--primary); }
.section-dashboard .mock-caption { color: rgba(255, 255, 255, 0.72); }
.section-dashboard .dashboard-visual::before { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.22); }
.section-dashboard .preview-tag { background: var(--navy-800); }
.section-dashboard .dashboard-visual[data-hl="payments"] .mock-panel[data-region="payments"],
.section-dashboard .dashboard-visual[data-hl="cancels"] .settle-summary [data-region="cancels"],
.section-dashboard .dashboard-visual[data-hl="settlement"] .settle-summary [data-region="settlement"],
.section-dashboard .dashboard-visual[data-hl="period"] .mock-filters { box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px rgba(36, 107, 253, 0.25); }
.section-dashboard .mock-settle, .section-dashboard .mock-phone { box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 30px 60px -20px rgba(9, 30, 80, 0.45); }
.dashboard-inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: center; }
.dashboard-visual { position: relative; order: -1; padding: 0 0 64px 40px; }
.dashboard-visual .mock-caption { text-align: right; margin-top: 0; position: absolute; left: 200px; right: 0; bottom: 14px; }
.mock-settle .mock-main { gap: 12px; }
.feature-list li {
  display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: start;
  padding: 18px 0; border-top: 1px solid var(--border);
  border-radius: 6px; cursor: pointer;
}
.feature-list li:last-child { border-bottom: 1px solid var(--border); }
.fl-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%; background: var(--primary-soft); color: var(--primary);
  transition: background-color .2s ease, color .2s ease;
}
.fl-icon .icon { width: 14px; height: 14px; stroke-width: 2.4; }
.feature-list h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; transition: color .2s ease; }
.feature-list p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: var(--text-3); }
.feature-list li:hover h3, .feature-list li.is-hl h3 { color: var(--primary-text); }
.feature-list li:hover .fl-icon, .feature-list li.is-hl .fl-icon { background: var(--primary); color: #fff; }
.feature-list li h3, .feature-list li .fl-icon { transition: color .2s ease, background-color .2s ease; }
.dashboard-visual[data-hl="payments"] .mock-panel[data-region="payments"],
.dashboard-visual[data-hl="cancels"] .settle-summary [data-region="cancels"],
.dashboard-visual[data-hl="settlement"] .settle-summary [data-region="settlement"],
.dashboard-visual[data-hl="period"] .mock-filters { box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px var(--primary-ring); }
.dashboard-visual[data-hl="period"] .mock-filters { border-radius: 10px; }
.dashboard-visual[data-hl="payments"] .ms-menu li[data-region="payments"],
.dashboard-visual[data-hl="cancels"] .ms-menu li[data-region="cancels"],
.dashboard-visual[data-hl="period"] .ms-menu li[data-region="period"] { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--primary); }
.dashboard-visual[data-hl="device"] .mock-phone { box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px var(--primary-ring), var(--shadow-mock); transform: translateY(-4px); }

/* 모바일 목업 */
.mock-phone {
  position: absolute; left: -8px; bottom: -40px; z-index: 2;
  display: block; width: 184px; padding: 12px 12px 14px;
  border-radius: 24px; border: 1px solid var(--border); background: var(--bg-0);
  box-shadow: var(--shadow-mock); transition: transform .25s var(--ease), box-shadow .25s ease;
}
.phone-notch { width: 56px; height: 5px; margin: 0 auto 12px; border-radius: 999px; background: var(--border); }
.phone-head { display: flex; flex-direction: column; gap: 2px; padding: 0 4px 10px; border-bottom: 1px solid var(--border-soft); }
.phone-head span { font-size: 11px; color: var(--text-3); }
.phone-head b { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.phone-list li { display: flex; align-items: center; gap: 8px; padding: 9px 4px; border-top: 1px solid var(--border-soft); }
.phone-list li:first-child { border-top: 0; }
.s-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.s-dot-ok { background: var(--primary); }
.s-dot-wait { background: var(--teal); }
.pl-main { display: flex; flex-direction: column; font-size: 11px; font-weight: 500; min-width: 0; }
.pl-main small { font-size: 10px; color: var(--text-4); font-weight: 400; }
.pl-amt { margin-left: auto; font-size: 11px; font-weight: 600; }

/* ---------- 11. 이용후기 ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review-card { position: relative; display: flex; flex-direction: column; padding: 28px; min-height: 250px; overflow: hidden; }
.review-card::before {
  content: "\201C"; position: absolute; top: 8px; right: 22px;
  font-size: 88px; line-height: 1; font-weight: 700; color: var(--bg-2); font-family: Georgia, serif;
}
.review-stars { position: relative; display: flex; align-items: center; gap: 2px; color: var(--primary); }
.review-stars .icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.review-sample { margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: var(--border-soft); font-size: 11px; font-weight: 600; color: var(--text-3); }
.review-text { position: relative; margin-top: 18px; font-size: 16px; line-height: 1.75; color: var(--text-2); }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 22px; }
.review-avatar {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); color: var(--primary-text); font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums;
}
.review-meta b { display: block; font-size: 14px; font-weight: 600; }
.review-meta small { display: block; font-size: 12px; color: var(--text-4); }
.review-card:hover { border-color: var(--primary-line); transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ---------- 12. FAQ ---------- */
.section-faq { background: var(--bg-3); }
.faq-inner { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 64px; align-items: start; }
.faq-inner .section-head-left { position: sticky; top: calc(var(--header-h) + 24px); margin: 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: inherit; font-weight: inherit; }
.faq-q {
  display: grid; grid-template-columns: 1fr 28px; gap: 20px; align-items: center;
  width: 100%; min-height: 72px; padding: 22px 0; text-align: left;
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--text-1);
  transition: color .15s ease;
}
.faq-q:hover { color: var(--primary-text); }
.faq-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px;
  border-radius: 50%; border: 1px solid var(--border); background: var(--bg-0); color: var(--text-3);
  transition: transform .3s var(--ease), background-color .2s ease, border-color .2s ease, color .2s ease;
}
.faq-icon .icon { width: 14px; height: 14px; stroke-width: 2; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--primary-soft); border-color: var(--primary-line); color: var(--primary); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-a[hidden] { display: none; }
.faq-a.is-open { grid-template-rows: 1fr; }
.faq-a-inner { min-height: 0; overflow: hidden; }
.faq-a-inner p { padding: 0 48px 24px 0; font-size: 15.5px; line-height: 1.75; color: var(--text-3); }
.faq-a-inner a { color: var(--primary-text); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 13. Final CTA ---------- */
.section-cta { background: var(--navy-900); color: #fff; padding: 112px 0; overflow: hidden; border-top: 0; }
.section-cta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 64px;
}
.cta-ring { position: absolute; right: -140px; top: -120px; width: 620px; height: 620px; fill: none; stroke: rgba(255, 255, 255, 0.07); stroke-width: 1.2; stroke-linecap: round; }
.cta-inner { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: center; }
.cta-copy { text-align: left; }
.cta-art { width: 100%; max-width: 380px; height: auto; justify-self: end; }
.cta-title { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.22; }
.cta-sub { margin-top: 18px; font-size: 17px; color: rgba(255, 255, 255, 0.68); }
.cta-copy .btn { margin-top: 36px; }

/* ---------- 14. 가맹점 문의 ---------- */
.contact-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-h) + 24px); }
.contact-side { margin-top: 36px; }
.contact-mail {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  border: 1px solid var(--primary-line); border-radius: var(--r-md); background: var(--primary-soft);
  transition: border-color .2s ease, background-color .2s ease;
}
.contact-mail:hover { border-color: var(--primary-line); background: var(--bg-0); }
.cm-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--bg-0); border: 1px solid var(--border); color: var(--primary); }
.cm-icon .icon { width: 20px; height: 20px; }
.contact-mail small { display: block; font-size: 12px; color: var(--text-3); }
.contact-mail b { display: block; font-size: 16px; font-weight: 600; color: var(--text-1); }
.contact-steps { margin-top: 28px; counter-reset: cs; }
.contact-steps li {
  position: relative; display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--border); font-size: 15px; font-weight: 500; color: var(--text-2);
  counter-increment: cs;
}
.contact-steps li:last-child { border-bottom: 1px solid var(--border); }
.contact-steps li::before {
  content: "0" counter(cs); display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: var(--bg-2);
  font-size: 12px; font-weight: 600; color: var(--primary-text); font-variant-numeric: tabular-nums;
}
.contact-form { padding: 40px; border-radius: var(--r-xl); position: relative; }
.contact-form:hover { transform: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-2); margin-bottom: 8px; }
.req { color: var(--primary); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 14px;
  border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--bg-0);
  font-size: 16px; color: var(--text-1);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: auto; min-height: 132px; padding: 13px 14px; line-height: 1.6; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-ring); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); }
.field.is-invalid input:focus, .field.is-invalid select:focus, .field.is-invalid textarea:focus { box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.12); }
.field.is-invalid :is(input, select, textarea):focus-visible { outline: 2px solid var(--danger); outline-offset: 2px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.select-wrap select:invalid, .select-wrap select option[value=""] { color: var(--text-3); }
.select-wrap select option { color: var(--text-1); }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
  border-right: 1.6px solid var(--text-3); border-bottom: 1.6px solid var(--text-3);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field-error { min-height: 0; margin-top: 6px; font-size: 13px; color: var(--danger); }
.field-error:empty { margin-top: 0; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 4px 0; min-height: 44px; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-box {
  display: inline-flex; align-items: center; justify-content: center; flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 6px; border: 1.5px solid var(--border); background: var(--bg-0); color: #fff;
  transition: background-color .15s ease, border-color .15s ease;
}
.check-box .icon { width: 14px; height: 14px; stroke-width: 3; opacity: 0; transition: opacity .15s ease; }
.check input:checked + .check-box { background: var(--primary); border-color: var(--primary); }
.check input:checked + .check-box .icon { opacity: 1; }
.check input:focus-visible + .check-box { box-shadow: 0 0 0 4px var(--primary-ring); border-color: var(--primary); }
.field-agree.is-invalid .check-box { border-color: var(--danger); }
.check-text { font-size: 14px; color: var(--text-2); line-height: 1.6; padding-top: 1px; }
.agree-detail { margin: 2px 0 0 32px; font-size: 13px; color: var(--text-3); }
.agree-detail summary { display: inline-flex; align-items: center; min-height: 32px; padding: 4px 0; cursor: pointer; color: var(--text-3); text-decoration: underline; text-underline-offset: 3px; width: fit-content; list-style: none; }
.agree-detail summary::-webkit-details-marker { display: none; }
.agree-detail ul { margin-top: 10px; padding: 12px 14px; border-radius: 10px; background: var(--bg-1); display: flex; flex-direction: column; gap: 4px; }
.agree-detail li b { color: var(--text-2); margin-right: 6px; }
.agree-detail p { margin-top: 8px; font-size: 12px; color: var(--text-3); }
.form-actions { margin-top: 28px; }
.btn-submit { width: 100%; position: relative; }
.btn-spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn-submit.is-loading .btn-spinner { display: inline-block; }
.btn-submit.is-loading .btn-label { opacity: .85; }
.form-status { margin-top: 12px; font-size: 14px; text-align: center; color: var(--text-3); }
.form-status.is-error { color: var(--danger); }
.form-status:empty { margin-top: 0; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 8px 8px; }
.form-success[hidden] { display: none; }
.fs-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); }
.fs-icon .icon { width: 26px; height: 26px; stroke-width: 2.4; }
.form-success h3 { margin-top: 18px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.form-success p { margin-top: 8px; font-size: 15px; color: var(--text-3); }
.form-success .btn { margin-top: 24px; }
.contact-form.is-done .form-grid, .contact-form.is-done .form-actions { display: none; }

/* ---------- 14b. 전화 문의 플로팅 버튼 ---------- */
.call-fab {
  position: fixed; left: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 70;
  display: inline-flex; align-items: center; gap: 10px; height: 58px; padding: 0 20px 0 8px;
  border-radius: 999px; background: var(--primary); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 30px rgba(36, 107, 253, 0.38), 0 2px 6px rgba(16, 24, 40, 0.16);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.call-fab:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(36, 107, 253, 0.42); }
.call-fab:active { transform: scale(0.98); }
.call-fab-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.call-fab-icon .icon { width: 21px; height: 21px; stroke-width: 2; }
.call-fab-text { display: flex; flex-direction: column; line-height: 1.15; }
.call-fab-text small { font-size: 11px; font-weight: 500; opacity: .85; }
.call-fab-text b { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; font-variant-numeric: tabular-nums; }
html.nav-open .call-fab { display: none; }
@media (max-width: 640px) {
  .call-fab { left: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); height: 52px; padding: 0 16px 0 6px; gap: 8px; }
  .call-fab-icon { width: 40px; height: 40px; }
  .call-fab-text b { font-size: 14px; }
}
@media print { .call-fab { display: none !important; } }

/* ---------- 15. 푸터 ---------- */
.site-footer { background: var(--navy-800); border-top: 1px solid var(--navy-800); padding: 64px 0 36px; color: rgba(255, 255, 255, 0.78); }
.site-footer .brand-ko { color: #fff; }
.site-footer .brand-en { color: rgba(255, 255, 255, 0.55); }
.footer-inner { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr; gap: 40px; }
.footer-desc { margin-top: 16px; max-width: 320px; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }
.footer-h { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-col .footer-h { margin-bottom: 4px; }
.footer-link, .footer-mail { font-size: 14px; color: rgba(255, 255, 255, 0.72); transition: color .15s ease; padding: 2px 0; }
.footer-link:hover, .footer-mail:hover { color: #fff; }
.footer-mail { font-weight: 600; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-company { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.ph { display: inline-block; margin-left: 4px; padding: 0 7px; border-radius: 4px; background: var(--bg-2); border: 1px dashed var(--primary-line); color: var(--text-3); font-style: normal; font-size: 12px; line-height: 20px; }
.site-footer .ph { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.28); color: rgba(255, 255, 255, 0.65); }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.55); white-space: nowrap; }
.footer-bottom-compact { margin-top: 0; padding-top: 0; border-top: 0; }

/* ---------- 16. 법적 고지 페이지 (terms / privacy / 404) ---------- */
.legal { padding: 64px 0 120px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.legal .legal-date { margin-top: 12px; font-size: 14px; color: var(--text-4); }
.legal-placeholder { margin-top: 32px; padding: 24px; border: 1px dashed var(--primary-line); border-radius: var(--r-md); background: var(--bg-1); color: var(--text-2); font-size: 15px; line-height: 1.7; }
.legal-placeholder b { color: var(--primary); }
.legal h2 { margin-top: 40px; font-size: 20px; font-weight: 600; }
.legal p, .legal li { margin-top: 10px; font-size: 15px; line-height: 1.75; color: var(--text-2); }
.legal ol { list-style: decimal; padding-left: 20px; }
.legal .btn { margin-top: 32px; }
.error-page { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; text-align: center; }
.error-page .legal-inner { display: flex; flex-direction: column; align-items: center; }
.error-code { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; color: var(--primary); }

/* ---------- 17. 애니메이션 ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
[data-hero-anim] { animation: fade-up .7s var(--ease) both; }
.hero-copy [data-hero-anim]:nth-child(1) { animation-delay: .05s; }
.hero-copy [data-hero-anim]:nth-child(2) { animation-delay: .12s; }
.hero-copy [data-hero-anim]:nth-child(3) { animation-delay: .2s; }
.hero-copy [data-hero-anim]:nth-child(4) { animation-delay: .28s; }
.hero-copy [data-hero-anim]:nth-child(5) { animation-delay: .36s; }
.hero-copy [data-hero-anim]:nth-child(6) { animation-delay: .44s; }
.hero-visual { animation: fade-up .8s var(--ease) .45s both; }
.chart .line-pay { stroke-dasharray: 420; stroke-dashoffset: 420; animation: draw 1.1s var(--ease) .7s forwards; }
.chart .area { opacity: 0; animation: fade-in .6s ease 1.3s forwards; }
.chart-dot { opacity: 0; animation: fade-in .3s ease 1.6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }
.mock-float { animation: fade-up .6s var(--ease) 1.1s both; }

html.js .reveal { opacity: 0; translate: 0 16px; transition: opacity .6s var(--ease), translate .6s var(--ease), transform .2s var(--ease), border-color .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease; transition-delay: var(--d, 0s), var(--d, 0s), 0s, 0s, 0s, 0s, 0s; }
html.js .reveal.in { opacity: 1; translate: none; }
html:not(.js) .faq-a { grid-template-rows: 1fr; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  html.js .reveal { opacity: 1; translate: none; }
  .chart .line-pay { stroke-dashoffset: 0; }
  .chart .area, .chart-dot { opacity: 1; }
  .steps::after, .step::after { transform: none; }
}

@media print {
  html.js .reveal { opacity: 1 !important; translate: none !important; }
  .site-header { position: static; }
  .nav-toggle, .nav-backdrop, .skip-link, .preview-tag, .mock-float { display: none !important; }
  .faq-a { grid-template-rows: 1fr; }
  .section { padding: 40px 0; }
}

/* ---------- 18. 반응형 ---------- */
@media (max-width: 1150px) {
  .hero-title { font-size: 46px; }
  .dashboard-inner { grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr); gap: 48px; }
  .mock-float { left: -36px; }
}
@media (max-width: 1100px) {
  .section-title, .cta-title { font-size: 38px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 1024px) {
  .section { padding: 96px 0; }
  .hero { padding: calc(var(--header-h) + 48px) 0 88px; }
  .hero-inner { gap: 48px; }
  .hero-visual { max-width: 720px; }  /* margin:auto 는 size containment 와 함께 폭 0 이 되므로 사용 금지 */
  .mock-float { left: -8px; }
  .dashboard-inner { grid-template-columns: 1fr; gap: 48px; }
  .terminal-inner, .app-inner { grid-template-columns: 1fr; gap: 40px; }
  .terminal-visual { max-width: 520px; width: 100%; justify-self: center; }
  .app-visual { max-width: 640px; width: 100%; justify-self: center; }
  .pay-grid { margin-top: 56px; }
  .dashboard-visual { order: 1; width: 100%; max-width: 720px; justify-self: center; }
  .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner .section-head-left, .contact-copy { position: static; }
  .steps { gap: 20px; }
  .steps::before, .steps::after { left: calc(12.5% + 22px); right: calc(12.5% + 22px); }
  .review-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .cta-copy { text-align: center; }
  .cta-art { justify-self: center; max-width: 320px; }
  .review-card { min-height: 0; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  html.nav-open .site-header { background: var(--bg-0); border-bottom-color: var(--border); }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 58;
    background: var(--bg-0); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .22s var(--ease), opacity .22s ease, visibility 0s linear .22s;
  }
  html.nav-open .site-nav { transform: none; opacity: 1; visibility: visible; transition-delay: 0s; }
  html.nav-open { overflow: hidden; }
  html.nav-open body { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
  html.nav-open .site-header { position: fixed; top: 0; left: 0; right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--border-soft); }
  .nav-list li.nav-cta { border-bottom: 0; margin: 12px 0 0; }
  .nav-link { height: 56px; padding: 0 4px; font-size: 18px; font-weight: 600; border-radius: 0; }
  .nav-link:hover { background: transparent; }
  .nav-cta .btn { width: 100%; height: 50px; font-size: 16px; }
  .steps { grid-template-columns: 1fr; gap: 0; padding-left: 0; }
  .steps::before, .steps::after { display: none; }
  .step:not(:last-child)::before, .step:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 48px; bottom: 4px; width: 2px; border-radius: 2px; }
  .step:not(:last-child)::before { background: var(--border); }
  .step:not(:last-child)::after { background: var(--primary); transform: scaleY(0); transform-origin: top center; transition: transform .6s var(--ease); }
  .steps.in .step:not(:last-child)::after { transform: scaleY(1); }
  .steps.in .step:nth-child(2)::after { transition-delay: .35s; }
  .steps.in .step:nth-child(3)::after { transition-delay: .7s; }
  .step { position: relative; display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto auto auto; column-gap: 20px; align-items: start; text-align: left; padding: 0 0 36px; }
  .step:last-child { padding-bottom: 0; }
  .step-marker { grid-row: 1 / span 4; }
  .step-art { margin-top: 0; width: 104px; height: 104px; padding: 10px; }
  .step-no { margin-top: 4px; }
  .step h3 { margin-top: 4px; }
  .step p { max-width: none; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; --gutter: 20px; }
  .br-sm { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: calc(var(--header-h) + 32px) 0 72px; }
  .hero-title { font-size: 40px; letter-spacing: -0.02em; line-height: 1.18; }
  .hero-logo { width: 168px; margin-bottom: 22px; }
  .hero-points { gap: 8px; }
  .hero-points li { height: 34px; font-size: 13px; padding: 0 12px 0 10px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 420px; }
  .hero-actions .btn { width: 100%; }
  .section-title, .cta-title { font-size: 30px; }
  .section-sub { font-size: 15.5px; }
  .section-sub, .cta-sub, .section-note { text-wrap: balance; }
  .section-head { margin-bottom: 36px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-ko { font-size: 16px; }
  .mock { --m: 1px !important; grid-template-columns: 1fr; border-radius: 16px; }
  .mock-side { display: none; }
  .mock-kpis { grid-template-columns: 1fr; gap: 6px; }
  .kpi { flex-direction: row; align-items: center; justify-content: space-between; height: 44px; padding: 0 12px; }
  .kpi-value { font-size: 15px; }
  .hero-visual::before { inset: 12px -8px auto 12px; }
  .dashboard-visual::before { display: none; }
  .mock-top-brand { display: inline-flex; white-space: nowrap; }
  .mock-top-title { display: none; }
  .mock-date { white-space: nowrap; margin-left: auto; }
  .mock-pills { display: none; }
  .mock-main { padding: 12px; gap: 10px; }
  .mock-kpis { gap: 8px; }
  .kpi-chip { display: none; }
  .mock-split { grid-template-columns: 1fr; }
  .mock-table .rows li:nth-child(n+4) { display: none; }
  .preview-tag { right: 12px; }
  .mock-float { position: relative; left: auto; bottom: auto; width: fit-content; margin: -22px 0 0 12px; padding: 8px 12px 8px 8px; }
  .mock-caption { margin-top: 14px; text-align: left; }
  .mock-settle .mock-top-title { display: block; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .pay-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .pay-photo { aspect-ratio: 16 / 11; }
  .spec-icons { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .spec-icons li { padding: 12px 4px 10px; gap: 8px; }
  .si-icon { width: 40px; height: 40px; }
  .si-icon .icon { width: 21px; height: 21px; }
  .spec-icons b { font-size: 12px; }
  .spec-icons-app { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .terminal-chip { height: 32px; font-size: 12px; padding: 0 11px 0 10px; }
  .chip-a { left: -6px; }
  .chip-b { right: -6px; }
  .terminal-stage { border-radius: 24px; }
  .store-buttons { flex-direction: column; }
  .store-btn { width: 100%; }
  .app-visual { padding: 12px 0 36px; }
  .app-shot { filter: drop-shadow(0 12px 16px rgba(16, 24, 40, 0.2)); }
  .feature-card { padding: 14px 14px 24px; }
  .feature-card h3 { margin: 18px 10px 0; }
  .feature-card p { margin-left: 10px; margin-right: 10px; }
  .side-art { display: none; }
  .cta-art { max-width: 260px; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industry-icon { width: 36px; height: 36px; left: 8px; top: 8px; border-radius: 10px; }
  .industry-icon .icon { width: 18px; height: 18px; }
  .industry-body { padding: 14px 14px 16px; }
  .industry-card h3 { font-size: 15.5px; }
  .industry-card p { font-size: 12.5px; }
  .industry-no { top: 8px; right: 8px; height: 22px; font-size: 11px; }
  .industry-arrow { display: none; }
  .dashboard-visual { padding: 0; }
  .dashboard-visual[data-hl="device"] .mock-settle { box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px var(--primary-ring), var(--shadow-mock); }
  .dashboard-visual .mock-caption { position: static; margin-top: 14px; }
  .mock-phone { display: none; }
  .settle-summary { grid-template-columns: 1fr 1fr; }
  .settle-summary > div:last-child { display: none; }
  .mock-range { display: none; }
  .rows-settle li span:nth-child(2) { display: none; }
  .rows-settle li { grid-template-columns: 1fr 1.4fr auto; }
  .faq-q { font-size: 16.5px; min-height: 64px; padding: 18px 0; gap: 14px; }
  .faq-a-inner p { padding-right: 0; font-size: 15px; }
  .section-cta { padding: 80px 0; }
  .cta-ring { width: 420px; height: 420px; right: -160px; top: -140px; }
  .cta-inner .btn { width: 100%; }
  .contact-form { padding: 24px 20px; border-radius: var(--r-lg); }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .agree-detail { margin-left: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; margin-top: 36px; }
  .footer-copy { white-space: normal; }
  .footer-link, .footer-mail { padding: 8px 0; }
  .site-footer { padding: 48px 0 32px; }
  .legal h1 { font-size: 28px; }
}
@media (max-width: 360px) {
  .industry-grid { grid-template-columns: 1fr; }
  .settle-summary { grid-template-columns: 1fr; }
  .settle-summary > div { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (max-width: 340px) {
  .cta-title { font-size: 27px; }
}
