/* Kidsland Landing — bright, joyful, Salesforce-inspired */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Salesforce-aligned blue */
  --sf-blue-1: #EAF3FE;
  --sf-blue-2: #CFE3FB;
  --sf-blue-3: #5BA8F2;
  --sf-blue-4: #1B96FF;
  --sf-blue-5: #0176D3;
  --sf-blue-6: #014486;
  --sf-blue-7: #032D60;
  --sf-blue-8: #001639;

  /* Joyful Kidsland accents */
  --kl-coral: #FF6B6B;
  --kl-coral-bg: #FFE5E5;
  --kl-yellow: #FFC93C;
  --kl-yellow-bg: #FFF4D1;
  --kl-mint: #06A59A;
  --kl-mint-bg: #DCF5F2;
  --kl-purple: #7C5CFF;
  --kl-purple-bg: #ECE6FF;
  --kl-orange: #FE9339;
  --kl-orange-bg: #FFE9D2;
  --kl-pink: #FF8FB1;
  --kl-pink-bg: #FFE3ED;
  --kl-green: #2E844A;
  --kl-green-bg: #E8F5EC;

  --n-0: #FFFFFF;
  --n-50: #FAFAFA;
  --n-100: #F3F3F3;
  --n-200: #ECEBEA;
  --n-300: #DDDBDA;
  --n-400: #C9C7C5;
  --n-500: #939393;
  --n-600: #706E6B;
  --n-700: #514F4D;
  --n-800: #3E3E3C;
  --n-900: #181818;

  --shadow-1: 0 1px 2px 0 rgba(0,0,0,0.04), 0 1px 3px 0 rgba(0,0,0,0.06);
  --shadow-2: 0 4px 12px -2px rgba(3,45,96,0.08), 0 2px 6px -1px rgba(3,45,96,0.05);
  --shadow-3: 0 18px 40px -10px rgba(3,45,96,0.18), 0 8px 16px -4px rgba(3,45,96,0.08);
  --shadow-pop: 0 24px 60px -12px rgba(3,45,96,0.25);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --content-max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFFFF;
  color: var(--n-900);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
a { color: var(--sf-blue-5); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ============ Layout container ============ */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Top nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--n-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--sf-blue-7);
  letter-spacing: -0.4px;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #FFE082 0 24%, transparent 25%),
    radial-gradient(circle at 75% 35%, #FF8FB1 0 22%, transparent 23%),
    radial-gradient(circle at 55% 75%, #5BA8F2 0 26%, transparent 27%),
    linear-gradient(135deg, #1B96FF, #7C5CFF);
  box-shadow: 0 4px 10px -2px rgba(27,150,255,0.45);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  filter: blur(4px);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--n-800);
  transition: background 0.15s;
}
.nav-link:hover { background: var(--sf-blue-1); color: var(--sf-blue-6); text-decoration: none; }
.nav-link.has-caret::after {
  content: "▾"; margin-left: 4px; font-size: 9px; opacity: 0.6;
}
.nav-spacer { flex: 1; }
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--sf-blue-5);
  color: white;
  box-shadow: 0 4px 12px -2px rgba(1,118,211,0.35);
}
.btn-primary:hover { background: var(--sf-blue-6); transform: translateY(-1px); box-shadow: 0 8px 18px -4px rgba(1,118,211,0.45); }

.btn-secondary {
  background: white;
  color: var(--sf-blue-6);
  border-color: var(--n-300);
}
.btn-secondary:hover { border-color: var(--sf-blue-5); color: var(--sf-blue-5); }

.btn-coral {
  background: var(--kl-coral);
  color: white;
  box-shadow: 0 4px 12px -2px rgba(255,107,107,0.45);
}
.btn-coral:hover { background: #ff5252; transform: translateY(-1px); box-shadow: 0 8px 18px -4px rgba(255,107,107,0.55); }

.btn-ghost {
  color: var(--sf-blue-6);
}
.btn-ghost:hover { background: var(--sf-blue-1); }

.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn-sm { height: 34px; padding: 0 14px; font-size: 13px; }

.btn-arrow::after {
  content: "→";
  font-weight: 500;
  transition: transform 0.18s;
  margin-left: 2px;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255,201,60,0.18) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(124,92,255,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: white;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--n-800);
  box-shadow: var(--shadow-1);
  margin-bottom: 22px;
}
.eyebrow .pill {
  background: var(--kl-coral);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.4px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--sf-blue-7);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--sf-blue-5), var(--kl-purple) 60%, var(--kl-coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 4px;
  height: 14px;
  background: var(--kl-yellow);
  z-index: -1;
  border-radius: 8px;
  opacity: 0.7;
}
.hero p.lead {
  font-size: 18px;
  color: var(--n-700);
  margin: 0 0 28px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--n-200);
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust .stat .v { font-size: 22px; font-weight: 800; color: var(--sf-blue-7); letter-spacing: -0.4px; }
.hero-trust .stat .l { font-size: 12px; color: var(--n-600); }

/* Hero illustration */
.hero-illo {
  position: relative;
  aspect-ratio: 1.05;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #E6F0FF 0%, #FDF5DA 60%, #FFE3ED 100%);
  padding: 24px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.hero-illo::before {
  content: "";
  position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,0.7) 0%, transparent 70%);
  top: -40px; right: -40px;
  filter: blur(20px);
}
.hero-illo::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.45) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  filter: blur(24px);
}

.illo-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 12px 14px;
  font-size: 12.5px;
}
.illo-mock {
  position: absolute;
  inset: 36px 36px 36px 36px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.illo-bar {
  height: 28px;
  background: var(--sf-blue-7);
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
}
.illo-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); display: inline-block; }
.illo-bar i:first-child { background: #FF6B6B; }
.illo-bar i:nth-child(2) { background: #FFC93C; }
.illo-bar i:nth-child(3) { background: #06D6A0; }
.illo-bar .ttl { color: white; font-size: 11px; font-weight: 600; margin-left: auto; opacity: 0.8; }
.illo-mock-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #FAFCFF, white);
}
.illo-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--n-200);
}
.illo-row .th {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--sf-blue-3), var(--kl-purple));
}
.illo-row .th.alt2 { background: linear-gradient(135deg, var(--kl-yellow), var(--kl-orange)); }
.illo-row .th.alt3 { background: linear-gradient(135deg, var(--kl-mint), var(--sf-blue-4)); }
.illo-row .th.alt4 { background: linear-gradient(135deg, var(--kl-pink), var(--kl-coral)); }
.illo-row .ln {
  flex: 1; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--n-200), var(--n-100));
}
.illo-row .ln.short { max-width: 60%; }
.illo-row .badge { font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-pill); }
.illo-row .badge.ok { background: var(--kl-green-bg); color: var(--kl-green); }
.illo-row .badge.ai { background: var(--kl-purple-bg); color: var(--kl-purple); }
.illo-row .badge.up { background: var(--kl-orange-bg); color: #C2520C; }

.float-card-1 {
  top: -10px; left: -16px;
  background: white;
  display: flex; align-items: center; gap: 10px;
  animation: floaty 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 10px; right: -10px;
  background: white;
  animation: floaty 5s ease-in-out infinite reverse;
}
.float-card-3 {
  top: 38%; right: -22px;
  animation: floaty 4.5s ease-in-out 0.5s infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.fc-text .h { font-weight: 700; font-size: 12.5px; line-height: 1.2; }
.fc-text .s { font-size: 10.5px; color: var(--n-600); }

/* sparkle */
.sparkle {
  position: absolute;
  font-size: 22px;
  animation: spin-slow 8s linear infinite;
  user-select: none;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ============ Logos strip ============ */
.logos {
  background: white;
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--n-100);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--n-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}
.logo-item {
  font-weight: 700;
  font-size: 15px;
  color: var(--n-500);
  letter-spacing: -0.2px;
  text-align: center;
  opacity: 0.85;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 36px;
}
.logo-item .dot {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--n-400);
}

/* ============ Section ============ */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sf-blue-5);
  margin-bottom: 12px;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--sf-blue-7);
  margin: 0 0 14px;
  line-height: 1.15;
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--n-700);
  max-width: 680px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; }
.section-head.left .section-sub { margin: 0; }

/* ============ Value props (pillars) ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: white;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); border-color: transparent; }
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.2);
}
.pillar-icon.c1 { background: linear-gradient(135deg, var(--sf-blue-4), var(--sf-blue-6)); box-shadow: 0 8px 20px -6px rgba(1,118,211,0.5); }
.pillar-icon.c2 { background: linear-gradient(135deg, var(--kl-purple), #5246C4); box-shadow: 0 8px 20px -6px rgba(124,92,255,0.5); }
.pillar-icon.c3 { background: linear-gradient(135deg, var(--kl-coral), #FF3D7F); box-shadow: 0 8px 20px -6px rgba(255,107,107,0.5); }
.pillar-icon.c4 { background: linear-gradient(135deg, var(--kl-yellow), var(--kl-orange)); box-shadow: 0 8px 20px -6px rgba(254,147,57,0.5); }
.pillar-icon.c5 { background: linear-gradient(135deg, var(--kl-mint), #1976D2); box-shadow: 0 8px 20px -6px rgba(6,165,154,0.5); }
.pillar h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--n-900);
  letter-spacing: -0.3px;
}
.pillar p {
  margin: 0;
  font-size: 14.5px;
  color: var(--n-700);
  line-height: 1.55;
}
.pillar .stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--n-200);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pillar .stat .v { font-size: 28px; font-weight: 800; color: var(--sf-blue-6); letter-spacing: -0.5px; }
.pillar .stat .l { font-size: 12px; color: var(--n-600); }

/* ============ Pipeline (How it works) ============ */
.howit {
  background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.pipe-step {
  background: white;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  transition: all 0.2s;
}
.pipe-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.pipe-num {
  position: absolute;
  top: -16px; left: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  background: var(--sf-blue-5);
  box-shadow: 0 4px 10px -2px rgba(1,118,211,0.4);
}
.pipe-step:nth-child(2) .pipe-num { background: var(--kl-purple); box-shadow: 0 4px 10px -2px rgba(124,92,255,0.4); }
.pipe-step:nth-child(3) .pipe-num { background: var(--kl-coral); box-shadow: 0 4px 10px -2px rgba(255,107,107,0.4); }
.pipe-step:nth-child(4) .pipe-num { background: var(--kl-mint); box-shadow: 0 4px 10px -2px rgba(6,165,154,0.4); }
.pipe-step .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--sf-blue-1);
  color: var(--sf-blue-6);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  margin-top: 6px;
}
.pipe-step:nth-child(2) .ico { background: var(--kl-purple-bg); color: var(--kl-purple); }
.pipe-step:nth-child(3) .ico { background: var(--kl-coral-bg); color: var(--kl-coral); }
.pipe-step:nth-child(4) .ico { background: var(--kl-mint-bg); color: var(--kl-mint); }
.pipe-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--n-900);
}
.pipe-step p {
  font-size: 13.5px;
  margin: 0;
  color: var(--n-700);
}
.pipe-step .meta {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sf-blue-5);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ============ Feature split ============ */
.fsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.fsplit.reverse { direction: rtl; }
.fsplit.reverse > * { direction: ltr; }
.fsplit-text h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 8px 0 12px;
  color: var(--sf-blue-7);
  line-height: 1.18;
  text-wrap: balance;
}
.fsplit-text p {
  font-size: 16px;
  color: var(--n-700);
  margin: 0 0 18px;
}
.fsplit-list {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.fsplit-list li {
  display: flex; gap: 10px;
  font-size: 14.5px;
  color: var(--n-800);
}
.fsplit-list li::before {
  content: "✓";
  color: var(--kl-green);
  font-weight: 800;
  background: var(--kl-green-bg);
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* product mocks */
.mock-frame {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--n-200);
  overflow: hidden;
  position: relative;
}
.mock-frame .mfh {
  height: 32px;
  background: var(--sf-blue-7);
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
}
.mock-frame .mfh i {
  width: 9px; height: 9px; border-radius: 50%;
}
.mock-frame .mfh i:nth-child(1) { background: #FF6B6B; }
.mock-frame .mfh i:nth-child(2) { background: #FFC93C; }
.mock-frame .mfh i:nth-child(3) { background: #06D6A0; }
.mock-frame .mfh .url {
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: auto;
  font-family: ui-monospace, Menlo, monospace;
  opacity: 0.85;
}
.mock-body { padding: 20px; background: #FAFCFF; }

.mock-search {
  background: white;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--n-200);
  display: flex; gap: 8px;
  margin-bottom: 14px;
}
.mock-search .input {
  flex: 1;
  background: var(--n-100);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--n-800);
  font-weight: 500;
}
.mock-search .btn-mini {
  background: var(--sf-blue-5);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 0 12px;
  border-radius: 6px;
  display: flex; align-items: center;
}
.mock-table {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--n-200);
  overflow: hidden;
}
.mock-trow {
  display: grid;
  grid-template-columns: 24px 36px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--n-100);
  font-size: 12px;
}
.mock-trow:last-child { border-bottom: none; }
.mock-trow .ck {
  width: 14px; height: 14px;
  border: 1.5px solid var(--n-400);
  border-radius: 3px;
}
.mock-trow.checked .ck { background: var(--sf-blue-5); border-color: var(--sf-blue-5); position: relative; }
.mock-trow.checked .ck::after { content: "✓"; color: white; font-size: 10px; position: absolute; left: 1px; top: -2px; font-weight: 700; }
.mock-trow .img-th {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--kl-yellow), var(--kl-orange));
}
.mock-trow:nth-child(2) .img-th { background: linear-gradient(135deg, var(--sf-blue-3), var(--kl-purple)); }
.mock-trow:nth-child(3) .img-th { background: linear-gradient(135deg, var(--kl-pink), var(--kl-coral)); }
.mock-trow:nth-child(4) .img-th { background: linear-gradient(135deg, var(--kl-mint), var(--sf-blue-4)); }
.mock-trow .nm { font-weight: 500; color: var(--n-900); }
.mock-trow .pr { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--n-900); }
.mock-trow .bd {
  font-size: 9.5px; font-weight: 700;
  padding: 2px 7px; border-radius: var(--radius-pill);
}
.mock-trow .bd.ok { background: var(--kl-green-bg); color: var(--kl-green); }
.mock-trow .bd.ai { background: var(--kl-purple-bg); color: var(--kl-purple); }
.mock-trow .bd.up { background: var(--kl-coral-bg); color: var(--kl-coral); }

/* Generated content mock */
.mock-doc {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--n-200);
  padding: 16px;
}
.mock-doc h5 { margin: 0 0 8px; font-size: 14px; color: var(--sf-blue-7); }
.mock-doc .lns { display: flex; flex-direction: column; gap: 6px; }
.mock-doc .ln { height: 7px; border-radius: 4px; background: linear-gradient(90deg, var(--n-200), var(--n-100)); }
.mock-doc .ln:nth-child(2) { width: 92%; }
.mock-doc .ln:nth-child(3) { width: 78%; }
.mock-doc .ln:nth-child(4) { width: 88%; }
.mock-doc .ln:nth-child(5) { width: 60%; }
.mock-doc .img-block {
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E0EFFF 0%, #FFE6D2 100%);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}
.mock-doc .img-block::after {
  content: "AI 자동생성 이미지";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--n-700); font-size: 11px; font-weight: 600;
}
.mock-doc .ai-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--kl-purple-bg);
  color: var(--kl-purple);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* ============ CJM (Customer Journey Map) ============ */
.cjm-section {
  background: linear-gradient(180deg, #FFF8E7 0%, #FFFFFF 70%);
}
.cjm {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--n-200);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.cjm-persona {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: linear-gradient(120deg, var(--sf-blue-7), var(--sf-blue-6));
  color: white;
}
.cjm-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kl-yellow), var(--kl-orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  border: 3px solid white;
}
.cjm-persona .who { display: flex; flex-direction: column; gap: 2px; }
.cjm-persona .who h4 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.3px; }
.cjm-persona .who p { font-size: 13px; opacity: 0.85; margin: 0; }
.cjm-persona .quote {
  margin-left: auto;
  font-style: italic;
  font-size: 14px;
  max-width: 460px;
  text-align: right;
  opacity: 0.95;
  border-left: 3px solid var(--kl-yellow);
  padding-left: 14px;
}

.cjm-grid {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
  border-top: 1px solid var(--n-200);
}
.cjm-row { display: contents; }
.cjm-cell {
  padding: 14px 16px;
  border-bottom: 1px solid var(--n-100);
  border-right: 1px solid var(--n-100);
  font-size: 13px;
}
.cjm-cell:last-child { border-right: none; }
.cjm-row-head {
  font-weight: 700;
  background: var(--n-50);
  color: var(--sf-blue-7);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.cjm-stage-cell {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--n-200);
  border-right: 1px solid var(--n-100);
  position: relative;
}
.cjm-stage-cell:last-child { border-right: none; }
.cjm-stage {
  font-weight: 700;
  font-size: 13px;
  color: var(--n-900);
}
.cjm-stage-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.cjm-stage-cell:nth-child(2) .cjm-stage-num { background: var(--sf-blue-5); }
.cjm-stage-cell:nth-child(3) .cjm-stage-num { background: var(--kl-purple); }
.cjm-stage-cell:nth-child(4) .cjm-stage-num { background: var(--kl-coral); }
.cjm-stage-cell:nth-child(5) .cjm-stage-num { background: var(--kl-orange); }
.cjm-stage-cell:nth-child(6) .cjm-stage-num { background: var(--kl-mint); }

.cjm-emotion {
  font-size: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cjm-emotion .lbl { font-size: 11px; color: var(--n-600); font-weight: 600; }

.cjm-think {
  font-size: 12.5px;
  color: var(--n-700);
  line-height: 1.5;
  font-style: italic;
}
.cjm-touch {
  font-size: 12px;
  color: var(--n-800);
  font-weight: 500;
}
.cjm-touch span {
  display: inline-block;
  background: var(--sf-blue-1);
  color: var(--sf-blue-6);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  margin: 2px 3px 2px 0;
}
.cjm-pain {
  font-size: 12.5px;
  color: var(--kl-coral);
  font-weight: 500;
  background: var(--kl-coral-bg);
  padding: 6px 10px;
  border-radius: 6px;
}
.cjm-gain {
  font-size: 12.5px;
  color: var(--kl-green);
  font-weight: 600;
  background: var(--kl-green-bg);
  padding: 6px 10px;
  border-radius: 6px;
}

/* CJM line graph (emotion curve) */
.cjm-curve-wrap {
  padding: 24px 28px 16px;
  background: linear-gradient(180deg, #FAFCFF, white);
}
.cjm-curve-wrap h5 {
  font-size: 13px; margin: 0 0 12px; color: var(--sf-blue-7);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cjm-curve { width: 100%; height: 90px; }

/* ============ Testimonials ============ */
.testi-section { background: var(--sf-blue-7); color: white; position: relative; overflow: hidden; }
.testi-section::before {
  content: ""; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.3) 0%, transparent 70%);
  top: -200px; left: -100px;
  filter: blur(40px);
}
.testi-section::after {
  content: ""; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,0.25) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  filter: blur(40px);
}
.testi-section .container { position: relative; }
.testi-section .section-title { color: white; }
.testi-section .section-sub { color: rgba(255,255,255,0.8); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all 0.2s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.testi-card .stars { color: var(--kl-yellow); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card blockquote {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: white;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-author .nm { font-weight: 700; font-size: 13.5px; }
.testi-author .ro { font-size: 11.5px; opacity: 0.7; }

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 2px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.price-card.featured {
  border-color: var(--sf-blue-5);
  box-shadow: 0 24px 50px -12px rgba(1,118,211,0.25);
  background: linear-gradient(180deg, white 0%, #F7FBFF 100%);
  transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-9px); box-shadow: 0 32px 60px -12px rgba(1,118,211,0.35); }
.price-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--kl-coral);
  color: white;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 14px -4px rgba(255,107,107,0.5);
}
.price-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--sf-blue-5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.price-card.featured .price-name { color: var(--kl-coral); }
.price-tagline {
  font-size: 13px;
  color: var(--n-700);
  margin-bottom: 18px;
  min-height: 36px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-size: 44px;
  font-weight: 800;
  color: var(--n-900);
  letter-spacing: -1.4px;
  line-height: 1;
}
.price-amount .unit { font-size: 14px; color: var(--n-600); font-weight: 500; }
.price-strike {
  font-size: 13px;
  color: var(--n-500);
  text-decoration: line-through;
  margin-bottom: 18px;
}
.price-features {
  list-style: none;
  padding: 0; margin: 18px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-features li {
  display: flex; gap: 10px;
  font-size: 13.5px;
  color: var(--n-800);
  align-items: flex-start;
}
.price-features li::before {
  content: "✓";
  color: var(--kl-green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li.muted { color: var(--n-500); }
.price-features li.muted::before { content: "—"; color: var(--n-400); }

/* ============ FAQ ============ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--n-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open { border-color: var(--sf-blue-5); box-shadow: var(--shadow-1); }
.faq-q {
  padding: 18px 22px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--sf-blue-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-q .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sf-blue-1);
  color: var(--sf-blue-5);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--sf-blue-5); color: white; }
.faq-a {
  padding: 0 22px 20px;
  color: var(--n-700);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ Final CTA ============ */
.cta-final {
  background:
    radial-gradient(ellipse at top left, rgba(255,201,60,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255,107,107,0.35) 0%, transparent 50%),
    linear-gradient(135deg, var(--sf-blue-7) 0%, var(--sf-blue-6) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}
.cta-final::before {
  content: "✨";
  position: absolute;
  top: 30px; left: 60px;
  font-size: 32px;
  opacity: 0.7;
  animation: floaty 4s ease-in-out infinite;
}
.cta-final::after {
  content: "🎉";
  position: absolute;
  bottom: 40px; right: 60px;
  font-size: 36px;
  opacity: 0.7;
  animation: floaty 5s ease-in-out infinite reverse;
}
.cta-final h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 14px;
  line-height: 1.15;
}
.cta-final p {
  font-size: 17px;
  margin: 0 auto 32px;
  max-width: 560px;
  opacity: 0.92;
}
.cta-final .btn-primary { background: white; color: var(--sf-blue-6); }
.cta-final .btn-primary:hover { background: var(--kl-yellow); color: var(--sf-blue-7); }
.cta-final .btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ============ Footer ============ */
footer {
  background: var(--sf-blue-8);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 32px;
}
.footer-grid h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
  color: white;
  margin: 0 0 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: white; text-decoration: none; }
.footer .brand { color: white; }
.footer-tag {
  font-size: 13px;
  margin: 12px 0 16px;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ============ Modal ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3,45,96,0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-pop);
  transform: translateY(8px);
  transition: transform 0.25s;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--n-200);
  display: flex;
  align-items: center;
}
.modal-head h3 { margin: 0; font-size: 19px; font-weight: 700; color: var(--sf-blue-7); }
.modal-head .close {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--n-700);
}
.modal-head .close:hover { background: var(--n-100); }
.modal-body { padding: 26px; }
.modal-foot { padding: 18px 26px; border-top: 1px solid var(--n-200); display: flex; gap: 10px; justify-content: flex-end; }

/* form */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--n-800); }
.form-row label .req { color: var(--kl-coral); margin-left: 3px; }
.form-row input, .form-row select, .form-row textarea {
  height: 44px;
  border: 1.5px solid var(--n-300);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  background: white;
  outline: none;
  transition: all 0.15s;
}
.form-row textarea { height: auto; padding: 12px 14px; min-height: 90px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--sf-blue-5);
  box-shadow: 0 0 0 3px rgba(1,118,211,0.15);
}
.form-row .help { font-size: 12px; color: var(--n-600); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.plan-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.plan-opt {
  border: 2px solid var(--n-200);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
}
.plan-opt:hover { border-color: var(--sf-blue-3); }
.plan-opt.active { border-color: var(--sf-blue-5); background: var(--sf-blue-1); }
.plan-opt .nm { font-weight: 700; font-size: 13px; color: var(--sf-blue-7); }
.plan-opt .pr { font-size: 14px; font-weight: 800; color: var(--n-900); margin-top: 4px; }
.plan-opt .un { font-size: 11px; color: var(--n-600); }

.pay-summary {
  background: var(--sf-blue-1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.pay-summary .row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; }
.pay-summary .row.total { border-top: 1px dashed var(--n-300); margin-top: 8px; padding-top: 10px; font-size: 16px; font-weight: 800; color: var(--sf-blue-7); }

.pay-method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.pay-method .opt {
  border: 2px solid var(--n-200);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--n-800);
  cursor: pointer;
  transition: all 0.15s;
}
.pay-method .opt:hover { border-color: var(--sf-blue-3); }
.pay-method .opt.active { border-color: var(--sf-blue-5); background: var(--sf-blue-1); color: var(--sf-blue-6); }
.pay-method .opt .ic { font-size: 18px; display: block; margin-bottom: 3px; }

/* Toast */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  background: var(--sf-blue-7);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-3);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.success { background: var(--kl-green); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 38px; }
  section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .pillars { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .fsplit { grid-template-columns: 1fr; gap: 28px; }
  .cjm-grid { grid-template-columns: 1fr; }
  .cjm-cell { border-right: none; }
  .cjm-row-head { background: var(--sf-blue-7); color: white; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-final { padding: 44px 28px; }
  .cta-final h2 { font-size: 30px; }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
}
