/* ============================================================
   ONE SPOON · 다시, 작은방
   style.css — Mobile-first · Shared across all pages
   Fonts: Pretendard (via CDN fallback) + Noto Sans KR
   ============================================================ */

/* 폰트는 각 HTML <link> 태그로 로드 */

/* ── TOKENS ── */
:root {
  /* Brand colors */
  --amber:       #C96B2A;
  --amber-light: #E08B52;
  --amber-dark:  #A0521C;
  --amber-bg:    #FDF5EE;
  --amber-tint:  rgba(201,107,42,.1);

  --sage:        #4E7A5A;
  --sage-light:  #6E9E7A;
  --sage-bg:     #EBF3EE;

  --ink:         #111008;
  --ink-2:       #2D2820;
  --ink-3:       #5C5448;
  --ink-4:       #8C8278;
  --ink-5:       #BCB5AE;

  --bg:          #F9F7F4;
  --bg-2:        #F2EEE8;
  --bg-3:        #E9E3DB;
  --surface:     #FFFFFF;
  --border:      #E5DDD5;
  --border-2:    #D1C8BE;

  --dark:        #0E0B08;
  --dark-2:      #1A1610;

  /* Typography */
  --ff:       'Pretendard Variable', 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --ff-serif: 'Noto Serif KR', Georgia, serif;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Layout */
  --max-w: 1140px;
  --hdr-h: 64px;
  --pad-x: 1.125rem;

  /* Ease */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
}

/* Footer emergency restore — 20260723
   Keep page display-title rules from leaking into the shared footer. */
.one-standard-footer h1,
.one-standard-footer h2,
.one-standard-footer h3,
.one-footer-standard h1,
.one-footer-standard h2,
.one-footer-standard h3,
.one-footer h1,
.one-footer h2,
.one-footer h3,
.one-footer-col h1,
.one-footer-col h2,
.one-footer-col h3,
.one-footer-col b,
.one-standard-footer .one-footer-col b,
.one-footer-standard .one-footer-col b {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  text-transform: none !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: #fff !important;
}
.one-standard-footer a,
.one-footer-standard a,
.one-footer a,
.one-footer-col a {
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.one-footer-business,
.one-standard-footer .one-footer-business,
.one-footer-standard .one-footer-business {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
}
.one-footer-business p,
.one-standard-footer .one-footer-business p,
.one-footer-standard .one-footer-business p {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
}
.one-footer-bottom,
.one-standard-footer .one-footer-bottom,
.one-footer-standard .one-footer-bottom,
.one-footer-bottom a,
.one-footer-bottom p {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

@media (min-width: 768px) {
  :root {
    --pad-x: 2rem;
    --hdr-h: 70px;
  }
}

@media (min-width: 1280px) {
  :root { --pad-x: 3rem; }
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
strong { font-weight: 700; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.625rem); }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
h5 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0; }

p { color: var(--ink-3); line-height: 1.85; }
.lead { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--ink-3); line-height: 1.8; }
.small { font-size: 0.875rem; }
.xs { font-size: 0.75rem; }
.muted { color: var(--ink-4); }
.center { text-align: center; }
.serif { font-family: var(--ff-serif); }

/* ── LAYOUT ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.wrap-md { max-width: 820px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-sm { max-width: 640px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  z-index: 500;
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: background;
}
.site-header.scrolled {
  background: rgba(249,247,244,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.dark-hdr.scrolled { background: rgba(15,23,42,0.97) !important; }
/* scrolled 상태에서 dark-hdr는 어두운 배경 유지 */
.site-header.scrolled.dark-hdr,
#site-header.scrolled.dark-hdr {
  background: rgba(15,23,42,0.97) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
/* scrolled 상태에서 일반 헤더는 텍스트 어둡게 */
.site-header.scrolled:not(.dark-hdr) .logo-primary { color: var(--ink) !important; }
.site-header.scrolled:not(.dark-hdr) .logo-sub { color: var(--ink-3) !important; }
.site-header.scrolled:not(.dark-hdr) .nav-links a { color: var(--ink-2) !important; }
.site-header.scrolled:not(.dark-hdr) .hamburger span { background: var(--ink) !important; }
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hdr-h);
  padding: 0 var(--pad-x);
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-primary {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-primary em { color: var(--amber); font-style: normal; }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--ink-5);
  text-transform: uppercase;
}
.site-header.dark-hdr { background: #0F172A !important; border-bottom: 1px solid rgba(255,255,255,.08); }
#site-header.dark-hdr { background: #0F172A !important; border-bottom: 1px solid rgba(255,255,255,.08); }
#site-header.dark-hdr .logo-primary { color: #fff !important; }
#site-header.dark-hdr .logo-sub { color: rgba(255,255,255,.4) !important; }
#site-header.dark-hdr .nav-links a { color: rgba(255,255,255,.65) !important; }
#site-header.dark-hdr .nav-links a:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
#site-header.dark-hdr .hamburger span { background: rgba(255,255,255,.8) !important; }
.dark-hdr .logo-primary { color: #fff; }
.dark-hdr .logo-sub { color: rgba(255,255,255,0.4); }
.dark-hdr .nav-links a { color: rgba(255,255,255,.65); }
.dark-hdr .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.dark-hdr .nav-links a.active { color: #F4A0B5; }
.dark-hdr .hamburger span { background: rgba(255,255,255,.8); }
.site-header.dark-hdr .logo-sub { color: rgba(255,255,255,0.4); }

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: .15rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
@media (min-width: 1024px) {
  .nav-links { gap: .35rem; }
  .nav-links a { font-size: .88rem; padding: .45rem .95rem; }
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-sm);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--amber); }
.site-header.dark-hdr .nav-links a { color: rgba(255,255,255,0.65); }
.site-header.dark-hdr .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.hamburger:hover { background: var(--bg-2); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.site-header.dark-hdr .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--hdr-h); left: 0; right: 0;
  background: rgba(249,247,244,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) var(--pad-x) var(--sp-6);
  z-index: 499;
  flex-direction: column;
  gap: 2px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: 0.9rem 1rem;
  border-radius: var(--r-sm);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-menu .mobile-cta {
  background: var(--amber);
  color: #fff !important;
  text-align: center;
  margin-top: var(--sp-3);
  border-radius: var(--r-sm);
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--ff);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1;
}
.btn-primary { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,107,42,0.28); }
.btn-primary:active { background: var(--amber-dark) !important; color: #fff !important; -webkit-text-fill-color: #fff !important; transform: translateY(0); }
.btn-primary:focus { color: #fff !important; -webkit-text-fill-color: #fff !important; outline: 2px solid rgba(201,107,42,.5); outline-offset: 2px; }
.btn-dark    { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-wh { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.btn-outline-wh:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-wh { background: #fff; color: var(--amber); }
.btn-wh:hover { background: var(--bg); transform: translateY(-1px); }
.btn-lg  { padding: 1rem 2.25rem; font-size: 0.975rem; }
.btn-sm  { padding: 0.6rem 1.15rem; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

/* ── TAGS ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
}
.tag-amber { background: var(--amber-tint); color: var(--amber); }
.tag-sage  { background: var(--sage-bg); color: var(--sage); }
.tag-ink   { background: rgba(0,0,0,0.05); color: var(--ink-3); }
.tag-wh    { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
@media (min-width: 768px)  { .section { padding: 6.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-sm { padding: 3.5rem 0; }
.section-alt  { background: var(--bg-2); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark p { color: rgba(255,255,255,0.58); }
.section-warm { background: var(--bg-3); }

/* Section label */
.sec-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.875rem;
}
.sec-divider {
  width: 32px; height: 2.5px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── GRID UTILITIES ── */
.g-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g-3  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.g-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

@media (max-width: 767px) {
  .g-2, .g-3 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g-3 { grid-template-columns: 1fr 1fr; }
}

/* ── REVEAL ANIMATION ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s var(--ease);
}
[data-reveal].visible { opacity: 1; }
[data-reveal][data-d="1"] { transition-delay: 0.1s; }
[data-reveal][data-d="2"] { transition-delay: 0.2s; }
[data-reveal][data-d="3"] { transition-delay: 0.3s; }
[data-reveal][data-d="4"] { transition-delay: 0.4s; }

/* ── HERO (index.html) ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--hdr-h);
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(201,107,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(78,122,90,0.12) 0%, transparent 55%),
    var(--dark);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.025;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1fr 0.9fr; gap: 5rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,107,42,0.12);
  border: 1px solid rgba(201,107,42,0.25);
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}
.hero h1 { color: #fff; margin-bottom: 1.375rem; }
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--amber-light);
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.hero-meta-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-meta-item::before { content: '✓'; color: var(--sage-light); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 1.875rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
}
.hc-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.375rem;
}
.hc-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hc-live {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700; color: var(--sage-light);
}
.hc-live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-light);
  animation: pulse-dot 1.8s infinite;
  display: block;
}
.hc-mission {
  background: rgba(201,107,42,0.12);
  border: 1px solid rgba(201,107,42,0.2);
  border-radius: var(--r-md);
  padding: 1.125rem;
  margin-bottom: 1.125rem;
}
.hc-mission-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-light); margin-bottom: 0.5rem;
}
.hc-mission-text { font-size: 0.925rem; font-weight: 600; color: #fff; line-height: 1.5; }
.hc-steps { display: flex; flex-direction: column; gap: 0.55rem; }
.hc-step {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.hc-step-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
}
.hc-step.is-done .hc-step-num { background: var(--sage); color: #fff; }
.hc-step.is-active .hc-step-num { background: var(--amber); color: #fff; box-shadow: 0 0 0 3px rgba(201,107,42,0.3); }
.hc-step.is-active { color: #fff; border-color: rgba(201,107,42,0.2); }

/* ── STAT BAND ── */
.stat-band {
  background: var(--dark-2);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px)  { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.5; }
.stat-src  { font-size: 0.62rem; color: rgba(255,255,255,0.25); margin-top: 0.2rem; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 960px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 7rem; } }

.problem-list { margin-top: 2.5rem; }
.problem-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.625rem 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; }
.problem-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,107,42,0.2);
  line-height: 1;
  text-align: right;
  padding-top: 3px;
}
.problem-body h4 { margin-bottom: 0.35rem; }
.problem-body p  { font-size: 0.875rem; }

/* Stats visual panel */
.stats-panel {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  color: #fff;
  position: static;
}
@media (min-width: 960px) {
  .stats-panel {
    position: sticky;
    top: calc(var(--hdr-h) + 1.5rem);
  }
}
.sp-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1.5rem;
}
.sp-bars { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.sp-bar-row { display: flex; flex-direction: column; gap: 0.4rem; }
.sp-bar-head { display: flex; justify-content: space-between; font-size: 0.8rem; }
.sp-bar-name { color: rgba(255,255,255,0.62); }
.sp-bar-val  { color: var(--amber-light); font-weight: 700; }
.sp-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.sp-bar-fill  {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  width: 0;
  transition: width 1.3s var(--ease);
}
.sp-quote {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.sp-quote-text {
  font-size: 0.875rem; font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.75; margin-bottom: 0.7rem;
}
.sp-quote-by { font-size: 0.7rem; color: rgba(255,255,255,0.28); }

/* ── FLOW CARDS ── */
.flow-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (min-width: 640px)  { .flow-wrap { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .flow-wrap { grid-template-columns: repeat(4, 1fr); } }

.flow-card {
  background: var(--surface);
  padding: 2.25rem 1.875rem;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
}
.flow-card:hover { background: var(--amber-bg); }
.flow-n {
  font-family: var(--ff-serif);
  font-size: 4.5rem; font-weight: 700;
  color: rgba(201,107,42,0.08);
  line-height: 1; margin-bottom: -1rem;
  letter-spacing: -0.04em;
}
.flow-icon { font-size: 1.6rem; display: block; margin-bottom: 0.9rem; }
.flow-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.flow-card p  { font-size: 0.82rem; }

/* ── 6-STAGE PROGRAM ── */
.stage-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .stage-wrap { grid-template-columns: 360px 1fr; gap: 7rem; } }

.stage-sticky {
  position: static;
  top: auto;
}
.stage-list  { display: flex; flex-direction: column; gap: 0; }
.stage-item  {
  display: grid;
  grid-template-columns: 52px 3px 1fr;
  gap: 0 1.5rem;
}
.stage-col-l { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.stage-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 5px 16px rgba(201,107,42,0.28);
  transition: transform 0.22s, box-shadow 0.22s;
}
.stage-item:hover .stage-circle { transform: scale(1.06); box-shadow: 0 8px 24px rgba(201,107,42,0.36); }
.stage-line {
  flex: 1; width: 3px; margin-top: 5px;
  background: linear-gradient(to bottom, rgba(201,107,42,0.3), rgba(201,107,42,0.05));
}
.stage-item:last-child .stage-line { display: none; }
.stage-body { padding: 0.1rem 0 3rem; }
.stage-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-tint);
  padding: 0.22rem 0.7rem; border-radius: 100px; margin-bottom: 0.6rem;
}
.stage-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.stage-body p  { font-size: 0.875rem; }

/* ── DIFF CARDS ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

.diff-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.875rem;
  background: var(--surface);
  position: relative; overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.diff-card:hover {
  border-color: rgba(201,107,42,0.35);
  box-shadow: 0 10px 36px rgba(201,107,42,0.09);
  transform: translateY(-3px);
}
.diff-card-n {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--ff-serif);
  font-size: 4.5rem; font-weight: 700;
  color: rgba(201,107,42,0.06); line-height: 1;
}
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--amber-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.375rem;
}
.diff-card h4 { font-size: 0.95rem; margin-bottom: 0.45rem; }
.diff-card p  { font-size: 0.82rem; }

/* ── DATA / EVIDENCE ── */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .data-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .data-grid { grid-template-columns: repeat(4, 1fr); } }

.data-cell { background: var(--surface); padding: clamp(1.25rem,3vw,2rem) clamp(1rem,2.5vw,1.5rem); overflow: hidden; }
.data-cell:nth-child(even) { background: var(--bg-2); }
.data-big {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);   /* 기존 1.8~2.6rem → 1.4~2.2rem 축소 */
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1; margin-bottom: 0.4rem;
  word-break: keep-all;
}
.data-big em { color: var(--amber); font-style: normal; }
.data-label  { font-size: 0.78rem; color: var(--ink-4); line-height: 1.5; }
.data-source { font-size: 0.62rem; color: var(--ink-5); margin-top: 0.25rem; }

.ev-list { display: flex; flex-direction: column; gap: 0.875rem; }
.ev-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1rem; align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.ev-item:hover { border-color: rgba(201,107,42,0.25); box-shadow: 0 3px 14px rgba(201,107,42,0.06); }
.ev-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--amber-tint); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; flex-shrink: 0;
}
.ev-src   { font-size: 0.65rem; color: var(--ink-5); margin-bottom: 0.2rem; }
.ev-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--ink); }
.ev-desc  { font-size: 0.8rem; color: var(--ink-4); line-height: 1.65; }

/* ── AUDIENCE ── */
.aud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .aud-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }
.aud-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.125rem;
  background: var(--surface);
  transition: transform 0.22s, box-shadow 0.22s;
}
.aud-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.aud-card.youth  { border-top: 3px solid var(--amber); }
.aud-card.senior { border-top: 3px solid var(--sage); }
.aud-card.inst   { border-top: 3px solid #C49A2E; }
.aud-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.aud-card h4 { margin-bottom: 0.6rem; }
.aud-card .aud-lead { font-size: 0.85rem; color: var(--ink-3); margin-bottom: 1.125rem; }
.aud-list { display: flex; flex-direction: column; gap: 0.45rem; }
.aud-list li {
  font-size: 0.82rem; color: var(--ink-4);
  display: flex; align-items: flex-start; gap: 0.45rem;
}
.aud-list li::before { content: '→'; color: var(--amber); flex-shrink: 0; margin-top: 0.06rem; }

/* ── COLLAB ── */
.collab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .collab-grid { grid-template-columns: 1fr 1fr 1fr; } }
.collab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.collab-card h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-5); margin-bottom: 0.85rem;
}
.collab-card p { font-size: 0.875rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,107,42,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -30%; right: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(78,122,90,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 0.875rem; }
.cta-band p  { color: rgba(255,255,255,0.58); margin-bottom: 2.25rem; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; position: relative; z-index: 1; }
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.72);
  padding: 2.75rem 0 1.5rem;
}

/* 2026-07-17 공통 푸터 표준화 */
.site-footer {
  padding: 3.6rem 0 1.35rem;
  color: rgba(245,243,255,.72);
  background:
    radial-gradient(circle at 8% 0, rgba(45,212,191,.1), transparent 30%),
    linear-gradient(180deg, #070B18 0%, #04050E 100%);
}
.footer-wrap { max-width: 1180px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand { min-width: 0; }
.footer-kicker, .footer-heading {
  display: block;
  color: rgba(196,181,253,.7);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-title {
  display: block;
  margin-top: .55rem;
  color: #F8FAFC;
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.footer-description {
  max-width: 220px;
  margin-top: .8rem;
  color: rgba(226,232,240,.52);
  font-size: .78rem;
  line-height: 1.75;
  word-break: keep-all;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .12rem;
  min-width: 0;
}
.footer-heading {
  margin-bottom: .6rem;
  color: rgba(245,243,255,.9);
  font-size: .75rem;
  letter-spacing: .02em;
  text-transform: none;
}
.footer-column a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: rgba(226,232,240,.56);
  font-size: .76rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
  word-break: keep-all;
}
.footer-column a:hover { color: #F8FAFC; transform: translateX(2px); }
.footer-business-copy {
  margin: 0;
  color: rgba(226,232,240,.5);
  font-size: .72rem;
  line-height: 1.8;
  word-break: keep-all;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p {
  margin: 0;
  color: rgba(226,232,240,.38);
  font-size: .68rem;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.footer-bottom-links a {
  color: rgba(226,232,240,.42);
  font-size: .68rem;
  text-decoration: none;
}
.footer-bottom-links a:hover { color: #F8FAFC; }

/* 김은영 전문가 소개 페이지 */
.profile-page {
  color: #F5F3FF;
  background:
    radial-gradient(circle at 82% 4%, rgba(45,212,191,.12), transparent 28%),
    #04050E;
}
.profile-hero {
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 65% 85% at 50% 0, rgba(124,58,237,.2), transparent 68%),
    linear-gradient(180deg, #0A0A1D 0%, #04050E 100%);
  border-bottom: 1px solid rgba(196,181,253,.1);
}
.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: end;
}
.profile-eyebrow {
  display: inline-block;
  color: #C4B5FD;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.profile-hero h1 {
  margin: .75rem 0 1.15rem;
  color: #F8FAFC;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.08em;
}
.profile-lead {
  max-width: 640px;
  margin: 0;
  color: #F8FAFC;
  font-size: clamp(1.15rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}
.profile-intro {
  max-width: 570px;
  margin: 1.25rem 0 0;
  color: rgba(226,232,240,.64);
  font-size: .98rem;
  line-height: 1.9;
  word-break: keep-all;
}
.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}
.profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.05rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.profile-btn:hover { transform: translateY(-2px); }
.profile-btn-primary { color: #071021; background: #D8F3ED; }
.profile-btn-ghost { color: #F8FAFC; border: 1px solid rgba(245,243,255,.24); background: rgba(255,255,255,.04); }
.profile-btn-channel { color: #D8CCFF; border: 1px solid rgba(196,181,253,.35); background: rgba(124,58,237,.12); }
.profile-signature {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(196,181,253,.22);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(196,181,253,.14), rgba(45,212,191,.06));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.profile-signature::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(196,181,253,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(196,181,253,.04), 0 0 0 44px rgba(196,181,253,.025);
}
.profile-signature-label { color: rgba(245,243,255,.48); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.profile-monogram {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 1.4rem 0 1.2rem;
  border: 1px solid rgba(216,243,237,.45);
  border-radius: 18px;
  color: #D8F3ED;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.08em;
  background: rgba(45,212,191,.1);
}
.profile-signature strong { display: block; color: #F8FAFC; font-size: 1.28rem; line-height: 1.45; word-break: keep-all; }
.profile-signature p { margin: 1rem 0 0; color: rgba(226,232,240,.56); font-size: .8rem; line-height: 1.75; word-break: keep-all; }
.profile-section { padding: clamp(4.8rem, 9vw, 7.5rem) 0; }
.profile-section-muted { background: #07091A; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.profile-section-head { max-width: 720px; margin-bottom: 2.6rem; }
.profile-section-head h2, .profile-credentials h2, .profile-cta h2 {
  margin: .8rem 0 1rem;
  color: #F8FAFC;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.055em;
  word-break: keep-all;
}
.profile-section-head h2 em, .profile-credentials h2 em { color: #D8CCFF; font-style: normal; }
.profile-section-head p, .profile-credentials > div > p {
  max-width: 640px;
  margin: 0;
  color: rgba(226,232,240,.58);
  font-size: .92rem;
  line-height: 1.85;
  word-break: keep-all;
}
.profile-expertise-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.profile-card {
  min-height: 190px;
  padding: 1.55rem;
  border: 1px solid rgba(196,181,253,.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
}
.profile-card-index { color: #E8728A; font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.profile-card h3 { margin: 1.25rem 0 .6rem; color: #F8FAFC; font-size: 1rem; font-weight: 800; word-break: keep-all; }
.profile-card p { margin: 0; color: rgba(226,232,240,.52); font-size: .82rem; line-height: 1.75; word-break: keep-all; }
.profile-section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: none; }
.profile-section-head-row > p { max-width: 360px; }
.profile-path-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.profile-path-card {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 1.4rem;
  border: 1px solid rgba(45,212,191,.16);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background: rgba(45,212,191,.045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.profile-path-card:hover { transform: translateY(-3px); border-color: rgba(45,212,191,.42); background: rgba(45,212,191,.09); }
.profile-path-card strong { margin: 1.1rem 0 .55rem; color: #F8FAFC; font-size: 1rem; word-break: keep-all; }
.profile-path-card > span:last-child { margin-top: auto; color: rgba(226,232,240,.52); font-size: .76rem; line-height: 1.55; word-break: keep-all; }
.profile-path-card b { float: right; color: #9FE8D8; font-size: 1rem; }
.profile-credentials { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.profile-credential-list { display: grid; gap: .7rem; }
.profile-credential-list > div { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.profile-credential-list span { color: #C4B5FD; font-size: .72rem; font-weight: 800; }
.profile-credential-list strong { color: rgba(245,243,255,.76); font-size: .84rem; line-height: 1.55; font-weight: 500; word-break: keep-all; }
.profile-cta-section { padding: 0 0 clamp(4.8rem, 9vw, 7.5rem); }
.profile-cta { padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(196,181,253,.2); border-radius: 26px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(124,58,237,.28), transparent 65%), #0D0B22; }
.profile-cta h2 { margin-left: auto; margin-right: auto; }
.profile-cta p { max-width: 620px; margin: 0 auto; color: rgba(226,232,240,.58); font-size: .9rem; line-height: 1.8; word-break: keep-all; }
.profile-cta .profile-hero-actions { justify-content: center; }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-brand, .footer-business-block { grid-column: span 3; }
  .footer-brand { max-width: 420px; }
  .profile-expertise-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .profile-path-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .site-footer { padding: 2.7rem 0 1.15rem; }
  .footer-wrap { padding-left: 1rem; padding-right: 1rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.45rem .8rem; padding-bottom: 1.8rem; }
  .footer-brand, .footer-business-block { grid-column: 1 / -1; }
  .footer-title { font-size: 1.15rem; }
  .footer-description { max-width: 310px; margin-top: .55rem; font-size: .74rem; }
  .footer-heading { margin-bottom: .35rem; font-size: .72rem; }
  .footer-column a { min-height: 34px; font-size: .73rem; }
  .footer-business-block { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-business-copy { font-size: .68rem; line-height: 1.7; }
  .footer-bottom { display: block; padding-top: .85rem; }
  .footer-bottom p { font-size: .66rem; }
  .footer-bottom-links { gap: .65rem; margin-top: .6rem; }
  .footer-bottom-links a { font-size: .66rem; }
  .profile-hero { padding-top: 5.8rem; }
  .profile-hero-grid, .profile-credentials { grid-template-columns: 1fr; gap: 2.2rem; }
  .profile-hero h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .profile-lead { font-size: 1.12rem; }
  .profile-intro { font-size: .86rem; }
  .profile-signature { max-width: 430px; }
  .profile-section-head-row { display: block; }
  .profile-section-head-row > p { margin-top: 1rem; }
  .profile-expertise-grid, .profile-path-grid { grid-template-columns: 1fr; }
  .profile-card { min-height: 0; }
  .profile-cta { border-radius: 20px; }
  .profile-cta .profile-hero-actions { align-items: stretch; flex-direction: column; }
  .profile-cta .profile-btn { width: 100%; }
}
.footer-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: .75rem 2rem;
  padding-bottom: 1.2rem;
}
.footer-compact-brand { min-width: 0; }
.footer-compact-title {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.footer-business {
  grid-column: 1 / -1;
  margin-top: 0;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  line-height: 1.75;
  word-break: keep-all;
}
.footer-business span { display: inline; }
.footer-business span + span::before {
  content: ' · ';
  color: rgba(255,255,255,.24);
}
.footer-compact-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
  min-width: 0;
}
.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.footer-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 .4rem;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s;
}
.footer-link-row a:hover { color: #fff; }
.footer-link-row a + a::before {
  content: '·';
  margin-right: .8rem;
  color: rgba(255,255,255,.24);
}
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom p { color: rgba(255,255,255,.42); font-size: .7rem; }

/* ── PAGE HERO (inner pages) ── */
/* .page-hero 배경은 각 페이지가 자체 설정 — 앱 페이지 어두운 배경 보호 */
.page-hero {
  padding: calc(var(--hdr-h) + 3.5rem) 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
/* 랜딩/소개 페이지만 밝은 배경 적용 */
body.page-light .page-hero {
  background: var(--bg-2);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: clamp(1rem, 2vw, 1.1rem); max-width: 480px; }

/* ── APP PAGE SPECIFIC ── */
/* Progress */
.app-progress {
  width: 100%; height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.app-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transition: width 0.4s var(--ease);
}
/* Step dots */
.step-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem;
}
.sdot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--ink-5);
  transition: all 0.25s; flex-shrink: 0;
}
.sdot.is-active { background: var(--amber); border-color: var(--amber); color: #fff; box-shadow: 0 3px 10px rgba(201,107,42,0.35); }
.sdot.is-done   { background: var(--sage);  border-color: var(--sage);  color: #fff; }
.sline { flex: 1; max-width: 36px; height: 2px; background: var(--border); transition: background 0.25s; }
.sline.is-done  { background: var(--sage); }
/* Step panels */
.step-panel { display: none; }
.step-panel.is-on { display: block; animation: fadeSlide 0.3s var(--ease); }
@keyframes fadeSlide {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.step-hdr { text-align: center; margin-bottom: 2rem; }
.step-hdr .tag { margin-bottom: 0.875rem; }
.step-hdr h3   { margin-bottom: 0.4rem; }
.step-hdr p    { font-size: 0.9rem; }
/* Interest grid */
.int-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.875rem; margin: 1.5rem 0;
}
@media (min-width: 480px) { .int-grid { grid-template-columns: repeat(3, 1fr); } }
.int-card {
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 0.875rem;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.18s;
  user-select: none;
}
.int-card:hover { border-color: var(--amber-light); background: var(--amber-bg); }
.int-card.sel   { border-color: var(--amber); background: var(--amber-bg); box-shadow: 0 0 0 3px rgba(201,107,42,0.12); }
.int-emoji { font-size: 1.75rem; display: block; margin-bottom: 0.4rem; }
.int-label { font-size: 0.78rem; font-weight: 700; color: var(--ink-3); }
/* Diag pair */
.diag-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin: 1.5rem 0; }
.diag-card {
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.18s;
}
.diag-card:hover { border-color: var(--amber-light); }
.diag-card.sel   { border-color: var(--amber); background: var(--amber-bg); }
.diag-face { aspect-ratio: 3/2; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.diag-lbl  { padding: 0.75rem; font-size: 0.8rem; font-weight: 600; text-align: center; color: var(--ink-3); }
/* Mission card */
.mission-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.125rem;
  position: relative; overflow: hidden;
  margin-bottom: 1.75rem;
}
.mission-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--amber), var(--amber-light));
}
.mc-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-tint);
  padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.875rem;
}
.mc-text    { font-size: 1rem; font-weight: 700; line-height: 1.5; margin-bottom: 0.875rem; color: var(--ink); }
.mc-insight {
  font-size: 0.85rem; font-style: italic; color: var(--ink-4);
  background: var(--bg-2); border-radius: 8px; padding: 0.875rem 1rem;
}
/* Timer */
.timer-area { text-align: center; margin: 1.75rem 0 2rem; }
.timer-num {
  font-family: var(--ff-serif);
  font-size: 3.75rem; font-weight: 700;
  color: var(--amber); letter-spacing: 0.04em;
  display: block; line-height: 1; margin-bottom: 1.125rem;
}
.timer-btns { display: flex; justify-content: center; gap: 0.75rem; }
/* Upload */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.2s;
}
.upload-zone:hover { border-color: var(--amber-light); background: var(--amber-bg); }
.uz-icon  { font-size: 2.4rem; display: block; margin-bottom: 0.75rem; }
.uz-title { font-weight: 700; margin-bottom: 0.35rem; color: var(--ink); }
.uz-sub   { font-size: 0.8rem; color: var(--ink-5); }
/* Report */
.report-card {
  background: linear-gradient(135deg, rgba(201,107,42,0.07), rgba(78,122,90,0.05));
  border: 1px solid rgba(201,107,42,0.18);
  border-radius: var(--r-xl);
  padding: 2.125rem;
}
.rc-type { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 700; color: var(--amber); margin-bottom: 0.45rem; }
.rc-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.125rem; }
.rc-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.875rem; color: var(--ink-3); }
.rc-list li::before { content: '✓'; color: var(--sage); font-weight: 800; flex-shrink: 0; }
.score-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; margin: 1.625rem 0; }
.score-cell { background: var(--bg-2); border-radius: var(--r-md); padding: 1.25rem; text-align: center; }
.score-n { font-family: var(--ff-serif); font-size: 1.875rem; font-weight: 700; color: var(--amber); display: block; line-height: 1; margin-bottom: 0.3rem; }
.score-l { font-size: 0.7rem; color: var(--ink-5); }
/* Step nav */
.step-nav-btns { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; flex-wrap: wrap; }
/* Type detail */
.type-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .type-grid { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.625rem 1.375rem;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.22s;
  position: relative; overflow: hidden;
}
.type-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.type-card:hover { border-color: rgba(201,107,42,0.3); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,107,42,0.1); }
.type-card:hover::after, .type-card.is-active::after { transform: scaleX(1); }
.type-card.is-active { border-color: var(--amber); background: var(--amber-bg); }
.tc-badge {
  position: absolute; top: 0.875rem; right: 0.875rem;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-tint); padding: 0.2rem 0.55rem; border-radius: 100px;
}
.tc-icon { font-size: 1.85rem; display: block; margin-bottom: 0.85rem; }
.type-card h4   { font-size: 0.95rem; margin-bottom: 0.3rem; }
.type-card p    { font-size: 0.8rem; }

.type-detail {
  display: none;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-top: 1.25rem;
  animation: fadeSlide 0.3s var(--ease);
}
.type-detail.is-on { display: block; }
.td-top  { display: flex; align-items: flex-start; gap: 1.125rem; margin-bottom: 2rem; }
.td-icon { font-size: 2.4rem; }
.td-head h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.td-sections { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .td-sections { grid-template-columns: 1fr 1fr; } }
.td-sec h5 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-5); margin-bottom: 0.85rem;
}
.td-traits { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.td-trait  { background: var(--bg-2); border-radius: 7px; padding: 0.38rem 0.875rem; font-size: 0.8rem; font-weight: 500; color: var(--ink-3); }
.td-missions { display: flex; flex-direction: column; gap: 0.65rem; }
.td-mission  { background: var(--bg-2); border-radius: 9px; padding: 0.875rem 1rem; font-size: 0.85rem; color: var(--ink-3); border-left: 3px solid var(--amber); }
.td-action {
  margin-top: 1.5rem;
  background: var(--amber-bg);
  border: 1px solid rgba(201,107,42,0.18);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.td-action h5 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.td-action p  { font-size: 0.875rem; color: var(--ink-3); }

/* ── BOOKING PAGE ── */
.booking-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1fr 1.65fr; gap: 5.5rem; } }
.book-info {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: #fff;
  position: static;
}
@media (min-width: 900px) {
  .book-info {
    position: sticky;
    top: calc(var(--hdr-h) + 2rem);
  }
}
.book-info h3 { color: #fff; margin-bottom: 0.85rem; font-size: 1.25rem; }
.book-info > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.bi-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.125rem; }

.bi-text h5 { font-size: 0.85rem; color: rgba(255,255,255,0.82); margin-bottom: 0.2rem; font-weight: 700; }
.bi-text p  { font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.book-sign  {
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem; color: rgba(255,255,255,0.28); line-height: 2;
}

.book-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.fg { margin-bottom: 1.25rem; }
.fg label { display: block; font-size: 0.825rem; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem; }
.fi, .fs, .ft {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--ff); font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--amber);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,107,42,0.1);
}
.ft { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-2col { grid-template-columns: 1fr; } }
.priv-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.75rem; }
.priv-row input { width: auto; flex-shrink: 0; accent-color: var(--amber); margin-top: 3px; }
.priv-row label { font-size: 0.8rem; color: var(--ink-4); line-height: 1.65; cursor: pointer; }
.form-note { font-size: 0.72rem; color: var(--ink-5); margin-top: 0.35rem; }
.form-success {
  display: none;
  background: var(--sage-bg); border: 1px solid rgba(78,122,90,0.25);
  border-radius: var(--r-sm); padding: 1.25rem 1.5rem;
  color: var(--sage); font-weight: 700; margin-bottom: 1.5rem; font-size: 0.9rem;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: 0.95rem; font-weight: 700;
  color: var(--ink); text-align: left; background: none; border: none;
  cursor: pointer; font-family: var(--ff); transition: color 0.18s; gap: 1rem;
}
.faq-q:hover { color: var(--amber); }
.faq-ico {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border-2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--amber);
  transition: transform 0.3s, border-color 0.18s;
}
.faq-item.is-open .faq-ico { transform: rotate(45deg); border-color: var(--amber); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0;
  transition: max-height 0.38s var(--ease), padding 0.3s;
  font-size: 0.9rem; color: var(--ink-3); line-height: 1.85;
}
.faq-item.is-open .faq-a { max-height: 400px; padding: 0 0 1.35rem; }

/* ── PRICING ── */
.pricing-wrap { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 780px; margin: 3rem auto 0; }
@media (min-width: 640px) { .pricing-wrap { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.125rem;
  transition: box-shadow 0.22s;
}
.price-card:hover { box-shadow: 0 14px 48px rgba(0,0,0,0.07); }
.price-card.is-featured {
  border-color: var(--amber);
  box-shadow: 0 8px 36px rgba(201,107,42,0.14);
  position: relative;
}
.price-card.is-featured::before {
  content: '추천 PLAN';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.28rem 1rem; border-radius: 100px;
}
.price-plan { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.price-amt  { font-family: var(--ff-serif); font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 0.35rem; }
.price-cycle { font-size: 0.8rem; color: var(--ink-5); margin-bottom: 1.75rem; }
.price-feats { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.125rem; }
.price-feats li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.875rem; color: var(--ink-3); }
.pf-y { color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pf-n { color: var(--ink-5); flex-shrink: 0; }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.marquee-item strong { color: rgba(255,255,255,0.55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ONE SPOON · UPGRADE — 추가 스타일
   Hero Slider, Game UI, App Page, Booking Page 신규 컴포넌트
   ============================================================ */

/* ── 전역 파티클 키프레임 ── */
@keyframes particleFloat {
  from { transform: translateY(0) scale(1); opacity: 0.4; }
  to   { transform: translateY(-20px) scale(1.2); opacity: 0.8; }
}
@keyframes floatIcon {
  0%,100% { transform: translateY(0) rotate(0deg); opacity:.7; }
  50%      { transform: translateY(-12px) rotate(5deg); opacity:1; }
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity:.8; }
  100% { transform: scale(1.8); opacity:0; }
}
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
@keyframes slideInUp {
  from { transform: translateY(30px); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scanLine {
  0%   { top: 0; }
  100% { top: 100%; }
}
@keyframes timerPulse {
  0%,100% { text-shadow: 0 0 12px rgba(201,107,42,.4); }
  50%      { text-shadow: 0 0 28px rgba(201,107,42,.9); }
}
@keyframes progressGlow {
  0%,100% { box-shadow: 0 0 6px rgba(201,107,42,.3); }
  50%      { box-shadow: 0 0 18px rgba(201,107,42,.7); }
}
@keyframes gameComplete {
  0%   { transform: scale(.6) rotate(-10deg); opacity:0; }
  60%  { transform: scale(1.1) rotate(4deg);  opacity:1; }
  100% { transform: scale(1) rotate(0deg);    opacity:1; }
}
@keyframes borderDance {
  0%,100% { border-color: rgba(201,107,42,.3); }
  50%      { border-color: rgba(201,107,42,.8); }
}

/* ══════════════════════════════════════════
   §A. HERO SLIDER — 2컬럼 Split 레이아웃
══════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

/* 모든 슬라이드: absolute 스택 */
.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.hs-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* 배경 레이어 */
.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
}
.hs-bg-color {
  position: absolute;
  inset: 0;
}
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,7,5,.96) 0%,
    rgba(10,7,5,.88) 42%,
    rgba(10,7,5,.55) 68%,
    rgba(10,7,5,.20) 100%
  );
  z-index: 1;
}

/* 2컬럼 콘텐츠 그리드 */
.hs-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  padding-top: var(--hdr-h);
  padding-bottom: 7rem;
  gap: 0;
}
@media (min-width: 860px) {
  .hs-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1200px) {
  .hs-content { gap: 5rem; }
}

/* 왼쪽: 텍스트 컬럼 */
.hs-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}

/* 오른쪽: 비주얼 컬럼 — 모바일 숨김 */
.hs-visual {
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 860px) {
  .hs-visual { display: flex; min-height: 360px; }
}

/* 텍스트 요소 */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(201,107,42,.12);
  border: 1px solid rgba(201,107,42,.28);
  padding: .4rem 1rem .4rem .65rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hs-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hs-title {
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hs-title em { color: var(--amber-light); font-style: normal; display: block; }
.hs-sub {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.58);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.25rem;
}
.hs-ctas { display: flex; flex-wrap: wrap; gap: .875rem; }
@media (max-width: 480px) {
  .hs-ctas { flex-direction: column; }
  .hs-ctas .btn { width: 100%; }
}

/* 슬라이드 컨트롤 */
.hs-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.hs-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.hs-arrow:hover { background: rgba(255,255,255,.16); color: #fff; transform: scale(1.06); }
.hs-dots { display: flex; gap: .5rem; align-items: center; }
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}
.hs-dot.is-active { background: var(--amber-light); width: 24px; }

/* 진행 바 */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.07);
  z-index: 10;
}
.hs-progress-fill { height: 100%; width: 0%; background: var(--amber-light); transition: width linear; }

/* 스크롤 힌트 */
.hs-scroll-hint {
  position: absolute;
  bottom: 6rem;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
}
.hs-scroll-hint span { font-size: .6rem; letter-spacing: .12em; color: rgba(255,255,255,.3); text-transform: uppercase; writing-mode: vertical-rl; }
.hs-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); animation: scanLine 1.8s ease-in-out infinite; }
@media (max-width: 767px) { .hs-scroll-hint { display: none; } }

/* ── 비주얼 컴포넌트 ── */

/* Slide 1: 아이콘 그리드 */
.room-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}
.ri {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  animation: floatIcon 3s ease-in-out infinite;
}
.ri-1{animation-delay:0s} .ri-2{animation-delay:.3s}
.ri-3{animation-delay:.6s} .ri-4{animation-delay:.9s}
.ri-5{animation-delay:1.2s} .ri-6{animation-delay:1.5s}
.ri-7{animation-delay:1.8s} .ri-8{animation-delay:2.1s}

/* Slide 2: 1평 박스 */
.sqm-visual { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.sqm-box {
  width: 200px; height: 200px;
  border: 2px solid rgba(201,107,42,.55);
  border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(201,107,42,.08);
  backdrop-filter: blur(12px);
  animation: borderDance 2.5s ease-in-out infinite;
  position: relative;
}
.sqm-box::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 28px; border: 1px solid rgba(201,107,42,.18);
  animation: pulseRing 2.2s ease-out infinite;
}
.sqm-num { font-family: var(--ff-serif); font-size: 3.2rem; font-weight: 700; color: var(--amber-light); line-height: 1; }
.sqm-sub { font-size: .88rem; color: rgba(255,255,255,.45); margin-top: .3rem; }
.sqm-timer { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 1rem 2rem; text-align: center; }
.sqm-t-label { font-size: .62rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.sqm-t-num   { font-family: var(--ff-serif); font-size: 1.9rem; font-weight: 700; color: var(--amber-light); }

/* Slide 3: After 비주얼 */
.after-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.av-check {
  width: 80px; height: 80px;
  background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  box-shadow: 0 0 0 14px rgba(78,122,90,.15);
}
.av-text { font-size: 1.05rem; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: .05em; }
.av-bars { display: flex; flex-direction: column; gap: 10px; width: 240px; }
.av-bar { display: flex; flex-direction: column; gap: 5px; }
.av-bar span { font-size: .7rem; color: rgba(255,255,255,.4); }
.av-bar-fill {
  height: 6px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: 3px; width: 0;
  animation: avBarGrow 1.6s var(--ease) .4s forwards;
}
@keyframes avBarGrow { to { width: var(--w); } }

/* Slide 4: 시니어 비주얼 */
.senior-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.sv-pair { display: flex; align-items: center; gap: 32px; }
.sv-person {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  animation: floatIcon 3s ease-in-out infinite;
  position: relative;
}
.sv-person::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(201,107,42,.3);
  animation: pulseRing 2.5s ease-out infinite;
}
.sv-person.senior-p { animation-delay: .8s; }
.sv-person.senior-p::before { border-color: rgba(78,122,90,.3); animation-delay: .8s; }
.sv-connect {
  font-size: 1.6rem; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-label { font-size: .84rem; font-weight: 700; color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: .6rem 1.5rem; border-radius: 100px; }
.sv-stats { display: flex; gap: 14px; }
.sv-stat { text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: .875rem 1.125rem; }
.sv-stat-num   { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700; color: var(--amber-light); display: block; line-height: 1; margin-bottom: .25rem; }
.sv-stat-label { font-size: .62rem; color: rgba(255,255,255,.35); letter-spacing: .05em; }

/* Slide 5: 앱 목업 */
.app-mockup {
  width: 280px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.07);
}
.am-header { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); padding: .875rem 1rem; display: flex; align-items: center; gap: .5rem; }
.am-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.am-dot:nth-child(1){background:#ff5f57} .am-dot:nth-child(2){background:#febc2e} .am-dot:nth-child(3){background:#28c840}
.am-title { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .06em; margin: 0 auto; }
.am-body  { padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.am-mission { background: rgba(201,107,42,.12); border: 1px solid rgba(201,107,42,.2); border-radius: 12px; padding: .875rem; }
.am-m-label { font-size: .55rem; color: var(--amber-light); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem; }
.am-m-text  { font-size: .82rem; font-weight: 600; color: #fff; }
.am-steps { display: flex; flex-direction: column; gap: .4rem; }
.am-step { font-size: .72rem; padding: .45rem .75rem; border-radius: 8px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.45); }
.am-step.done   { background: rgba(78,122,90,.15); color: var(--sage-light); border-color: rgba(78,122,90,.2); }
.am-step.active { background: rgba(201,107,42,.15); color: var(--amber-light); border-color: rgba(201,107,42,.25); animation: borderDance 2s ease-in-out infinite; }
.am-timer { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; color: var(--amber-light); text-align: center; animation: timerPulse 2s ease-in-out infinite; }

/* ══════════════════════════════════════════
   §B. APP PAGE — 게임/프리미엄 스타일
══════════════════════════════════════════ */

/* App page hero */
.app-page-hero {
  background: var(--dark);
  padding: calc(var(--hdr-h) + 4rem) 0 4rem;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.app-page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,107,42,.15) 0%, transparent 60%);
  pointer-events: none;
}
.app-page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,122,90,.1) 0%, transparent 60%);
  pointer-events: none;
}
.app-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.app-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .app-hero-inner { grid-template-columns: 1fr 0.9fr; gap: 5rem; }
}
.app-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(201,107,42,.12);
  border: 1px solid rgba(201,107,42,.25);
  padding: .4rem 1rem .4rem .6rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}
.app-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 1.5s ease-in-out infinite;
  display: inline-block;
}
.app-hero-text h1 { color: #fff; margin-bottom: .875rem; }

/* App preview card */
.app-hero-card-wrap { position: relative; }
.app-preview-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.07);
  animation: slideInUp .8s var(--ease) .2s both;
}
.apc-topbar {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.apc-dots { display: flex; gap: .4rem; }
.apc-dots span { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.apc-dots span:nth-child(1) { background: #ff5f57; }
.apc-dots span:nth-child(2) { background: #febc2e; }
.apc-dots span:nth-child(3) { background: #28c840; }
.apc-title { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .06em; margin: 0 auto; }
.apc-live  { font-size: .65rem; font-weight: 700; color: #4ade80; }
.apc-body  { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.apc-user {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: .875rem;
}
.apc-avatar { font-size: 2rem; }
.apc-user-name { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.82); }
.apc-user-day  { font-size: .7rem; color: rgba(255,255,255,.4); }
.apc-xp {
  margin-left: auto;
  font-size: .72rem; font-weight: 800;
  color: var(--amber-light);
  background: rgba(201,107,42,.12);
  border: 1px solid rgba(201,107,42,.2);
  padding: .3rem .75rem;
  border-radius: 100px;
}
.apc-mission {
  background: rgba(201,107,42,.1);
  border: 1px solid rgba(201,107,42,.2);
  border-radius: 14px;
  padding: 1rem;
}
.apc-m-tag  { font-size: .55rem; color: var(--amber-light); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.apc-m-text { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.apc-m-timer { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700; color: var(--amber-light); animation: timerPulse 2s ease-in-out infinite; }
.apc-steps { display: flex; flex-direction: column; gap: .4rem; }
.apc-step {
  font-size: .76rem;
  padding: .5rem .875rem;
  border-radius: 9px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.apc-step.done   { color: var(--sage-light); background: rgba(78,122,90,.1); border-color: rgba(78,122,90,.15); }
.apc-step.active { color: var(--amber-light); background: rgba(201,107,42,.1); border-color: rgba(201,107,42,.2); }
.apc-pulse { animation: pulse-dot 1.2s ease-in-out infinite; }
.apc-progress-wrap { display: flex; flex-direction: column; gap: .4rem; }
.apc-progress-label { display: flex; justify-content: space-between; font-size: .7rem; color: rgba(255,255,255,.4); }
.apc-progress-bar  { height: 5px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.apc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-light)); border-radius: 3px; animation: progressGlow 2s ease-in-out infinite; }

/* ── Game section ── */
.game-section {
  background: var(--dark);
  position: relative;
}
.game-section .sec-label { color: var(--amber-light); }
.game-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Game container & panels */
.game-container {
  max-width: 660px;
  margin: 0 auto;
}
.game-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.game-panel .step-hdr h3 { color: #fff; }
.game-panel .step-hdr p  { color: rgba(255,255,255,.5); }

.game-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gph-badge { display: flex; align-items: baseline; gap: .25rem; }
.gph-num   { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; color: var(--amber-light); }
.gph-slash { font-size: .85rem; color: rgba(255,255,255,.2); }
.gph-total { font-size: .85rem; color: rgba(255,255,255,.3); }
.gph-quest { font-size: .75rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.4); }

/* Game XP bar */
.game-xp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: .875rem 1.25rem;
  margin-bottom: 1.25rem;
}
.gxp-left { display: flex; align-items: center; gap: .6rem; }
.gxp-icon  { font-size: 1.2rem; }
.gxp-label { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); }
.gxp-xp    { font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 700; color: var(--amber-light); }

/* Game int cards */
.game-int-card {
  border-color: rgba(255,255,255,.1) !important;
  background: rgba(255,255,255,.04) !important;
}
.game-int-card:hover { border-color: rgba(201,107,42,.5) !important; background: rgba(201,107,42,.1) !important; }
.game-int-card.sel   { border-color: var(--amber) !important; background: rgba(201,107,42,.15) !important; box-shadow: 0 0 0 3px rgba(201,107,42,.2) !important; }
.game-int-card .int-label { color: rgba(255,255,255,.7) !important; }

/* Game diag cards */
.game-diag-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.game-diag-card {
  border: 2px solid rgba(255,255,255,.1) !important;
  background: rgba(255,255,255,.04) !important;
}
.game-diag-card:hover { border-color: rgba(201,107,42,.5) !important; background: rgba(201,107,42,.1) !important; transform: translateY(-3px) scale(1.02); }
.game-diag-card .diag-face { background: rgba(255,255,255,.04) !important; }
.game-diag-card .diag-lbl  { color: rgba(255,255,255,.7) !important; }

/* Game upload zone */
.game-upload {
  border-color: rgba(255,255,255,.15) !important;
  background: rgba(255,255,255,.03) !important;
}
.game-upload:hover { border-color: rgba(201,107,42,.4) !important; background: rgba(201,107,42,.08) !important; }

/* Game mission card */
.game-mission-card {
  background: rgba(201,107,42,.1);
  border-color: rgba(201,107,42,.25) !important;
}
.game-mission-card::before { background: linear-gradient(to bottom, var(--amber-light), var(--amber)); }
.game-mission-card .mc-tag { color: var(--amber-light) !important; background: rgba(201,107,42,.2) !important; }
.game-mission-card .mc-text { color: #fff !important; }
.game-mission-card .mc-insight { background: rgba(255,255,255,.05) !important; color: rgba(255,255,255,.55) !important; }

/* Game timer */
.game-timer { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); padding: 2rem; }
.game-timer-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.game-timer-num {
  font-family: var(--ff-serif);
  font-size: 4rem; font-weight: 700;
  color: var(--amber-light);
  animation: timerPulse 2s ease-in-out infinite;
  display: block;
  line-height: 1;
}

/* Game report */
.game-report {
  background: rgba(201,107,42,.08) !important;
  border-color: rgba(201,107,42,.2) !important;
}
.game-report .rc-type { color: var(--amber-light) !important; }
.game-report .rc-list li { color: rgba(255,255,255,.6) !important; }
.game-report .rc-list li::before { color: var(--sage-light) !important; }

/* Game score */
.game-score .score-cell { background: rgba(255,255,255,.05) !important; border: 1px solid rgba(255,255,255,.07); }
.game-score .score-n { color: var(--amber-light) !important; }
.game-score .score-l { color: rgba(255,255,255,.35) !important; }

/* Game complete */
.game-complete-emoji { font-size: 3.5rem; margin: 1rem 0; animation: gameComplete .8s var(--ease) both; display: block; }

/* Game CTA band */
.game-cta-band {
  background: linear-gradient(135deg, rgba(201,107,42,.15) 0%, rgba(78,122,90,.1) 100%) !important;
  border: 1px solid rgba(201,107,42,.25);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.game-cta-band h2 { color: #fff !important; font-size: 1.4rem !important; }
.game-cta-band p  { color: rgba(255,255,255,.55) !important; }

/* Game intro visual */
.game-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.giv-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .875rem 1.25rem;
  font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.8);
}
.giv-arrow { font-size: 1.2rem; color: rgba(255,255,255,.3); }

/* step dots in game section */
.game-section .sdot { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.3); }
.game-section .sdot.is-active { background: var(--amber); border-color: var(--amber); color: #fff; }
.game-section .sdot.is-done   { background: var(--sage); border-color: var(--sage); color: #fff; }
.game-section .sline { background: rgba(255,255,255,.1); }
.game-section .sline.is-done { background: var(--sage); }
.game-section .app-progress { background: rgba(255,255,255,.08); margin-bottom: .75rem; }

/* ══════════════════════════════════════════
   §C. BOOKING PAGE 업그레이드
══════════════════════════════════════════ */
.booking-hero {
  background: var(--dark);
  padding: calc(var(--hdr-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.booking-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(201,107,42,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(78,122,90,.1) 0%, transparent 55%);
  pointer-events: none;
}
.booking-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .booking-hero-inner { grid-template-columns: 1fr 0.75fr; gap: 5rem; }
}

/* Quick links panel */
.booking-quick-links {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.bql-title {
  padding: 1rem 1.25rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bql-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .18s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.bql-item:last-child { border-bottom: none; }
.bql-item:hover { background: rgba(255,255,255,.05); }
.bql-icon { font-size: 1.6rem; width: 40px; text-align: center; }
.bql-item div { flex: 1; }
.bql-item strong { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.8); display: block; }
.bql-item span   { font-size: .72rem; color: rgba(255,255,255,.35); }
.bql-arrow { color: rgba(255,255,255,.25); font-size: .9rem; }
.bql-item:hover .bql-arrow { color: var(--amber-light); }

/* Bi-item icon (booking info) */
.bi-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bi-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   §D. STAGE STICKY + MOBILE FIX
══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .stage-sticky {
    position: sticky;
    top: calc(var(--hdr-h) + 2rem);
  }
}

/* ══════════════════════════════════════════
   §E. 전체 추가 동적 요소
══════════════════════════════════════════ */

/* 호버 시 glow 효과 - 버튼 */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(201,107,42,.35), 0 0 0 0px rgba(201,107,42,0) !important;
}

/* 카드 마이크로 애니메이션 강화 */
.diff-card, .flow-card, .aud-card, .collab-card {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s !important;
}

/* aud-icon 크기 업 */
.aud-icon { font-size: 2.8rem !important; }
.aud-card { padding: 2.25rem !important; }

/* tc-icon 크기 업 */
.tc-icon { font-size: 2.8rem !important; }

/* 요금제 카드 hover 강화 */
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(0,0,0,.1) !important;
}
.price-card.is-featured:hover {
  box-shadow: 0 18px 52px rgba(201,107,42,.2) !important;
}

/* 스크롤 reveal transform 추가 */
[data-reveal] {
  transform: translateY(18px);
}
[data-reveal].visible {
  transform: translateY(0);
  transition: opacity .65s var(--ease), transform .65s var(--ease) !important;
}

/* ── 반응형 보정 ── */
@media (max-width: 767px) {
  .hs-controls { bottom: 3.5rem; }
  .app-hero-inner { gap: 2rem; }
  .booking-hero-inner { gap: 2rem; }
  .bql-item strong { font-size: .82rem; }
}


/* ── 성능 최적화 ── */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }
a { -webkit-tap-highlight-color: transparent; }

/* 스크롤 부드럽게 */
html { scroll-behavior: smooth; }

/* 텍스트 렌더링 최적화 */
body {
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

/* 포커스 스타일 (접근성) */
:focus-visible {
  outline: 2px solid var(--amber, #F59E0B);
  outline-offset: 2px;
}

/* 프린트 최적화 */
@media print {
  .site-header, .mobile-menu, .site-footer { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* ══════════════════════════════════════
   공통 플로팅 CTA 버튼
══════════════════════════════════════ */
.floating-cta{position:fixed;bottom:1.75rem;right:1.75rem;z-index:8888;display:flex;flex-direction:column;align-items:flex-end;gap:.5rem;pointer-events:none}
.floating-cta a,.floating-cta button{pointer-events:auto;display:flex;align-items:center;gap:.5rem;padding:.75rem 1.375rem;border-radius:100px;font-family:var(--ff);font-size:.88rem;font-weight:800;text-decoration:none;border:none;cursor:pointer;transition:all .22s;white-space:nowrap;box-shadow:0 4px 20px rgba(0,0,0,.18);-webkit-tap-highlight-color:transparent}
.floating-cta .fcta-main{background:linear-gradient(135deg,#C8526A,#B8364E);color:#fff}
.floating-cta .fcta-main:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(200,82,106,.5)}
.floating-cta .fcta-sub{background:rgba(255,255,255,.92);color:var(--ink,#1a1a2e);border:1.5px solid rgba(0,0,0,.08);font-size:.8rem;padding:.6rem 1.1rem}
.floating-cta .fcta-sub:hover{background:#fff;transform:translateY(-2px)}
.fcta-dark .fcta-sub{background:rgba(255,255,255,.12);color:rgba(255,255,255,.85);border-color:rgba(255,255,255,.2)}
.fcta-dark .fcta-sub:hover{background:rgba(255,255,255,.2)}
@media(max-width:768px){.floating-cta{bottom:1.25rem;right:1rem}.floating-cta a,.floating-cta button{font-size:.82rem;padding:.7rem 1.1rem}}

/* ══ 다음 단계 바 ══ */
.next-step-bar{background:rgba(255,255,255,.04);border-top:1px solid rgba(255,255,255,.07);padding:1.25rem 0;margin-top:2rem}
.next-step-bar .wrap{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.next-step-bar .step-hint{font-size:.85rem;color:rgba(255,255,255,.4);flex-shrink:0}
.next-step-bar .step-actions{display:flex;gap:.75rem;flex-wrap:wrap}


/* ══════════════════════════════════════
   2026-07-14 공통 시각 정돈
   여백 · 버튼 · 공식 푸터
══════════════════════════════════════ */
.btn {
  min-height: 46px;
  padding: .85rem 1.6rem;
  border-radius: 10px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 12% 0, rgba(78,122,90,.08), transparent 32%),
    var(--dark-2);
}
@media (max-width: 767px) {
  .site-footer { padding: 1.4rem 0 1rem; overflow-x: hidden; }
  .footer-compact { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: .65rem; }
  .footer-compact-brand { text-align: center; }
  .footer-compact-title { font-size: .92rem; }
  .footer-compact-nav { align-items: center; gap: 0; margin-top: .5rem; width: 100%; }
  .footer-link-row { justify-content: center; width: 100%; }
  .footer-link-row a { min-height: 40px; padding: 0 .28rem; font-size: .74rem; color: rgba(255,255,255,.76); }
  .footer-link-row a + a::before { margin-right: .56rem; }
  .footer-business { margin: .45rem auto 0; max-width: 100%; color: rgba(255,255,255,.56); font-size: .66rem; line-height: 1.65; text-align: center; }
  .footer-business span { display: block; }
  .footer-business span + span::before { content: none; margin: 0; }
  .footer-business-contact { display: none !important; }
  .footer-bottom { justify-content: center; padding-top: .7rem; text-align: center; }
  .footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.48); }
}

/* 푸터 표준화 최종 캐스케이드: 기존 레거시 푸터 규칙보다 우선 적용 */
.site-footer { padding: 3.6rem 0 1.35rem; }
@media (max-width: 767px) {
  .site-footer { padding: 2.7rem 0 1.15rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.45rem .8rem; padding-bottom: 1.8rem; }
  .footer-brand, .footer-business-block { grid-column: 1 / -1; }
  .footer-brand { text-align: left; }
  .footer-business-block { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-bottom { display: block; justify-content: initial; padding-top: .85rem; text-align: left; }
  .footer-bottom-links { display: flex; }
  .footer-bottom p { font-size: .66rem; color: rgba(226,232,240,.38); }
}

/* 2026-07-19 모바일 QA: 푸터를 짧고 읽기 쉬운 2열 흐름으로 정리 */
@media (max-width: 767px) {
  .site-footer { padding: 1.6rem 0 .85rem; overflow-x: hidden; }
  .footer-wrap { padding-left: .9rem; padding-right: .9rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem .55rem; padding-bottom: .95rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; padding-bottom: .15rem; }
  .footer-title { font-size: 1.05rem; }
  .footer-description { max-width: 100%; margin: .3rem auto 0; font-size: .69rem; line-height: 1.5; }
  .footer-heading { margin-bottom: .2rem; font-size: .68rem; }
  .footer-column a { min-height: 30px; padding: .12rem 0; font-size: .68rem; line-height: 1.3; }
  .footer-business-block { grid-column: 1 / -1; padding-top: .65rem; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-business-copy { font-size: .62rem; line-height: 1.5; text-align: center; }
  .footer-bottom { display: block; padding-top: .6rem; text-align: center; }
  .footer-bottom p { font-size: .62rem; }
  .footer-bottom-links { justify-content: center; gap: .45rem; margin-top: .35rem; }
  .footer-bottom-links a { min-height: 28px; font-size: .62rem; }
}
