@charset "utf-8";

/* ==========================================================================
   비드캐치 — 01.서비스 소개 (Figma node 405:7281)
   데스크톱 전용. 모바일/태블릿 반응형 없음.
   배경(GNB · 히어로 · 푸터 등)은 뷰포트 폭 100%로 펼치고,
   내용 폭은 디자인과 동일하게 1440 기준(내용 1200 / 클로징 960)으로 중앙 고정.
   1440보다 좁은 화면은 기존과 같이 가로 스크롤.
   근거: WIKI-BC-0093(디자인 시스템 v12), WIKI-BC-0005(소개 페이지),
         WIKI-BC-0113 제약 9번 "모바일/반응형 디자인을 임의로 생성하지 않는다"
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 폰트 — Pretendard (WIKI-BC-0093 §3)
   -------------------------------------------------------------------------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

/* --------------------------------------------------------------------------
   2. 토큰 (WIKI-BC-0093 §2 · §5)
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-300: #c7d2fe;
  --brand-primary: #2563eb;
  --brand-700: #1d4ed8;

  /* Indigo */
  --indigo-50: #eef2ff;
  --indigo-400: #818cf8;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  /* Semantic */
  --success-fg: #15803d;
  --success-bg: #e2fae9;
  --category-fg: #7e22ce;
  --category-bg: #f3e8ff;

  /* Text */
  --text-heading: #1e293b;
  --text-body: #64748b;
  --text-body-strong: #475569;
  --text-value: #334155;
  --text-muted: #94a3b8;
  --text-ink-primary: #111111;
  --text-ink-secondary: #3e3f3f;

  /* Border / Surface */
  --border-subtle: #f1f5f9;
  --border-default: #e2e8f0;
  --bg-page: #f8fafc;
  --bg-subtle: #f1f5f9;
  --surface-card: #ffffff;
  --footer-bg: #0f172a;

  /* Spacing (§9) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  /* Layout — 배경은 뷰포트 100%, 내용만 중앙 고정 */
  --page-width: 1440px;      /* 디자인 기준 프레임 (최소 폭) */
  --content-width: 1200px;   /* 일반 섹션 내용 폭 */
  --closing-width: 960px;    /* 클로징 박스 내용 폭 */
  --gutter: 120px;           /* 1440 기준 좌우 여백 (최소값) */
  /* 섹션 좌우 패딩: 화면이 넓어지면 내용이 중앙 1200으로 고정됨 */
  --pad-x: max(var(--gutter), calc((100% - var(--content-width)) / 2));
  --pad-x-closing: max(240px, calc((100% - var(--closing-width)) / 2));

  /* Shadow (§5.1) */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 10px rgba(15, 23, 42, 0.08);
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-heading);
  letter-spacing: 0;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* 포커스 표시 — WIKI-BC-0093 §5.3 */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   4. 페이지 셸 — 배경 100%, 최소 폭 1440
   1440보다 좁으면 가로 스크롤(반응형 없음), 넓으면 배경만 확장
   -------------------------------------------------------------------------- */
.page {
  width: 100%;
  min-width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
}

/* 재사용 — 섹션 제목 (40px Bold) */
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-heading);
  text-align: center;
}

/* 재사용 — 필 라벨 뱃지 */
.block-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 9999px;
  background: var(--indigo-50);
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   5. GNB — Intro/GNB (485:6355)
   Menu=NoPricing — 요금 금액 미확정이라 요금 메뉴 비노출 (WIKI-BC-0005)
   -------------------------------------------------------------------------- */
.gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--pad-x);
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-default);
}

.gnb__left {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.gnb__logo {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.55px;
  color: var(--text-heading);
  white-space: nowrap;
}

.gnb__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.gnb__nav a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body-strong);
  white-space: nowrap;
}

.gnb__item {
  position: relative;
}

.gnb__dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  padding: var(--space-3) var(--space-3) calc(var(--space-3) + 12px);
  margin-top: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  z-index: 20;
  transition: opacity 0.15s ease, visibility 0s linear 0.6s;
}

.gnb__item:hover .gnb__dropdown {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.gnb__ddrow {
  display: block;
  padding: var(--space-3);
  border-radius: 12px;
}

.gnb__ddrow:hover {
  background: var(--bg-subtle);
}

.gnb__ddtitle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.gnb__dddesc {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-body);
}

.gnb__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.gnb__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  white-space: nowrap;
}

.gnb__btn--ghost {
  border: 1px solid rgba(204, 204, 204, 0.8);
  color: var(--text-ink-secondary);
}

.gnb__btn--primary {
  background: var(--brand-primary);
  color: #fff;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 9999px;
  background: var(--bg-subtle);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   6. Hero — section-hero (405:7283)
   -------------------------------------------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 104px var(--pad-x);
  background: linear-gradient(
    to top,
    #bcb7f5 0%,
    #b6bef9 13.305%,
    #f8fafc 69.188%
  );
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  overflow: hidden;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--brand-300);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  white-space: nowrap;
}

.hero__headline {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.5px;
  color: var(--text-heading);
  text-align: center;
  white-space: nowrap;
}

.hero__subcopy {
  width: 700px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: var(--text-body-strong);
  text-align: center;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 0;
  overflow: hidden;
}

/* 기본 CTA 버튼 (필형) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 9999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
  filter: drop-shadow(0 4px 7.5px rgba(0, 0, 0, 0.08));
}

/* 알림 목업 카드 3장 */
.hero__mockups {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.browser-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 486px;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background: var(--surface-card);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 41, 0.05),
    0 30px 70px -30px rgba(66, 56, 201, 0.36);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  background: var(--bg-subtle);
  overflow: hidden;
}

.browser-bar img {
  width: 9px;
  height: 9px;
}

.talk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 26px 28px 30px;
  overflow: hidden;
}

.talk__head {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  overflow: hidden;
}

.talk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.275px;
}

.talk__app {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-heading);
  white-space: nowrap;
}

.talk__time {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-muted);
  white-space: nowrap;
}

.talk__title {
  width: 100%;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.475px;
  color: var(--text-heading);
}

.meta-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  overflow: hidden;
}

.meta-row {
  display: flex;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
}

.meta-row__key {
  color: var(--text-muted);
  white-space: nowrap;
}

.meta-row__value {
  color: var(--text-value);
  white-space: nowrap;
}

/* Figma의 spacer 프레임(10px) — 키와 값 사이 고정 간격 */
.spacer {
  flex: none;
  width: 10px;
  height: 1px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

.match-tags {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding-top: 18px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.tag--success {
  background: var(--success-bg);
  color: var(--success-fg);
}

.tag--indigo {
  background: var(--indigo-50);
  color: var(--indigo-700);
}

/* --------------------------------------------------------------------------
   7. Problem — section-problem (405:7336)
   -------------------------------------------------------------------------- */
.problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 104px var(--pad-x);
  background: var(--bg-page);
}

.problem__grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 15px 0;
  overflow: hidden;
}

.problem-card {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 28px 26px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--surface-card);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.problem-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--indigo-50);
  color: var(--text-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.4px;
}

.problem-card__title {
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: var(--text-heading);
}

.problem-card__body {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   8. Flow — section-flow (405:7358)
   -------------------------------------------------------------------------- */
.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  padding: 104px var(--pad-x);
  background: var(--surface-card);
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 48px 52px;
  border-radius: 24px;
  overflow: hidden;
}

/* 안쪽 그림자 — Figma inner shadow */
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.step--01 {
  background: linear-gradient(161.41deg, #eff6ff 0%, #ffffff 100.71%);
}

.step--02 {
  background: linear-gradient(161.05deg, #eef2ff 0%, #ffffff 100%);
}

.step--03 {
  background: linear-gradient(160.62deg, #f3e8ff 0%, #ffffff 100%);
}

.step__text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 50px;
  opacity: 0.5;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  white-space: nowrap;
}

.step--01 .step__number {
  background: var(--brand-primary);
}

.step--02 .step__number {
  background: var(--indigo-600);
}

.step--03 .step__number {
  background: var(--category-fg);
}

.step__title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.6px;
  color: var(--text-heading);
}

.step__body {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body);
}

.step__gain {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  white-space: nowrap;
}

.step--01 .step__gain {
  color: var(--brand-700);
}

.step--02 .step__gain {
  color: var(--indigo-700);
}

.step--03 .step__gain {
  color: var(--category-fg);
}

.step__visual {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: var(--surface-card);
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset -1px -1px 4px rgba(0, 0, 0, 0.15);
}

.panel--gap-10 {
  gap: 10px;
}

.panel__caption {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-ink-primary);
  white-space: nowrap;
}

/* STEP 1 — 필드 행 */
.field-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-value);
}

.field-row__ok {
  font-size: 13px;
  letter-spacing: -0.325px;
  color: var(--brand-primary);
}

.field-row span {
  white-space: nowrap;
}

/* STEP 2 — 알림 버블 */
.bubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.4;
}

.bubble__when {
  width: 100%;
  font-size: 12px;
  letter-spacing: -0.3px;
  color: var(--indigo-700);
}

.bubble__title {
  width: 100%;
  font-size: 14px;
  letter-spacing: -0.35px;
  color: var(--text-heading);
}

/* STEP 3 — 역할 목록 */
.role-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}

.role-row {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 0;
  overflow: hidden;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 50%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.role-row__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-heading);
  white-space: nowrap;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 9999px;
  background: var(--category-bg);
  color: var(--category-fg);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.role-tag--free {
  background: var(--success-bg);
  color: var(--success-fg);
}

.panel__note {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Product (네 영역) — section-notes (515:3500)
   -------------------------------------------------------------------------- */
.product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 70px 0;
  background: var(--surface-card);
}

.product__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

.product__grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  padding: 15px var(--pad-x);
  overflow: hidden;
}

.product-card {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 28px 24px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--surface-card);
}

/* Figma에서 PMS 카드만 162px 고정. 나머지 3장은 stretch로 이 높이를 따른다 */
.product-card--fixed {
  height: 162px;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.product-card__body {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 0;
}

.product-card__titlerow {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.product-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: var(--text-heading);
}

.product-card__desc {
  flex: 1 0 0;
  width: 100%;
  min-height: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-body);
}

.product-card__link {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--indigo-600);
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 9999px;
  background: var(--bg-subtle);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   10. Sectors — section-sectors (416:7736)
   glow 3종은 Figma 원본 SVG를 실좌표로 절대 배치
   -------------------------------------------------------------------------- */
.sectors {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 100px var(--pad-x);
}

.sectors__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.sectors__pills {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-radius: 9999px;
  background: var(--indigo-50);
  color: var(--indigo-700);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.glow {
  position: absolute;
  pointer-events: none;
  max-width: none;
}

.glow--indigo {
  left: calc(50% - 814px); /* 1440 프레임 기준 -94px */
  top: -312px;
  width: 957px;
  height: 631px;
}

.glow--purple {
  left: calc(50% + 262px); /* 1440 프레임 기준 982px */
  top: 53px;
  width: 675px;
  height: 571px;
}

.glow--brand {
  left: calc(50% - 1040px); /* 1440 프레임 기준 -320px */
  top: -88px;
  width: 667px;
  height: 564px;
}

/* glow 위에 콘텐츠가 오도록 */
.sectors__head,
.sectors__pills,
.sectors .btn-white {
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 9999px;
  background: var(--surface-card);
  color: var(--text-body-strong);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  white-space: nowrap;
  filter: drop-shadow(0 4px 7.5px rgba(0, 0, 0, 0.08));
}

/* --------------------------------------------------------------------------
   11. FAQ — section-faq (515:3720)
   디자인 그대로 전부 펼쳐진 정적 리스트 (아코디언 아님)
   -------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 70px var(--pad-x);
  background: var(--bg-page);
}

.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  overflow: hidden;
}

.faq__head .block-label {
  font-weight: 700;
}

.faq__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0 var(--gutter); /* 부모(.faq 내용폭 1200) 기준 → 960 유지 */
  overflow: hidden;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 28px 32px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--surface-card);
  overflow: hidden;
}

.faq-item__badge {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
}

.faq-item__txt {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.faq-item__q {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--text-heading);
  white-space: nowrap;
}

.faq-item__a {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   12. Closing — section-closing (515:3766)
   -------------------------------------------------------------------------- */
.closing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 var(--pad-x-closing) 70px;
  background: var(--bg-page);
}

.closing__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 64px;
  border-radius: 28px;
  background: linear-gradient(
    to bottom,
    #d1d9fb 0%,
    #b6bef9 56.893%,
    #bcb7f5 100%
  );
  overflow: hidden;
}

.closing__headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.2px;
  color: #fff;
  text-align: center;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.closing__sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: #fff;
  opacity: 0.85;
  white-space: nowrap;
}

.closing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 9999px;
  background: var(--surface-card);
  color: var(--indigo-700);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -2px rgba(37, 99, 235, 0.28);
}

/* --------------------------------------------------------------------------
   13. Footer — Intro/Footer (515:3830)
   Archive=Off(뉴스레터 0건) · Commerce=Pending(통신판매업 신고 전)
   -------------------------------------------------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-10);
  padding: 32px var(--pad-x);
  background: var(--footer-bg);
}

.footer__columns {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  width: 100%;
  overflow: hidden;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  width: 200px;
  overflow: hidden;
}

.footer__col a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: #fff;
  white-space: nowrap;
}

.footer__bizbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--text-muted);
  overflow: hidden;
}

.biz {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  overflow: hidden;
}

.biz__key,
.biz__value {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.275px;
  color: var(--text-muted);
  white-space: nowrap;
}

.biz__value {
  padding: 0 var(--space-2);
  border-left: 1px solid #24345c;
}
