/* EOND subpage direction A: scoped so the existing homepage and hosting catalog stay unchanged. */
.pa-page {
  --pa-ink: #15171c;
  --pa-ink-2: #292d35;
  --pa-muted: #626975;
  --pa-faint: #626d7a; /* WCAG AA: --pa-paper(#f6f6f4) 대비 4.87:1 (기존 #8b929d 는 2.9:1로 미달) */
  --pa-line: #e3e5e8;
  --pa-paper: #f6f6f4;
  --pa-paper-2: #eeefec;
  --pa-white: #fff;
  --pa-orange: #ff6034;
  --pa-orange-dark: #d94720;
  --pa-orange-soft: #fff0ea;
  --pa-navy: #101722;
  --pa-green: #117551;
  --pa-green-soft: #e9f5ef;
  --pa-purple: #5d4bd9;
  --pa-purple-soft: #efedff;
  color: var(--pa-ink);
  background: var(--pa-white);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

.pa-page a { color: inherit; text-decoration: none; }
.pa-page img { display: block; max-width: 100%; }
.pa-page button,
.pa-page input,
.pa-page textarea,
.pa-page select { font: inherit; }
.pa-page :focus-visible { outline: 3px solid rgba(255, 96, 52, .3); outline-offset: 3px; }

.pa-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.pa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--pa-orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pa-eyebrow::before { width: 18px; height: 2px; content: ""; background: currentColor; }
.pa-page--dark .pa-eyebrow,
.pa-section--dark .pa-eyebrow,
.pa-hero--dark .pa-eyebrow { color: #ff9b7d; }

.pa-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  border-bottom: 1px solid var(--pa-line);
}

.pa-hero--soft { background: #faf9f7; }
.pa-hero--dark { color: var(--pa-white); border-color: rgba(255,255,255,.1); background: var(--pa-navy); }
.pa-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 68px; align-items: center; }
.pa-hero-copy { min-width: 0; }
.pa-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  color: inherit;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.pa-hero-copy .pa-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--pa-muted);
  font-size: 19px;
  line-height: 1.75;
}

.pa-hero--dark .pa-lead { color: #b5bfce; }
.pa-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.pa-btn:hover { transform: translateY(-2px); }
.pa-btn--primary { color: var(--pa-white) !important; background: var(--pa-orange); }
.pa-btn--primary:hover { background: var(--pa-orange-dark); }
.pa-btn--dark { color: var(--pa-white) !important; background: var(--pa-ink); }
.pa-btn--outline { color: var(--pa-ink) !important; border-color: var(--pa-line); background: var(--pa-white); }
.pa-btn--light { color: var(--pa-ink) !important; background: var(--pa-white); }
.pa-hero--dark .pa-btn--outline { color: var(--pa-white) !important; border-color: rgba(255,255,255,.28); background: transparent; }

.pa-hero-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--pa-line);
  border-radius: 8px;
  background: var(--pa-white);
  box-shadow: 0 22px 55px rgba(19, 23, 31, .1);
}

.pa-hero--dark .pa-hero-panel { border-color: rgba(255,255,255,.12); background: #192332; box-shadow: none; }
.pa-hero-panel h2 { margin: 0; color: inherit; font-size: 28px; line-height: 1.35; letter-spacing: 0; }
.pa-step-list { display: grid; gap: 8px; margin-top: 22px; }
.pa-step-row { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 14px 12px; border-radius: 8px; background: var(--pa-paper); }
.pa-hero--dark .pa-step-row { background: rgba(255,255,255,.055); }
.pa-step-row > b { display: grid; place-items: center; width: 32px; height: 32px; color: var(--pa-orange-dark); border-radius: 6px; background: var(--pa-orange-soft); font-size: 12px; }
.pa-step-row strong { display: block; color: inherit; font-size: 14px; }
.pa-step-row span { color: var(--pa-faint); font-size: 12px; }
.pa-hero--dark .pa-step-row span { color: #929dad; }

.pa-content-nav { padding-top: 26px; }
.pa-content-nav .un-content-nav { margin-top: 0; margin-bottom: 0; }
.pa-section { padding: 100px 0; }
.pa-section--compact { padding: 72px 0; }
.pa-section--soft { background: var(--pa-paper); }
.pa-section--dark { color: var(--pa-white); background: var(--pa-navy); }
.pa-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.pa-section-copy { max-width: 730px; }
.pa-section-head h2,
.pa-section-copy h2 {
  margin: 0;
  color: inherit;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.pa-section-head p,
.pa-section-copy > p { max-width: 640px; margin: 16px 0 0; color: var(--pa-muted); font-size: 17px; }
.pa-section--dark .pa-section-head p,
.pa-section--dark .pa-section-copy > p { color: #aeb8c7; }
.pa-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pa-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pa-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.pa-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--pa-line);
  border-radius: 8px;
  background: var(--pa-white);
}

a.pa-card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.pa-card:hover { transform: translateY(-4px); border-color: #ced2d8; box-shadow: 0 12px 32px rgba(18,21,27,.07); }
.pa-card h3 { margin: 0; color: var(--pa-ink); font-size: 22px; line-height: 1.4; letter-spacing: 0; }
.pa-card p { margin: 12px 0 0; color: var(--pa-muted); font-size: 15px; }
.pa-card .pa-text-link { margin-top: auto; }
.pa-card-num { color: var(--pa-orange-dark); font-size: 12px; font-weight: 850; }
.pa-choice-card { display: flex; min-height: 230px; flex-direction: column; }
.pa-choice-card h3 { margin-top: 46px; }
.pa-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--pa-ink); font-weight: 780; }
.pa-text-link::after { content: "\2192"; }
.pa-card .pa-text-link { margin-top: 24px; }

.pa-process-card { min-height: 220px; padding: 26px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: #192332; }
.pa-process-card b { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 42px; color: var(--pa-navy); border-radius: 6px; background: var(--pa-orange); font-size: 13px; }
.pa-process-card h3 { margin: 0; color: var(--pa-white); font-size: 20px; }
.pa-process-card p { margin: 8px 0 0; color: #aab5c5; font-size: 14px; }

.pa-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pa-chip { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; color: var(--pa-ink); border: 1px solid var(--pa-line); border-radius: 999px; background: var(--pa-white); font-size: 13px; font-weight: 720; }
.pa-chip.is-active { color: var(--pa-white); border-color: var(--pa-ink); background: var(--pa-ink); }
.pa-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 9px; color: var(--pa-ink-2); border-radius: 999px; background: var(--pa-paper-2); font-size: 12px; font-weight: 750; }
.pa-pill--orange { color: var(--pa-orange-dark); background: var(--pa-orange-soft); }
.pa-pill--green { color: var(--pa-green); background: var(--pa-green-soft); }
.pa-pill--purple { color: #4f3dc1; background: var(--pa-purple-soft); }

.pa-search { display: flex; gap: 9px; max-width: 720px; margin-top: 30px; padding: 8px; border: 1px solid var(--pa-line); border-radius: 8px; background: var(--pa-white); box-shadow: 0 8px 28px rgba(18,21,27,.06); }
.pa-search input { flex: 1; min-width: 0; min-height: 48px; padding: 0 13px; color: var(--pa-ink); border: 0; outline: 0; background: transparent; }
.pa-search input::placeholder { color: #9aa0aa; }

.pa-product-card { display: flex; min-height: 305px; flex-direction: column; }
.pa-product-card-top { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.pa-product-symbol { display: grid; place-items: center; width: 50px; height: 50px; color: var(--pa-white); border-radius: 8px; background: var(--pa-ink); font-size: 15px; font-weight: 900; }
.pa-product-card:nth-child(3n+2) .pa-product-symbol { background: var(--pa-orange); }
.pa-product-card:nth-child(3n) .pa-product-symbol { background: var(--pa-purple); }
.pa-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0; }
.pa-product-card .pa-text-link { margin-top: auto; }

.pa-featured-thumb { aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 20px; border-radius: 8px; background: var(--pa-paper-2); }
.pa-featured-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

.pa-featured {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  color: var(--pa-white);
  border-radius: 8px;
  background: var(--pa-navy);
}

.pa-featured-copy { padding: 48px; }
.pa-featured-copy h2 { margin: 20px 0 16px; color: inherit; font-size: 40px; line-height: 1.2; letter-spacing: 0; }
.pa-featured-copy p { color: #aeb8c7; }
.pa-featured-visual { display: grid; place-items: center; min-height: 390px; padding: 36px; border-left: 1px solid rgba(255,255,255,.08); background: #151f2d; }
.pa-window { width: 100%; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 8px; background: #fff; box-shadow: 0 24px 65px rgba(0,0,0,.3); }
.pa-window-bar { display: flex; align-items: center; gap: 6px; height: 36px; padding: 0 13px; border-bottom: 1px solid #e3e6eb; background: #f5f6f8; }
.pa-window-bar i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #d6d9de; }
.pa-window-body { display: grid; grid-template-columns: 88px 1fr; min-height: 225px; }
.pa-window-side { background: #171e2a; }
.pa-window-content { padding: 22px; }
.pa-skeleton { height: 11px; margin-bottom: 10px; border-radius: 4px; background: #e8ebef; }
.pa-skeleton:nth-child(2) { width: 72%; }
.pa-skeleton:nth-child(3) { width: 44%; }
.pa-skeleton-card { height: 92px; margin-top: 28px; border-radius: 6px; background: #f1f3f5; }

.pa-brief-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: start; }
.pa-brief-note { position: sticky; top: 110px; }
.pa-brief-note h2 { margin: 0; color: inherit; font-size: 38px; line-height: 1.28; letter-spacing: 0; }
.pa-brief-note > p { color: var(--pa-muted); }
.pa-request .iq-form-card { margin: 0; padding: 32px; border-color: var(--pa-line); border-radius: 8px; box-shadow: 0 8px 30px rgba(18,21,27,.05); }
.pa-request .iq-form-grid { gap: 18px; }
.pa-request .iq-label { color: var(--pa-ink); letter-spacing: 0; }
.pa-request .iq-input,
.pa-request .iq-select,
.pa-request .iq-textarea { border-radius: 8px; }
.pa-request .iq-submit-btn { border-radius: 8px; }

.pa-role-strip { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--pa-line); border-radius: 8px; }
.pa-role { min-height: 220px; padding: 28px; border-left: 1px solid var(--pa-line); background: var(--pa-white); }
.pa-role:first-child { border-left: 0; }
.pa-role small { color: var(--pa-orange-dark); font-size: 12px; font-weight: 800; }
.pa-role h3 { margin: 34px 0 8px; color: var(--pa-ink); font-size: 21px; }
.pa-role .pa-beta { display: inline-flex; align-items: center; min-height: 20px; margin: 0 2px; padding: 2px 6px; color: #4f3dc1; border-radius: 999px; background: var(--pa-purple-soft); font-size: 10px; font-weight: 850; letter-spacing: .04em; vertical-align: middle; }
.pa-role p { margin: 0; color: var(--pa-muted); font-size: 14px; }

.pa-portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pa-portfolio-card { overflow: hidden; border: 1px solid var(--pa-line); border-radius: 8px; background: var(--pa-white); transition: transform .2s ease, box-shadow .2s ease; }
.pa-portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,21,27,.07); }
.pa-portfolio-image { aspect-ratio: 16 / 11; overflow: hidden; background: #e7e9ec; }
.pa-portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pa-portfolio-card:hover img { transform: scale(1.025); }
.pa-portfolio-body { padding: 23px; }
.pa-portfolio-body h3 { margin: 12px 0 8px; color: var(--pa-ink); font-size: 21px; line-height: 1.35; letter-spacing: 0; }
.pa-portfolio-body p { margin: 0; color: var(--pa-muted); font-size: 14px; }
.pa-portfolio-empty { grid-column: 1 / -1; padding: 60px 24px; border: 1px dashed #cfd3d8; border-radius: 8px; background: var(--pa-white); text-align: center; }
.pa-portfolio-image .un-pf-fallback { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; color: rgba(17,24,39,.24); font-size: 28px; font-weight: 800; }
.pa-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 34px; }
.pa-pagination a,
.pa-pagination span { display: grid; place-items: center; min-width: 38px; min-height: 38px; border: 1px solid var(--pa-line); border-radius: 6px; background: var(--pa-white); font-size: 13px; }
.pa-pagination .is-current { color: var(--pa-white); border-color: var(--pa-ink); background: var(--pa-ink); }

.pa-flow { display: grid; grid-template-columns: repeat(4, 1fr); }
.pa-flow-step { padding: 28px; border: 1px solid var(--pa-line); background: var(--pa-white); }
.pa-flow-step:first-child { border-radius: 8px 0 0 8px; }
.pa-flow-step:last-child { border-radius: 0 8px 8px 0; }
.pa-flow-step + .pa-flow-step { border-left: 0; }
.pa-flow-step span { color: var(--pa-orange-dark); font-size: 12px; font-weight: 850; }
.pa-flow-step h3 { margin: 26px 0 8px; color: var(--pa-ink); font-size: 19px; }
.pa-flow-step p { margin: 0; color: var(--pa-muted); font-size: 13px; }
.pa-ai-visual { min-height: 420px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: #172231; }
.pa-ai-visual-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.pa-ai-visual-head strong { font-size: 16px; }
.pa-ai-status { color: #75dbad; font-size: 12px; font-weight: 800; }
.pa-ai-stack { display: grid; gap: 10px; margin-top: 26px; }
.pa-ai-node { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(255,255,255,.04); }
.pa-ai-node b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--pa-navy); border-radius: 8px; background: #ff8966; font-size: 13px; }
.pa-ai-node strong { display: block; font-size: 14px; }
.pa-ai-node span { color: #8f9bac; font-size: 12px; }

.pa-learning { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 50px; align-items: start; }
.pa-learning-label { position: sticky; top: 110px; }
.pa-learning-steps { display: grid; gap: 12px; }
.pa-learning-step { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 20px; border: 1px solid var(--pa-line); border-radius: 8px; background: var(--pa-white); }
.pa-learning-step b { display: grid; place-items: center; width: 46px; height: 46px; color: var(--pa-orange-dark); border-radius: 8px; background: var(--pa-orange-soft); }
.pa-learning-step h3 { margin: 0; color: var(--pa-ink); font-size: 18px; }
.pa-learning-step p { margin: 3px 0 0; color: var(--pa-muted); font-size: 13px; }

.pa-cta { padding: 68px 0; color: var(--pa-white); background: var(--pa-navy); }
.pa-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.pa-cta h2 { max-width: 750px; margin: 0; color: inherit; font-size: 44px; line-height: 1.22; letter-spacing: 0; }
.pa-cta p { margin: 14px 0 0; color: #aeb8c7; }

/* Hosting uses only the shared hero; all plan, billing, comparison and FAQ styles remain in hosting.css. */
.pa-hosting-hero { margin: 0; padding: 88px 0 72px; color: var(--pa-white); background: var(--pa-navy); }
.pa-hosting-hero .pa-hero-grid { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.pa-hosting-hero .pa-hero-copy h1 { font-size: 60px; }
.pa-hosting-hero .pa-hero-copy .pa-lead { color: #b5bfce; }
.pa-hosting-hero .pa-hero-panel { border-color: rgba(255,255,255,.12); background: #192332; box-shadow: none; }
.pa-hosting-hero .pa-step-row { color: var(--pa-white); background: rgba(255,255,255,.055); }
.pa-hosting-hero .pa-step-row strong { color: var(--pa-white); }
.pa-hosting-hero .pa-step-row span { color: #929dad; }

@media (max-width: 1040px) {
  .pa-hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .pa-hero-panel { max-width: 760px; }
  .pa-hero-copy h1,
  .pa-hosting-hero .pa-hero-copy h1 { font-size: 52px; }
  .pa-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pa-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pa-featured { grid-template-columns: 1fr; }
  .pa-featured-visual { min-height: 330px; border-top: 1px solid rgba(255,255,255,.08); border-left: 0; }
}

@media (max-width: 720px) {
  .pa-wrap,
  .pa-hosting-hero .pa-hero-grid { width: min(100% - 32px, 1180px); }
  .pa-hero { padding: 62px 0 54px; }
  .pa-hosting-hero { padding: 62px 0 54px; }
  .pa-hero-copy h1,
  .pa-hosting-hero .pa-hero-copy h1 { font-size: 40px; line-height: 1.18; }
  .pa-hero-copy .pa-lead { font-size: 16px; }
  .pa-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .pa-btn { padding-inline: 13px; }
  .pa-hero-panel { padding: 20px; }
  .pa-step-row { grid-template-columns: 36px 1fr; }
  .pa-step-row > span { grid-column: 2; }
  .pa-section { padding: 72px 0; }
  .pa-section--compact { padding: 54px 0; }
  .pa-section-head { display: block; margin-bottom: 28px; }
  .pa-section-head h2,
  .pa-section-copy h2 { font-size: 36px; }
  .pa-section-head p,
  .pa-section-copy > p { font-size: 15px; }
  .pa-grid-2,
  .pa-grid-3,
  .pa-grid-4,
  .pa-portfolio-grid { grid-template-columns: 1fr; }
  .pa-card { padding: 24px; }
  .pa-choice-card { min-height: 190px; }
  .pa-process-card { min-height: 180px; }
  .pa-process-card b { margin-bottom: 28px; }
  .pa-search { display: grid; }
  .pa-featured-copy { padding: 30px 24px; }
  .pa-featured-copy h2 { font-size: 34px; }
  .pa-featured-visual { min-height: 260px; padding: 22px; }
  .pa-brief-layout { grid-template-columns: 1fr; gap: 32px; }
  .pa-brief-note { position: static; }
  .pa-request .iq-form-card { padding: 22px; }
  .pa-role-strip { grid-template-columns: 1fr; }
  .pa-role { min-height: auto; border-top: 1px solid var(--pa-line); border-left: 0; }
  .pa-role:first-child { border-top: 0; }
  .pa-flow { grid-template-columns: 1fr; }
  .pa-flow-step:first-child,
  .pa-flow-step:last-child { border-radius: 0; }
  .pa-flow-step:first-child { border-radius: 8px 8px 0 0; }
  .pa-flow-step:last-child { border-radius: 0 0 8px 8px; }
  .pa-flow-step + .pa-flow-step { border-top: 0; border-left: 1px solid var(--pa-line); }
  .pa-learning { grid-template-columns: 1fr; gap: 22px; }
  .pa-learning-label { position: static; }
  .pa-learning-step { grid-template-columns: 46px 1fr; }
  .pa-learning-step .pa-text-link { grid-column: 2; }
  .pa-cta-inner { display: block; }
  .pa-cta h2 { font-size: 34px; }
  .pa-cta .pa-btn { width: 100%; margin-top: 26px; }
}

@media (max-width: 430px) {
  .pa-actions { grid-template-columns: 1fr; }
  .pa-hero-copy h1,
  .pa-hosting-hero .pa-hero-copy h1 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .pa-page *,
  .pa-page *::before,
  .pa-page *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
