/* ── CSS Variables (scoped to page wrapper) ── */
.japanlounge-page {
  --blue-50: #f2f9ff;
  --blue-100: #bcdcff;
  --blue-200: #8fc5ff;
  --blue-400: #237bd9;
  --blue-500: #005cbf;
  --blue-800: #003166;
  --cyan-100: #d3ffff;
  --cyan-500: #1adfdf;
  --cyan-600: #11cbcb;
  --cyan-700: #0ea6a6;
  --cyan-800: #0b8080;
  --yellow-100: #fff3c5;
  --yellow-200: #ffe789;
  --yellow-300: #ffe064;
  --yellow-400: #ffd942;
  --yellow-500: #fdd01c;
  --yellow-600: #f3c50e;
  --yellow-700: #e0b507;
  --yellow-800: #cea500;
  --red-100: #ffdcdc;
  --red-500: #ee5f5f;
  --red-600: #e24545;
  --red-800: #c21313;
  --orange-500: #ff8800;
  --green-600: #43a047;
  --gray-50: #fafafa;
  --gray-60: #f1f1f1;
  --gray-100: #e0e0e0;
  --gray-200: #c7c7c7;
  --gray-400: #949494;
  --gray-500: #7a7a7a;
  --gray-700: #464646;
  --gray-800: #333333;
  --blue-gray-50: #f9fafc;

  --brand-blue: var(--blue-500);
  --brand-blue-dark: var(--blue-800);
  --brand-cyan: var(--cyan-500);
  --brand-cyan-dark: var(--cyan-700);

  --teal: var(--cyan-700);
  --teal-dark: var(--cyan-800);
  --teal-light: var(--cyan-100);
  --teal-50: var(--blue-50);
  --blue: var(--blue-500);
  --blue-dark: var(--blue-800);
  --blue-light: var(--blue-50);

  --ink: var(--gray-800);
  --ink-1: var(--gray-800);
  --ink-2: var(--gray-700);
  --ink-3: var(--gray-500);
  --ink-4: var(--gray-400);
  --ink-5: var(--gray-200);

  --line: var(--gray-100);
  --line-soft: var(--gray-60);

  --bg: #ffffff;
  --bg-soft: var(--blue-gray-50);
  --bg-paper: var(--gray-50);

  --beige: var(--yellow-100);
  --beige-2: var(--yellow-200);
  --yellow-soft: var(--yellow-100);
  --yellow: var(--yellow-500);

  --jp-red: var(--red-600);
  --warn: var(--orange-500);
  --success: var(--green-600);
  --error: var(--red-600);

  font-family: "Pretendard", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  color: var(--ink-1);
  background: white;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Compensate for the fixed main GNB header */
.japanlounge-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 106px;
}
@media (max-width: 1130px) {
  .japanlounge-page { padding-top: 56px; }
}

.japanlounge-page *,
.japanlounge-page *::before,
.japanlounge-page *::after {
  box-sizing: border-box;
}

.japanlounge-page .layout {
  max-width: 1130px;
}

.japanlounge-page h1,
.japanlounge-page h2,
.japanlounge-page h3,
.japanlounge-page h4 {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

/* ── Screen reader utility ── */
.japanlounge-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Buttons ── */
.japanlounge-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.japanlounge-page .btn:hover { background: var(--bg-soft); }
.japanlounge-page .btn .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.japanlounge-page .btn .icon .path { fill: currentColor; }
.japanlounge-page .btn-primary {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}
.japanlounge-page .btn-primary:hover { background: var(--brand-blue-dark); border-color: var(--brand-blue-dark); }
.japanlounge-page .btn-teal {
  background: var(--brand-cyan-dark);
  color: white;
  border-color: var(--brand-cyan-dark);
}
.japanlounge-page .btn-teal:hover { background: var(--brand-blue-dark); border-color: var(--brand-blue-dark); }
.japanlounge-page .btn-kakao {
  background: #FEE500;
  color: #191919;
  border-color: #FEE500;
}
.japanlounge-page .btn-kakao:hover {
  background: #F4DC00;
  color: #191919;
  border-color: #F4DC00;
}
.japanlounge-page .btn-ghost {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.japanlounge-page .btn-ghost:hover { background: var(--bg-soft); }
.japanlounge-page .btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.japanlounge-page .btn-sm { padding: 7px 12px; font-size: 12.5px; border-radius: 6px; }

/* ── Hero ── */
.japanlounge-page .hero {
  background: var(--beige);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.japanlounge-page .hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.japanlounge-page .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--ink-5);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.japanlounge-page .hero h1 {
  font-size: 48px;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.japanlounge-page .hero h1 .accent { color: var(--brand-cyan-dark); }
.japanlounge-page .hero .lede {
  font-size: 16.5px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
}
.japanlounge-page .hero .checks {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.japanlounge-page .hero .checks span { display: flex; align-items: center; gap: 6px; }
.japanlounge-page .hero .checks svg { color: var(--brand-cyan-dark); }

/* hero form card */
.japanlounge-page .hero-form {
  background: white;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 1px 2px rgba(51,51,51,0.04), 0 8px 32px rgba(51,51,51,0.08);
  border: 1px solid var(--line);
}
.japanlounge-page .hero-form .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.japanlounge-page .hero-form .head > div { min-width: 0; }
.japanlounge-page .hero-form h3 { font-size: 19px; margin-bottom: 4px; }
.japanlounge-page .hero-form .head .sub { font-size: 12.5px; color: var(--ink-3); }
.japanlounge-page .hero-form .head .badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 0 auto;
}
.japanlounge-page .hero-form .row { display: flex; flex-direction: column; gap: 12px; }

/* ── Form fields ── */
.japanlounge-page .field { display: flex; flex-direction: column; gap: 6px; }
.japanlounge-page .field-label,
.japanlounge-page .field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.japanlounge-page .field label .req,
.japanlounge-page .field-label .req { color: var(--jp-red); }
.japanlounge-page .field label .opt,
.japanlounge-page .field-label .opt {
  font-size: 11px;
  background: var(--bg-soft);
  color: var(--ink-3);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 4px;
}
.japanlounge-page .field-label .privacy-link {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}
.japanlounge-page .form-field > .field-label + .radio-list,
.japanlounge-page .form-field > .field-label + .segmented,
.japanlounge-page .form-field > .field-label + .check-chips {
  margin-top: 8px;
}
.japanlounge-page .field input,
.japanlounge-page .field select,
.japanlounge-page .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .field input::placeholder,
.japanlounge-page .field textarea::placeholder { color: var(--ink-4); }
.japanlounge-page .field input:focus,
.japanlounge-page .field select:focus,
.japanlounge-page .field textarea:focus {
  border-color: var(--teal);
}
/* direct inputs in form-field (not wrapped in .field div) */
.japanlounge-page .form-field > input[type="text"],
.japanlounge-page .form-field > input[type="email"],
.japanlounge-page .form-field > input[type="tel"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .form-field > input:focus {
  border-color: var(--teal);
}
.japanlounge-page .help {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.japanlounge-page .error-text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--error);
  padding-left: 0;
  margin: 4px 0 0 0;
}
.japanlounge-page .err { color: var(--error); font-size: 11.5px; margin-top: 2px; display: none; }

/* segmented (radio buttons styled as chips) */
.japanlounge-page .segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.japanlounge-page .segmented .seg {
  flex: 1;
  min-width: fit-content;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.japanlounge-page .segmented .seg:hover { background: var(--bg-soft); }
.japanlounge-page .segmented .seg.on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  font-weight: 600;
}

/* radio list (vertical) */
.japanlounge-page .radio-list { display: flex; flex-direction: column; gap: 8px; }
.japanlounge-page .radio-list .row,
.japanlounge-page .radio-list label.row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-2);
  background: white;
  transition: all 0.12s;
  margin: 0;
}
.japanlounge-page .radio-list .row:hover,
.japanlounge-page .radio-list label.row:hover { background: var(--bg-soft); border-color: var(--ink-5); }
.japanlounge-page .radio-list .row.on,
.japanlounge-page .radio-list label.row.on { background: var(--teal-50); border-color: var(--teal); color: var(--ink); }
.japanlounge-page .radio-list .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-5);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.12s;
}
.japanlounge-page .radio-list .row.on .dot,
.japanlounge-page .radio-list label.row.on .dot {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 3px white;
}

/* check chips (multi checkbox) */
.japanlounge-page .check-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.japanlounge-page .check-chips .chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  background: white;
  font-weight: 500;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.japanlounge-page .check-chips .chip:hover { background: var(--bg-soft); }
.japanlounge-page .check-chips .chip.on {
  background: var(--teal-50);
  color: var(--ink);
  border-color: var(--teal);
  font-weight: 500;
}
.japanlounge-page .check-chips .chip.on::before {
  content: none;
}

/* select with caret */
.japanlounge-page .select-wrap { position: relative; }
.japanlounge-page .select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.japanlounge-page .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 36px 11px 13px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .select-wrap select:focus {
  border-color: var(--teal);
}

/* ── Section frame ── */
.japanlounge-page .section {
  padding: 88px 0;
  border-bottom: none;
}
.japanlounge-page .section-services { padding-bottom: 64px; }
.japanlounge-page .section .hd { text-align: center; margin-bottom: 48px; }
.japanlounge-page .section .hd .eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.japanlounge-page .section .hd h2 {
  font-size: 36px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.japanlounge-page .section .hd p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Service cards ── */
.japanlounge-page .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.japanlounge-page .service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  background: white;
  transition: all 0.2s;
}
.japanlounge-page .service-card:hover {
  border-color: var(--ink-5);
  box-shadow: 0 4px 20px rgba(51,51,51,0.04);
  transform: translateY(-2px);
}
.japanlounge-page .service-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.japanlounge-page .service-card.learning-card .ic {
  background: var(--yellow-soft);
  color: var(--yellow-800);
}
.japanlounge-page .service-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 17px;
  margin-bottom: 8px;
}
.japanlounge-page .service-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; margin: 0; }
.japanlounge-page .service-card .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.japanlounge-page .service-card .service-card-link:link,
.japanlounge-page .service-card .service-card-link:visited {
  color: var(--brand-blue);
}
.japanlounge-page .service-card .service-card-link:hover,
.japanlounge-page .service-card .service-card-link:active,
.japanlounge-page .service-card .service-card-link:focus {
  color: var(--brand-blue-dark);
  text-decoration: none;
}
.japanlounge-page .service-card .service-card-link .icon {
  width: 13px;
  height: 13px;
  margin-top: 1px;
}
.japanlounge-page .service-card .service-card-link .path {
  fill: currentColor;
}

/* ── Job cards ── */
.japanlounge-page .jobs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.japanlounge-page .jobs-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.japanlounge-page .jobs-filters .filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  background: white;
  cursor: default;
  font-weight: 500;
}
.japanlounge-page .jobs-filters .filter.on {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.japanlounge-page .jobs-toolbar .meta { font-size: 13px; color: var(--ink-3); }

.japanlounge-page .jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.japanlounge-page .jobs-grid.jobs-grid--single {
  grid-template-columns: minmax(0, calc((100% - 36px) / 3));
}
.japanlounge-page .jobs-grid.jobs-grid--double {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 36px) / 3)));
}
.japanlounge-page .job-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  text-decoration: none;
  color: inherit;
  min-height: 230px;
}
.japanlounge-page .job-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(51,51,51,0.06);
  transform: translateY(-2px);
}
.japanlounge-page .job-card .head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.japanlounge-page .job-card .logo {
  position: relative;
  flex: 0 0 96px;
  width: 96px;
  height: 48px;
  background: #fff;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.04em;
  overflow: hidden;
}
.japanlounge-page .job-card .logo .img {
  position: absolute;
  max-width: 90%;
  width: auto;
  height: 90%;
  object-fit: contain;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.japanlounge-page .job-card .co {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.japanlounge-page .job-card .co .name,
.japanlounge-page .job-card .co .where {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .co .name { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.japanlounge-page .job-card .co .where { font-size: 11.5px; color: var(--ink-4); }
.japanlounge-page .job-card .title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  height: 45px;
}
.japanlounge-page .job-card .title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.35;
  height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .language-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  height: 24px;
  overflow: hidden;
}
.japanlounge-page .job-card .tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 24px;
  font-size: 11.5px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .tag.jp { background: var(--teal-light); color: var(--teal-dark); }
.japanlounge-page .job-card .tag.hot { background: var(--red-100); color: var(--jp-red); font-weight: 700; }
.japanlounge-page .job-card .meta-row {
  display: block;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.japanlounge-page .job-card .meta-row .deadline {
  margin: 0;
  min-width: 0;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .meta-row .deadline span.--today {
  color: var(--red-500);
  font-weight: 700;
}
.japanlounge-page .job-card .meta-row .deadline span.--tomorrow {
  color: var(--orange-500);
  font-weight: 700;
}
.japanlounge-page .job-card .meta-row .deadline span.--expired {
  color: var(--gray-400);
}
.japanlounge-page .job-card .new-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--jp-red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.japanlounge-page .jobs-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 12px;
}

/* ── Stats stripe ── */
.japanlounge-page .stats-stripe {
  background: var(--ink);
  color: white;
  padding: 48px 0;
  text-align: center;
}
.japanlounge-page .stats-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}
.japanlounge-page .stats-stripe .stat .num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 4px;
}
.japanlounge-page .stats-stripe .stat .num .accent { color: var(--cyan-700); }
.japanlounge-page .stats-stripe .stat .lbl {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}

/* ── Process ── */
.japanlounge-page .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.japanlounge-page .process-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.japanlounge-page .process-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.japanlounge-page .process-card h4 { font-size: 18px; margin-bottom: 10px; }
.japanlounge-page .process-card p { font-size: 13.5px; color: var(--ink-3); margin: 0; line-height: 1.6; }

/* ── Japanese learning service ── */
.japanlounge-page .learning-section {
  padding: 0 0 88px;
}
.japanlounge-page .learning-cta {
  margin: 0;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF7ED 100%);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #FED7AA;
  box-shadow: 0 18px 40px rgba(23,32,51,0.06), 0 12px 30px rgba(194,65,12,0.08);
}
.japanlounge-page .learning-cta .left .tag {
  display: inline-block;
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FED7AA;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.japanlounge-page .learning-cta .left h3 {
  color: #172033;
  font-size: 24px;
  margin-bottom: 6px;
}
.japanlounge-page .learning-cta .left h3 .brand-technikaru {
  color: #9A3412;
  font-weight: 800;
}
.japanlounge-page .learning-cta .left p { font-size: 14px; color: #536071; margin: 0; }
.japanlounge-page .learning-cta .btn {
  background: #C2410C;
  border-color: #C2410C;
  color: white;
  box-shadow: 0 12px 24px rgba(194,65,12,0.16);
}
.japanlounge-page .learning-cta .btn:hover {
  background: #9A3412;
  border-color: #9A3412;
  color: white;
  box-shadow: 0 14px 30px rgba(154,52,18,0.2);
}

/* ── FAQ ── */
.japanlounge-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.japanlounge-page .faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.japanlounge-page .faq-item .q,
.japanlounge-page .faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.japanlounge-page .faq-item .q .qmark,
.japanlounge-page .faq-item .faq-q .qmark {
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-right: 10px;
  flex-shrink: 0;
}
.japanlounge-page .faq-item .q .left,
.japanlounge-page .faq-item .faq-q .left { display: flex; align-items: center; flex: 1; }
.japanlounge-page .faq-item .q .caret,
.japanlounge-page .faq-item .faq-q .caret {
  color: var(--ink-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.japanlounge-page .faq-item.open { border-color: var(--ink-5); }
.japanlounge-page .faq-item.open .a { display: block; }
.japanlounge-page .faq-item .a {
  display: none;
  padding: 16px 22px 20px 54px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  border-top: 1px solid var(--line-soft);
}

/* ── CTA strip ── */
.japanlounge-page .cta-strip {
  background: var(--cyan-700);
  color: white;
  padding: 56px 0;
}
.japanlounge-page .cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.japanlounge-page .cta-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.japanlounge-page .cta-actions .btn {
  flex: 0 0 190px;
  min-width: 190px;
}
.japanlounge-page .cta-strip h3 { font-size: 28px; color: white; margin-bottom: 6px; letter-spacing: -0.03em; }
.japanlounge-page .cta-strip p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }
.japanlounge-page .cta-strip .btn-primary {
  background: white;
  color: var(--cyan-800);
  border-color: white;
  box-shadow: 0 12px 26px rgba(11,128,128,0.26);
}
.japanlounge-page .cta-strip .btn-primary:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: 0 14px 30px rgba(51,51,51,0.28);
}
.japanlounge-page .cta-strip .btn-kakao {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.58);
}
.japanlounge-page .cta-strip .btn-kakao:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: white;
}

/* ── Form page ── */
.japanlounge-page .formpage-wrap {
  background: var(--bg-soft);
  padding: 40px 0 64px;
}
.japanlounge-page .formpage {
  max-width: 760px;
  margin: 0 auto;
}
.japanlounge-page .formpage .crumbs {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.japanlounge-page .formpage .crumbs a { color: var(--ink-3); text-decoration: none; }
.japanlounge-page .formpage .crumbs a:hover { color: var(--ink-1); }
.japanlounge-page .formpage .crumbs .sep { margin: 0 6px; color: var(--ink-4); }
.japanlounge-page .formpage h1 { font-size: 32px; letter-spacing: -0.03em; margin-bottom: 8px; }
.japanlounge-page .formpage .lede { font-size: 15px; color: var(--ink-3); margin-bottom: 28px; }
.japanlounge-page .form-alert {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal-50);
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.5;
}
.japanlounge-page .form-alert-error {
  border-color: var(--error);
  background: var(--red-100);
  color: var(--red-800);
}

/* Form progress */
.japanlounge-page .form-progress-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 24px;
}
.japanlounge-page .form-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-3);
}
.japanlounge-page .form-progress-head #js-progress-top {
  color: var(--ink-1);
  white-space: nowrap;
}
.japanlounge-page .form-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}
.japanlounge-page .form-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 0.2s ease;
}

/* Form card (section wrapper) */
.japanlounge-page .form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 36px;
}
.japanlounge-page .form-card .hd { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.japanlounge-page .form-card .hd h3 { font-size: 20px; margin-bottom: 4px; }
.japanlounge-page .form-card .hd p { font-size: 13.5px; color: var(--ink-3); margin: 0; }

.japanlounge-page .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.japanlounge-page .form-grid .full { grid-column: 1 / -1; }

/* Form footer (nav buttons) */
.japanlounge-page .form-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.japanlounge-page .form-foot-left {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}
.japanlounge-page .form-foot-right {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.japanlounge-page .form-foot-progress {
  min-width: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
}

/* Consent rows */
.japanlounge-page .consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.japanlounge-page .consent-row:last-child { border-bottom: none; }
.japanlounge-page .consent-row .cb {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ink-5);
  border-radius: 4px;
  background: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 1px;
  transition: all 0.15s;
}
.japanlounge-page .consent-row.on .cb {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.japanlounge-page .consent-row.on .cb::after { content: "✓"; font-weight: 800; font-size: 12px; }
.japanlounge-page .consent-row .body { flex: 1; font-size: 13.5px; color: var(--ink-2); }
.japanlounge-page .consent-row .body label { cursor: pointer; }
.japanlounge-page .consent-row .body .req { color: var(--jp-red); font-weight: 700; margin-right: 4px; }
.japanlounge-page .consent-row .body .opt { color: var(--ink-3); margin-right: 4px; font-weight: 500; }
.japanlounge-page .consent-row .view { font-size: 12px; color: var(--ink-3); text-decoration: underline; cursor: default; }

/* ── Done page ── */
.japanlounge-page .done-page {
  background: var(--bg-soft);
  padding: 80px 0;
  text-align: center;
  min-height: 600px;
}
.japanlounge-page .done-page .seal {
  width: 88px;
  height: 88px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(14,166,166,0.28);
}
.japanlounge-page .done-page h1 { font-size: 36px; letter-spacing: -0.03em; margin-bottom: 12px; }
.japanlounge-page .done-page .lede {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.japanlounge-page .done-page .summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
}
.japanlounge-page .done-page .summary .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--line);
}
.japanlounge-page .done-page .summary .row:last-child { border-bottom: none; }
.japanlounge-page .done-page .summary .row .k { color: var(--ink-3); }
.japanlounge-page .done-page .summary .row .v { color: var(--ink-1); font-weight: 600; }

.japanlounge-page .done-page .next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 36px auto 28px;
}
.japanlounge-page .done-page .next-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
}
.japanlounge-page .done-page .next-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}
.japanlounge-page .done-page .next-card h4 { font-size: 15px; margin-bottom: 4px; }
.japanlounge-page .done-page .next-card p { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.5; }
.japanlounge-page .done-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 520px;
}
.japanlounge-page .done-actions .btn {
  flex: 1 1 0;
  min-width: 0;
}
.japanlounge-page .done-actions .done-action-text { white-space: nowrap; }

/* ── Utility ── */
.japanlounge-page .muted { color: var(--ink-3); }
.japanlounge-page .divider { height: 1px; background: var(--line); margin: 24px 0; }

/* ── Responsive ── */
@media (max-width: 1130px) {
  .japanlounge-page .layout {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .japanlounge-page .hero {
    padding: 40px 0;
  }
  .japanlounge-page .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .japanlounge-page .hero h1 { font-size: 30px; }
  .japanlounge-page .section { padding: 56px 0; }
  .japanlounge-page .section-services { padding-bottom: 56px; }
  .japanlounge-page .stats-stripe {
    padding: 32px 0;
  }
  .japanlounge-page .stats-layout { gap: 20px; }
  .japanlounge-page .learning-section { padding: 0 0 56px; }
  .japanlounge-page .learning-cta {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .japanlounge-page .cta-strip {
    padding: 40px 0;
  }
  .japanlounge-page .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .japanlounge-page .cta-actions {
    justify-content: center;
  }
  .japanlounge-page .cta-actions .btn {
    flex: 1 1 190px;
  }
  .japanlounge-page .formpage-wrap { padding: 24px 0 48px; }
  .japanlounge-page .form-card { padding: 24px 20px; }
  .japanlounge-page .form-foot {
    gap: 8px;
    padding-top: 14px;
  }
  .japanlounge-page .form-foot .btn {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .japanlounge-page .done-page { padding: 48px 0; }
  .japanlounge-page .done-page .next-grid { grid-template-columns: 1fr; }
  .japanlounge-page .done-actions { gap: 8px; }
  .japanlounge-page .done-actions .btn {
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    line-height: 1.35;
    text-align: center;
  }
  .japanlounge-page .section .hd h2 { font-size: 28px; }
}

@media (max-width: 1130px) {
  .japanlounge-page .jobs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
