﻿/* ═══════════════════════════════════════════════════
   PRODUCT COMMON — report / eform / formplus 공통
═══════════════════════════════════════════════════ */

.page-product #sub-main { padding-top: 0; }

/* ── 섹션 레이블 ── */
.prod-label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-lg);
  text-transform: uppercase;
  color: var(--us-sky-500);
  margin-bottom: 14px;
}

/* ── 내부 컨테이너 ── */
.prod-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}


/* ── HERO ── */
.prod-hero {
  min-height: 100svh;
  background: url('../imgs/product/hero-bg-01.png') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.prod-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  background: url('../imgs/product/hero-bg-02.webp') right top / contain no-repeat;
  pointer-events: none;
}

.prod-hero::after { display: none; }

/* hero-inner: 3-row flex column, fills full hero height */
.prod-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  border-bottom: 1.5px solid var(--us-blue-700);
}

/* ── Row 1: 타이틀 + 비주얼 (좌우 나란히) ── */
.prod-hero-row-1 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.prod-hero-title {
  flex: 0 0 55%;
  font-size: clamp(44px, 7.64vw, 110px);
  font-weight: 500;
  color: var(--us-ink-000);
  line-height: 1.05;
  letter-spacing: var(--ls);
  margin: 0 0 10rem 0;
}

/* ── Row 2: 키커 + 설명 ── */
.prod-hero-row-2 {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  padding-bottom: 32px;
}

.prod-hero-kicker {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls);
  margin: 0 0 16px;
}

.prod-hero-desc {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: var(--ls);
}

/* ── Row 3: breadcrumb(좌) + 버튼(row-2 좌측 정렬) ── */
.prod-hero-row-3 {
  display: flex;
  align-items: center;
}
.prod-hero-row-3 .prod-breadcrumb {
  flex: 1;
}
.prod-hero-row-3 .prod-hero-btns {
  flex: 0 0 880px;
  max-width: 880px;
}


.prod-hero-btns {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}



/* ── 비주얼 영역 (row-1 우측) ── */
.prod-hero-visual {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.prod-hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.prod-hero-visual-img--float {
  position: absolute;
  animation: rpWhyBounce 3.2s ease-in-out infinite;
}

/* 페이지별 float 이미지 좌표 */
.page-report .prod-hero-visual-img--float {
  max-width: 220px;
  top: -20px;
  left: 0px;
}
.page-eform .prod-hero-visual-img--float {
  max-width: 30%;
  top: 10px;
  right: 20px;
}
.page-eform .prod-hero-visual-img:not(.prod-hero-visual-img--float) {
  max-height: 50vh;
  width: auto;
}

.page-formplus .prod-hero-visual-img:not(.prod-hero-visual-img--float) {
  max-height: 45vh;
  width: auto;
}
.prod-hero-visual-float-wrap {
  position: absolute;
  animation: rpWhyBounce 3.2s ease-in-out infinite;
}
.page-formplus .prod-hero-visual-float-wrap {
  max-width: 250px;
  top: 50px;
  right: -50px;
}
.page-formplus .prod-hero-visual-float-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.page-formplus .prod-hero-visual-float-wrap .prod-hero-visual-img--float-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  opacity: 0;
  animation: eform-sign 5.6s var(--ease-storm) infinite;
  animation-delay: 1.5s;
}

/* ═══════════════════════════════════════════════════
   MySuit eForm — .page-eform
═══════════════════════════════════════════════════ */

/* ── ef-why 그리드 ── */
.ef-why-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* 상단: 가로 1단 박스 */
.ef-why-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: var(--grad-card);
  border-radius: var(--r-lg);
}

.ef-why-card-img {
  flex-shrink: 0;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ef-why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ef-why-card-body {
  flex: 1;
}

.ef-why-card-title {
  font-size: var(--fs-body-lg);
  color: var(--us-ink-000);
  margin: 0 0 16px;
  line-height: 1.4;
}

.ef-why-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.ef-why-card-list li {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-body-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}

.ef-why-card-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: var(--r-pill);
  background:
    rgba(0, 180, 255, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2.5,6 4.8,8.5 9.5,3.5' fill='none' stroke='%2328d4ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 10px no-repeat;
  border: 1.5px solid rgba(40, 212, 255, 0.22);
  margin-top: 2px;
}

/* 하단: 2단 대조 카드 */
.ef-why-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

.ef-why-arrows-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

@keyframes efArrowDash {
  to { stroke-dashoffset: -18; }
}

.ef-why-contrast-card {
  padding: 20px 40px;
  border-radius: var(--r-lg);
}

.ef-why-contrast-card--bad {
  background: rgba(255, 60, 60, 0.07);
  border: 1.5px solid rgba(255, 60, 60, 0.2);
}

.ef-why-contrast-card--good {
  background: rgba(40, 212, 120, 0.07);
  border: 1.5px solid rgba(40, 212, 120, 0.2);
}

.ef-why-contrast-title {
  font-size: var(--fs-body-lg);
  color: var(--us-ink-000);
  margin: 0 0 20px;
}

.ef-why-contrast-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ef-why-contrast-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.65);
}

.ef-why-icon {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 700;
  font-size: var(--fs-h4);
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ef-why-icon--bad {
  color: var(--us-danger);
  background: rgba(255, 60, 60, 0.15);
}

.ef-why-icon--good {
  color: var(--us-green-400);
  background: rgba(40, 212, 120, 0.15);
}

/* ═══════════════════════════════════════════════════
   MySuit Report — .page-report
═══════════════════════════════════════════════════ */

/* ── 2. WHY (선택의 이유) ── */
.rp-why {
  background: var(--bg-deep) url('../imgs/product/why-bg-01.webp') center / cover no-repeat;
  padding: 150px 0;
}

.rp-why-header {
  margin-bottom: 80px;
}
.rp-why-desc {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.65);
  letter-spacing: var(--ls);
  margin: 20px 0 0;
}

.rp-why-title {
  font-size: var(--fs-section-title);
  font-weight: 600;
  letter-spacing: var(--tr-h2);
  color: var(--us-ink-000);
  line-height: 1.2;
  margin: 0;
}

.rp-why-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-5);
  align-items: center;
}

.rp-why-visual {
  display: flex;
  justify-content: right;
  align-items: center;
}

.rp-why-vis-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.rp-why-vis-base {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  animation: rpWhyFadeIn 0.9s ease both;
}

.rp-why-vis-float {
  position: absolute;
  height: auto;
  animation: rpWhyBounce 3.2s ease-in-out infinite;
}
.rp-why-vis-float--1 { animation-delay: 0s; max-width:130px; top: 0; left: 30px;}
.rp-why-vis-float--2 { animation-delay: 0.5s; max-width:100px; right: 10px; top: 70px;}
.rp-why-vis-float--3 { animation-delay: 1s; max-width:170px; right: 80px; bottom: 0;}

@keyframes rpWhyFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rpWhyBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.rp-why-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.rp-why-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  background: var(--grad-card);
  border-radius: var(--r-lg);
  transition: background 0.25s;
}

.rp-why-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-why-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rp-why-card h3 {
  font-size: var(--fs-body-lg);
  color: var(--us-ink-000);
  margin-bottom: var(--sp-2);
}
.rp-why-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rp-why-card ul li {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  color: rgba(255, 255, 255, 0.65);
  /* --_marker / --_indent 를 함께 바꾸면 ::before 표시여부 + 패딩이 동시에 제어됨 */
  --_marker: '>';
  --_indent: 16px;
  padding-left: var(--_indent);
  position: relative;
}
.rp-why-card ul li::before {
  content: var(--_marker);
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}


/* ── 3. 서비스 구성도 ── */
.rp-arch {
  padding: 150px 0;
}
.rp-arch-mobile-img {
  display: none; /* 데스크탑: 숨김 */
  width: 100%;
  height: auto;
}
.rp-arch-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--us-ink-000);
  margin: 0;
}

/* Wrapper */
.arch-v2-wrap { position: relative; }

/* SVG overlay (connection lines) */
.arch-v2-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
@keyframes archFlowDash { to { stroke-dashoffset: -20; } }

/* Data Source top box */
.arch-v2-source {
  position: relative;
  z-index: 3;
  background: var(--grad-card);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
  grid-column: 1 / 3;
  grid-row: 1;
}
.arch-v2-source-title {
  font-size: var(--fs-body-lg);
  color: var(--us-sky-500);
  margin: 0 0 10px;
  letter-spacing: var(--ls);
}
.arch-v2-source-title em {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0;
  color: var(--us-ink-000);
}
.arch-v2-source-desc {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,.65);
}

/* Main diagram grid — 3컬럼: [dev][server][user] */
.arch-v2-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.arch-v2-col--dev    { grid-column: 1; grid-row: 2; }
.arch-v2-col--server { grid-column: 2; grid-row: 2; }
.arch-v2-col--user   { grid-column: 3; grid-row: 1 / 3; }

/* Column */
.arch-v2-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  background: var(--grad-card);
  border-radius: var(--r-lg);
  padding: 20px;
}
.arch-v2-col-label {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: var(--fs-body-lg);
  color: var(--us-sky-500);
  letter-spacing: var(--ls);
  text-transform: uppercase;
}
.arch-v2-col-label span {
  display: inline;
  color: var(--us-ink-000);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
.arch-v2-col-body { display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }

/* CTA Button Cards */
.arch-cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  width: 100%;
  padding: 20px;
  background: var(--us-blue-700);
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

/* Snake Border — conic-gradient 회전으로 cyan 빛이 테두리를 한 바퀴 */
.arch-cta-btn::before,
.arch-option-card--btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 300%; height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 255deg,
    rgba(40,212,255,.3) 280deg,
    var(--us-sky-500) 308deg,
    rgba(40,212,255,.3) 336deg,
    transparent 345deg 360deg
  );
  animation: archSnakeSpin 3s linear infinite;
  z-index: 0;
}
.arch-cta-btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--us-blue-700);
  border-radius: calc(var(--r-lg) - 2px);
  z-index: 1;
}
.arch-cta-btn > *,
.arch-option-card--btn > * { position: relative; z-index: 2; }

@keyframes archSnakeSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.arch-cta-btn:hover,
.arch-option-card--btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}


/* Button title: ko + en on one line */
.arch-cta-head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: nowrap;
  white-space: nowrap;
  margin-bottom: 2px;
}
.arch-cta-ko { font-size: var(--fs-body-lg); color: var(--us-ink-000); letter-spacing: var(--ls); }
.arch-cta-en { font-style: normal; font-size: 14px; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.arch-cta-desc { display: block; font-size: var(--fs-body-sm); color: rgba(255,255,255,.65); letter-spacing: var(--ls); line-height: 1.5; }

/* Browser pills */
.arch-browser-pills { display: flex; gap: var(--sp-1); flex-wrap: wrap; margin-top: 12px; }
.arch-browser-pills span {
  font-size: 14px;
  padding: 2px 8px;
  background: var(--us-blue-800);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, .65);
}

/* 폼파일 저장 박스 — 절대 위치 (JS가 gap 중앙에 배치) */
.arch-export-box {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-1);
  padding: 8px 4px;
  background: rgba(0,0,0,.6);
  border-radius: var(--r-sm);
  pointer-events: none;
  white-space: nowrap;
  transition: left 0.6s var(--ease-out), top 0.6s var(--ease-out),
              opacity 0.5s var(--ease-out);
}
.arch-export-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
}
.arch-export-body p { font-size: 11px; color: var(--us-ink-000); margin: 0; }
.arch-export-body strong { font-size: 14px; color: var(--us-sky-500); line-height: 1.4; }
.arch-export-arrow { font-size: 14px; color: var(--us-sky-500); line-height: 1; }

/* HTTP Request / Response 표시 박스 */
.arch-http-box {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  pointer-events: none;
  transition: left 0.6s var(--ease-out), top 0.6s var(--ease-out),
              opacity 0.5s var(--ease-out);
}
.arch-http-row {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  white-space: nowrap;
  flex-direction: row;
  padding: 8px 4px;
  background: rgba(0, 0, 0, .6);
  border-radius: var(--r-sm);
  pointer-events: none;
  text-align: center;
}
.arch-http-label {
  font-size: 11px;
  color: var(--us-ink-000);
  line-height: 1;
}
.arch-http-arrow {
  font-size: 13px;
  color: var(--us-sky-500);
  line-height: 1;
}

/* Option cards */
.arch-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: 10px 20px;
  background: var(--grad-card);
  border-radius: var(--r-lg);
}
.arch-option-card--btn {
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.arch-option-card--btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--us-sky-500) 28%, var(--us-ink-900)) 0%,
    color-mix(in srgb, var(--us-blue-700) 28%, var(--us-ink-900)) 100%
  );
  border-radius: calc(var(--r-lg) - 2px);
  z-index: 1;
}
.arch-option-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .1em; 
  color: var(--us-ink-000);
  background: var(--us-blue-900);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  width: fit-content;
}
.arch-option-name { font-size: var(--fs-body-sm); color: var(--us-ink-000); margin: 0; text-align: left; }
.arch-option-desc { font-size: var(--fs-body-sm); color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; }

/* ── 미러링 아키텍처 구성도 (퍼블리싱) ── */
.mirror-arch {
  display: grid;
  gap: var(--sp-4);
  width: 100%;
}
.mirror-arch--2col {
  grid-template-columns: 1fr 1fr;
  padding: var(--sp-5);
}

/* ── 이폼서버 아키텍처 다이어그램 ── */
.ef-srv-arch-mobile-img,
.rp-comp-pnl-img .ef-srv-arch-mobile-img {
  display: none;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}
.ef-srv-arch {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--sp-5);
}
.ef-srv-arch-top {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.ef-srv-arch-server {
  width: 100%;
  align-items: flex-start;
  cursor: default;
}
.ef-srv-arch-server::before,
.ef-srv-arch-server::after { display: none; }
.ef-srv-arch-server:hover { transform: none; box-shadow: none; }
.ef-srv-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-2) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}
.ef-srv-list li {
  font-size: 14px;
  padding: 2px 8px;
  background: var(--us-blue-800);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.65);
}
/* 꺽은선: 서버 하단 중앙(30%) → 뷰어 상단 중앙(~87%) L자 연결 */
.ef-srv-arch-vconn {
  height: 56px;
  position: relative;
}
/* 구간1(수직↓) + 구간2(수평→) */
.ef-srv-arch-vconn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 37%;
  height: 50%;
  border-left: 1.5px solid var(--us-sky-500);
  border-bottom: 1.5px solid var(--us-sky-500);
}
/* 구간3(수직↓ 뷰어 상단까지) */
.ef-srv-arch-vconn::after {
  content: '';
  position: absolute;
  left: calc(87% - 1px);
  top: 50%;
  width: 1px;
  height: 50%;
  background: var(--us-sky-500);
}
.ef-srv-arch-aside {
  position: absolute;
  bottom: 50%;
  left: 68.5%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--us-ink-000);
  margin: 0 0 4px;
  text-align: center;
}
.ef-srv-arch-bottom {
  display: flex;
  align-items: center;
}
.ef-srv-arch-node {
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ef-srv-arch-node .arch-option-name { text-align: center; }
.ef-srv-arch-node--main { background: var(--us-blue-700); }
.ef-srv-arch-conn {
  flex: 0 0 48px;
  height: 1px;
  background: var(--us-sky-500);
  position: relative;
}
.ef-srv-arch-conn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--us-ink-000);
  text-align: center;
}


/* ── 4. 서비스 구성요소 (STICKY) ── */
#rp-comp-wrap {
  position: relative;
  background: linear-gradient(rgba(0,0,0, 0.2), rgba(0,0,0, 0.2)), url(../imgs/product/comp-bg-01.webp) center / cover no-repeat fixed;
}

.rp-comp-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
}

/* ── 좌측 패널 ── */
.rp-comp-left {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;  /* hidden → visible: 글로우 도트가 디바이더 밖으로 돌출 가능 */
  z-index: 1;         /* 우측 패널(z-index auto)보다 위에 그려져 글로우 도트 노출 */
}

/* 좌우 구분선 */
.rp-comp-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* 글로우 인디케이터 — scroll-driven: JS가 매 프레임 직접 top 설정 */
.rp-comp-glow-dot {
  position: absolute;
  right: -3px;  /* 4px 중앙을 1px 디바이더 선에 맞춤: 좌 2px + 우 2px */
  z-index: 2;
  width: 6px;
  height: 100px;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent, var(--us-sky-500) 50%, transparent);
  pointer-events: none;
  /* transition 없음: CSS transition은 scroll-scrub과 충돌하여 lag 발생 */
}

/* 레이블 + 탭 영역 */
.rp-comp-left-top {
  padding: 150px 30px 0 60px;
  flex-shrink: 0;
}

.rp-comp-sec-label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-lg);
  text-transform: uppercase;
  color: var(--us-sky-500);
  margin-bottom: 14px;
}

/* 캡슐 탭 버튼 */
.rp-comp-nav {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 4px;
}

.rp-comp-menu-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  color: var(--us-ink-000);
  font-size: var(--fs-body);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.rp-comp-menu-item:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.7);
}
.rp-comp-menu-item.is-active {
  background: var(--us-blue-700);
  color: var(--fg-white);
}

/* 대형 장식 텍스트 */
.rp-comp-deco {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.rp-comp-big-text-item {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 30px 60px 60px;
  font-size: var(--fs-section-title);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transition: opacity var(--dur-slow) ease;
  pointer-events: none;
}
.rp-comp-big-text-item.is-active {
  opacity: 1;
  color: rgba(255, 255, 255, 0.45);
}
.rp-comp-big-text-item .txt-accent { color: var(--us-sky-500); }

/* ── 우측 패널 영역 ── */
/* height: 100% — 그리드 아이템을 100vh로 고정, scrollTop 작동에 필수
   overflow-y: hidden — JS가 scrollTop을 직접 제어하므로 사용자 스크롤 불필요.
   scroll 대신 hidden으로 변경하면 휠 이벤트가 페이지로 정상 전달됨. */
.rp-comp-right {
  padding: 0;
  height: 100%;
  overflow-y: hidden;
  position: relative;
}

/* 패널 공통: 패딩을 여기서 가짐 (height: auto — scrollHeight가 실제 콘텐츠 높이) */
.rp-comp-panel {
  display: none;
  flex-direction: column;
  gap: var(--sp-11);
  padding: 150px 60px;
  height: auto;
}
.rp-comp-panel.is-active {
  display: flex;
  animation: rpPanelIn 0.38s ease forwards;
}
/* transform 제거: GSAP translateY 충돌 방지, opacity만 페이드 */
@keyframes rpPanelIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── 패널 헤드: 영문 타이틀 + 설명 ── */
.rp-comp-pnl-head {
  flex-shrink: 0;
  gap: var(--sp-3);
  display: flex;
  flex-direction: column;
}
.rp-comp-pnl-title {
  font-size: var(--fs-h3);
  font-weight:700;
  color: var(--us-sky-500);
}

.rp-comp-pnl-desc {
  font-size: var(--fs-body);
  color: var(--us-ink-000);
  margin: 0;
}

/* ── 패널 바디: 프리뷰 이미지 + 특징 리스트 ── */
.rp-comp-pnl-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex-shrink: 0;
}
.rp-comp-pnl-body--single {
  grid-template-columns: 1fr;
}

/* 프리뷰 이미지 */
.rp-comp-pnl-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(0, 25, 65, 0.5);
  border: 1.5px solid rgba(0, 160, 255, 0.1);
  min-height: 196px;
  display: flex;
  align-items: stretch;
}
.rp-comp-pnl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}

/* 특징 리스트 — 체크마크 아이콘 */
.rp-comp-pnl-features {
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  background: rgba(0, 35, 108, 0.4);
  border: 1.5px solid rgba(0, 140, 255, 0.16);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rp-comp-pnl-features--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  justify-content: initial;
}
.rp-comp-pnl-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: 4px 0;
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.65);
}

/* 패널 3 (서버)의 pnl-features li만 작은 폰트 */
.rp-comp-panel:nth-child(4) .rp-comp-pnl-features li {
  font-size: var(--fs-body-sm);
}
.rp-comp-pnl-features li:last-child { border-bottom: none; }
.rp-comp-pnl-features--wide li:nth-last-child(2) { border-bottom: none; }
.rp-comp-pnl-features--wide li:last-child { grid-column: 1 / -1; }
.rp-comp-pnl-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: var(--r-pill);
  background:
    rgba(0, 180, 255, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2.5,6 4.8,8.5 9.5,3.5' fill='none' stroke='%2328d4ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 10px no-repeat;
  border: 1.5px solid rgba(40, 212, 255, 0.22);
  margin-top: 2px;
}

/* ── 기능 섹션 ── */
.rp-comp-pnl-funcs { flex-shrink: 0; }
.rp-comp-pnl-kicker {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-lg);
  text-transform: uppercase;
  color: var(--us-sky-500);
  margin-bottom: 14px;
}
.rp-comp-pnl-func-title {
  font-size: var(--fs-h3);
  color: var(--us-ink-000);
  margin-bottom: 20px;
}

/* 기능 카드 목록 */
.rp-comp-pnl-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.rp-comp-pnl-cards--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* 이미지(좌) + 카드 2열(우) 레이아웃 */
.rp-comp-pnl-cards--img-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: start;
}
.rp-comp-pnl-cards--img-left > .rp-comp-pnl-img { padding: 10px; }
.rp-comp-pnl-cards--img-left .rp-comp-pnl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rp-comp-pnl-card-cols {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.rp-comp-pnl-card-cols--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* 미러링: 전체 2행 레이아웃 (아키텍처 위 / 카드 아래) */
.rp-comp-pnl-cards--rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.rp-comp-pnl-cards--rows > .rp-comp-pnl-img {
  padding: 0;
}

/* 패널 이미지 그리드 */
.rp-comp-pnl-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
}
.rp-comp-pnl-img-grid img {
  border-radius: var(--r-lg);
}

/* 패널 2 뷰어: 기능 + 이미지 2열 레이아웃 */
.rp-viewer-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.rp-viewer-card-box {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: var(--sp-5) !important;
  align-items: center !important;
  flex-direction: unset !important;
}
.rp-viewer-card-box:nth-child(2) {
  grid-template-columns: 1fr 1.2fr !important;
}
.rp-viewer-feat-content {
  display: flex;
  flex-direction: column;
}
.rp-viewer-feat-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.rp-viewer-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.rp-viewer-images {
  display: none;
}

/* 단일 카드 + 구분선 목록 */
.rp-viewer-feat-card {
  padding: 0;
  display: block;
}
.rp-viewer-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rp-viewer-feat-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
}
.rp-viewer-feat-list strong {
  font-size: var(--fs-body-lg);
  font-weight: 600;
  color: var(--us-ink-000);
}
.rp-viewer-feat-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

/* 기능 카드 */
.rp-comp-card {
  display: flex;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.28s, background 0.28s;
}
.rp-comp-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(40, 212, 255, 0.2);
}

/* 카드 비주얼 (좌측) */
.rp-comp-card-vis {
  flex-shrink: 0;
  width: 88px;
  background: linear-gradient(145deg, #061540, #0a2860);
  position: relative;
  overflow: hidden;
}
/* 패널별 카드 색조 */
.rp-comp-panel:nth-child(1) .rp-comp-card-vis { background: transparent; display: flex; align-items: center; justify-content: center; }
.rp-comp-panel:nth-child(2) .rp-comp-card-vis { background: transparent; display: flex; align-items: center; justify-content: center; }
.rp-comp-panel:nth-child(3) .rp-comp-card-vis { background: linear-gradient(145deg, #061240, #091d54); }
.rp-comp-panel:nth-child(4) .rp-comp-card-vis { background: linear-gradient(145deg, #050d30, #0a2258); }

/* 폼에디터/쿼리에디터용 큰 아이콘 */
.rp-comp-card-icon-editor {
  width: 52px;
  height: 52px;
  background-color: var(--us-blue-700);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-comp-card-icon-editor img {
  width: 28px !important;
  height: 28px !important;
}

/* 카드 텍스트 */
.rp-comp-card-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  justify-content: flex-start;
}
.rp-comp-card-body h3 {
  display: flex;
  align-items: center;
  font-size: var(--fs-body);
  color: var(--us-ink-000);
  margin-bottom: var(--sp-2);
}

/* 카드 제목 아이콘 */
.rp-comp-card-icon {
  width: 32px;
  height: 32px;
  background-color: var(--us-blue-700);
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.rp-comp-card-icon img {
  width: 16px !important;
  height: 16px !important;
}
.rp-comp-card-body p {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.rp-comp-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rp-comp-card-body ul li {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-body-sm);
}


/* ── FormPlus: 선택의 이유 fullpage ── */
.page-formplus .ef-why.fp-kf {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--bg-deep) url('../imgs/product/why-bg-02.webp') center / cover no-repeat;
  box-sizing: border-box;
  overflow: hidden;
}
.page-formplus .ef-why.fp-kf > .prod-inner { width: 100%; }
.page-formplus .ef-why.fp-kf .fp-kf-left { position: static; }
.page-formplus .ef-why.fp-kf .fp-kf-header { margin-bottom: 40px; }

/* ── FormPlus: 폼플러스 에디터 ── */
.fp-editor {
  padding: 150px 0;
}

/* ── FormPlus: 이폼 vs 폼플러스 비교 ── */
.fp-compare {
  padding: 150px 0;
}
.fp-compare-table {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fp-compare-head,
.fp-compare-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
}
.fp-compare-head {
  background: rgba(255,255,255,0.06);
}
.fp-compare-row {
  border-top: 1.5px solid rgba(255,255,255,0.08);
}
.fp-compare-row:hover { background: rgba(255,255,255,0.04); }
.fp-compare-cell {
  padding: 16px;
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-compare-cell--label {
  font-weight: 600;
  color: var(--us-ink-000);
  background: rgba(255,255,255,0.03);
}
.fp-compare-head .fp-compare-cell {
  color: var(--us-ink-000);
  font-weight: 600;
  font-size: var(--fs-body);
  justify-content: center;
}
.fp-compare-head .fp-compare-cell--label { background: transparent; color: transparent; }
.fp-compare-cell--ef { 
  border-left: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(251, 62, 95,0.1);
}
.fp-compare-cell--fp {
  border-left: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(129, 80, 216,0.1);
}
.fp-compare-cell--ef strong { font-weight:600; color: var(--bg-eform); }
.fp-compare-cell--fp strong { font-weight:600; color: var(--bg-formplue); }


/* ── FormPlus: Key Features ── */
.fp-kf { padding: 120px 0; }
.fp-kf-header { margin-bottom: 72px; }

.fp-kf-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 100px;
  align-items: center;
}
.fp-kf-left {
  position: sticky;
  top: 100px;
}
.fp-kf-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fp-kf-tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: clamp(32px, 3.2vw, 52px);
  color: rgba(255,255,255,0.18);
  line-height: 1.15;
  letter-spacing: var(--ls);
  transition: color 0.35s var(--ease-out);
}
.fp-kf-tab[data-panel="manager"].is-active { color: var(--bg-formplue); }
.fp-kf-tab[data-panel="signer"].is-active  { color: var(--bg-eform); }
.fp-kf-tab:hover:not(.is-active) { color: rgba(255,255,255,0.42); }
.fp-kf-right {
  min-width: 0;
  overflow: hidden;
}
.fp-kf-swiper .swiper-wrapper { align-items: stretch; }
.fp-kf-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.fp-kf-swiper .swiper-slide:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.2);
}
.fp-kf-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  box-sizing: border-box;
  flex: 1;
  transition: border-color 0.3s var(--ease-out),
              background 0.3s var(--ease-out);
}
.fp-kf-card:hover {
  border-color: rgba(40,212,255,0.2);
  background: rgba(255,255,255,0.07);
}
.fp-kf-card-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-kf-card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.fp-kf-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-kf-card-label {
  font-size: var(--fs-body-sm);
  font-weight: 700;
  color: var(--bg-formplue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.swiper-slide[data-group="manager"] .fp-kf-card-label { color: var(--bg-formplue); }
.swiper-slide[data-group="signer"]  .fp-kf-card-label { color: var(--bg-eform); }
.fp-kf-card-title {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--us-ink-000);
  line-height: 1.35;
  letter-spacing: var(--ls);
  margin: 0;
}
.fp-kf-card-desc {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
  letter-spacing: var(--ls);
}
.fp-kf-pagination { display: none; }

/* ── 5. 적용분야 ── */
.rp-apply {
  background: var(--fg-white);
  padding: 150px 0;
}

.rp-apply-header { margin-bottom: 56px; }
.rp-apply .prod-label { color: var(--us-blue-700); }
.rp-apply-title {
  font-size: var(--fs-section-title);
  font-weight: 600;
  letter-spacing: var(--tr-h2);
  margin: 0;
  line-height: 1.35;
}

.rp-apply-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* ── 슬라이더 ── */
.rp-apply-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rp-apply-stage {
  position: relative;
  background: var(--us-paper-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 700px;
}

.rp-apply-track {
  position: relative;
  width: 100%; height: 100%;
}

.rp-apply-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.rp-apply-slide.is-active { opacity: 1; }

.rp-apply-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── 도트 인디케이터 ── */
.rp-apply-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.rp-apply-dot {
  width: 12px; height: 12px;
  border-radius: var(--r-pill);
  background: var(--us-paper-warm);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.rp-apply-dot.is-active {
  background: var(--us-blue-700);
  width: 20px;
  border-radius: var(--r-pill);
}

/* ── 섹터 탭 ── */
.rp-apply-sectors {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.rp-apply-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 16px 18px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  background: var(--us-paper-warm);
  transition: background 0.3s;
}
.rp-apply-tab:hover:not(.is-active),
.rp-apply-tab.is-active {
  background: var(--us-ink-600);
}

/* ── 탭 아이콘 ── */
.rp-apply-tab-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rp-apply-tab-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: filter 0.3s;
}
.rp-apply-tab:hover:not(.is-active) .rp-apply-tab-icon img,
.rp-apply-tab.is-active .rp-apply-tab-icon img {
  filter: brightness(0) invert(1);
}

/* ── 탭 텍스트 ── */
.rp-apply-tab-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rp-apply-tab-name {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  transition: color 0.3s;
}
.rp-apply-tab:hover:not(.is-active) .rp-apply-tab-name,
.rp-apply-tab.is-active .rp-apply-tab-name {
  color: var(--us-ink-000);
}
.rp-apply-tab-desc {
  font-size: var(--fs-body-sm);
  color: rgba(0,0,0,0.65);
  transition: color 0.3s;
}
.rp-apply-tab:hover:not(.is-active) .rp-apply-tab-desc,
.rp-apply-tab.is-active .rp-apply-tab-desc {
  color: rgba(255,255,255,0.65);
}


/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.26s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.39s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.52s; }


/* ═══════════════════════════════════════════════════
   ICON UTILITY
═══════════════════════════════════════════════════ */
/* 52px 아이콘: 데스크탑 기본값, 모바일에서 40px로 자동 축소 */
.icon-52 {
  width: 52px;
  height: 52px;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* ── 공통 hero ── */
  .prod-hero { padding-top: 100px; padding-bottom: 80px; }
  .prod-hero::before { width: 100%; }
  .prod-hero-row-1 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
  }
  .prod-hero-title { flex: none; width: 100%; margin-bottom: 2rem; }
  .prod-hero-visual { flex: none; width: 100%; max-width: 380px; order: -1; }
  .page-report .prod-hero-visual-img--float { top: -20px; left: 10px; }
  .page-formplus .prod-hero-visual-float-wrap { max-width: 60%; top: 30px; right: -50px; }
  .prod-hero-row-2 { max-width: 100%; padding-bottom: 20px; }
  .prod-breadcrumb { display: none; }
  .prod-hero-row-3 { gap: 0; }
  .prod-hero-row-3 .prod-hero-btns { flex: none; max-width: none; }
  .prod-hero-inner { border-bottom: none; }
  /* ── Report ── */
  .rp-why-body { grid-template-columns: 1fr; }
  .rp-why-visual { display: none; }
  .rp-comp-inner { grid-template-columns: 240px 1fr; }
  /* .rp-comp-panel { padding: 44px 40px 52px; } */
  .rp-comp-pnl-body { grid-template-columns: 1fr; }
  .page-eform .rp-comp-pnl-body--single { grid-template-columns: 1fr; }
  .page-eform .rp-comp-pnl-body--single .rp-comp-pnl-features--wide { grid-template-columns: 1fr; }
  .rp-apply-body { grid-template-columns: 1fr; }
  /* 패널 2 뷰어: 모바일 1단 */
  .rp-viewer-section {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .rp-viewer-section:nth-child(2) {
    direction: ltr;
  }
  /* 패널 2 뷰어: 모바일 1단 */
  .rp-viewer-card-box {
    grid-template-columns: 1fr;
  }
  .rp-viewer-feat-image {
    order: -1;
  }
  /* ── eForm ── */
  .ef-why-card { gap: 28px; padding: 32px; }
  .ef-why-card-img { width: 300px; }
  /* ── FormPlus: Key Features ── */
  .fp-kf-body { grid-template-columns: 200px 1fr; gap: 40px; }
  .fp-kf-tab { font-size: clamp(26px, 3vw, 40px); }
}

@media (max-width: 820px) {
  /* ── 공통 ── */
  .prod-hero-inner,
  .prod-inner { padding: 0 24px; }
  #rp-comp-wrap { background-attachment: scroll; }
  .rp-why { padding: 80px 0; }
  .rp-why-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* --_marker: none → ::before 미생성, --_indent: 0px → padding-left 자동 제거 */
  .rp-why-card ul li { --_marker: none; --_indent: 0px; }
  .rp-arch { padding: 80px 0; }

  .arch-v2-wrap { display: none; }
  .rp-arch-mobile-img { display: block; } /* 모바일: 이미지 표시 */

  .mirror-arch--2col      { grid-template-columns: 1fr; }
  .rp-comp-pnl-card-cols--row { grid-template-columns: 1fr; }

  /* 서비스 구성요소: 모바일 카드 레이아웃 */
  .rp-comp-card {
    display: flex;
    flex-direction: column;
  }

  .rp-comp-panel .rp-comp-card-vis {
    padding: 12px 0 0 12px !important;
    justify-content: flex-start !important;
  }

  .rp-comp-pnl-cards--grid {
    grid-template-columns: 1fr;
  }

  .rp-comp-pnl-cards--img-left {
    grid-template-columns: 1fr;
  }

  .rp-comp-card-icon-editor {
    width: 32px;
    height: 32px;
  }

  .rp-comp-card-icon-editor img {
    width: 16px !important;
    height: 16px !important;
  }

  .rp-apply { padding: 80px 0; }
  /* 적용분야: 모바일에서 슬라이더 1단 표시, 이미지 전체 노출 */
  .rp-apply-slider-wrap { display: flex; }
  .rp-apply-stage { height: clamp(420px, 55svh, 700px); }
  /* 탭: 버튼 기능 없애고 정적 목록으로만 표시, .is-active 스타일 제거 */
  .rp-apply-tab { pointer-events: none; cursor: default; }
  .rp-apply-tab.is-active {
    background: var(--us-paper-warm);
  }
  .rp-apply-tab.is-active .rp-apply-tab-name {
    color: var(--us-ink-900);
  }
  .rp-apply-tab.is-active .rp-apply-tab-desc {
    color: rgba(0,0,0,0.65);
  }
  .rp-apply-tab.is-active .rp-apply-tab-icon img {
    filter: none;
  }
  .rp-comp-inner { grid-template-columns: 1fr; height: auto; min-height: auto; position: static; overflow: visible; }
  .rp-comp-left {
    position: sticky;
    top: var(--header-h);
    z-index: 50;
    padding: 0;
    background: rgba(var(--bg-deep), 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(0, 140, 255, 0.16);
  }
  .rp-comp-left::after { display: none; }
  .rp-comp-glow-dot { display: none; }
  .rp-comp-left-top { padding: 28px 20px 20px; }
  .rp-comp-sec-label { margin-bottom: 12px; }
  .rp-comp-nav { flex-direction: row; flex-wrap: nowrap; gap: 4px; }
  .rp-comp-menu-item {
    white-space: nowrap;
    flex: 0 1 calc(25% - 3px);
    padding: 8px 10px;
    font-size: 14px;
    justify-content: center;
  }
  .rp-comp-deco { display: none; }
  /* 모바일: 52px 아이콘 축소 (52px → 32px) */
  .icon-52 { width: 32px; height: 32px; }
  /* 모바일: sticky 해제 → overflow-y scroll 불필요, 패널 padding만 적용 */
  .rp-comp-right { overflow-y: visible; }
  .menu-item-prefix { display: none; }
  .rp-comp-panel { padding: 28px 20px 36px; gap: 16px; }
  .rp-comp-pnl-body { grid-template-columns: 1fr; }
  .rp-comp-pnl-features--wide { grid-template-columns: 1fr; }
  .rp-comp-pnl-img-grid { grid-template-columns: 1fr; }

  /* ef-srv-arch 모바일: PNG 전환 */
  .ef-srv-arch { display: none; }
  .ef-srv-arch-mobile-img,
  .rp-comp-pnl-img .ef-srv-arch-mobile-img { display: block; }

  /* ef-srv-arch 모바일: 수직 1단 */
  .ef-srv-arch-bottom {
    flex-direction: column;
    align-items: stretch;
  }
.ef-srv-arch-node {
    flex: none;
    width: 100%;
  }
  .ef-srv-arch-conn {
    flex: none;
    width: 1px;
    height: 40px;
    align-self: center;
  }
  .ef-srv-arch-conn span {
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    margin-bottom: 0;
    text-align: left;
  }
  /* 꺽은선: 우측 3꺽기 브라켓 (서버 우측 중앙 → 레포트 서식 우측 중앙) */
  .ef-srv-arch-vconn {
    height: 16px;
    overflow: visible;
  }
  .ef-srv-arch-vconn::before {
    content: '';
    position: absolute;
    right: 0;
    top: -44px;
    width: 20px;
    height: calc(100% + 88px);
    border-top: 1.5px solid var(--us-sky-500);
    border-right: 1.5px solid var(--us-sky-500);
    border-bottom: 1.5px solid var(--us-sky-500);
    border-left: none;
  }
  .ef-srv-arch-vconn::after { display: none; }
  /* aside: 세로 텍스트, 브라켓 왼쪽 */
  .ef-srv-arch-aside {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    right: 28px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    margin: 0;
  }
  /* ── eForm: ef-why ── */
  .ef-why-card { display: grid; gap: 20px; padding: 24px; }
  .ef-why-card-img { width: 100%; }
  .ef-why-contrast { grid-template-columns: 1fr; }
  .ef-why-contrast-card { padding: 24px; }
  /* ── FormPlus: 비교표 모바일 (헤더 유지 + 2열) ── */
  .fp-compare-head {
    grid-template-columns: 1fr 1fr;
  }
  .fp-compare-head .fp-compare-cell--label { display: none; }
  .fp-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0;
  }
  .fp-compare-cell--label {
    grid-column: 1 / -1;
    padding: 16px;
    font-size: var(--fs-body-sm);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    border-left: none;
  }
  .fp-compare-cell--ef,
  .fp-compare-cell--fp {
    padding: 16px;
    border-left: none;
    font-size: var(--fs-body-sm);
  }
  .fp-compare-cell--ef { border-right: 1.5px solid rgba(255,255,255,0.08); }
  /* ── FormPlus: Key Features 모바일 ── */
  .fp-kf-swiper .swiper-slide:not(:last-child)::after { display: none; }
  .fp-kf { padding: 80px 0; }
  .fp-kf-header { margin-bottom: 48px; }
  .fp-kf-body { grid-template-columns: 1fr; gap: 40px; }
  .fp-kf-left { position: static; }
  .fp-kf-tab[data-panel="manager"].is-active { padding: 10px 22px; border-radius: var(--r-pill); background-color: var(--bg-formplue); color: var(--us-ink-000); }
  .fp-kf-tab[data-panel="signer"].is-active  { padding: 10px 22px; border-radius: var(--r-pill); background-color: var(--bg-eform); color: var(--us-ink-000); }
  .fp-kf-tabs { flex-direction: row; gap: 16px; }
  .fp-kf-tab { font-size: clamp(14px, 3vw, 36px); }
  .fp-kf-tab br { display: none; }
  .fp-kf-card { padding: 24px; }
  /* fullpage 해제 */
  .page-formplus .ef-why.fp-kf {
    height: auto;
    display: block;
    padding: 80px 0;
    overflow: visible;
    box-sizing: content-box;
  }
}

@media (max-width: 480px) {
  .prod-hero-visual { max-width: 220px; }
  .page-report .prod-hero-visual-img--float { max-width:130px; }
}



