/* =========================================================
   style.css — 섹션 레이아웃 + 스크롤 인터랙션 (towncar/partner 재현)
   ========================================================= */

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-pad); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--grad-dark); color: var(--ink-900); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-500);
  margin-bottom: 14px;
}
.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -.02em;
  color: var(--ink-900);
  word-break: keep-all;
}
.section--dark .section-title { color: var(--ink-900); }
.section-title .accent { color: var(--brand-500); }
.section--dark .section-title .accent { color: var(--brand-400); }
.section-sub {
  margin-top: 18px;
  font-size: var(--fs-lead);
  line-height: var(--lh-base);
  color: var(--ink-500);
}
.section--dark .section-sub { color: var(--ink-500); }
.section-head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-body);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255,20,147,.35); }
.btn-dark { background: #fff; color: var(--brand-600); border: 1.5px solid #ffd2e9; box-shadow: var(--shadow-sm); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px); }
.btn-outline { border: 1.5px solid var(--line); color: var(--ink-700); background: #fff; }
.btn .arrow { transition: transform .25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { position: relative; display: flex; align-items: center; width: 100%; }
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-menu { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 30px; }
.nav-menu a { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-600); transition: color .2s; }
.nav-menu a:hover { color: var(--ink-900); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger button */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; cursor: pointer; padding: 0; background: none; border: none; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-700); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(25,31,40,.28); z-index: 110; opacity: 0; transition: opacity .3s; }
.nav-overlay.is-open { display: block; opacity: 1; }
.nav-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 280px; background: #fff; z-index: 120; transform: translateX(-100%); transition: transform .3s var(--ease-out); padding: 0 0 40px; display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(255,20,147,.12); }
.nav-drawer.is-open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 18px 24px; border-bottom: 1px solid var(--line); }
.nav-drawer nav { display: flex; flex-direction: column; padding: 8px 0; }
.nav-drawer nav a { font-size: 17px; font-weight: 700; color: var(--ink-800); padding: 16px 24px; border-bottom: 1px solid var(--line); transition: color .2s; display: block; }
.nav-drawer nav a:last-child { border-bottom: none; }
.nav-drawer nav a:hover { color: var(--brand-500); }
.drawer-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--ink-500); background: none; border: none; cursor: pointer; border-radius: 8px; flex-shrink: 0; }
.drawer-close:hover { background: var(--bg-muted); }

.brand { display: flex; align-items: center; gap: 9px; color: var(--ink-900); letter-spacing: 0; white-space: nowrap; }
.brand .logo-img { width: 26px; height: 26px; border-radius: 6px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; font-size: 19px; }
.brand-sub { font-weight: 500; font-size: 11px; color: var(--ink-500); }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; }
  .nav { justify-content: space-between; }
  .nav-left { flex: 1; justify-content: flex-start; }
  .nav .brand { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 68px;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(255,61,159,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(255,20,147,.12), transparent 55%),
    var(--bg-soft);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; width: 100%;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: var(--fs-sm); font-weight: 700; color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}
.hero-title {
  margin-top: 22px;
  font-size: var(--fs-hero);
  font-weight: 700; line-height: var(--lh-tight); letter-spacing: -.03em;
  color: var(--ink-900);
  word-break: keep-all;
}
.hero-title .accent { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { margin-top: 24px; font-size: var(--fs-lead); color: var(--ink-500); max-width: 460px; }
.hero-actions { margin-top: 36px; display: flex; gap: 12px; }
.hero-actions .btn { flex: 1; text-align: center; justify-content: center; }
.hero-trust { margin-top: 28px; display: flex; gap: 26px; }
.hero-trust .num { font-size: 26px; font-weight: 800; color: var(--ink-900); }
.hero-trust .lbl { font-size: var(--fs-xs); color: var(--ink-500); }

/* Hero floating calculator card */
.hero-visual { position: relative; }
.calc-card {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.calc-card h3 { font-size: 18px; font-weight: 700; color: var(--ink-900); }
.calc-card .calc-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--bg-muted); }
.calc-card .calc-row:last-child { border-bottom: none; }
.calc-card .calc-row .k { font-size: var(--fs-sm); color: var(--ink-500); }
.calc-card .calc-row .v { font-size: 18px; font-weight: 700; color: var(--ink-900); }
.calc-card .calc-row .v.amt { color: var(--brand-500); opacity: 0; }
.calc-card .calc-row .v.amt.is-popped { animation: amt-pop .55s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes amt-pop {
  0%   { opacity: 0; transform: translateY(8px) scale(.82); }
  65%  { opacity: 1; transform: translateY(-2px) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.calc-card .calc-total { margin-top: 10px; padding: 18px; border-radius: var(--radius-sm); background: var(--bg-soft); display: flex; justify-content: space-between; align-items: center; }
.calc-card .calc-total .v { font-size: 24px; font-weight: 800; color: var(--brand-500); }
.hero-blob {
  position: absolute; inset: -40px -30px auto auto; width: 320px; height: 320px;
  background: var(--grad-brand); filter: blur(60px); opacity: .35; border-radius: 50%;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-lead { max-width: none; }
}
@media (max-width: 640px) {
  .hero-actions { flex-wrap: nowrap; gap: 8px; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; padding: 14px 16px; font-size: 14px; white-space: nowrap; }
}

/* =========================================================
   Audience (이런 분들께 추천)
   ========================================================= */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-300); }
.audience-card .ico { color: var(--brand-500); margin-bottom: 16px; }
.audience-card .ico .icon { width: 36px; height: 36px; }
.audience-card h3 { font-size: var(--fs-h3); font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; }
.audience-card ul { margin-top: 16px; display: grid; gap: 10px; }
.audience-card li { display: flex; gap: 8px; font-size: var(--fs-sm); color: var(--ink-600); }
.audience-card li::before { content: "✓"; color: var(--brand-500); font-weight: 800; }
.audience-card .more { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: 700; color: var(--brand-600); }

@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Kakao Business inspired index landing
   ========================================================= */
body.kb-page {
  background: #fff;
  color: #1e1e1e;
  font-family: var(--font-sans);
}
body.kb-page .site-header {
  height: 86px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.kb-nav {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.kb-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: #111;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -.02em;
}
.kb-logo img {
  width: 34px;
  height: 34px;
}
.kb-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 72px);
}
.kb-menu a {
  color: #111;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.kb-login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 54px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  background: #fff;
}
.kb-mobile-menu { justify-self: end; }
.kb-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.kb-main { padding-top: 86px; }
.kb-hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.kb-hero-slider {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 86px);
}
.kb-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.kb-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.kb-hero-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 56px;
  padding: 96px 0 88px;
}
.kb-eyebrow,
.kb-label {
  display: inline-block;
  color: #6e6e6e;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}
.kb-hero h1 {
  margin-top: 18px;
  color: #161616;
  font-size: clamp(64px, 8vw, 136px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.kb-hero h1 span { color: #111; }
.kb-hero-lead {
  max-width: 640px;
  margin-top: 34px;
  color: #555;
  font-size: 26px;
  line-height: 1.48;
  font-weight: 600;
  letter-spacing: -.02em;
  word-break: keep-all;
}
.kb-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 54px;
}
.kb-primary,
.kb-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.kb-primary {
  background: #fee500;
  color: #111;
  box-shadow: none;
}
.kb-secondary {
  color: #111;
  background: #f4f4f4;
}
.kb-hero-art {
  position: relative;
  min-height: 520px;
}
.kb-orbit-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7b0, #fee500 58%, #ffd329);
  color: #111;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: inset -18px -22px 44px rgba(0, 0, 0, .08), 0 30px 70px rgba(0, 0, 0, .14);
}
.kb-mini-card {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 34px;
  background: #fff;
  color: #111;
  border: 1px solid #ececec;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
  animation: satellite-float 4.8s ease-in-out infinite;
  will-change: transform;
}
.kb-card-a { top: 28px; left: 20px; background: #eef5ff; animation-delay: -.4s; }
.kb-card-b { right: 0; top: 120px; background: #fff4d7; animation-delay: -1.8s; }
.kb-card-c { left: 92px; bottom: 24px; background: #f1f1f1; animation-delay: -3.1s; }
@keyframes satellite-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.kb-hero-slide.is-child .kb-orbit-main { background: linear-gradient(145deg, #edf6ff, #dcecff 58%, #b8d8ff); }
.kb-hero-slide.is-review .kb-orbit-main { background: linear-gradient(145deg, #f3ffe4, #dff5bb 58%, #c9e98d); }
.kb-hero-slide.is-child .kb-card-a { background: #f0f7ff; }
.kb-hero-slide.is-child .kb-card-b { background: #fff6da; }
.kb-hero-slide.is-child .kb-card-c { background: #eef8ed; }
.kb-hero-slide.is-review .kb-card-a { background: #fff7de; }
.kb-hero-slide.is-review .kb-card-b { background: #edf6ff; }
.kb-hero-slide.is-review .kb-card-c { background: #f0f7e2; }
.kb-hero-controls {
  position: absolute;
  left: max(32px, calc((100vw - 1320px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kb-hero-controls button {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #d8d8d8;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.kb-hero-controls button.is-active {
  width: 62px;
  background: #111;
}
.kb-section { padding: 116px 0; }
.kb-section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.kb-section-head.align-left {
  margin-left: 0;
  text-align: left;
}
.kb-section-head h2,
.kb-banner h2 {
  color: #111;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.kb-section-head p,
.kb-banner p {
  margin-top: 18px;
  color: #666;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
  word-break: keep-all;
}
.kb-service-overview { background: #f7f7f7; }
.kb-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.kb-service-card {
  min-height: 520px;
  padding: 46px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: #111;
}
.kb-service-card.is-yellow { background: #fee500; }
.kb-service-card.is-blue { background: #dcecff; }
.kb-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  font-size: 15px;
  font-weight: 900;
}
.kb-service-card h3 {
  margin-top: 30px;
  font-size: clamp(38px, 4.8vw, 70px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.05em;
  word-break: keep-all;
}
.kb-service-card p {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(17,17,17,.74);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
}
.kb-service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: rgba(17,17,17,.76);
  font-size: 17px;
  font-weight: 800;
}
.kb-service-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #111;
  vertical-align: 2px;
}
.kb-service-card a {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}
.kb-insurers {
  background: #f7f7f7;
}
.kb-insurers .kb-section-head {
  max-width: 760px;
}
.insurer-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.insurer-logo-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.05);
}
.insurer-logo-card img {
  width: min(100%, 170px);
  height: 54px;
  object-fit: contain;
}
.insurer-logo-card span {
  color: #555;
  font-size: 15px;
  font-weight: 800;
}
.kb-report {
  background: #fff;
}
.kb-report-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  align-items: center;
  gap: 64px;
}
.kb-report-copy h2 {
  margin-top: 18px;
  color: #111;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.1;
  font-weight: 860;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.kb-report-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: #555;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 560;
  word-break: keep-all;
}
.report-mockup {
  min-height: 620px;
  padding: 34px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f5f7fb 0%, #fff7df 100%);
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.05);
}
.report-paper {
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 70px rgba(0,0,0,.13);
}
.report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.report-head span {
  display: block;
  color: #888;
  font-size: 13px;
  font-weight: 800;
}
.report-head strong {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 860;
  letter-spacing: -.035em;
  word-break: keep-all;
}
.report-head em {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fee500;
  color: #111;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.report-summary,
.report-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f7f7f7;
}
.report-summary strong,
.report-note strong {
  color: #111;
  font-size: 15px;
  font-weight: 900;
}
.report-summary p,
.report-note p {
  margin-top: 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
  word-break: keep-all;
}
.report-table {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}
.report-row {
  display: grid;
  grid-template-columns: 1fr .8fr 1.1fr .6fr;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #fafafa;
  color: #333;
  font-size: 13px;
  font-weight: 760;
}
.report-row-head {
  background: #111;
  color: #fff;
  font-size: 12px;
}
.report-row.is-best {
  background: #fff8c9;
  box-shadow: inset 0 0 0 1px rgba(254,229,0,.9);
}
.report-row span:last-child {
  justify-self: end;
  color: #111;
  font-weight: 900;
}
.report-row-head span:last-child {
  color: #fff;
}
.kb-compare { background: #fff; }
.kb-point-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #111;
}
.kb-point-list article {
  min-height: 300px;
  padding: 36px 30px;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.kb-point-list article:last-child { border-right: 0; }
.kb-point-list strong {
  color: #b4b4b4;
  font-size: 18px;
  font-weight: 900;
}
.kb-point-list h3 {
  margin-top: 58px;
  color: #111;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.035em;
  word-break: keep-all;
}
.kb-point-list p {
  margin-top: 18px;
  color: #666;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 600;
  word-break: keep-all;
}
.kb-guarantee {
  background: #f7f7f7;
}
.kb-guarantee-card {
  min-height: 420px;
  padding: 58px 64px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fee500;
  color: #111;
}
.kb-guarantee-card .kb-label {
  color: rgba(17,17,17,.7);
}
.kb-guarantee-card h2 {
  max-width: 820px;
  margin-top: 22px;
  color: #111;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.kb-guarantee-card p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(17,17,17,.72);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
  word-break: keep-all;
}
.gift-marquee {
  width: 100%;
  margin-top: 42px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gift-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: gift-scroll 26s linear infinite;
}
.gift-marquee img {
  width: 230px;
  height: 164px;
  border-radius: 24px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
}
.gift-select-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
@keyframes gift-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 36px)); }
}
.kb-banner {
  background: #111;
  color: #fff;
}
.kb-banner-inner {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 54px;
}
.kb-banner-inner > div {
  width: 100%;
}
.kb-banner-inner .kb-primary {
  align-self: flex-start;
}
.kb-banner .kb-label,
.kb-banner h2,
.kb-banner p { color: #fff; }
.kb-banner p { color: rgba(255,255,255,.72); max-width: 620px; }
.kb-pc-break { display: block; }
.kb-mobile-space { display: none; }
.kb-talk {
  background: #fff;
}
.kb-talk-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  align-items: center;
  gap: 72px;
}
.kb-talk-copy h2 {
  margin-top: 18px;
  color: #111;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.08;
  font-weight: 860;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.kb-talk-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: #555;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 560;
  word-break: keep-all;
}
.kb-talk-copy .kb-primary {
  margin-top: 38px;
}
.kb-talk-mockup {
  min-height: 600px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf4ff 0%, #f7fbf1 100%);
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.04);
}
.kb-talk-phone {
  width: min(100%, 390px);
  min-height: 520px;
  padding: 22px;
  border-radius: 32px;
  background: #f5f5f5;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}
.kb-talk-status {
  height: 58px;
  padding: 0 14px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.kb-talk-status span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fee500;
}
.kb-talk-status strong {
  color: #111;
  font-size: 16px;
  font-weight: 800;
}
.kb-talk-status em {
  margin-left: auto;
  color: #3a8a45;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.kb-talk-card {
  margin-top: 16px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  color: #111;
}
.kb-talk-card span {
  color: #4b38ff;
  font-size: 23px;
  font-weight: 860;
}
.kb-talk-card ol {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  color: #555;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
  list-style-position: inside;
}
.kb-chat-row {
  max-width: 82%;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  color: #222;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}
.kb-chat-row.is-user {
  margin-left: auto;
  border-radius: 18px 18px 6px 18px;
  background: #fee500;
}
.kb-talk-input {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 999px;
  background: #fff;
  color: #aaa;
  font-size: 14px;
  font-weight: 650;
}
.kb-faq { background: #f7f7f7; }
body.kb-page .faq-list {
  max-width: 1060px;
  margin: 0 auto;
}
body.kb-page .faq-item {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #ededed;
  border-radius: 0;
}
body.kb-page .faq-q {
  padding: 28px 28px 28px 34px;
  font-size: 22px;
  font-weight: 900;
}
.kb-footer {
  padding: 44px 0;
  border-top: 1px solid #ededed;
  background: #fff;
  color: #777;
}
.kb-footer .kb-container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.kb-footer strong {
  color: #111;
  font-size: 20px;
  font-weight: 900;
}
.kb-footer-info {
  width: 100%;
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}
.kb-footer-info span {
  display: inline-flex;
  align-items: center;
}
.kb-footer-info span + span::before {
  content: "";
  width: 1px;
  height: 11px;
  margin-right: 16px;
  background: #d9d9d9;
}
.kb-footer nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}
.kb-footer a { color: #777; font-weight: 700; }
.kb-image-credit {
  width: 100%;
  color: #999;
  font-size: 12px;
  line-height: 1.5;
}
.kb-image-credit a {
  color: #999;
  font-weight: 600;
}
body.kb-page .chat-fab {
  background: #fee500;
  color: #111;
  box-shadow: 0 14px 34px rgba(0,0,0,.15);
}
.gift-main {
  background: #f7f7f7;
}
.gift-hero {
  padding: 96px 0 58px;
  background: #fff;
}
.gift-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #111;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -.04em;
  word-break: keep-all;
}
.gift-hero p {
  max-width: 640px;
  margin-top: 22px;
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 450;
  word-break: keep-all;
}
.gift-select {
  padding: 72px 0 110px;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.gift-option {
  min-height: 470px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #111;
}
.gift-option img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 18px;
  object-fit: cover;
}
.gift-option span {
  margin-top: 22px;
  color: #777;
  font-size: 14px;
  font-weight: 700;
}
.gift-option h2 {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -.035em;
  word-break: keep-all;
}
.gift-option p {
  margin-top: 14px;
  margin-bottom: auto;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 450;
  word-break: keep-all;
}
.gift-option a {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.review-main {
  background: #f7f7f4;
}
.review-hero {
  padding: 96px 0 58px;
  background: #fff;
}
.review-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #111;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -.04em;
  word-break: keep-all;
}
.review-hero p {
  max-width: 640px;
  margin-top: 22px;
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 450;
  word-break: keep-all;
}
.review-board {
  min-height: calc(100vh - 86px);
  padding: 28px 0 96px;
  background: #f7f7f4;
  color: #111;
}
.review-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.review-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e4e1dc;
  border-radius: 20px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37, 34, 28, .08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(37, 34, 28, .14);
}
.review-empty {
  grid-column: 1 / -1;
  padding: 72px 0;
  text-align: center;
  color: #746f66;
  font-size: 15px;
}
.review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  background: #f1f1ed;
}
.review-card-body {
  padding: 18px 16px 20px;
}
.review-card-body span {
  color: #746f66;
  font-size: 13px;
  font-weight: 650;
}
.review-card-body h2 {
  margin-top: 9px;
  color: #161411;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -.025em;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-body p {
  margin-top: 9px;
  color: #615c54;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 450;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-infinite-sentinel {
  width: 100%;
  height: 1px;
}

.review-write-main {
  background: #f7f7f4;
}
.review-form-section {
  min-height: calc(100vh - 86px);
  padding: 12px clamp(18px, 2.4vw, 34px) 96px;
  background: #f7f7f4;
}
.review-form {
  width: min(560px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e1dc;
  border-radius: 24px;
  padding: 36px clamp(20px, 4vw, 40px);
  box-shadow: 0 16px 40px rgba(37, 34, 28, .08);
}
.review-form .field {
  margin-bottom: 20px;
}
.review-form label {
  display: block;
  margin-bottom: 8px;
  color: #161411;
  font-size: 15px;
  font-weight: 650;
}
.review-form input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #e4e1dc;
  border-radius: 14px;
  background: #faf9f7;
  color: #111;
  font-size: 16px;
  font-family: inherit;
}
.review-form input:focus {
  outline: none;
  border-color: var(--brand-500);
  background: #fff;
}
.review-form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border: none;
  border-radius: 999px;
  background: var(--brand-500);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
.review-form-submit:disabled {
  opacity: .6;
  cursor: default;
}
.review-form-note {
  margin-top: 14px;
  color: #9a948a;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1100px) {
  .kb-nav { padding: 0 28px; gap: 20px; }
  .kb-hero-inner { padding-top: 68px; }
  .kb-hero-art { min-height: 420px; }
  .kb-hero-controls { bottom: 30px; }
  .kb-orbit-main { width: 260px; height: 260px; font-size: 42px; }
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .kb-hero-inner {
    grid-template-columns: 1.05fr .8fr;
    gap: 28px;
  }
  .kb-hero h1 { font-size: clamp(60px, 8.8vw, 86px); }
  .kb-hero-lead { font-size: 22px; }
  .kb-hero-art { min-height: 360px; }
  .kb-mini-card { width: 118px; height: 118px; border-radius: 26px; font-size: 17px; }
  .kb-card-a { left: 0; }
  .kb-card-b { right: 0; top: 92px; }
  .kb-card-c { left: 34px; bottom: 10px; }
}
@media (max-width: 760px) {
  body.kb-page .site-header { height: 68px; }
  .kb-main { padding-top: 68px; }
  .kb-nav { grid-template-columns: 1fr auto; padding: 0 18px; }
  .kb-menu, .kb-login { display: none; }
  .kb-mobile-menu { display: flex; }
  .kb-logo { font-size: 21px; }
  .kb-logo img { width: 28px; height: 28px; }
  .kb-container, .kb-hero-inner { width: min(100% - 32px, 1180px); }
  .kb-hero { min-height: auto; }
  .kb-hero-slider { min-height: auto; }
  .kb-hero-slide { align-items: flex-start; transition-duration: .32s; }
  .kb-hero-inner { display: block; padding: 58px 0 70px; }
  .kb-hero h1 { font-size: 54px; }
  .kb-hero-lead { font-size: 19px; }
  .kb-hero-actions { flex-direction: column; margin-top: 34px; }
  .kb-primary, .kb-secondary { width: 100%; min-height: 58px; padding: 0 20px; font-size: 16px; white-space: nowrap; }
  .kb-hero-art { min-height: 300px; margin-top: 42px; }
  .kb-hero-controls { left: 16px; bottom: 28px; }
  .kb-hero-controls button { width: 30px; }
  .kb-hero-controls button.is-active { width: 48px; }
  .kb-orbit-main { width: 184px; height: 184px; font-size: 30px; }
  .kb-mini-card { width: 104px; height: 104px; border-radius: 22px; font-size: 15px; }
  .kb-card-a { top: 4px; left: 4px; }
  .kb-card-b { top: 72px; right: 0; }
  .kb-card-c { left: 54px; bottom: 0; }
  .kb-section { padding: 72px 0; }
  .kb-section-head { text-align: left; margin-bottom: 34px; }
  .kb-section-head h2, .kb-banner h2 { font-size: 36px; }
  .kb-section-head p, .kb-banner p { font-size: 18px; }
  .kb-service-grid, .kb-point-list { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-hero { padding: 70px 0 42px; }
  .gift-hero h1 { font-size: 38px; line-height: 1.14; }
  .gift-hero p { font-size: 16px; }
  .gift-select { padding: 46px 0 72px; }
  .gift-option { min-height: 420px; padding: 22px; border-radius: 22px; }
  .gift-option a { margin-top: 26px; }
  .review-hero { padding: 70px 0 42px; }
  .review-hero h1 { font-size: 38px; line-height: 1.14; }
  .review-hero p { font-size: 16px; }
  .review-board { padding: 12px 0 56px; }
  .review-grid {
    width: min(100% - 32px, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
  }
  .review-card {
    border-radius: 14px;
  }
  .review-card img {
    aspect-ratio: 1;
  }
  .review-card-body { padding: 13px 12px 15px; }
  .review-card-body span { font-size: 12px; }
  .review-card-body h2 { font-size: 15px; line-height: 1.32; }
  .review-card-body p { display: none; }
  .kb-service-card { min-height: 460px; padding: 30px; border-radius: 22px; }
  .kb-service-card h3 { font-size: 44px; }
  .kb-service-card p { font-size: 18px; }
  .insurer-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .insurer-logo-card { min-height: 128px; padding: 18px 14px; border-radius: 20px; gap: 14px; }
  .insurer-logo-card img { height: 44px; }
  .insurer-logo-card span { font-size: 14px; }
  .kb-report-inner { grid-template-columns: 1fr; gap: 34px; }
  .kb-report-copy h2 { font-size: 40px; line-height: 1.16; }
  .kb-report-copy p { font-size: 18px; }
  .report-mockup { min-height: auto; padding: 18px; border-radius: 28px; }
  .report-paper { padding: 18px; border-radius: 24px; }
  .report-head { display: grid; gap: 12px; }
  .report-head strong { font-size: 24px; }
  .report-head em { justify-self: start; }
  .report-row { grid-template-columns: 1fr .78fr; min-height: auto; padding: 12px; gap: 8px; }
  .report-row span:nth-child(3) { grid-column: 1 / 2; }
  .report-row span:last-child { grid-column: 2 / 3; justify-self: end; }
  .kb-point-list article { min-height: 240px; padding: 28px 4px; border-right: 0; }
  .kb-point-list h3 { margin-top: 36px; font-size: 26px; }
  .kb-banner-inner { min-height: 360px; display: block; }
  .kb-banner-inner .kb-primary { width: auto; min-width: 172px; margin-top: 76px; }
  .kb-pc-break { display: none; }
  .kb-mobile-space { display: inline; }
  .kb-talk-inner { grid-template-columns: 1fr; gap: 34px; }
  .kb-talk-copy h2 { font-size: 42px; line-height: 1.14; }
  .kb-talk-copy p { font-size: 18px; }
  .kb-talk-copy .kb-primary { width: auto; margin-top: 30px; }
  .kb-talk-mockup { min-height: auto; padding: 18px; border-radius: 28px; }
  .kb-talk-phone { width: 100%; min-height: 480px; padding: 16px; border-radius: 26px; }
  .kb-talk-card { padding: 22px; }
  .kb-talk-card span { font-size: 21px; }
  body.kb-page .faq-q { font-size: 18px; }
  .kb-footer .kb-container { display: grid; gap: 12px; }
  .kb-footer nav { margin-left: 0; }
  body.kb-page .chat-fab { display: none; }
}

/* Typography tuning for the insurance landing */
body.kb-page .kb-logo {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
}
body.kb-page .kb-menu a {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
}
body.kb-page .kb-login {
  min-width: 116px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
}
body.kb-page .kb-eyebrow,
body.kb-page .kb-label {
  font-size: 15px;
  font-weight: 600;
}
body.kb-page .kb-hero h1 {
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -.035em;
}
body.kb-page .kb-hero-lead {
  max-width: 600px;
  font-size: 22px;
  font-weight: 400;
}
body.kb-page .kb-primary,
body.kb-page .kb-secondary {
  min-height: 58px;
  padding: 0 30px;
  font-size: 17px;
  font-weight: 650;
}
body.kb-page .kb-orbit-main {
  width: 300px;
  height: 300px;
  font-size: 44px;
  font-weight: 700;
}
body.kb-page .kb-mini-card {
  width: 136px;
  height: 136px;
  font-size: 18px;
  font-weight: 650;
}
body.kb-page .kb-section-head h2,
body.kb-page .kb-banner h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -.035em;
}
body.kb-page .kb-banner h2 { line-height: 1.26; }
body.kb-page .kb-section-head p,
body.kb-page .kb-banner p {
  font-size: 19px;
  font-weight: 400;
}
body.kb-page .kb-service-card {
  min-height: 480px;
}
body.kb-page .kb-tag {
  font-size: 14px;
  font-weight: 650;
}
body.kb-page .kb-service-card h3 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -.04em;
}
body.kb-page .kb-service-card p {
  font-size: 18px;
  font-weight: 400;
}
body.kb-page .kb-service-card ul {
  font-size: 15px;
  font-weight: 500;
}
body.kb-page .kb-service-card a {
  font-size: 15px;
  font-weight: 650;
}
body.kb-page .kb-point-list h3 {
  font-size: 25px;
  font-weight: 650;
}
body.kb-page .kb-point-list p {
  font-size: 16px;
  font-weight: 400;
}
body.kb-page .kb-guarantee-card h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -.035em;
}
body.kb-page .kb-guarantee-card p {
  font-size: 19px;
  font-weight: 400;
}
body.kb-page .gift-select-link {
  font-size: 15px;
  font-weight: 650;
}
body.kb-page .faq-q {
  font-size: 19px;
  font-weight: 650;
}
body.kb-page .kb-footer strong {
  font-weight: 700;
}
body.kb-page .kb-footer a {
  font-weight: 500;
}
body.kb-page .kb-report-copy h2,
body.kb-page .kb-talk-copy h2 {
  font-weight: 650;
  letter-spacing: -.035em;
}
body.kb-page .kb-report-copy p,
body.kb-page .kb-talk-copy p {
  font-weight: 400;
}
body.kb-page .report-head span,
body.kb-page .report-head strong,
body.kb-page .report-head em,
body.kb-page .report-summary strong,
body.kb-page .report-note strong,
body.kb-page .kb-talk-status strong,
body.kb-page .kb-talk-status em,
body.kb-page .kb-talk-card span {
  font-weight: 700;
}
body.kb-page .report-row,
body.kb-page .report-summary p,
body.kb-page .report-note p,
body.kb-page .kb-talk-card ol,
body.kb-page .kb-chat-row,
body.kb-page .kb-talk-input {
  font-weight: 500;
}
body.kb-page .report-row span:last-child {
  font-weight: 650;
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.kb-page .kb-hero h1 { font-size: clamp(50px, 7vw, 72px); }
  body.kb-page .kb-hero-lead { font-size: 19px; }
  body.kb-page .kb-orbit-main { width: 230px; height: 230px; font-size: 35px; }
  body.kb-page .kb-mini-card { width: 108px; height: 108px; font-size: 15px; }
}
@media (max-width: 760px) {
  body.kb-page .kb-logo { font-size: 19px; }
  body.kb-page .kb-hero h1 { font-size: 44px; line-height: 1.14; }
  body.kb-page .kb-hero-lead { font-size: 17px; }
  body.kb-page .kb-primary,
  body.kb-page .kb-secondary { font-size: 15px; }
  body.kb-page .kb-orbit-main { width: 168px; height: 168px; font-size: 26px; }
  body.kb-page .kb-mini-card { width: 96px; height: 96px; font-size: 14px; }
  body.kb-page .kb-section-head h2,
  body.kb-page .kb-banner h2 { font-size: 30px; }
  body.kb-page .kb-section-head p,
  body.kb-page .kb-banner p { font-size: 16px; }
  body.kb-page .kb-banner-inner { min-height: 360px; }
  body.kb-page .kb-guarantee-card { min-height: 320px; padding: 34px 28px; border-radius: 22px; }
  body.kb-page .kb-guarantee-card h2 { font-size: 30px; }
  body.kb-page .kb-guarantee-card p { font-size: 16px; }
  body.kb-page .gift-marquee { margin-top: 32px; }
  body.kb-page .gift-marquee-track { gap: 12px; animation-duration: 20s; }
  body.kb-page .gift-marquee img { width: 176px; height: 126px; border-radius: 18px; }
  body.kb-page .gift-select-link { width: 100%; margin-top: 28px; }
  body.kb-page .kb-service-card { min-height: 400px; }
  body.kb-page .kb-service-card h3 { font-size: 34px; }
  body.kb-page .kb-service-card p { font-size: 16px; }
  body.kb-page .kb-service-card a { margin-top: 24px; }
  body.kb-page .kb-point-list h3 { font-size: 23px; }
  body.kb-page .faq-q { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .kb-hero-slide {
    transition: none;
    transform: none;
  }
  .kb-mini-card {
    animation: none;
    transform: none;
  }
  .kb-hero-controls button { transition: none; }
}

/* =========================================================
   Benefits — 풀폭 교차 섹션 (좌/우 번갈아 배치)
   ========================================================= */
.benefits { background: var(--bg-soft); }
/* =========================================================
   About 섹션 동영상 목업
   ========================================================= */
.vid-mockup-wrap {
  display: flex; justify-content: center;
  margin-bottom: 72px;
}
.vid-mockup {
  width: min(960px, 100%);
}
.vid-player {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 0 #e5e8eb, 0 8px 40px rgba(0,0,0,.10);
  border: 1px solid var(--line);
  overflow: hidden;
}
.vid-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--line);
}
.vid-dot-btn {
  width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0;
}
.vid-topbar-title {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 500; color: var(--ink-500);
  margin-right: 35px;
}
.vid-screen {
  aspect-ratio: 16/9;
  background: #fff0f7;
  overflow: hidden;
  position: relative;
}
.vid-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vid-controls {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #fff;
}
.vid-play-icon { color: var(--brand-500); flex-shrink: 0; }
.vid-progress {
  flex: 1; height: 4px;
  background: var(--bg-muted);
  border-radius: 4px; overflow: hidden;
}
.vid-progress-fill {
  height: 100%; width: 0%;
  background: var(--brand-500);
  border-radius: 4px;
  transition: width .5s linear;
}
.vid-dots {
  display: flex; gap: 6px; align-items: center; flex-shrink: 0;
}
.vid-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background .3s, transform .3s;
}
.vid-dot.is-active {
  background: var(--brand-500);
  transform: scale(1.4);
}
@media (max-width: 640px) {
  .vid-topbar-title { font-size: 11px; }
}

.benefit-stack { display: flex; flex-direction: column; }
.benefit-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding-block: 88px;
}
.benefit-row + .benefit-row { border-top: 1px solid var(--line); }
/* 짝수 행은 좌우 반전 (인포그래픽 ↔ 텍스트 교차) */
.benefit-row:nth-child(even) .benefit-visual { order: 1; }
.benefit-row:nth-child(even) .benefit-text { order: 2; }
.benefit-text { max-width: 460px; }
.benefit-row:nth-child(even) .benefit-text { margin-left: auto; }
.benefit-row .b-num { font-size: var(--fs-sm); font-weight: 800; color: var(--brand-500); letter-spacing: .1em; }
.benefit-row h3 { margin-top: 12px; font-size: var(--fs-card); font-weight: 700; line-height: 1.15; letter-spacing: -.03em; color: var(--ink-900); word-break: keep-all; }
.benefit-row p { margin-top: 18px; font-size: var(--fs-lead); color: var(--ink-500); word-break: keep-all; }
.benefit-row .b-cta { margin-top: 26px; }
.benefit-visual {
  border-radius: var(--radius); min-height: 360px;
  position: relative; overflow: hidden;
  display: grid; place-items: stretch;
}
.benefit-row:nth-child(2) .benefit-visual,
.benefit-row:nth-child(3) .benefit-visual,
.benefit-row:nth-child(4) .benefit-visual { background: none; }

/* mini settlement infographic */
.mini-stat { color: #fff; text-align: center; }
.mini-stat .cap { font-size: var(--fs-sm); opacity: .8; }
.mini-stat .big { font-size: 48px; font-weight: 800; margin-top: 6px; }
.mini-stat .unit { font-size: 20px; font-weight: 700; opacity: .9; }
.settlement {
  width: min(360px, 80%); background: rgba(255,255,255,.96); border-radius: var(--radius-sm);
  padding: 22px; color: var(--ink-700); box-shadow: var(--shadow);
}
.settlement .s-top { display: flex; justify-content: space-between; font-size: var(--fs-xs); color: var(--ink-500); }
.settlement .s-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: var(--fs-sm); border-bottom: 1px dashed var(--line); }
.settlement .s-total { display: flex; justify-content: space-between; margin-top: 12px; font-weight: 800; color: var(--brand-500); font-size: 20px; }

/* =========================================================
   About 섹션 인포그래픽 카드
   ========================================================= */
.info-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
  color: var(--ink-700);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-card .ic-title { font-size: var(--fs-sm); font-weight: 700; color: var(--ink-500); margin-bottom: 20px; }
.info-card .ic-foot { margin-top: 20px; text-align: center; font-size: var(--fs-sm); color: var(--ink-500); }
.info-card .ic-foot strong { color: var(--brand-600); font-weight: 800; }

/* 01 가입 흐름도 */
.info-flow { gap: 0; }
.ic-flow { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.ic-flow-node { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.ic-flow-ico {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
  opacity: 0; transform: scale(.6);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.ic-flow-ico svg { width: 32px; height: 32px; fill: none; stroke: currentColor; }
.ic-flow-node.is-result .ic-flow-ico { background: var(--brand-500); color: #fff; }
.ic-flow-name {
  font-size: var(--fs-sm); font-weight: 700; color: var(--ink-700); word-break: keep-all;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.ic-flow-node.is-result .ic-flow-name { color: var(--brand-600); }
.ic-flow-arrow {
  flex: none; color: var(--brand-300); margin-top: 22px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.ic-flow-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; display: block; }
.ic-flow-badge {
  margin-top: 30px; padding: 12px 16px; border-radius: 999px; text-align: center;
  background: var(--brand-50); color: var(--brand-600); font-size: var(--fs-sm); font-weight: 700;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease-out) .7s, transform .5s var(--ease-out) .7s;
}
/* 흐름도 진입 애니메이션 (좌→우 스태거) */
.benefit-visual.is-in .ic-flow-ico,
.benefit-visual.is-in .ic-flow-name,
.benefit-visual.is-in .ic-flow-arrow { opacity: 1; transform: none; }
.benefit-visual.is-in .ic-flow-node:nth-child(1) .ic-flow-ico,
.benefit-visual.is-in .ic-flow-node:nth-child(1) .ic-flow-name { transition-delay: .1s; }
.benefit-visual.is-in .ic-flow-arrow:nth-child(2) { transition-delay: .25s; }
.benefit-visual.is-in .ic-flow-node:nth-child(3) .ic-flow-ico,
.benefit-visual.is-in .ic-flow-node:nth-child(3) .ic-flow-name { transition-delay: .35s; }
.benefit-visual.is-in .ic-flow-arrow:nth-child(4) { transition-delay: .5s; }
.benefit-visual.is-in .ic-flow-node:nth-child(5) .ic-flow-ico,
.benefit-visual.is-in .ic-flow-node:nth-child(5) .ic-flow-name { transition-delay: .6s; }
.benefit-visual.is-in .ic-flow-badge { opacity: 1; transform: none; }

/* 02 가로 막대 */
.ic-bars { display: grid; gap: 18px; }
.ic-bar-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; }
.ic-bar-name { font-size: var(--fs-sm); font-weight: 700; color: var(--ink-700); }
.ic-bar-track { height: 14px; border-radius: 999px; background: var(--brand-50); overflow: hidden; }
.ic-bar-fill {
  height: 100%; width: 0; border-radius: 999px; background: var(--ink-300);
  transition: width 1s var(--ease-out) .3s;
}
.benefit-visual.is-in .ic-bar-fill { width: var(--w); }
.ic-bar-fill.is-full { background: linear-gradient(90deg, var(--brand-400), var(--brand-600)); }
.benefit-visual.is-in .ic-bar-row:nth-child(2) .ic-bar-fill { transition-delay: .45s; }
.ic-bar-val { font-size: var(--fs-sm); font-weight: 800; color: var(--ink-700); min-width: 34px; text-align: right; }

/* 03 세로 막대 차트 */
.ic-chart { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: end; height: 184px; }
.ic-col { display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
.ic-col-bar {
  width: 100%; height: 0; min-height: 0; border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
  display: flex; align-items: flex-start; justify-content: center; padding-top: 9px;
  color: #fff; font-size: var(--fs-xs); font-weight: 800; overflow: hidden;
  transition: height .9s var(--ease-out);
}
.benefit-visual.is-in .ic-col-bar { height: var(--h); min-height: 44px; }
.benefit-visual.is-in .ic-col:nth-child(1) .ic-col-bar { transition-delay: .25s; }
.benefit-visual.is-in .ic-col:nth-child(2) .ic-col-bar { transition-delay: .4s; }
.benefit-visual.is-in .ic-col:nth-child(3) .ic-col-bar { transition-delay: .55s; }
.benefit-visual.is-in .ic-col:nth-child(4) .ic-col-bar { transition-delay: .7s; }
.ic-col-name { margin-top: 9px; font-size: var(--fs-xs); color: var(--ink-500); white-space: nowrap; }

/* 04 타임라인 */
.info-period { text-align: center; }
.ic-period-big {
  font-size: 60px; font-weight: 800; color: var(--brand-600); line-height: 1;
  opacity: 0; transform: scale(.7);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.benefit-visual.is-in .ic-period-big { opacity: 1; transform: none; }
.ic-period-big span { font-size: 24px; margin-left: 4px; }
.ic-timeline { margin-top: 26px; }
.ic-tl-track { height: 8px; border-radius: 999px; background: var(--brand-50); position: relative; }
.ic-tl-fill {
  position: absolute; inset: 0; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  transition: width 1s var(--ease-out) .35s;
}
.benefit-visual.is-in .ic-tl-fill { width: 100%; }
.ic-tl-track::before, .ic-tl-track::after {
  content: ""; position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand-500); transform: translateY(-50%);
}
.ic-tl-track::before { left: 0; }
.ic-tl-track::after { right: 0; }
.ic-tl-marks { display: flex; justify-content: space-between; margin-top: 11px; font-size: var(--fs-xs); color: var(--ink-500); }

@media (max-width: 860px) {
  .benefit-row { grid-template-columns: 1fr; gap: 32px; padding-block: 56px; }
  .benefit-row:nth-child(even) .benefit-visual { order: 0; }
  .benefit-row:nth-child(even) .benefit-text { order: 0; margin-left: 0; }
  .benefit-text { max-width: none; }
  .benefit-visual { min-height: 280px; }
}

/* =========================================================
   Calculator CTA strip
   ========================================================= */
#coverage { background: #fff8fc; }
.calc-strip { background: linear-gradient(135deg, #ff4aa7 0%, #ff1493 100%); color: #fff; border-radius: var(--radius-xl); padding: 56px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 18px 48px rgba(255,20,147,.22); }
.calc-strip::before { content: ""; position: absolute; inset: auto auto -60px -60px; width: 300px; height: 300px; background: rgba(255,255,255,.7); filter: blur(80px); opacity: .35; }
.calc-strip h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; word-break: keep-all; }
.calc-strip p { margin-top: 14px; color: rgba(255,255,255,.7); font-size: var(--fs-lead); }
.calc-strip .btn { margin-top: 30px; }

/* =========================================================
   Coverage grid (보장내역)
   ========================================================= */
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.cov-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.cov-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand-300); }
.cov-ico { color: var(--brand-500); margin-bottom: 14px; }
.cov-ico .icon { width: 32px; height: 32px; }
.cov-card h4 { font-size: var(--fs-h3); font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; word-break: keep-all; }
.cov-card p { margin-top: 10px; font-size: var(--fs-sm); color: var(--ink-500); line-height: var(--lh-base); min-height: 42px; word-break: keep-all; }
.cov-amt { display: inline-block; margin-top: 16px; padding: 7px 14px; border-radius: 999px; background: var(--brand-50); color: var(--brand-600); font-weight: 800; font-size: var(--fs-sm); }
.cov-note { margin-top: 28px; text-align: center; font-size: var(--fs-xs); color: var(--ink-500); }

@media (max-width: 860px) { .coverage-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Guarantee (걱정을 뒤집으면 안심)
   ========================================================= */
.guarantee { background: #fff8fc; color: var(--ink-900); }
.guarantee .section-title { color: var(--ink-900); }
.guarantee .section-sub { color: var(--ink-500); }
.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.flip-card { perspective: 1200px; min-height: 260px; }
.flip-inner { position: relative; width: 100%; height: 100%; min-height: 260px; transition: transform .7s var(--ease-soft); transform-style: preserve-3d; }
.flip-card:hover .flip-inner, .flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }
@media (hover: none) {
  .flip-card:hover .flip-inner { transform: none; }
  .flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }
}
.flip-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: space-between; }
.flip-front { background: #fff; border: 1px solid #ffd2e9; box-shadow: var(--shadow-sm); }
.flip-front .tag { font-size: var(--fs-xs); color: var(--brand-400); font-weight: 700; }
.flip-front .q { margin-top: 14px; font-size: var(--fs-h3); font-weight: 700; line-height: 1.3; color: var(--ink-900); word-break: keep-all; }
.flip-front .hint { font-size: var(--fs-sm); color: var(--ink-500); }
.flip-back { transform: rotateY(180deg); background: var(--grad-brand); }
.flip-back .tag { font-size: var(--fs-xs); color: rgba(255,255,255,.85); font-weight: 700; }
.flip-back .a { margin-top: 14px; font-size: var(--fs-h3); font-weight: 700; line-height: 1.3; color: #fff; word-break: keep-all; }
.flip-back .desc { font-size: var(--fs-sm); color: rgba(255,255,255,.9); }

@media (max-width: 860px) { .flip-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonials slider
   ========================================================= */
.t-slider { position: relative; overflow: hidden; }
.t-track { display: flex; gap: 24px; transition: transform .6s var(--ease-out); }
.t-card { flex: 0 0 calc((100% - 48px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.t-card .quote { font-size: var(--fs-body); line-height: var(--lh-loose); color: var(--ink-700); }
.t-card .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.t-card .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-muted); display: grid; place-items: center; font-weight: 700; color: var(--ink-500); }
.t-card .who .name { font-weight: 700; color: var(--ink-900); font-size: var(--fs-sm); }
.t-card .who .car { font-size: var(--fs-xs); color: var(--ink-500); }
.t-nav { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.t-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink-700); transition: background .2s, color .2s; }
.t-nav button:hover { background: var(--brand-500); color: #fff; }

@media (max-width: 991px) { .t-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 640px) { .t-card { flex-basis: 100%; } }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 26px 4px; text-align: left; font-size: var(--fs-h3); font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; }
.faq-q .ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-muted); display: grid; place-items: center; font-size: 18px; transition: transform .35s var(--ease-out), background .3s, color .3s; }
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); background: var(--brand-500); color: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease-out); }
.faq-a .inner { padding: 0 4px 26px; color: var(--ink-500); font-size: var(--fs-body); line-height: var(--lh-loose); }

.why-us { background: #fff0f7; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(255,20,147,.08);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover {
  box-shadow: 0 12px 40px rgba(255,20,147,.18);
  transform: translateY(-4px);
}
.why-num { display: none; }
.why-ico {
  width: 52px; height: 52px;
  background: #fff0f7;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.why-ico svg { width: 24px; height: 24px; stroke: var(--brand-500); fill: none; }
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--ink-900); line-height: 1.3; margin-bottom: 12px; }
.why-card p { font-size: var(--fs-lead); color: var(--ink-500); line-height: 1.75; word-break: keep-all; }
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }
}

/* =========================================================
   Support services grid
   ========================================================= */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.support-card { background: var(--bg-soft); border-radius: var(--radius); padding: 32px; border: 1px solid transparent; transition: border-color .3s, transform .3s var(--ease-out); }
.support-card:hover { transform: translateY(-5px); border-color: var(--brand-300); }
.support-card .num { font-size: 36px; font-weight: 800; color: var(--brand-400); line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.support-card h3 { font-size: var(--fs-h3); font-weight: 700; color: var(--ink-900); }
.support-card p { margin-top: 12px; font-size: var(--fs-sm); color: var(--ink-500); line-height: var(--lh-loose); }
.support-card .links { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; }
.support-card .links a { font-size: var(--fs-sm); font-weight: 700; color: var(--brand-600); }

@media (max-width: 860px) { .support-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { text-align: center; background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,61,159,.16), transparent 60%), var(--bg-soft); }
.final-cta h2 { font-size: var(--fs-cta); font-weight: 700; letter-spacing: -.03em; color: var(--ink-900); line-height: var(--lh-tight); word-break: keep-all; }
.final-cta .sub-note { margin-top: 16px; font-size: var(--fs-body); color: var(--ink-400); }
.final-cta .actions { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #fff8fc; color: var(--ink-600); padding-block: 64px 40px; font-size: var(--fs-sm); border-top: 1px solid #ffd2e9; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #ffd2e9; }
.footer-brand .brand { color: var(--ink-900); }
.footer-brand p { margin-top: 16px; max-width: 280px; color: var(--ink-500); }
.footer-col h4 { color: var(--ink-900); font-size: var(--fs-sm); font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: var(--ink-600); transition: color .2s; }
.footer-col a:hover { color: var(--brand-600); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-500); font-size: var(--fs-xs); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Floating chat button
   ========================================================= */
.chat-fab { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 16px 24px; border-radius: 16px; background: var(--brand-500); color: #fff; font-size: var(--fs-body); font-weight: 700; box-shadow: 0 8px 24px rgba(255,20,147,.45); transition: transform .2s var(--ease-out), box-shadow .2s; }
.chat-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,20,147,.5); }
@media (min-width: 768px) { .chat-fab { left: auto; right: 24px; bottom: 24px; border-radius: 999px; } }

/* =========================================================
   Scroll reveal — IX2 모방 (진입 시 fade + slide up)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-shift));
  transition: opacity var(--reveal-dur) var(--ease-out), transform var(--reveal-dur) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(calc(var(--reveal-shift) * -1)); }
[data-reveal="right"] { transform: translateX(var(--reveal-shift)); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* count-up number helper */
.count { font-variant-numeric: tabular-nums; }

/* inline SVG icon base */
.icon { display: block; width: 28px; height: 28px; stroke: currentColor; fill: none; }

/* placeholder image box */
.ph {
  display: grid; place-items: center; text-align: center;
  color: var(--ink-300); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .03em;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.018) 0 12px, transparent 12px 24px),
    var(--bg-muted);
  border-radius: inherit;
}
