/* ── DESIGN SYSTEM ── */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: rgba(37, 99, 235, .07);
  --ink: #0F172A;
  --ink2: #1E293B;
  --ink3: #475569;
  --ink4: #94A3B8;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --green: #059669;
  --red: #DC2626;
  --yellow: #D97706;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .06);
  --shadow-blue: 0 8px 24px rgba(37, 99, 235, .25);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --vitality: #F97316;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .4s;
}

#nav.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #F77F00 0%, #FF8C00 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  transition: all .3s;
}

#nav.scrolled .nav-logo-mark {
  background: linear-gradient(135deg, #F77F00 0%, #FF8C00 100%);
  color: #fff;
}

.nav-logo-name {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
  transition: color .3s;
}

#nav.scrolled .nav-logo-name {
  color: var(--ink);
}

.nav-badge-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all .3s;
}

#nav.scrolled .nav-badge-text {
  color: var(--blue);
  background: var(--blue-light);
  border-color: rgba(37, 99, 235, .18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  padding: 7px 11px;
  border-radius: var(--r-sm);
  border: none;
  background: none;
  transition: all .2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .2);
}

#nav.scrolled .nav-link {
  color: var(--ink3);
}

#nav.scrolled .nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

#nav.scrolled .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

#nav.scrolled .nav-cta {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

#nav.scrolled .nav-cta:hover {
  background: var(--blue-dark);
}

/* ── VIDEO SECTION ── */
#video-section {
  background: #000;
  padding-top: 64px;
  position: relative;
}

#video-section .video-wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

#video-section .video-wrap video {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.video-toggle-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .22s ease;
  opacity: .95;
}

.video-toggle-btn:hover {
  background: rgba(15, 23, 42, 0.78);
  transform: scale(1.06);
}

.video-toggle-btn:active {
  transform: scale(0.96);
}

.video-toggle-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  display: block;
}

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A0F1E 0%, #0F1E3D 35%, #1a3a6e 65%, #1D4ED8 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: .5; }
  90% { opacity: .2; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 920px;
  padding: 60px 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  letter-spacing: .3px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp .8s ease .3s forwards;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 0;
  word-break: keep-all;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

.hero-title-inner.l1 { animation: slideUp .7s cubic-bezier(.16, 1, .3, 1) .6s forwards; }
.hero-title-inner.l2 { animation: slideUp .7s cubic-bezier(.16, 1, .3, 1) .85s forwards; }
.hero-title-inner.l3 { color: #60A5FA; animation: slideUp .7s cubic-bezier(.16, 1, .3, 1) 1.1s forwards; }
.hero-title-inner.l4 { font-size: 26px; font-weight: 700; color: rgba(255, 255, 255, .72); letter-spacing: -.3px; margin-top: 14px; animation: slideUp .7s cubic-bezier(.16, 1, .3, 1) 1.3s forwards; }

@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  margin-top: 28px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInUp .8s ease 1.6s forwards;
}

.hero-sub strong { color: #fff; font-weight: 800; }

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .8s ease 1.9s forwards;
}

.hero-proof-item {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  min-width: 108px;
}

.hp-num { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.hp-label { font-size: 11px; color: rgba(255, 255, 255, .68); font-weight: 600; margin-top: 4px; }

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .8s ease 2.1s forwards;
}

.hero-btn-p {
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 16px 36px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 800;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.hero-btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 0, 0, .3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0;
  animation: fadeInUp .8s ease 2.4s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .55), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ── SECTIONS COMMON ── */
.section { padding: 96px 48px; }
.section.gray { background: var(--surface); }
.s-inner { max-width: 1200px; margin: 0 auto; }
.s-eye { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.s-h2 { font-size: 42px; font-weight: 900; line-height: 1.15; letter-spacing: -1.5px; color: var(--ink); word-break: keep-all; }
.s-desc { font-size: 17px; color: var(--ink3); line-height: 1.75; margin-top: 14px; max-width: 580px; }

/* ── EMPATHY ── */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.exp-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: all .3s; }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37, 99, 235, .2); }
.exp-num { font-size: 12px; font-weight: 700; color: var(--ink4); letter-spacing: 1px; margin-bottom: 20px; }
.exp-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.exp-icon-wrap.red { background: #FEF2F2; border: 1px solid #FECACA; }
.exp-icon-wrap.yellow { background: #FFFBEB; border: 1px solid #FDE68A; }
.exp-icon-wrap.purple { background: #F5F3FF; border: 1px solid #DDD6FE; }
.exp-quote { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.45; margin-bottom: 14px; word-break: keep-all; }
.exp-body { font-size: 14px; color: var(--ink3); line-height: 1.75; word-break: keep-all; }
.exp-body em { color: var(--blue); font-style: normal; font-weight: 700; }

/* ── INSIGHT ── */
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 52px; align-items: start; }
.insight-big-num { font-size: 88px; font-weight: 900; color: var(--blue); letter-spacing: -4px; line-height: 1; }
.insight-big-sub { font-size: 17px; color: var(--ink3); margin-top: 10px; line-height: 1.65; }
.insight-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.insight-tag { background: var(--white); border: 1.5px solid var(--border); padding: 10px 18px; border-radius: 40px; font-size: 14px; font-weight: 600; color: var(--ink2); box-shadow: var(--shadow-sm); }
.insight-items { display: flex; flex-direction: column; gap: 14px; }
.insight-item { padding: 22px 24px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: all .25s; }
.insight-item:hover { border-color: rgba(37, 99, 235, .2); box-shadow: var(--shadow-md); }
.insight-item-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.insight-item-tt { font-size: 15px; font-weight: 800; color: var(--ink); }
.insight-item-bd { font-size: 14px; color: var(--ink3); line-height: 1.65; }

/* ── REPORT PREVIEW ── */
#report-preview { padding: 96px 48px; background: var(--white); }
.rp-inner { max-width: 1200px; margin: 0 auto; }
.rp-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px; }
.rp-checklist { display: flex; flex-direction: column; gap: 10px; }
.rp-check-item { display: flex; align-items: center; gap: 12px; padding: 13px 18px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-md); transition: all .2s; }
.rp-check-item:hover { border-color: rgba(37, 99, 235, .2); background: var(--blue-light); }
.rp-check-icon { font-size: 18px; flex-shrink: 0; }
.rp-check-text { font-size: 14px; font-weight: 600; color: var(--ink2); }
.rp-check-badge { margin-left: auto; font-size: 11px; font-weight: 700; background: var(--blue-light); color: var(--blue); padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(37, 99, 235, .15); white-space: nowrap; }

/* ── SLIDER ── */
.rp-slider { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; cursor: grab; }
.rp-slider:active { cursor: grabbing; }
.rp-slider::-webkit-scrollbar { display: none; }
.rp-slide { flex: 0 0 340px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; border: 1.5px solid var(--border); background: var(--white); }
.rp-slide-hd { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.rp-slide-hd.blue { background: linear-gradient(135deg, #1E3A8A, #2563EB); }
.rp-slide-hd.dark { background: linear-gradient(135deg, #0F172A, #1E293B); }
.rp-slide-hd.green { background: linear-gradient(135deg, #064E3B, #059669); }
.rp-slide-hd.purple { background: linear-gradient(135deg, #3B0764, #7C3AED); }
.rp-slide-hd.orange { background: linear-gradient(135deg, #7C2D12, #EA580C); }
.rp-slide-hd.teal { background: linear-gradient(135deg, #134E4A, #0D9488); }
.rp-slide-title { font-size: 13px; font-weight: 700; color: #fff; }
.rp-slide-num { font-size: 11px; color: rgba(255, 255, 255, .5); font-weight: 600; }
.rp-slide-body { padding: 20px 20px 0; }

.mock-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.mock-table th { font-size: 10px; font-weight: 700; color: var(--ink4); padding: 6px 8px; border-bottom: 1.5px solid var(--border); text-align: left; letter-spacing: .5px; }
.mock-table td { font-size: 12px; color: var(--ink2); padding: 9px 8px; border-bottom: 1px solid var(--surface); font-weight: 500; }
.mock-table tr:last-child td { border-bottom: none; }

td.c-blue { color: var(--blue); font-weight: 700; }
td.c-red { color: var(--red); font-weight: 700; }
td.c-green { color: var(--green); font-weight: 700; }
td.c-yellow { color: var(--yellow); font-weight: 700; }

.mock-bar-row { margin: 10px 0; }
.mock-bar-label { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; margin-bottom: 5px; }
.mock-bar-label .name { color: var(--ink3); }
.mock-bar-label .val { color: var(--ink2); }
.mock-bar-label .val.blue { color: var(--blue); }
.mock-bar-bg { height: 7px; background: var(--surface); border-radius: 4px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 4px; }
.mock-bar-fill.b { background: linear-gradient(90deg, var(--blue), #60A5FA); }
.mock-bar-fill.g { background: linear-gradient(90deg, #6B7280, #9CA3AF); }

.mock-highlight { padding: 10px 14px; border-radius: var(--r-sm); font-size: 12px; font-weight: 700; margin-top: 10px; }
.mock-highlight.blue { background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37, 99, 235, .15); }
.mock-highlight.green { background: rgba(5, 150, 105, .07); color: var(--green); border: 1px solid rgba(5, 150, 105, .15); }

.mock-pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.mock-pill { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37, 99, 235, .12); }
.mock-pill.red { background: #FEF2F2; color: var(--red); border-color: rgba(220, 38, 38, .12); }
.mock-pill.yellow { background: #FFFBEB; color: var(--yellow); border-color: rgba(217, 119, 6, .12); }
.mock-pill.green { background: rgba(5, 150, 105, .07); color: var(--green); border-color: rgba(5, 150, 105, .12); }

.mock-flow-step { padding: 9px 14px; background: var(--surface); border-radius: 8px; border-left: 3px solid var(--blue); font-size: 12px; font-weight: 600; color: var(--ink2); margin-bottom: 6px; }
.mock-flow-step.accent { background: rgba(37, 99, 235, .07); color: var(--blue); font-weight: 800; }
.mock-flow-arrow { text-align: center; font-size: 14px; color: var(--ink4); margin: 2px 0; }

.rp-blur { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .98)); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; }
.rp-blur-badge { background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 30px; }

.rp-cta-box { margin-top: 40px; padding: 32px 40px; background: linear-gradient(135deg, rgba(37, 99, 235, .05), rgba(37, 99, 235, .02)); border: 1.5px solid rgba(37, 99, 235, .15); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rp-cta-text { font-size: 20px; font-weight: 800; color: var(--ink); }
.rp-cta-sub { font-size: 14px; color: var(--ink3); margin-top: 4px; }
.rp-cta-btn { background: var(--blue); color: #fff; border: none; padding: 14px 32px; border-radius: var(--r-md); font-size: 15px; font-weight: 700; white-space: nowrap; transition: all .2s; box-shadow: var(--shadow-blue); }
.rp-cta-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── PROOF ── */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.proof-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-md); transition: all .3s; position: relative; overflow: hidden; }
.proof-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), #60A5FA); }
.proof-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.proof-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; background: var(--blue-light); color: var(--blue); padding: 4px 10px; border-radius: 20px; margin-bottom: 16px; border: 1px solid rgba(37, 99, 235, .15); }
.proof-store { font-size: 13px; font-weight: 700; color: var(--ink3); margin-bottom: 12px; }
.proof-period { font-size: 12px; font-weight: 600; color: var(--ink4); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.proof-period span { background: var(--surface); padding: 3px 8px; border-radius: 6px; border: 1px solid var(--border); }
.proof-numbers { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; margin: 16px 0; }
.proof-num-box { padding: 14px; border-radius: var(--r-md); text-align: center; }
.proof-num-box.before { background: #FFF8F8; border: 1.5px solid #FECACA; }
.proof-num-box.after { background: rgba(37, 99, 235, .05); border: 1.5px solid rgba(37, 99, 235, .2); }
.proof-num-label { font-size: 10px; font-weight: 700; color: var(--ink4); letter-spacing: .5px; margin-bottom: 6px; }
.proof-num-val { font-size: 20px; font-weight: 900; line-height: 1; }
.proof-num-val.red { color: var(--red); }
.proof-num-val.blue { color: var(--blue); }
.proof-arrow { font-size: 20px; color: var(--blue); text-align: center; }
.proof-growth { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; padding: 12px; background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(37, 99, 235, .02)); border-radius: var(--r-md); border: 1px solid rgba(37, 99, 235, .12); }
.proof-growth-num { font-size: 26px; font-weight: 900; color: var(--blue); }
.proof-growth-label { font-size: 13px; font-weight: 600; color: var(--ink3); }
.proof-metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.proof-metric { font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: var(--r-sm); background: var(--surface); color: var(--ink3); border: 1px solid var(--border); }
.proof-disclaimer { margin-top: 28px; padding: 14px 20px; background: var(--surface); border-radius: var(--r-md); font-size: 12px; color: var(--ink4); text-align: center; line-height: 1.7; }

/* ── SIMULATOR ── */
#simulator { padding: 96px 48px; background: var(--surface); }
.sim-inner { max-width: 860px; margin: 0 auto; }
.sim-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 48px; box-shadow: var(--shadow-lg); }
.sim-input-wrap { margin-bottom: 28px; }
.sim-label { font-size: 14px; font-weight: 700; color: var(--ink2); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.sim-val { font-size: 22px; font-weight: 900; color: var(--blue); }
.sim-range { width: 100%; height: 6px; border-radius: 3px; background: var(--border); outline: none; -webkit-appearance: none; appearance: none; cursor: pointer; }
.sim-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; box-shadow: 0 2px 8px rgba(37, 99, 235, .35); transition: transform .15s; }
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sim-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; border: none; }
.sim-divider { height: 1px; background: var(--border); margin: 32px 0; }
.sim-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.sim-res { text-align: center; padding: 22px 14px; border-radius: var(--r-lg); border: 1.5px solid var(--border); }
.sim-res.hl { background: var(--blue); border-color: var(--blue); }
.sim-res-label { font-size: 11px; font-weight: 700; color: var(--ink4); letter-spacing: .5px; margin-bottom: 8px; }
.sim-res.hl .sim-res-label { color: rgba(255, 255, 255, .7); }
.sim-res-num { font-size: 24px; font-weight: 900; color: var(--ink); }
.sim-res.hl .sim-res-num { color: #fff; }
.sim-res-num.blue { color: var(--blue); }
.sim-res-num.green { color: var(--green); }
.sim-note { background: rgba(37, 99, 235, .04); border: 1px solid rgba(37, 99, 235, .12); border-radius: var(--r-md); padding: 20px 24px; font-size: 14px; color: var(--ink3); line-height: 1.9; text-align: left; }
.sim-note strong { color: var(--blue); font-weight: 800; }
.sim-note strong.green { color: var(--green); }
.sim-note-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.sim-note-label { font-size: 13px; color: var(--ink4); font-weight: 600; white-space: nowrap; }
.sim-note-val { font-size: 15px; font-weight: 800; color: var(--ink); }
.sim-note-val.blue { color: var(--blue); }
.sim-note-val.green { color: var(--green); }
.sim-note-divider { height: 1px; background: var(--border); margin: 12px 0; }
.sim-note-warn { font-size: 12px; color: var(--ink4); margin-top: 10px; line-height: 1.65; padding-top: 10px; border-top: 1px solid var(--border); }
.sim-btn { width: 100%; background: var(--blue); color: #fff; border: none; padding: 18px; border-radius: var(--r-md); font-size: 17px; font-weight: 800; margin-top: 20px; transition: all .2s; box-shadow: var(--shadow-blue); }
.sim-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── SELECTION ── */
.sel-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; margin-top: 52px; align-items: start; }
.sel-list { display: flex; flex-direction: column; gap: 14px; }
.sel-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: all .25s; }
.sel-item:hover { border-color: rgba(37, 99, 235, .2); box-shadow: var(--shadow-md); }
.sel-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.sel-item-title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.sel-item-desc { font-size: 14px; color: var(--ink3); line-height: 1.65; }
.sel-callout { background: var(--blue); border-radius: var(--r-xl); padding: 36px 30px; color: #fff; }
.sel-callout-title { font-size: 21px; font-weight: 900; line-height: 1.35; margin-bottom: 14px; }
.sel-callout-body { font-size: 15px; color: rgba(255, 255, 255, .85); line-height: 1.8; }
.sel-callout-cta { margin-top: 24px; background: #fff; color: var(--blue); border: none; padding: 14px 28px; border-radius: var(--r-md); font-size: 15px; font-weight: 800; width: 100%; transition: all .2s; }
.sel-callout-cta:hover { background: rgba(255, 255, 255, .9); }

/* ── FAQ ── */
.faq-wrap { display: flex; flex-direction: column; gap: 10px; margin-top: 52px; max-width: 800px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(37, 99, 235, .25); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink); gap: 16px; transition: color .2s; line-height: 1.5; }
.faq-q:hover { color: var(--blue); }
.faq-ico { flex-shrink: 0; font-size: 20px; color: var(--ink4); transition: transform .3s, color .3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--ink3); line-height: 1.8; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA / FORM ── */
#cta { padding: 96px 48px; background: var(--surface); }
.cta-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-h2 { font-size: 42px; font-weight: 900; letter-spacing: -1.5px; color: var(--ink); line-height: 1.15; }
.cta-desc { font-size: 17px; color: var(--ink3); margin-top: 14px; line-height: 1.75; }
.cta-chips { display: flex; justify-content: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.cta-chip { font-size: 13px; font-weight: 700; color: var(--ink3); }
.form-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-lg); margin-top: 36px; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-g { display: flex; flex-direction: column; gap: 6px; }
.form-g.full { grid-column: 1/-1; }
.form-label { font-size: 13px; font-weight: 700; color: var(--ink2); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 15px; font-family: inherit; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink4); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; background: var(--blue); color: #fff; border: none; padding: 18px; border-radius: var(--r-md); font-size: 17px; font-weight: 800; margin-top: 8px; transition: all .2s; box-shadow: var(--shadow-blue); }
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }
.form-note { text-align: center; font-size: 12px; color: var(--ink4); margin-top: 12px; line-height: 1.75; }

.form-success { text-align: center; padding: 48px 24px; display: none; }
.fs-icon { font-size: 52px; margin-bottom: 16px; }
.fs-title { font-size: 24px; font-weight: 900; color: var(--ink); }
.fs-desc { font-size: 16px; color: var(--ink3); margin-top: 12px; line-height: 1.75; word-break: keep-all; }
.fs-cta { display: inline-block; margin-top: 24px; background: #FEE500; color: #000; padding: 14px 28px; border-radius: 12px; font-weight: 800; text-decoration: none; transition: all .2s; }
.fs-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ── FOOTER ── */
#footer { padding: 40px 48px; border-top: 1px solid var(--border); background: var(--white); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-left { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--ink); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #fff; }
.footer-logo-name { font-size: 16px; font-weight: 900; color: var(--ink); }
.footer-tagline { font-size: 13px; color: var(--ink4); }
.footer-info { font-size: 12px; color: var(--ink3); line-height: 2; text-align: right; }
.footer-info span { color: var(--ink4); }

/* ── FLOAT / TOP ── */
#float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 998; background: var(--blue); color: #fff; border: none; padding: 15px 26px; border-radius: 40px; font-size: 14px; font-weight: 800; box-shadow: 0 8px 24px rgba(37, 99, 235, .4); transition: all .3s; opacity: 0; transform: translateY(16px); pointer-events: none; }
#float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#float-cta:hover { background: var(--blue-dark); transform: translateY(-3px); }

#back-top { position: fixed; bottom: 88px; right: 28px; z-index: 997; width: 44px; height: 44px; background: var(--white); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-md); cursor: pointer; transition: all .3s; opacity: 0; transform: translateY(10px); pointer-events: none; }
#back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .nav-links { display: flex; align-items: center; gap: 6px; flex: 1 1 auto; min-width: 0; overflow-x: auto; overflow-y: hidden; white-space: nowrap; -ms-overflow-style: none; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { font-size: 12px; padding: 6px 8px; flex: 0 0 auto; white-space: nowrap; }
}

@media(max-width:1024px) {
  .rp-top { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .sel-grid { grid-template-columns: 1fr; }
  .sim-results { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:768px) {
  #nav { height: 56px; padding: 0 10px; }
  .nav-inner { gap: 8px; }
  .nav-logo-mark { width: 30px; height: 30px; font-size: 9px; }
  .nav-logo-name { font-size: 14px; }
  .nav-badge-text { font-size: 9px; padding: 3px 6px; }
  .nav-link { font-size: 11px; padding: 6px 8px; }
  .nav-cta { font-size: 11px; padding: 7px 10px; border-radius: 10px; }
  
  #video-section { padding-top: 56px; }
  .video-toggle-btn { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .video-toggle-btn svg { width: 24px; height: 24px; }
  
  #hero { min-height: auto; padding: 40px 0 60px; }
  .hero-content { padding: 32px 16px 48px; }
  .hero-title { font-size: 34px; line-height: 1.18; letter-spacing: -1.2px; }
  .hero-title-inner.l4 { font-size: 16px; margin-top: 10px; }
  .hero-eyebrow { font-size: 11px; padding: 7px 12px; margin-bottom: 22px; }
  .hero-sub { font-size: 14px; padding: 16px 14px; margin-top: 20px; }
  .hero-proof-item { min-width: calc(50% - 4px); }
  .hero-btns { flex-direction: column; }
  .hero-btn-p { width: 100%; font-size: 15px; }
  
  .section { padding: 56px 16px; }
  .s-h2 { font-size: 28px; }
  .exp-grid, .proof-grid, .sel-grid, .form-grid, .sim-results { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-info { text-align: left; }
  .cta-h2 { font-size: 28px; }
  .sim-card { padding: 24px 16px; }
  .rp-slide { flex: 0 0 280px; }
  .rp-cta-box { flex-direction: column; text-align: center; }
}

/* ── PROCESS SECTION ── */
.process-section { padding: 96px 48px; background: #f8fafc; }
.process-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.process-header { margin-bottom: 64px; }
.process-title-label { 
  display: block; 
  color: var(--blue); 
  font-size: 56px; 
  font-weight: 900; 
  font-style: italic; 
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.process-sub-label {
  display: block;
  color: var(--ink3);
  font-size: 18px;
  font-weight: 600;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.process-icon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 48px;
  background: #e2e8f0;
  z-index: 0;
}

.process-item:last-child .process-icon::after {
  display: none;
}

.process-item:nth-child(1) .process-icon { background: var(--vitality); }
.process-item:nth-child(2) .process-icon { background: var(--blue); }
.process-item:nth-child(3) .process-icon { background: var(--ink); }
.process-item:nth-child(4) .process-icon { background: #fff; color: var(--ink); border: 1px solid #e2e8f0; }

.process-content h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 16px;
  color: var(--ink3);
  line-height: 1.6;
  word-break: keep-all;
}

@media(max-width: 768px) {
  .process-title-label { font-size: 32px; padding: 4px 16px; }
  .process-sub-label { font-size: 14px; }
  .process-item { gap: 20px; }
  .process-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 16px; }
  .process-content h4 { font-size: 18px; }
  .process-content p { font-size: 14px; }
  .process-icon::after { height: 48px; }
}

