/* ═══════════════════════════════════════════════════════════
   redcheetah — 전문직 특화 숏폼 운영 에이전시
   브랜딩: 세일즈덱(레드치타_변호사_숏폼_제안서, 2026-08) 토큰 이식
   크림 #FAF6EF · 잉크 #141210 · 레드 #BF3B22 · 웜 룰 #D8D0C2
   서체: Noto Serif KR(제목·큰 숫자) + Pretendard(본문) + 모노(라벨)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* — Surface — */
  --bg:        #FAF6EF;   /* 덱 --cream */
  --bg-deep:   #F1EADD;   /* 덱 --cream-deep — 교차 패널·강조 상자 */
  --bg-card:   #FFFDF9;   /* 카드 — 크림보다 반 단 밝게 */

  /* — Ink — */
  --ink:       #141210;   /* 덱 --ink */
  --ink-soft:  #55504A;   /* 덱 --ink-soft · 크림 위 7.3:1 */
  --ink-faint: #8B857C;   /* ⚠️ 상태 전용 (BRAND.md §7). 선·테두리에만 — 텍스트로 쓰지 않는다 */

  /* — Accent (면적 1% 이하 원칙 유지) — */
  --red:       #BF3B22;   /* 덱 --red · 크림 위 5.0:1 */
  --red-soft:  rgba(191, 59, 34, 0.05);   /* 이 위에 --red 텍스트가 올라간다 — 진하면 대비가 깎인다 */

  /* — 반전 면 (BRAND.md §3) · 크림 지면의 거울 — */
  --on-ink:        #FAF6EF;   /* 반전 면 본문 */
  --on-ink-soft:   #CFC8BB;   /* 반전 면 보조 텍스트 */
  --on-ink-faint:  #7C7770;   /* 반전 면 상태 채널 — 선·테두리 전용 */
  --on-ink-red:    #E8613F;   /* 반전 면 빨강 (같은 빨강의 명도 변형) */

  /* — Rules · 덱은 1px 웜 룰 — */
  --rule:      #D8D0C2;
  --rule-soft: #E8E1D4;   /* 들여쓴 세부의 세로선 */

  /* — Type — */
  --f-serif:   'Noto Serif KR', 'Apple SD Gothic Neo', serif;
  --f-body:    'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

  /* — Motion — */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  /* — Type scale · 임의 크기 금지, 이 6단만 쓴다 —
     구버전은 11~17.5px 사이 13종이 섞여 있었다(ui-ux-pro-max: "Random font sizes"). */
  --t-label:   13.5px;  /* 대문자·모노 라벨. 하한 */
  --t-cap:     15.5px;  /* 캡션 · 보조 설명 */
  --t-sm:      16.5px;  /* 작은 본문 */
  --t-base:    17.5px;  /* 본문 */
  --t-lead:    18.5px;  /* 리드 */

  --radius:    4px;
  --shell:     1180px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4, p, li, dt, dd, label, th, td { word-break: keep-all; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout primitives ─────────────────────────────────── */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid var(--rule); }

/* 덱의 kicker — 레드 600, 자간 넓게 */
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.s-title {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.s-lead {
  margin-top: 24px;
  font-size: var(--t-lead);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 46ch;
}
.s-head { margin-bottom: 70px; }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 90;
  padding: 24px 0;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.nav.is-stuck {
  padding: 14px 0;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* 덱 워드마크 — 산세리프 800, 레드 a */
.wordmark {
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.wordmark .ra { color: var(--red); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: var(--t-cap);
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; cursor: pointer;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .22s, transform .22s var(--ease), color .22s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 17px 32px;
  font-size: var(--t-sm);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-sm { padding: 12px 22px; font-size: var(--t-cap); }

.btn-ghost {
  background: none;
  color: var(--ink-soft);
  padding: 17px 4px;
  font-size: var(--t-sm);
  font-weight: 600;
}
.btn-ghost::after { content: '→'; transition: transform .25s var(--ease); }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── Hero ──────────────────────────────────────────────── */
.hero { padding: 168px 0 110px; }
.hero h1 {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.22;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  margin-top: 30px;
  max-width: 44ch;
  font-size: var(--t-lead);
  line-height: 1.85;
  color: var(--ink-soft);
}
.hero-cta { margin-top: 48px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hero-meta .v {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hero-meta .v small {
  font-size: clamp(15.5px, 0.52em, 20px);
  font-weight: 600;
  letter-spacing: 0;
}
.hero-meta .k { margin-top: 10px; font-size: var(--t-cap); line-height: 1.65; color: var(--ink-soft); }

/* ── Pain — 3 cards, 세로 룰 분리 ──────────────────────── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pain-grid > li { padding: 0 40px; border-left: 1px solid var(--rule); }
.pain-grid > li:first-child { padding-left: 0; border-left: 0; }
.pain-grid .no {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 18px;
}
.pain-grid h3 {
  font-family: var(--f-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-bottom: 14px;
}
.pain-grid p { font-size: var(--t-sm); line-height: 1.8; color: var(--ink-soft); }

.punch {
  margin-top: 88px;
  padding-top: 44px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.62;
  letter-spacing: -0.025em;
  max-width: 28ch;
}
.punch em { font-style: normal; color: var(--red); }

/* ── Solution — 차별점 3, 결과 선두 ────────────────────── */
.sol-list { display: grid; gap: 0; }
.sol-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
}
.sol-item:first-child { border-top: 0; padding-top: 0; }
.sol-item .no {
  font-family: var(--f-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.sol-item h3 {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.sol-item p { font-size: var(--t-base); line-height: 1.8; color: var(--ink-soft); max-width: 54ch; }
.sol-tag {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 100px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* ── Process — 5단계 트랙 ──────────────────────────────── */
.track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.track li { padding-top: 20px; border-top: 1px solid var(--rule); }
.track li.accent { border-top: 2px solid var(--red); }
.track .n {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  display: block; margin-bottom: 14px;
}
.track li.accent .n { color: var(--red); }
.track h4 { font-size: var(--t-base); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 9px; }
.track p { font-size: var(--t-cap); line-height: 1.7; color: var(--ink-soft); }

.process-note {
  margin-top: 64px;
  padding: 30px 36px;
  background: var(--bg-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
}
.process-note .v {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.process-note .v em { font-style: normal; color: var(--red); }
.process-note p { font-size: var(--t-sm); line-height: 1.75; color: var(--ink-soft); }

/* ── Portfolio ─────────────────────────────────────────── */
.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.figures > div { border-top: 1px solid var(--rule); padding-top: 24px; }
.figures .v {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.figures .v small { font-size: clamp(15.5px, 0.5em, 20px); font-weight: 600; letter-spacing: 0; }
.figures .k { margin-top: 12px; font-size: var(--t-sm); font-weight: 700; letter-spacing: -0.01em; }
.figures .d { margin-top: 7px; font-size: var(--t-cap); line-height: 1.7; color: var(--ink-soft); }

/* ── Plan — 3티어 ──────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(20, 18, 16, 0.07); }
.plan-card .badge {
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 100px;
  padding: 7px 15px;
  margin-bottom: 20px;
}
.plan-card h3 {
  font-family: var(--f-serif);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan-vol {
  margin-top: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  gap: 20px;
}
/* 숫자와 라벨 폭이 달라 좌측 정렬하면 어긋난다 — 각 쌍을 제 라벨 위에 가운데로 세운다 */
.plan-vol div {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.plan-vol .n {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.plan-vol .l {
  margin-top: 4px;
  font-size: var(--t-cap);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.plan-list { margin-top: 24px; flex: 1; }
.plan-list li {
  padding: 11px 0;
  display: grid;
  grid-template-columns: 5px 1fr;
  column-gap: 6px;
}
.plan-list li::before {
  content: '·'; color: var(--red); font-weight: 700;
  line-height: 1.5;
}
.plan-list b {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.5;
}
.plan-list .d {
  grid-column: 2;
  margin-top: 3px;
  font-size: var(--t-cap);
  line-height: 1.6;
  color: var(--ink-soft);
}
.plan-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-cta .price-note { font-size: var(--t-cap); color: var(--ink-soft); }
.plan-cta .btn { justify-content: center; }

/* Featured — 잉크 반전 (치타) */
.plan-card.featured { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.plan-card.featured .plan-vol,
.plan-card.featured .plan-cta { border-color: rgba(250, 246, 239, 0.22); }
.plan-card.featured .plan-vol .l,
.plan-card.featured .plan-cta .price-note { color: rgba(250, 246, 239, 0.76); }
.plan-card.featured .plan-list .d { color: rgba(250, 246, 239, 0.74); }
.plan-card.featured .plan-list b { color: var(--bg); }
.plan-card.featured .badge { background: rgba(191, 59, 34, 0.18); color: var(--on-ink-red); }
.plan-card.featured .btn-primary { background: var(--bg); color: var(--ink); }
.plan-card.featured .btn-primary:hover { background: #FFFDF9; }

.addon {
  margin-top: 26px;
  padding: 26px 34px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}
.addon .k {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--red);
  white-space: nowrap;
}
.addon p { font-size: var(--t-sm); line-height: 1.75; color: var(--ink-soft); flex: 1; min-width: 260px; }
.addon p b { color: var(--ink); font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { max-width: 860px; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  font-size: var(--t-base);
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.4px solid var(--ink-faint); border-bottom: 1.4px solid var(--ink-faint);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq summary:hover { color: var(--red); }
.faq .a { padding: 0 60px 28px 0; font-size: var(--t-sm); line-height: 1.85; color: var(--ink-soft); }

/* ── Contact — 잉크 반전 섹션 ──────────────────────────── */
.contact { background: var(--ink); color: var(--bg); }
.contact .eyebrow { color: var(--on-ink-red); }
.contact .s-title { color: var(--bg); }
.contact .s-lead { color: var(--on-ink-soft); }

.form-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.form-side p { font-size: var(--t-sm); line-height: 1.85; color: var(--on-ink-soft); }
.form-side .mail {
  display: inline-block;
  margin-top: 26px;
  font-size: var(--t-sm);
  color: var(--bg);
  border-bottom: 1px solid var(--on-ink-faint);
  padding-bottom: 3px;
}

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; }
.field { display: flex; flex-direction: column; }
.field.wide { grid-column: 1 / -1; }
.field label {
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--on-ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(250, 246, 239, 0.55);
  border-radius: 0;
  padding: 13px 0;
  font-size: var(--t-base);
  color: var(--bg);
  transition: border-color .25s;
}
/* 포커스 링은 전역 :focus-visible(--red)을 그대로 받되, 반전 면이라 명도 변형을 쓴다.
   --red는 잉크 위 3.44:1, --on-ink-red는 5.53:1 (BRAND.md §3 반전 면 · §6 각주로 빨강 예산 제외) */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible,
.consent input:focus-visible {
  outline: 2px solid var(--on-ink-red);
  outline-offset: 3px;
}
.field textarea { resize: vertical; min-height: 88px; line-height: 1.7; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--on-ink-soft) 50%),
                    linear-gradient(135deg, var(--on-ink-soft) 50%, transparent 50%);
  background-position: right 6px center, right 1px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--bg); }
/* 아직 안 고른 select는 답변과 같은 밝기로 보이면 안 된다.
   빈 상태 = 보조 단, 답한 상태 = 본문 단 — 텍스트 플레이스홀더와 같은 규칙 */
.field select:has(option[value=""]:checked) { color: var(--on-ink-soft); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--bg); }
/* 빈 칸 안내 문구 — BRAND.md §7 "빈 칸·누락 = 안내 문구는 보조색" */
.field input::placeholder, .field textarea::placeholder { color: var(--on-ink-soft); opacity: 1; }
.field .err {
  font-size: var(--t-label); color: var(--on-ink-soft);
  min-height: 22px; padding-top: 6px;
}
/* 상태는 형태로(점선), 중요도는 명도로 — 오류는 정상(0.55 실선)보다 밝다 (BRAND.md §7) */
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-bottom-style: dashed;
  border-bottom-color: var(--on-ink);
}

.consent {
  grid-column: 1 / -1;
  margin-top: 30px;
  display: flex; gap: 13px; align-items: flex-start;
}
/* 체크 = 충족. BRAND.md §7 "판정 배지 — 충족: 채움" · 빨강은 브랜드 전용(§2-4) */
.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--on-ink); cursor: pointer; }
.consent label { font-size: var(--t-cap); line-height: 1.7; color: var(--on-ink-soft); margin: 0; cursor: pointer; font-weight: 400; letter-spacing: 0; }

.submit-row { grid-column: 1 / -1; margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn-invert { background: var(--bg); color: var(--ink); }
.btn-invert:hover { background: var(--bg-card); transform: translateY(-2px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.form-status { font-size: var(--t-cap); color: var(--on-ink-soft); }
.form-status.bad { color: var(--on-ink); font-weight: 600; }

.form-done { padding: 50px 0 10px; max-width: 44ch; }
.form-done h3 {
  font-family: var(--f-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.form-done p { font-size: var(--t-base); line-height: 1.85; color: var(--on-ink-soft); }

/* ── Footer ────────────────────────────────────────────── */
.foot { padding: 56px 0; border-top: 1px solid var(--rule); }
.foot .shell { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.foot .meta { font-size: var(--t-cap); color: var(--ink-soft); line-height: 1.85; }
.foot .meta a:hover { color: var(--ink); }
.foot .biz { margin-top: 10px; font-size: var(--t-cap); color: var(--ink-soft); line-height: 1.75; }

/* ── Reveal — JS가 붙었을 때만 숨긴다 (무JS 폴백) ───────── */
html.js .rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.js .rv.in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 980px) {
  /* 좁은 화면일수록 크게. 토큰만 올리면 전 지점이 따라온다 */
  :root {
    --t-label: 14px;
    --t-cap:   16px;
    --t-sm:    17px;
    --t-base:  18px;
    --t-lead:  19px;
  }
  .section { padding: 84px 0; }
  .shell { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 140px 0 84px; }
  .hero-meta { grid-template-columns: 1fr; gap: 22px; margin-top: 60px; }
  .hero-meta > div { border-top: 1px solid var(--rule-soft); padding-top: 18px; }
  .hero-meta > div:first-child { border-top: 0; padding-top: 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid > li { padding: 30px 0; border-left: 0; border-top: 1px solid var(--rule); }
  .pain-grid > li:first-child { padding-top: 0; border-top: 0; }
  .sol-item { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .sol-item .no { font-size: 32px; }
  .sol-tag { justify-self: start; }
  .track { grid-template-columns: 1fr 1fr; gap: 24px 22px; }
  .figures { grid-template-columns: 1fr; gap: 26px; }
  .plan-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 44px; }
  .fields { grid-template-columns: 1fr; }
  .s-head { margin-bottom: 48px; }
  .punch { margin-top: 60px; }
  .hero-cta .btn-primary,
  .submit-row .btn-primary { width: 100%; justify-content: center; }
  .hero-cta { gap: 6px; }
  .hero-cta .btn-ghost { padding-left: 0; }
}
@media (max-width: 560px) {
  .track { grid-template-columns: 1fr; }
  .process-note { padding: 24px; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html.js .rv { opacity: 1; transform: none; }
}

@media print {
  .nav, .hero-cta, .contact { display: none; }
  body { background: #fff; }
}
