/* ─────────────────────────────────────────────────────────
   flowlee — homepage styles
   ───────────────────────────────────────────────────────── */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F4F0E8;
  --bg-card: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --muted: #6B6B6B;
  --muted-2: #9E9E9E;
  --line: #E5E2DA;
  --line-soft: #EDEAE2;
  --accent: #2D4A3E;
  --accent-hover: #1F362C;
  --accent-soft: #E8EDE9;
  --mustard: #B8923A;
  --mustard-soft: #F4ECD9;
  --serif: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", system-ui, sans-serif;
  --sans: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", system-ui, sans-serif;
  --max: 1200px;
  --max-narrow: 760px;
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
strong, b { font-weight: 500; }

/* Nav background: stays transparent over green hero, then flips to cream
   tint once content scrolls under it. After the hero ends the next sections
   are cream too, so the un-scrolled (initial) treatment only matters at top. */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease, padding 220ms ease, color 220ms ease;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 17.5px;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transform-origin: center;
  transition: transform 160ms ease, font-weight 160ms ease;
}
.nav__links a:hover { font-weight: 700; transform: scale(1.08); }
.nav__links a.active { color: var(--accent); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 50%;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 12.5px;
  font-weight: 500;
  transition: background 150ms ease, transform 150ms ease;
}
.nav__cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Scroll progress bar — sits at very top */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 60;
  background: transparent;
}
.progress__fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 80ms linear;
}

/* ─── Layout ─── */
section { padding: 120px 48px; }
.container { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: var(--max-narrow); margin: 0 auto; }

/* ─── Type ─── */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

h1.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(25px, 3.22vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.hero h1.hero-title {
  font-size: clamp(25px, 3.78vw, 49px);
  line-height: 1.22;
}
/* 문장 속 강조어는 기울임 없이 색으로만 (인용문 전체일 때만 italic 허용) */
em, i { font-style: normal; }
.hero h1.hero-title em:nth-of-type(2) { margin-top: 0.3em; }
h1.hero-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
h2.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(23.5px, 2.51vw, 33.5px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}
h2.section-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.section-lede {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.section-lede + .section-lede { margin-top: 1.1em; }

/* ─── Fade-in ─── */
@keyframes fade-up-kf {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}
.fade-up.in {
  animation: fade-up-kf 700ms cubic-bezier(.2,.7,.2,1) both;
}
.fade-up.in.delay-1 { animation-delay: 80ms; }
.fade-up.in.delay-2 { animation-delay: 160ms; }
.fade-up.in.delay-3 { animation-delay: 240ms; }
.fade-up.in.delay-4 { animation-delay: 320ms; }
.fade-up.in.delay-5 { animation-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
  .fade-up.in { animation: none; }
}

/* ════════════════════════════════════════════════════════
   HERO — deep green inversion (matches Final CTA)
   ════════════════════════════════════════════════════════ */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero .eyebrow { color: rgba(255,255,255,0.55); }
.hero .eyebrow .dot { background: var(--mustard); }

.hero h1.hero-title { color: #fff; }
.hero h1.hero-title em {
  color: var(--mustard-soft);
  font-style: normal;
  font-weight: 900;
  display: block;
}
.hero-title__indent {
  display: block;
  color: #fff;
  padding-left: 3.8em;
}
.hero h1.hero-title .dim { color: rgba(255,255,255,0.4); }

.hero .hero__rule { background: var(--mustard); width: 56px; }

.hero .hero__sub { color: rgba(255,255,255,0.82); }
.hero .hero__reassure { color: rgba(255,255,255,0.5); }

/* Hero buttons inverted: white pill, accent text */
.hero .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.hero .btn-primary:hover {
  background: #F4F0E8;
  box-shadow: 0 18px 32px -16px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.hero .btn-ghost {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.42);
}
.hero .btn-ghost:hover {
  color: var(--mustard-soft);
  border-bottom-color: var(--mustard-soft);
}

/* Trust strip sits in cream zone BELOW the green hero */
.trust-wrap {
  background: var(--bg);
  padding: 0 48px 72px;
}
.trust-wrap .trust {
  margin-top: 0;
  padding-top: 64px;
}

/* Trust strip (cream zone — beefy version) */

/* Nav over hero blends into deep green; flip wordmark color until scrolled */
.nav { color: #fff; }
.nav .nav__wordmark { color: #fff; }
.nav .nav__links { color: rgba(255,255,255,0.78); }
.nav .nav__links a.active { color: var(--mustard-soft); }
.nav .nav__links a.active::after { background: var(--mustard); }
.nav.scrolled {
  background: rgba(250, 250, 247, 0.85);
  color: var(--ink);
}
.nav.scrolled .nav__wordmark { color: var(--ink); }
.nav.scrolled .nav__links { color: var(--ink-soft); }
.nav.scrolled .nav__links a.active { color: var(--accent); }
.nav.scrolled .nav__links a.active::after { background: var(--accent); }
.nav .nav__cta { background: #fff; color: var(--accent); }
.nav .nav__cta:hover { background: var(--mustard-soft); }
.nav.scrolled .nav__cta { background: var(--accent); color: #fff; }
.nav.scrolled .nav__cta:hover { background: var(--accent-hover); }

/* Scroll progress visible on dark hero */
.progress { background: rgba(255,255,255,0.05); }

.hero__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 112px 76px 44px;
}
.hero__foot {
  margin: 0 auto;
  padding: 0 76px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__aside {
  background: transparent;
  display: flex;
  flex: 0 0 auto;
}
.hero-creds {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
  box-shadow: 0 12px 32px -20px rgba(0,0,0,0.18);
}
.hero-creds .trust__item { gap: 3px; }
.hero-creds .trust__value .tiny { margin-top: 2px; }
.hero__rule {
  width: 56px;
  height: 2px;
  background: var(--mustard);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.hero__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 16px auto 26px;
  max-width: 460px;
}
.hero__lede {
  max-width: 480px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
}
.hero__lede strong { color: #fff; font-weight: 500; }
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 22px;
  margin-top: 26px;
  margin-bottom: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(45,74,62,0.5); }
.btn-primary .arrow { transition: transform 200ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--ink);
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); border-bottom-color: var(--accent); }

.hero__reassure {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Hero right column */

/* Trust strip below hero */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-left: 18px;
}
.trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--accent);
  opacity: 0.35;
  border-radius: 2px;
}
.trust__item:nth-child(2)::before { background: var(--mustard); opacity: 0.7; }
.trust__label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.trust__item:nth-child(2) .trust__label { color: var(--mustard); }
.trust__value {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.012em;
}
.trust__value .accent { color: var(--accent); font-weight: 700; }
.trust__value .tiny {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0;
}

/* ════════════════════════════════════════════════════════
   MATRIX SECTION
   ════════════════════════════════════════════════════════ */
.matrix-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding-top: 76px;
}
.matrix-section .container { max-width: 920px; }

.matrix-intro { max-width: 680px; margin-bottom: 64px; }

.matrix-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr;
  gap: 48px;
  align-items: center;
  margin-left: -44px;
}

.matrix-wrap {
  position: relative;
  aspect-ratio: 1.14 / 1;
  padding: 36px 40px;
}
.matrix-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 56px;
  background: transparent;
}
.q {
  background: #ECE8DE;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}
.q:hover { background: #E2DDD0; }
.q__label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink-soft);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.q__sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.q.is-star {
  background: var(--accent);
  color: #fff;
}
.q.is-star:hover { background: var(--accent-hover); }
.q.is-star .q__label,
.q.is-star .q__sub { color: #fff; }
.q.is-star .q__sub { color: rgba(255,255,255,0.78); }
.q__star {
  font-size: 13px;
  margin-right: 6px;
}

.q.is-active {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 2;
  transform: scale(1.005);
}
.q.is-star.is-active { outline-color: var(--mustard); }

/* Center cross — performance (vertical) × energy (horizontal) axes */
.matrix-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.matrix-cross__v {
  position: absolute;
  left: 50%;
  top: -10px;
  bottom: -10px;
  width: 2px;
  margin-left: -1px;
  background: var(--ink-soft);
  border-radius: 2px;
}
.matrix-cross__v::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid var(--ink-soft);
}
.matrix-cross__h {
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  height: 2px;
  margin-top: -1px;
  background: var(--ink-soft);
  border-radius: 2px;
}
.matrix-cross__h::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--ink-soft);
}
.axis-cap {
  position: absolute;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.axis-cap--top { top: 10px; left: 50%; transform: translateX(-50%); }
.axis-cap--bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }
.axis-cap--left { left: 6px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; text-orientation: mixed; }
.axis-cap--right { right: 6px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; text-orientation: mixed; }

/* Axes — prominent labels with arrow shafts */
.axis-y {
  position: absolute;
  left: 32px;
  top: 56px;
  bottom: 72px;
  width: 56px;
  pointer-events: none;
}
.axis-y::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 8px;
  width: 2px;
  background: var(--ink-soft);
  margin-left: -1px;
  border-radius: 2px;
}
.axis-y::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid var(--ink-soft);
}
.axis-y__top, .axis-y__bot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  background: var(--bg-soft);
  padding: 2px 6px;
}
.axis-y__top { top: 12px; }
.axis-y__bot { bottom: -6px; }

.axis-x {
  position: absolute;
  left: 104px;
  right: 56px;
  bottom: 28px;
  height: 56px;
  pointer-events: none;
}
.axis-x::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  right: 28px;
  height: 2px;
  background: var(--ink-soft);
  margin-top: -1px;
  border-radius: 2px;
}
.axis-x::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -7px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--ink-soft);
}
.axis-x__left, .axis-x__right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  background: var(--bg-soft);
  padding: 2px 6px;
}
.axis-x__left { left: -8px; }
.axis-x__right { right: 16px; }

.matrix-hint {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 18px;
  letter-spacing: -0.005em;
}

/* Detail panel beside matrix */
.matrix-detail {
  position: relative;
  padding: 0;
}
.matrix-detail__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 30px;
  min-height: 280px;
  position: relative;
  transition: border-color 200ms ease;
}
.matrix-detail__panel.is-star {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #F6FAF8 100%);
}
.matrix-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.matrix-detail__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--muted-2);
}
.matrix-detail__panel.is-star .matrix-detail__eyebrow .dot { background: var(--accent); }
.matrix-detail__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20.5px;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.matrix-detail__panel.is-star .matrix-detail__title { color: var(--accent); }
.matrix-detail__body {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.matrix-detail__example {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--bg);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  border-left: 2px solid var(--line);
}
.matrix-detail__panel.is-star .matrix-detail__example {
  border-left-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink-soft);
}

.matrix-footer {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
}
.matrix-footer p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.matrix-gallup {
  margin-top: 64px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.gallup-list {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.cs-logo__ring {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.cs-logo__text {
  display: flex;
  flex-direction: column;
}
.cs-logo__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.cs-logo__brand sup { font-size: 9px; }
.cs-logo__by {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.gallup-viz {
  margin: 4px 0 20px;
  padding: 18px 22px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.gallup-viz__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.gallup-viz__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.gallup-viz__sub {
  font-size: 12px;
  color: var(--muted);
}
.gallup-viz__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 58px;
}
.gallup-viz__bar {
  flex: 1;
  min-height: 5px;
  background: var(--line);
  border-radius: 2px 2px 0 0;
}
.gallup-viz__bar.is-top { background: var(--accent); }
.gallup-viz__bar.is-mid { background: var(--mustard); }
.gallup-viz__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}
.gallup-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.gallup-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.gallup-list li em {
  font-style: normal;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.matrix-gallup__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 17.5px;
}
.matrix-gallup__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 4px;
}
.matrix-gallup__body {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.matrix-gallup__body strong { color: var(--ink); font-weight: 500; }

/* Coaching flow — 3 step frame */
.flow-steps {
  margin-top: 56px;
}
.flow-steps__lede {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
}
.flow-steps__lede strong { color: var(--accent); font-weight: 600; }
.flow-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.flow-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
}
.flow-step__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.flow-step__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════════════ */
.products-section .container { max-width: 920px; }
.products-head { max-width: 660px; margin-bottom: 56px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(9, auto);
  gap: 0 20px;
  align-items: stretch;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  grid-row: 1 / -1;
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.18);
}
.product--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #F7FAF8 100%);
  transform: translateY(-8px);
}
.product--featured:hover { transform: translateY(-12px); }

.product__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}
.product--package .product__badge { background: var(--mustard); }

.product__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.product--featured .product__eyebrow { color: var(--accent); }
.product--package .product__eyebrow { color: var(--mustard); }

.product__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
}
.product__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
}
.product__price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.product__price-meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-left: 9px;
}
.product__price-unit {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.product__included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 4px 11px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.product__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.product__list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.product--package .product__list li::before { background: var(--mustard); }
.product__list--out li::before {
  width: auto; height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
  content: "✓";
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  opacity: 1;
}
.product--featured .product__list--out li::before { color: var(--accent); }
.product--package .product__list--out li::before { background: none; color: var(--accent); }

.product__step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.product--featured .product__step { color: var(--accent); }

.product__block { margin-bottom: 20px; }
.product__block-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}

.product__journey-spacer {
  background: none;
  padding: 0;
  margin: 0;
  min-height: 0;
}
.product__journey {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.product__journey strong { color: var(--ink); font-weight: 500; }

.product__for {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 10px;
}
.product__for-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.products-diff {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}
.products-diff strong { color: var(--ink-soft); font-weight: 500; }

.product__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product__refund {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product__refund::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.product__cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.product--featured .product__cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.product--featured .product__cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Guarantee box */
.guarantee {
  margin-top: 48px;
  border: 1.5px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.guarantee__seal {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--serif);
  text-align: center;
  line-height: 1;
}
.guarantee__seal .pct {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.guarantee__seal .lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}
.guarantee__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16.5px;
  margin: 0 0 8px;
  color: var(--accent);
}
.guarantee__body {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.guarantee__body em {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: normal;
}

/* Existing-test holders note */
.holders-note {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--muted);
}
.holders-note strong {
  color: var(--ink);
  font-weight: 500;
}
.holders-note a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

/* ════════════════════════════════════════════════════════
   CHECKLIST (Section 2)
   ════════════════════════════════════════════════════════ */
.checklist-section {
  background: var(--bg);
  padding-top: 100px;
  transition: background 300ms ease;
}
.checklist-section.is-hot .check-list { border-color: var(--accent); }
.checklist-section .section-title { font-size: clamp(19px, 2.23vw, 26.5px); line-height: 1.35; }
.checklist-line2 { white-space: nowrap; }
.checklist-hl { color: var(--accent); font-style: normal; }
.checklist-section .container { max-width: 1040px; }

.checklist-head {
  margin-bottom: 44px;
}
.checklist-head h2 { margin: 0; }
.checklist-prompt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.checklist-prompt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.checklist-prompt::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}

.check-progress {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--serif);
  line-height: 1;
}
.check-progress__num {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.check-progress__denom {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-2);
}

.check-counter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-soft);
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}
.check-counter.is-hot {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.check-counter__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
  transition: color 220ms ease;
}
.check-counter.is-hot .check-counter__num { color: #fff; }
.check-counter__num .denom {
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
}
.check-counter.is-hot .check-counter__num .denom { color: rgba(255,255,255,0.7); }

.check-list {
  list-style: none;
  margin: 0;
  padding: 8px 24px;
  border: 2.5px solid transparent;
  border-radius: 14px;
  transition: border-color 250ms ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  column-gap: 56px;
}
.check-item:last-child { border-bottom: none; }
.check-item:nth-child(4) { border-bottom: none; }
.check-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 14px 18px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  transition: background 200ms ease;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 4px;
}
.check-item:hover { background: rgba(45,74,62,0.025); }
.check-item.is-checked { background: #EBE1C9; }

.check-item__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--muted-2);
  border-radius: 4px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.check-item:hover .check-item__box { border-color: var(--accent); }
.check-item.is-checked .check-item__box {
  background: var(--accent);
  border-color: var(--accent);
}
.check-item__check {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}
.check-item.is-checked .check-item__check {
  opacity: 1;
  transform: scale(1);
}

.check-item__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.check-item.is-checked .check-item__quote { color: var(--accent); }
.check-item__persona {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  padding: 2px 9px;
  background: var(--bg-soft);
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 2px;
}
.check-item__persona.persona--worker { background: #E7ECF2; color: #41597A; }
.check-item__persona.persona--founder { background: var(--accent-soft); color: var(--accent); }
.check-item__persona.persona--common { background: var(--bg-soft); color: var(--muted); }
.check-item__reply {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.check-item__reply::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.check-cta {
  display: none;
  margin-top: 48px;
  padding: 34px 40px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 24px 50px -28px rgba(45,74,62,0.6);
}
.check-cta.is-hot {
  display: grid;
  animation: cta-reveal 460ms cubic-bezier(.4,0,.2,1) both;
}
@keyframes cta-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.check-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}
.check-cta p strong { color: #fff; font-weight: 500; }
.check-cta__highlight {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--mustard-soft);
  margin-bottom: 10px;
  font-style: italic;
}
.check-cta .btn-primary {
  background: var(--bg-soft);
  color: var(--accent);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
.check-cta .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.45);
}

/* Big counter — below the list */
.check-counter--big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 44px auto 0;
  padding: 22px 36px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}
.check-counter--big.is-hot {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.02);
}
.check-counter--big .check-counter__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 31px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  transition: color 260ms ease;
}
.check-counter--big.is-hot .check-counter__num { color: #fff; }
.check-counter--big .check-counter__num .denom {
  font-size: 17.5px;
  color: var(--muted-2);
  margin-left: 4px;
}
.check-counter--big.is-hot .check-counter__num .denom { color: rgba(255,255,255,0.55); }
.check-counter__label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 260ms ease;
}
.check-counter--big.is-hot .check-counter__label { color: #fff; }

/* ════════════════════════════════════════════════════════
   REVIEWS (Section 6)
   ════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--bg-soft);
  padding-top: 76px;
  padding-bottom: 140px;
}
.reviews-section .container { max-width: 920px; }
.reviews-head { max-width: 680px; margin-bottom: 56px; }
.reviews-head p.tiny {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.reviews-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
  margin-bottom: 48px;
}
.review-main {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.review-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.2);
}
.review-main--featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.review-main--featured .review-main__quote { color: #fff; }
.review-main--featured .review-main__attr-name { color: #fff; }
.review-main--featured .review-main__attr-role { color: rgba(255,255,255,0.7); }
.review-main--featured .review-main__monogram {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.review-main--featured .review-main__mark { color: rgba(255,255,255,0.28); }

.review-main__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 45px;
  line-height: 1;
  color: var(--accent-soft);
  margin: -8px 0 -8px;
}
.review-main__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 6px 0 28px;
  flex: 1;
}
.review-main__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.review-main--featured .review-main__attr { border-top-color: rgba(255,255,255,0.18); }
.review-main__monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
}
.review-main__attr-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-main__attr-role {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 1px;
}
.review-main__footer {
  margin-top: 16px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
}
.review-main--featured .review-main__footer {
  color: rgba(255,255,255,0.65);
  border-top-color: rgba(255,255,255,0.18);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, border-color 200ms ease;
}
.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.review-card--placeholder {
  background: transparent;
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted-2);
  font-size: 12px;
  min-height: 180px;
}
.review-card--placeholder .ph-icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20.5px;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.review-card__quote {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.review-card__attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.review-card__monogram {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.review-card__name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}
.review-card__role {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   MIDDLE CTA (between sections)
   ════════════════════════════════════════════════════════ */
.midcta {
  padding: 0 48px;
  margin: -32px 0 -16px;
  position: relative;
  z-index: 2;
}
.midcta__inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 28px;
  align-items: center;
  box-shadow: 0 12px 32px -24px rgba(0,0,0,0.16);
}
.midcta__inner.is-tinted {
  background: var(--accent-soft);
  border-color: rgba(45,74,62,0.18);
}
.midcta__lede {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.midcta__lede strong { color: var(--ink); font-weight: 500; }
.midcta__note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
}
.btn-primary--sm {
  padding: 12px 20px;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════
   ABOUT (Section 4)
   ════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg);
  padding-top: 120px;
  padding-bottom: 48px;
}
.about-section .container { max-width: 920px; }

.about-head { margin-bottom: 40px; }
.about-head h2.section-title { margin-bottom: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

.about-copy h2.section-title { margin-bottom: 36px; }

.about-copy p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
}
.about-copy p.lede {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.4em;
}
.about-copy p.aside {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  padding-left: 18px;
  border-left: 2px solid var(--line);
  margin: 1.4em 0;
}
.about-copy p .accent { color: var(--accent); font-weight: 500; }

.about-copy .pull {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 32px 0 28px;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--accent);
}

.about-photo {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-photo image-slot {
  width: 100%;
  height: 540px;
  --image-slot-bg: #ECE8DE;
  --image-slot-fg: var(--muted);
  --image-slot-border: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-creds {
  width: 100%;
  padding: 30px 32px;
  gap: 22px;
}
.about-photo__cap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
}
.about-photo__cap strong {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Credentials */
.credentials {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.credentials__head {
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.credentials__head h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.credentials__head span {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cred-row {
  display: grid;
  grid-template-columns: 36px 200px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line-soft);
}
.cred-row:last-child { border-bottom: none; }
.cred-row__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.cred-row.is-star .cred-row__dot {
  background: var(--accent);
  color: #fff;
}
.cred-row__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cred-row__val {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.cred-row__val strong { color: var(--accent); font-weight: 500; }
.cred-row__val em {
  font-style: normal;
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 3px;
}

/* ════════════════════════════════════════════════════════
   GUIDE (보조 섹션 — 잠든 강점 보고서 깨우기)
   ════════════════════════════════════════════════════════ */
.guide-section {
  background: var(--bg-soft);
  padding: 100px 48px;
}
.guide-section .container { max-width: 920px; }
.guide-section .eyebrow { color: var(--mustard); }
.guide-section .eyebrow .dot { background: var(--mustard); }

.guide-flag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mustard);
}
.guide-flag .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--mustard);
}

.guide-section h2.section-title {
  margin: 18px 0 24px;
  font-size: clamp(20.5px, 2.09vw, 26.5px);
}
.guide-section h2.section-title em { color: var(--mustard); }

.guide-body p {
  margin: 0 0 1.1em;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.guide-body p .voice {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--mustard);
  margin: 14px 0;
}
.guide-cta {
  margin-top: 32px;
}
.btn-mustard {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--mustard);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 160ms ease, transform 160ms ease;
}
.btn-mustard:hover { background: #9E7E2F; transform: translateY(-2px); }
.btn-mustard .arrow { transition: transform 200ms ease; }
.btn-mustard:hover .arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════
   FAQ (Section 7)
   ════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg);
  padding: 120px 48px;
}
.faq-section .container { max-width: 920px; }
.faq-head { max-width: 660px; margin-bottom: 56px; }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__head {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  gap: 18px;
  align-items: center;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.faq-item__head:hover { opacity: 0.78; }
.faq-item__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.faq-item.is-open .faq-item__num { color: var(--accent); }
.faq-item__q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.faq-item.is-open .faq-item__q { color: var(--accent); }
.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 280ms cubic-bezier(.4, 0, .2, 1), background 200ms ease;
}
.faq-item__icon::before {
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  margin-top: -0.75px;
}
.faq-item__icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1.5px;
  margin-left: -0.75px;
}
.faq-item.is-open .faq-item__icon::before { background: var(--accent); }
.faq-item.is-open .faq-item__icon::after {
  background: var(--accent);
  transform: rotate(90deg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms cubic-bezier(.4, 0, .2, 1);
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item__answer {
  padding: 0 28px 32px 54px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.faq-item__answer p { margin: 0 0 1em; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item__answer ul li {
  padding-left: 18px;
  position: relative;
}
.faq-item__answer ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.faq-item__answer ul li strong { color: var(--ink); font-weight: 500; }
.faq-item__answer a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.faq-item__answer strong { color: var(--ink); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   FINAL CTA (Section 8)
   ════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--accent);
  color: #fff;
  padding: 140px 48px 120px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(184,146,58,0.18), transparent 36%),
    radial-gradient(circle at 92% 88%, rgba(255,255,255,0.04), transparent 32%);
  pointer-events: none;
}
.final-cta__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.final-cta__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.final-cta__eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--mustard);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.final-cta__head {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(25px, 3.22vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.final-cta__head em {
  font-style: normal;
  font-weight: 700;
  color: var(--mustard-soft);
}
.final-cta__body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 0 44px;
}
.final-cta__body strong { color: #fff; font-weight: 500; }
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.final-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -16px rgba(0,0,0,0.4);
}
.final-cta__btn .arrow { transition: transform 200ms ease; }
.final-cta__btn:hover .arrow { transform: translateX(5px); }
.final-cta__reassure {
  margin: 22px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  padding: 48px 48px 32px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.footer__meta {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.footer__meta div + div { margin-top: 2px; }
.footer__links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: var(--muted);
}
.footer__links a { transition: color 150ms ease; }
.footer__links a:hover { color: var(--accent); }

/* ════════════════════════════════════════════════════════
   PLACEHOLDER (rest of page)
   ════════════════════════════════════════════════════════ */
.coming {
  padding: 80px 48px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  text-align: center;
}
.coming p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px;
}
.coming small {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .nav { padding: 14px 24px; }
  .hero__top { flex-direction: column; align-items: flex-start; gap: 32px; padding: 120px 32px 32px; }
  .hero__foot { align-items: flex-start; text-align: left; padding: 0 32px 56px; margin: 0; }
  .hero__rule { margin-left: 0; }
  .hero__lede { margin-left: 0; }
  .hero__cta-row { justify-content: flex-start; }
  .trust-wrap { padding: 0 32px 40px; }
  .trust-wrap .trust { padding-top: 40px; }
  .matrix-layout { grid-template-columns: 1fr; gap: 32px; }
  .matrix-wrap { aspect-ratio: auto; padding: 0; }
  .matrix-grid { gap: 12px; }
  .matrix-cross, .axis-cap { display: none; }
  .q { padding: 22px 18px; min-height: 110px; }
  .products-grid { grid-template-columns: 1fr; }
  .product--featured { transform: none; }
  .product--featured:hover { transform: translateY(-4px); }
  .matrix-footer { grid-template-columns: 1fr; gap: 16px; }
  .matrix-gallup { grid-template-columns: 1fr; text-align: left; }
  .flow-steps__list { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .reviews-main { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .check-cta { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; column-gap: 0; }
  .check-item:nth-child(4) { border-bottom: 1px solid var(--line); }
  .check-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; flex-direction: row; align-items: flex-end; gap: 24px; margin-top: 0; }
  .about-photo image-slot { width: 240px; height: 300px; flex-shrink: 0; }
  .cred-row { grid-template-columns: 30px 1fr; gap: 14px; padding: 18px 22px; }
  .cred-row__label { display: none; }
  .credentials__head { padding: 18px 22px; }
  .midcta__inner { grid-template-columns: 1fr; padding: 24px; }
  .final-cta { padding: 100px 32px 80px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { align-self: center; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin: 0 auto; }
  .trust { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .checklist-head { flex-direction: column; align-items: flex-start; }
  .check-item__quote { font-size: 15px; }
  .check-item__persona { display: inline-block; margin-left: 0; margin-top: 6px; }
  .about-photo { flex-direction: column; align-items: stretch; }
  .about-photo image-slot { width: 100%; height: 420px; }
  .faq-item__answer { padding-left: 24px; }
  .faq-item__head { grid-template-columns: 28px 1fr 20px; gap: 12px; }
  .footer__inner { grid-template-columns: 1fr; }
  .midcta { padding: 0 24px; }
}

/* ════════════════════════════════════════════════════════
   Inquiry modal (CTA destination)
   ════════════════════════════════════════════════════════ */
.iq-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7vh 20px 40px;
  overflow-y: auto;
  background: rgba(26, 26, 26, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  animation: iq-fade 220ms ease forwards;
}
@keyframes iq-fade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .iq-overlay { animation: none; opacity: 1; }
  .iq-dialog { animation: none !important; }
}

.iq-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px -32px rgba(26, 26, 26, 0.5);
  padding: 36px 38px 34px;
  transform: translateY(14px);
  animation: iq-rise 280ms cubic-bezier(.2, .7, .2, 1) forwards;
}
@keyframes iq-rise { to { transform: translateY(0); } }

.iq-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease;
}
.iq-close:hover { background: var(--bg-soft); color: var(--ink); }

.iq-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.iq-flag .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mustard);
}
.iq-flag.is-discount { color: var(--mustard); }
.iq-flag.is-discount .dot { background: var(--mustard); }

.iq-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.iq-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.iq-form { display: flex; flex-direction: column; gap: 20px; }
.iq-field { display: flex; flex-direction: column; gap: 8px; }
.iq-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.iq-label .opt {
  font-weight: 400;
  color: var(--muted-2);
  margin-left: 6px;
}

.iq-input,
.iq-select,
.iq-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.iq-textarea { resize: vertical; min-height: 72px; line-height: 1.6; }
.iq-input:focus,
.iq-select:focus,
.iq-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.iq-input::placeholder, .iq-textarea::placeholder { color: var(--muted-2); }

.iq-contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

/* segmented radio pills */
.iq-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.iq-chip {
  flex: 1 1 auto;
  min-width: max-content;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  transition: all 140ms ease;
}
.iq-chip:hover { border-color: var(--muted-2); }
.iq-chip.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.iq-flag.is-discount ~ .iq-form .iq-chip.is-on { background: var(--mustard); border-color: var(--mustard); }

.iq-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}
.iq-check.is-on { border-color: var(--accent); background: var(--accent-soft); }
.iq-check__box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--muted-2);
  border-radius: 5px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 140ms ease;
}
.iq-check.is-on .iq-check__box { background: var(--accent); border-color: var(--accent); }
.iq-check__box svg { width: 11px; height: 11px; opacity: 0; }
.iq-check.is-on .iq-check__box svg { opacity: 1; }
.iq-check__text { font-size: 13px; line-height: 1.5; color: var(--ink); }
.iq-check__text .sub { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.iq-reveal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px;
  border-radius: 10px;
  background: var(--mustard-soft);
}
.iq-reveal .iq-label { color: #6E5418; }

.iq-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 150ms ease, transform 150ms ease;
}
.iq-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.iq-submit.is-discount { background: var(--mustard); }
.iq-submit.is-discount:hover { background: #9E7E2F; }
.iq-submit .arrow { transition: transform 200ms ease; }
.iq-submit:hover .arrow { transform: translateX(4px); }

.iq-fineprint {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted-2);
  text-align: center;
  margin: 14px 0 0;
}

/* success state */
.iq-success { text-align: center; padding: 16px 4px 6px; }
.iq-success__seal {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.iq-success__seal.is-discount { background: var(--mustard-soft); color: var(--mustard); }
.iq-success__seal svg {
  width: 30px; height: 30px;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: iq-check 500ms 120ms ease forwards;
}
@keyframes iq-check { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .iq-success__seal svg { animation: none; stroke-dashoffset: 0; } }
.iq-success__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.iq-success__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 320px;
}
.iq-recap {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.iq-recap__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.iq-recap__k { color: var(--muted); }
.iq-recap__v { color: var(--ink); font-weight: 500; }
.iq-done-btn {
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease;
}
.iq-done-btn:hover { background: var(--bg-soft); }

@media (max-width: 520px) {
  .iq-dialog { padding: 32px 24px 28px; }
  .iq-contact-row { grid-template-columns: 1fr; }
}
